/** Shopify CDN: Minification failed

Line 165:7 Expected identifier but found whitespace
Line 165:9 Unexpected "{"
Line 165:18 Expected ":"
Line 170:7 Expected identifier but found whitespace
Line 170:9 Unexpected "{"
Line 170:18 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-footer-bkp (INDEX:24) */
.footer-wrapper { padding: 60px 0; margin-top: 75px; }
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-columns { display: grid; gap: 40px; }
.footer-columns.columns-4 { grid-template-columns: repeat(4, 1fr); }
.footer-heading:hover { color: var(--footer-link-hover, #ffffff); }
.footer-column ul { list-style: none; margin: 0; padding: 0; }
.footer-column ul li { margin-bottom: 6px; }
.footer-column ul li a { text-decoration: none; transition: 0.3s; font-family: 'Bricolage Grotesque'; letter-spacing: 1px; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.footer-payment { text-align: center;  }
.footer-bottom {  padding: 0; display: flex; flex-wrap: wrap; justify-content:center; }
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; border-radius: 50%; display: none; cursor: pointer; }
.scroll-top.show { display: block; }
@media (max-width: 768px) {
  .footer-columns { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

button.footer-btn {
    display: none;
}
.newsletter-form input[type="email"]::placeholder {
    color: #000000;
    font-weight: 600;
        font-family: 'Bricolage Grotesque';
}
.newsletter-form input[type="email"] {
    border: none;
    border-bottom: 1px solid #444443;
    padding-bottom: 12px;
    font-size: 12px;
    letter-spacing: 1px;
   
}
.footer-currency {
  text-align: center;
  margin: 25px 0 0;
}
.footer-currency select {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}

.currency-selector-wrapper {
  text-align: center;
  margin: 25px auto 10px;
  position: relative;
     justify-content: center;
}

.currency-togglefoot {
  background: #ffffff;
  border: 1px solid #d5d5d5;
  padding: 6px 14px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s ease;
}

.currency-togglefoot:hover {
  border-color: #aaa;
}

.currency-arrow {
  font-size: 12px;
  margin-left: 4px;
}

.currency-dropdownfoot {
  display: none;
  background: #ffffff;
  border: 1px solid #dadada;
  border-radius: 8px;
  padding: 8px;
  min-width: 180px;
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.currency-dropdownfoot.open {
  display: block;
}

.currency-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.currency-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
}

.currency-option.active,
.currency-option:hover {
  background: #f5f5f5;
}

.list-payment {
  list-style: none !important;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.list-payment li {
  display: flex;
  align-items: center;
}

.footer-social {
  text-align: center;
  margin: 10px 0 10px;
}

.footer-social ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    align-items: center;
}
.footer-social img {
    width: 20px;
    margin-bottom: 3px;
}
.footer-social-icon {
  width: 25px;
  height: 25px;
  fill: {{ section.settings.social_icon_color }};
  transition: 0.2s ease;
}

.footer-social-icon:hover {
  fill: {{ section.settings.social_icon_hover }};
}
/* END_SECTION:custom-footer-bkp */

/* START_SECTION:main-menu (INDEX:50) */
/* Mega Menu hover */
  .nav-item:hover .mega-menu { display:block; }

  /* Overlay styles */
  .search-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: none; z-index: 9999;
    overflow-y: auto; padding: 50px 20px; box-sizing: border-box;
  }
  .search-overlay-content {
    max-width: 1000px; margin: 0 auto; background: #fff;
    border-radius: 8px; padding: 20px; position: relative;
  }
  .close-search {
    position: absolute; top: 15px; right: 20px; font-size: 30px;
    background: none; border: none; cursor: pointer;
  }
  #header-search-input {
    width: 100%; padding: 12px 15px; font-size: 18px;
    border: 1px solid #ccc; border-radius: 6px; margin-bottom: 20px;
  }
  #searchbutton { display:none; }
  .search-results-grid { display:flex; gap:30px; flex-wrap:wrap; }
  .search-left { flex:1; min-width:250px; }
  .search-left h4 { margin-bottom:10px; font-size:16px; font-weight:bold; border-bottom:1px solid #eee; padding-bottom:5px; }
  .search-left ul { list-style:none; padding:0; margin:0 0 20px 0; max-height:400px; overflow-y:auto; }
  .search-left li { margin-bottom:10px; }
  .search-left a { text-decoration:none; color:#333; display:flex; align-items:center; padding:5px; border-radius:4px; transition:background 0.2s; }
  .search-left a:hover { background:#f2f2f2; }
  .search-right { flex:1.5; min-width:300px; }
  .product-card { display:flex; align-items:center; border:1px solid #eee; border-radius:6px; padding:10px; margin-bottom:15px; transition:0.2s; }
  .product-card:hover { box-shadow:0 3px 12px rgba(0,0,0,0.1); }
  .product-card img { width:60px; height:60px; object-fit:cover; margin-right:15px; border-radius:4px; }
  .product-card div { display:flex; flex-direction:column; }
  .product-card div div { font-size:14px; color:#555; }
  .search-bottom { margin-top:20px; text-align:right; }
  .search-bottom a { text-decoration:none; font-weight:bold; color:#111; font-size:16px; transition:color 0.2s; }
  .search-bottom a:hover { color:#007bff; }
  .search-left ul::-webkit-scrollbar, .search-right::-webkit-scrollbar { width:6px; }
  .search-left ul::-webkit-scrollbar-thumb, .search-right::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.2); border-radius:3px; }

  @media (max-width:768px) {
    .search-results-grid { flex-direction:column; }
    .search-left, .search-right { min-width:100%; }
  }

  .header-nav a:hover {
    color: #e62e2e!important;
  }

  /* 💱 Currency Selector */
  .currency-selector {
    position: relative;
  }
  .currency-toggle {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    font-weight: 600;
  }
  .currency-toggle:hover .currency-code {
    color: #007aff;
  }
  .currency-flag {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
  }

  /* ▼ Dropdown Menu */
  .currency-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    display: none;
    z-index: 9999;
    min-width: 120px;
    animation: fadeIn 0.25s ease;
  }
  .currency-dropdown.show {
    display: block;
  }
  .currency-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    color: #333;
    transition: background 0.2s, color 0.2s;
  }
  .currency-option img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
  }
  .currency-option:hover {
    background: #007aff;
    color: #fff;
  }
  .currency-option.active {
    background: #111;
    color: #fff;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }


  /* 🌐 Language Selector (Same Style as Currency) */
  .language-selector {
    position: relative;
  }
  .language-toggle {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    font-weight: 600;
  }
  .language-toggle:hover .language-code {
    color: #007aff;
  }
  .language-flag {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
  }

  /* ▼ Dropdown */
  .language-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    display: none;
    z-index: 9999;
    min-width: 200px;
    animation: fadeIn 0.25s ease;
  }
  .language-dropdown.show {
    display: block;
  }
  .language-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    color: #333;
    transition: background 0.2s, color 0.2s;
  }
  .language-option img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
  }
  .language-option:hover {
    background: #007aff;
    color: #fff;
  }
  .language-option.active {
    background: #111;
    color: #fff;
  }

  /* 🌙 Dark Mode Variable Overrides */
  /* 🌙 FULL SITE DARK MODE */
  .dark-mode {
    --header-bg-color: #111;
    --header-text-color: #ffffff;

    --footer-bg-color: #111;
    --footer-text-color: #ffffff;

    --site-bg-color: #111;
    --site-text-color: #ffffff;

    --card-bg-color: #1a1a1a;
    --card-border-color: #333;

    --menu-bg-color: #1c1c1c;
    --dropdown-bg-color: #222;

    background-color: var(--site-bg-color) !important;
    color: var(--site-text-color) !important;
  }

  /* Apply variable changes globally */
  body,
  header,
  footer,
  .main-header,
  .search-overlay-content,
  .product-card,
  .mega-menu,
  .currency-dropdown,
  .language-dropdown {
    background-color: var(--site-bg-color, #fff);
    color: var(--site-text-color, #111);
  }

  /* Product card specific */
  .product-card {
    background-color: var(--card-bg-color);
    border-color: var(--card-border-color);
  }

  /* Navigation dropdown */
  .mega-menu {
    background-color: var(--menu-bg-color);
  }

  /* Currency / Language dropdown */
  .currency-dropdown,
  .language-dropdown {
    background-color: var(--dropdown-bg-color);
    border-color: var(--card-border-color);
  }

  /* 🎤 GOOGLE STYLE MIC BUTTON */
  .voice-search-btn {
    position: absolute;
    right: 70px; /* space before close button */
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #4285f4, #34a853);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    outline: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
  }




  /* Hover effect */
  .voice-search-btn:hover {
    transform: translateY(-50%) scale(1.07);
  }

  /* SVG color */
  .voice-search-btn svg {
    fill: #fff;
  }

  /* 🎧 Pulse when listening */
  .voice-search-btn.listening {
    background: #ea4335;
    animation: micPulse 1.2s infinite ease-out;
  }

  /* Pulse animation */
  @keyframes micPulse {
    0%   { box-shadow: 0 0 0 0 rgba(234,67,53,0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(234,67,53,0); }
    100% { box-shadow: 0 0 0 0 rgba(234,67,53,0); }
  }


  .header-icons svg,
  .header-icons iconify-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    font-size: var(--icon-size);
    color: inherit;
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .header-icons a:hover svg,
  .header-icons a:hover iconify-icon,
  .header-icons button:hover svg {
    color: var(--icon-hover);
    transform: scale(1.08);
  }
/* END_SECTION:main-menu */

/* START_SECTION:main-page (INDEX:51) */
.main-page .breadcrumb {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}
.main-page h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.main-page .page-content {
  font-size: 16px;
  line-height: 1.6;
}
/* END_SECTION:main-page */

/* START_SECTION:predictive-search (INDEX:63) */
.predictive-search-suggestions { display:flex; flex-direction:column; }
.predictive-search-columns { display:flex; gap:20px; }
.predictive-search-columns > div { flex:1; }
.predictive-search-columns ul { list-style:none; padding:0; margin:0; }
.predictive-search-columns li { margin-bottom:10px; }
.predictive-search-columns img { width:50px; height:50px; object-fit:cover; margin-right:10px; vertical-align:middle; }
.predictive-search-columns a { text-decoration:none; color:#333; display:flex; align-items:center; justify-content:space-between; }
.predictive-search-bottom { margin-top:15px; }
.predictive-search-bottom a { text-decoration:none; font-weight:bold; color:#111; }
/* END_SECTION:predictive-search */

/* START_SECTION:pricing-table (INDEX:64) */
/* ---------------------------
   PRICING TABLE BASE LAYOUT
----------------------------*/
.pricing-table {
  width: 100%;
  box-sizing: border-box;
}

.pricing-heading {
  font-weight: 700;
}

/* ---------------------------
   GRID
----------------------------*/
.pricing-grid {
  display: grid;
  width: 100%;
}

/* ---------------------------
   CARD
----------------------------*/
.pricing-card {
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

.pricing-card.highlight {
  transform: scale(1.03);
  z-index: 10;
}

/* ---------------------------
   PLAN NAME
----------------------------*/
.plan-name {
  margin: 0 0 10px 0;
  line-height: 1.3;
}

/* ---------------------------
   PRICE
----------------------------*/
.plan-price {
  margin: 10px 0;
  line-height: 1;
}

.plan-period {
  display: inline-block;
  margin-left: 4px;
}

/* ---------------------------
   DESCRIPTION
----------------------------*/
.plan-description {
  margin: 15px 0;
  line-height: 1.5;
}

/* ---------------------------
   FEATURES LIST
----------------------------*/
.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan-features li {
  margin: 8px 0;
  position: relative;
  padding-left: 0;
}

/* ---------------------------
   BUTTON
----------------------------*/
.plan-btn {
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  display: inline-block;
}

.plan-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ---------------------------
   RESPONSIVE STYLES
----------------------------*/
@media (max-width: 768px) {
  .pricing-heading {
    font-size: 1.6rem !important;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 20px !important;
  }
}
/* END_SECTION:pricing-table */

/* START_SECTION:product-shipping-faqs (INDEX:70) */
.product-shipping-faqs { margin-top: 32px; }
.accordion-item { border-top: 1px solid #eee; padding: 14px 0; }
.accordion-toggle { background:none; border:none; width:100%; text-align:left; font-weight:700; font-size:16px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; }
.accordion-panel { display:none; padding-top:12px; color:#444; }
.faqs-list .faq { border-top:1px dashed #eee; padding:10px 0; }
.faq-q { background:none; border:none; text-align:left; width:100%; font-weight:600; padding:0; cursor:pointer; }
.faq-a { display:none; padding-top:8px; color:#555; }
.accordion-icon { transition: transform 0.3s ease; }
.accordion-item.active .accordion-icon { transform: rotate(180deg); }
/* END_SECTION:product-shipping-faqs */

/* START_SECTION:promo-popup (INDEX:71) */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  justify-content: center;
  align-items: center;
}
.promo-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.promo-popup__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 500px;
  margin: 0 20px;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background-color: #111;
  color: #fff;
}
.promo-popup__heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.promo-popup__text {
  font-size: 1rem;
  margin-bottom: 20px;
}
.promo-popup__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}
.promo-popup__btn:hover {
  opacity: 0.8;
}
.promo-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}
.promo-popup__checkbox {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #fff;
}
@media(max-width:480px){
  .promo-popup__content { padding: 25px 15px; }
  .promo-popup__heading { font-size: 1.5rem; }
}


.promo-popup__content {
    max-width: 700px;
    width: 100%;
    aspect-ratio: 16 / 12;
    align-content: center;
    background-position: top !important;
}
.promo-popup__checkbox {
    display: inline-block;
}
@media (max-width: 575.98px) {
    .promo-popup__content {
        aspect-ratio: 1 / 1.5;
    }
}
/* END_SECTION:promo-popup */