/** Shopify CDN: Minification failed

Line 448:8 Expected identifier but found whitespace
Line 448:10 Unexpected "{"
Line 448:19 Expected ":"
Line 455:8 Expected identifier but found whitespace
Line 455:10 Unexpected "{"
Line 455:19 Expected ":"
Line 475:10 Expected identifier but found "{"
Line 475:11 Unexpected "{"
Line 475:20 Expected ":"

**/
/* START_SECTION:custom-header (INDEX:12) */
/* =========================
TOP MARQUEE
========================= */

.top-marquee{
  width:100%;
  background:#000;
  overflow:hidden;
  white-space:nowrap;
  padding:10px 0;
}

.top-marquee-track{
  display:inline-block;
  white-space:nowrap;
  animation:marquee 25s linear infinite;
}

.top-marquee span{
  color:#fff;
  font-size:14px;
  font-weight:600;
  margin-right:120px;
  letter-spacing:.5px;
}

@keyframes marquee{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* =========================
HEADER
========================= */

.custom-header{
  width:100%;
  background:#f5f5f5;
  border-bottom:1px solid #ececec;
  position:relative;
   z-index:20;
}

.custom-header-wrapper{
  max-width:1200px;
  margin:auto;
  padding:18px 40px;
}

/* =========================
SEARCH OVERLAY
========================= */

.search-overlay{
  position:fixed;
  inset:0;
  background:rgba(255,255,255,.98);
  display:none;
  align-items:flex-start;
  justify-content:center;
  padding-top:120px;
  z-index:99999;
}

.search-overlay.active{
  display:flex;
}

.search-box-wrapper{
  width:100%;
  max-width:900px;
  display:flex;
  align-items:center;
  gap:20px;
  padding:0 20px;
}

.search-form{
  flex:1;
  position:relative;
}

.search-input{
  width:100%;
  height:60px;
  border:none !important;
  background:transparent;
  padding:0 65px 0 22px;
  font-size:14px;
  outline:none;
  letter-spacing:1px;
  text-transform:uppercase;
}

.search-submit{
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}

.search-submit svg,
.close-search svg{
  width:24px;
  height:24px;
  stroke-width:1.8;
}

.close-search{
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* =========================
TOP AREA
========================= */

.custom-top-header{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  min-height:80px;
  position:relative;
}

/* LEFT */

.header-left{
  display:flex;
  align-items:center;
  gap:20px;
  justify-content:flex-start;
}

/* RIGHT */

.header-right{
  display:flex;
  align-items:center;
  gap:20px;
  justify-content:flex-end;
}

/* LOGO */

.header-logo{
  display:flex;
  align-items:center;
  justify-content:center;
}

.header-logo a{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.header-logo img{
  max-width:180px;
  width:auto;
  height:auto;
  display:block;
}

/* ICONS */

.custom-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  cursor:pointer;
  transition:.3s;
  text-decoration:none;
}

.custom-icon:hover{
  opacity:.65;
}

.custom-icon svg{
  width:24px;
  height:24px;
  stroke-width:1.7;
}

/* =========================
NAVBAR
========================= */

.custom-navbar{
  margin-top:20px;
}

.custom-navbar ul{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:34px;
  list-style:none;
  padding:0;
  margin:0;
}

.custom-navbar ul li{
  position:relative;
}

.custom-navbar ul li a{
  text-decoration:none;
  color:#111;
  font-size:14px;
  font-weight:500;
  letter-spacing:1px;
  display:flex;
  align-items:center;
  gap:6px;
  transition:.3s;
}

.custom-navbar ul li a:hover{
  opacity:.7;
}

/* =========================
DESKTOP DROPDOWN FIX
========================= */
/* =========================
FINAL DESKTOP DROPDOWN SPACING
========================= */

.custom-dropdown{
  position:absolute;
  top:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%);
  min-width:250px;
  background:#fff;
  padding:6px 10px; /* top-bottom | left-right */
  margin:0;
  list-style:none;
  display:none !important;
  flex-direction:column;
  border-radius:16px;
  border:1px solid #ececec;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  z-index:999;
}

.custom-navbar li:hover .custom-dropdown{
  display:flex !important;
}

.custom-dropdown::before{
  content:"";
  position:absolute;
  top:-6px;
  left:50%;
  transform:translateX(-50%) rotate(45deg);
  width:12px;
  height:12px;
  background:#fff;
  border-left:1px solid #ececec;
  border-top:1px solid #ececec;
}

.custom-dropdown li{
  width:100%;
  margin:0;
  padding:0;
}

.custom-dropdown li a{
  display:block;
  width:100%;
  padding:7px 14px !important; /* item spacing */
  margin:0 !important;
  font-size:13px !important;
  letter-spacing:.3px !important;
  line-height:1.1 !important;
  color:#111;
  text-align:left;
  border-radius:10px;
  transition:.25s ease;
}

.custom-dropdown li a:hover{
  background:#f7f7f7;
  padding-left:18px !important;
}
/* =========================
MOBILE
========================= */

.mobile-menu-btn{
  display:none;
  cursor:pointer;
}

.mobile-menu-btn svg{
  width:28px;
  height:28px;
}

.mobile-menu{
  display:none;
}

@media(max-width:990px){

  .custom-header-wrapper{
    padding:15px 18px;
  }

  .custom-top-header{
    grid-template-columns:auto 1fr auto;
    gap:10px;
    min-height:auto;
  }

  .mobile-menu-btn{
    display:flex;
    align-items:center;
  }

  .header-left{
    gap:14px;
  }

  .header-right{
    gap:14px;
  }

  .header-logo{
    justify-content:center;
  }

  .header-logo img{
    max-width:120px;
  }

  .custom-navbar{
    display:none;
  }

  .mobile-menu{
    display:none;
    margin-top:18px;
    border-top:1px solid #ddd;
    padding-top:10px;
  }

  .mobile-menu.active{
    display:block;
  }

  .mobile-menu ul{
    list-style:none;
    padding:0;
    margin:0;
  }

  .mobile-menu li{
    border-bottom:1px solid #eee;
  }

  .mobile-menu li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    text-decoration:none;
    color:#111;
    font-size:14px;
  }

  .mobile-submenu{
    display:none;
    padding-left:15px;
    padding-bottom:10px;
  }

  .mobile-submenu.active{
    display:block;
  }

  .mobile-submenu a{
    font-size:13px !important;
    color:#555 !important;
    padding:8px 0 !important;
  }

  .search-overlay{
    padding-top:90px;
  }

  .search-input{
    height:54px;
    font-size:13px;
  }

}
/* END_SECTION:custom-header */
/* START_SECTION:offer-banner (INDEX:46) */
.offer-banner-section {
  padding: 40px 20px;
}

.offer-banner {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #d9ddea;
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.offer-banner__heading {
  font-size: 42px;
  font-weight: 700;
  color: {{ section.settings.heading_color }};
  margin: 0 0 12px;
  line-height: 1.2;
}

.offer-banner__text {
  font-size: 18px;
  color: {{ section.settings.text_color }};
  margin-bottom: 28px;
}

.offer-banner__badges{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:20px;
}

.offer-banner__badge{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 20px;
    border-radius:999px;
    background:linear-gradient(180deg,#ffffff,#f6f8ff);
    border:1px solid #d8dff5;
    color:{{ section.settings.badge_text }};
    font-size:15px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 6px 16px rgba(53,88,181,.08);
}

.offer-banner__badge svg{
    flex-shrink:0;
    color:#4F7BFF;
}

.offer-banner__badge:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(53,88,181,.15);
}

@media (max-width: 768px) {
  .offer-banner {
    padding: 35px 20px;
    border-radius: 18px;
  }

  .offer-banner__heading {
    font-size: 30px;
  }

  .offer-banner__text {
    font-size: 15px;
  }

  .offer-banner__badge {
    width: 100%;
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .offer-banner__heading {
    font-size: 24px;
  }

  .offer-banner__text {
    font-size: 14px;
  }
}
/* END_SECTION:offer-banner */
