
/* ===========================
   Base Header Styling
=========================== */

#primary {
    margin-top: 0 !important;
  }
  .custom-header {
    background-color: #ffffff;
    /* padding: 15px 0; */
    color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
  }
  
  .custom-header .container {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    /* width: 1400px; */
    padding: 0 50px;
    margin: 0 auto;
  }
  
  .custom-header .logo img {
    height: 25px;
  }
  
  .logo {
    flex: 0 0 20%;
  }
  
  .main-nav {
    flex: 0 0 60%;
  }
  /* Navigation Menu */
  .main-nav .menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .main-nav .menu li {
    position: relative;
  }
  
  .main-nav .menu li a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  
  .main-nav .menu li a:hover {
    color: #17aac5;
  }
  
  .main-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  .main-nav li:hover .sub-menu {
    display: block;
  }
  
  .main-nav .sub-menu li a {
    padding: 8px 20px;
    display: block;
    color: #000;
  }
  
  .main-nav .sub-menu li a:hover {
    background-color: #f5f5f5;
  }
  
  /* Right Section (Phone, Icons) */
  .header-right {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .phone-button {
    background: transparent;
    border: 1px solid #000;
    padding: 6px 14px;
    border-radius: 25px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
  }
  
  .phone-button:hover {
    background-color: #f2f2f2;
  }
  
  .user-icon i,
  .cart-icon i {
    font-size: 18px;
    color: #000;
  }
  
  .cart-icon {
    position: relative;
  }
  
  .cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #17aac5;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
  }
  
  
  
  body header.transparent-header.non-transparent .menu li a, body header.transparent-header.non-transparent .header-right a,
  body header.transparent-header.non-transparent .header-right a .fa {
    color: black !important;
  }
  body header.transparent-header.non-transparent .header-right a {
    border-color: #17aac4;
  }
  body header.transparent-header.non-transparent .header-right a .fa-phone {
    color: #17aac4 !important;
  }
  .non-transparent {
    border-bottom: 1px solid #b7bfc3;
  }
  .transparent-header {
    border-bottom: 1px solid #b7bfc3;
  }
  .transparent-header .xoo-wsc-sc-bki {
    color: #000;
  }
  .transparent-header .xoo-wsc-sc-count {
    background-color: #fff;
    color: #000;
  }
  
  /* ===========================
     Transparent Header
  =========================== */
  .transparent-header {
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: none;
    padding-bottom: 10px;
  }
  
  .transparent-header .menu li a,
  .transparent-header .fa,
  .transparent-header .phone-button {
    color: #fff !important;
  }
  
  .transparent-header .phone-button {
    border-color: #fff;
  }
  
  .transparent-header .sub-menu {
    background: rgba(255, 255, 255, 0.95);
  }
  
  .transparent-header .sub-menu li a {
    color: #000 !important;
  }
  
  /* Optional: Add spacing below transparent header */
  body.transparent-header-enabled .site-content,
  body.transparent-header-enabled main {
    margin-top: 0;
  }
  
  /* ===========================
     Responsive (Mobile View)
  =========================== */
  @media (max-width: 768px) {
    .main-nav .menu {
      flex-direction: column;
      display: none;
    }
  
    .main-nav .menu.show {
      display: flex;
    }
  
    .header-right {
      gap: 10px;
    }
  
    .phone-button {
      padding: 5px 10px;
      font-size: 13px;
    }
  }
  
  /* ================
   Mobile Header
  ================ */
  
  /* ===================
   Mobile Slide Menu
  =================== */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 68px; /* Adjust if needed */
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 998;
    padding: 20px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu .mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu .mobile-nav li {
    margin-bottom: 10px;
  }
  
  .mobile-menu .mobile-nav li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
  }
  
  /* Show when open */
  body.mobile-menu-open .mobile-menu {
    display: block;
  }
  
  .mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 999;
  }
  
  .mobile-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .menu-toggle {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
  }
  
  .mobile-logo img {
    height: 28px;
  }
  
  .mobile-right {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
  }
  
  .mobile-phone {
    border: 1.5px solid #17aac5;
    padding: 6px 9px;
    border-radius: 50%;
    color: #17aac5;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-user i,
  .mobile-cart i {
    font-size: 18px;
    color: #000;
  }
  
  .cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: #17aac5;
    color: white;
    border-radius: 50%;
    font-size: 11px;
    padding: 1px 5px;
  }
  
  .mobile-divider {
    height: 20px;
    width: 1px;
    background-color: #ccc;
    margin: 0 3px;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.5;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .mobile-header {
        display: flex;
    }
  
    .custom-header {
      display: none; /* Hide desktop header */
    }
  }
  
  
  
  ul.product__list {
    list-style: none;
    padding-left: 0;
  }
  
  ul.product__list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
  }
  
  ul.product__list li::before {
    content: "\f058"; /* fa-circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 400; /* Use 900 for solid */
    color: #0e9aa7;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 18px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    display: inline-block;
  }
  
  
  
  /* Css for the modal product */
  
  .custom-product-modal {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 9999;
    display: none; align-items: center; justify-content: center;
  }
  .modal-content {
    background: #fff;
    max-width: 90% !important;
    width: 1200px !important;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
  }
  .modal-body {
    display: flex; flex-wrap: wrap;
  }
  .modal-left, .modal-right {
    width: 50%; padding: 20px;
  }
  .modal-right {
    overflow-y: auto; max-height: 600px;
  }
  .modal-close {
    position: absolute; top: 10px; right: 15px; cursor: pointer;
    font-size: 24px;
  }
  .thumb-gallery img {
    height: 80px; object-fit: cover;
  }
  .main-gallery img {
    max-width: 100%; height: auto;
  }
  #productModal .woocommerce-notices-wrapper {
    display: none;
  }
  
  .router-left {
    float: right;
  }
  .router-price-message {
    border: 1px solid #17aac4;
  }
.curve-text {
  position: relative;
}

.curve-text:before {
  content: '';
  position: absolute;
  top: 44px;
  left: -11px;
  width: 55%;
  height: 14px;
  background-image: url('data:image/svg+xml,%0A <svg xmlns="http://www.w3.org/2000/svg" width="373" height="14" viewBox="0 0 373 14" fill="none">%0A <path d="M3 11C64.8602 4.50757 188.991 -3.17051 370 11" stroke="%2317aac4" stroke-width="6" stroke-linecap="round"/>%0A </svg>');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  z-index: 1;
}



.top-border {
  border-top: 1px solid;
  padding-top: 20px;
}

.custom-variation-cards-wrapper h3 {
  display: none;
}
.activation-date-wrapper {
  margin-top: 40px;
}
.activation-date-wrapper h4 {
  margin-bottom: 40px;
  font-family: 'articulat-cf', sans-serif;

}
.activation-date-wrapper legend {
  font-family: 'elza-text', sans-serif;
  font-size: 18px;

}
.activation-date-wrapper fieldset {
  /* border: 3px solid #d1d5db; */
  border: 3px solid #000;
}
.product-form__item label {
  font-size: 18px;
}
.product-cart .quantity {
  display: none !important;
}
.product-cart .single_add_to_cart_button,
.cart .single_add_to_cart_button {
  grid-column: 4/1 !important;
}
.product-gallery-image {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.section__table h4 {
  margin-bottom: 60px;
}


/* Footer CSS */

.site-footer a {
  color: #0F1214;
}




/* Stick Header */
header.custom-header.transparent-header.scrolled {
  position: sticky !important;
  background: #fff !important;
}
header.custom-header.transparent-header.scrolled li a {
  color: #000 !important;
}



/* Flip Header */


/* ✅ USP Rotating Bar Styling */
.usp-bar {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px;
  margin-bottom: 10px;
}

.usp-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.usp-item.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.usp-item img {
  width: 20px;
  height: 20px;
}

.usp-item span {
  font-weight: 500;
  font-size: 15px;
  color: #222;
}

.usp-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
  display: none;
}

.usp-item.active a {
  display: block;
}