/** Shopify CDN: Minification failed

Line 179:4 Unexpected "{"
Line 179:5 Expected identifier but found "%"
Line 179:38 Unexpected "{"
Line 179:39 Expected identifier but found "%"
Line 197:4 Unexpected "{"
Line 197:5 Expected identifier but found "%"
Line 197:38 Unexpected "{"
Line 197:39 Expected identifier but found "%"

**/
/* @import url('https://fonts.googleapis.com/css2?family=Fustat:wght@200..800&display=swap'); */


  /* ============================================================
     CSS VARIABLES
  ============================================================ */
  .vsn-header-root {
    --vsn-blue:          #17347B;
    --vsn-green:         #427336;
    --vsn-white:         #FFFFFF;
    --vsn-black:         #000000;
    --vsn-star-color:    #F5A623;
    --vsn-btn-bg:        #F5A623;
    --vsn-btn-text:      #000000;
    --vsn-topbar-bg:     #4A5C2F;
    --vsn-nav-text:      #FFFFFF;
    --vsn-font-body:     'Fustat', sans-serif;
    --vsn-pill-width:    1330px;
    --vsn-pill-height:   60px;
    --vsn-pill-top:      25px;
    --vsn-pill-radius:   60px;
    --vsn-transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ============================================================
     ROOT WRAPPER
     Sits at top of page, full width, no overflow clip
     so the floating pill can be centered
  ============================================================ */
  .vsn-header-root {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    font-family: var(--vsn-font-body);
    pointer-events: none; /* allow clicks to pass through gap areas */
  }

  /* ============================================================
     TOP ANNOUNCEMENT BAR
  ============================================================ */
  .vsn-header-topbar {
    width: 100%;
    background-color: var(--vsn-topbar-bg);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: height var(--vsn-transition), opacity var(--vsn-transition);
  }

  /* Hide topbar when scrolled */

  .vsn-header-root.is-scrolled .vsn-header-topbar {
    height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .vsn-header-topbar__inner {
    width: 100%;
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  /* Each announcement item */
  .vsn-header-topbar__item {
    display: flex;
    align-items: center;
    gap: 7px;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
  }

  .vsn-header-topbar__item:first-child { justify-content: flex-start; }
  .vsn-header-topbar__item:last-child  { justify-content: flex-end; }

  .vsn-header-topbar__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .vsn-header-topbar__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
  }

  .vsn-header-topbar__star {
    width: 10px;
    height: 10px;
    fill: var(--vsn-star-color);
  }

  .vsn-header-topbar__text {
    font-family: var(--vsn-font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--vsn-white);
  }

  .vsn-header-topbar__divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
  }

  /* ============================================================
     MAIN HEADER OUTER WRAP
     Controls position: floating vs stuck
  ============================================================ */
  .is-homepage .vsn-header-main-outer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: var(--vsn-pill-top);
    box-sizing: border-box;
    pointer-events: none;
    transition: padding-top var(--vsn-transition);
}
.is-inner-page .vsn-header-main-outer {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    pointer-events: none;
    transition: padding-top var(--vsn-transition);
}
  /* When scrolled: no top padding, flush to top */
  .vsn-header-root.is-scrolled .vsn-header-main-outer {
    padding-top: 0;
  }

  /* ============================================================
     MAIN HEADER — the pill itself
  ============================================================ */
  .is-homepage .vsn-header-main {
    width: var(--vsn-pill-width);
    max-width: calc(100% - 110px); /* 55px each side gutter */
    height: var(--vsn-pill-height);
    background: var(--vsn-blue);
    border-radius: var(--vsn-pill-radius);
    display: flex;
    align-items: center;
    pointer-events: all;
    box-sizing: border-box;
    transition:
      width var(--vsn-transition),
      max-width var(--vsn-transition),
      border-radius var(--vsn-transition),
      box-shadow var(--vsn-transition);
    box-shadow: 0 4px 24px rgba(23, 52, 123, 0.25);
    {% comment %} overflow-x: hidden; {% endcomment %}
  }
  .is-inner-page .vsn-header-main {
    width: 100%;
    max-width: 100%; /* 55px each side gutter */
    height: var(--vsn-pill-height);
    background: var(--vsn-blue);
    border-radius: 0px;
    display: flex;
    align-items: center;
    pointer-events: all;
    box-sizing: border-box;
    transition:
      width var(--vsn-transition),
      max-width var(--vsn-transition),
      border-radius var(--vsn-transition),
      box-shadow var(--vsn-transition);
    box-shadow: 0 4px 24px rgba(23, 52, 123, 0.25);
    {% comment %} overflow-x: hidden; {% endcomment %}
  }

  /* When scrolled: full width, no radius */
.vsn-header-root.is-scrolled .vsn-header-main {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  box-shadow: 0 2px 16px rgba(23, 52, 123, 0.18);
}

/* Inner layout: 3-column grid */
.vsn-header-main__inner {
    width: 1330px;
    max-width: 100%;
    margin: auto;
    max-width: 100%;
    padding: 0 8px 0 37px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

/* LEFT NAV */
.vsn-header-main__nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.vsn-header-main__nav-link {
  font-family: var(--vsn-font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--vsn-white);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.vsn-header-main__nav-link:hover {
  opacity: 1;
}

/* NAV ITEM */
.vsn-header-main__nav-item {
     display: flex;
  align-items: center;
  position: unset;
 
}

.menu_wrapper_mega {
    width: 100%;
}
/* ARROW */
.vsn-header-main__nav-arrow svg {
  width: 10px;
  height: 10px;
  stroke: var(--vsn-white);
  fill: none;
  stroke-width: 2;
}

/* =========================
   MEGA MENU
========================= */
.mega-menu
 {
    position: absolute;
    left: 0;
    right: 0px;
    max-width: 100%;
    width: 1900px;
    background: #f8f6ef;
    border-radius: 0px 0px 20px 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
   display: none;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}

/* Show active mega menu */
.vsn-header-main__nav-item.active .mega-menu {
  display: block;
}

/* Mega menu layout */
.mega-menu__wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
      width: 1200px;
    margin: auto;
}

/* LEFT SIDEBAR */
.mega-menu__sidebar {
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.mega-menu__menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu__menu-link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e5e5e5;
  transition: color 0.2s ease;
}

.mega-menu__menu-link:hover {
  color: #17347B;
}

/* RIGHT PRODUCTS */
.mega-menu__products {
  position: relative;
}

/* Hidden by default */
.mega-menu__product-group {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Active product collection */
.mega-menu__product-group.active {
  display: grid;
}

.mega-menu__product-card {
  text-decoration: none;
  color: #000;
}

.mega-menu__product-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #fff;
  padding: 15px;
  display: block;
}

.mega-menu__product-card p {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* OPTIONAL SIMPLE DROPDOWN */
.vsn-header-main__dropdown-inner {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  min-width: 180px;
}

.vsn-header-main__dropdown-link {
  display: block;
  padding: 10px 18px;
  font-family: var(--vsn-font-body);
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}

.vsn-header-main__dropdown-link:hover {
  background: #f5f5f5;
  color: var(--vsn-green);
}

  /* ── LOGO CENTER ── */
  .vsn-header-main__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 8px;
    flex-shrink: 0;
  }

  .vsn-header-main__logo-icon {
    width: 166px;
    height: 29px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .vsn-header-main__logo-text {
    font-family: var(--vsn-font-body);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--vsn-white);
    text-transform: uppercase;
  }

  /* ── RIGHT: Shop Now button ── */
  .vsn-header-main__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

 .vsn-header-main__btn-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 46px;
    padding: 0 30px;
    border-radius: 9999px;
    background: #D1A02F;
    border: none;
    font-family: var(--vsn-font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--vsn-btn-text);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
    box-sizing: border-box;
  }

  .vsn-header-main__btn-shop:hover {
    opacity: 0.88;
  }

  .vsn-header-main__btn-shop-icon {
    display: flex;
    align-items: center;
  }

  /* Hamburger — hidden desktop */
  .vsn-header-main__hamburger {
    display: none;
  }


  /* ============================================================
     MOBILE DRAWER
  ============================================================ */
  .vsn-header-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
  }

  .vsn-header-drawer.is-open {
    display: block;
  }

  .vsn-header-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
  }

  .vsn-header-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color:#17347B;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    box-sizing: border-box;
    overflow-y: auto;
  }

  .vsn-header-drawer__close {
    display: flex;
    justify-content: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 32px;
    padding: 0;
  }

  .vsn-header-drawer__close svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
  }

  .vsn-header-drawer__nav {
    display: flex;
    flex-direction: column;
  }

  .vsn-header-drawer__nav-link {
    font-family: var(--vsn-font-body);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.92;
  }

  .vsn-header-drawer__btn-shop {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    width: 100%;
    border-radius: 9999px;
    background: #F5A623;
    border: none;
    font-family: var(--vsn-font-body);
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    margin-top: 28px;
  }

  /* ============================================================
     BODY PADDING — so page content isn't hidden under header
  ============================================================ */
  .vsn-header-page-offset {
    height: calc(36px + var(--vsn-pill-top) + var(--vsn-pill-height));
  }



@media screen and (max-width:1025px){
  .vsn-header-main__inner{
   padding:0 8px 0px 17px;
  }
  .vsn-header-main__nav-left{
    gap:11px;
  }
  .vsn-header-main__nav-link,
  .vsn-header-topbar__text{
    font-size:12px;
  }
  .vsn-header-main__logo-icon{
    width:130px;
  }
  .vsn-header-main__btn-shop{
    font-size:13px;
  }
}
  /* ============================================================
     MOBILE — max-width: 749px
  ============================================================ */
@media screen and (max-width: 768px) {

  /* ROOT */
  .vsn-header-root {
    position: fixed;
  }

  /* ── TOPBAR: becomes a SLIDER on mobile ── */
  .vsn-header-topbar__inner {
    padding: 0;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  /* Hide static items and dividers — slider handles display */
  .vsn-header-topbar__item,
  .vsn-header-topbar__divider {
    display: none;
  }

  /* Slider track */
  .vsn-header-topbar__slider {
    display: flex !important;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .vsn-header-topbar__slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .vsn-header-topbar__slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .vsn-header-topbar__slide-text {
    font-family: var(--vsn-font-body);
    font-weight: 400;
    font-size: 12px;
    color: var(--vsn-white);
    text-align: center;
  }

  .vsn-header-topbar__slide-stars {
    display: flex;
    gap: 2px;
  }

  .vsn-header-topbar__slide-star {
    width: 10px;
    height: 10px;
    fill: var(--vsn-star-color);
  }

  /* PILL: smaller on mobile */
  .is-homepage .vsn-header-main-outer {
    padding-top: 0px;
  }

  .vsn-header-root.is-scrolled .vsn-header-main-outer {
    padding-top: 0;
  }

  .is-homepage .vsn-header-main {
    max-width: 100%;
    height: 52px;
    border-radius:0px
  }

  .vsn-header-root.is-scrolled .vsn-header-main {
    max-width: 100%;
    border-radius: 0;
  }

  .vsn-header-main__inner {
    padding: 0 10px;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }

  /* Logo left on mobile */
  .vsn-header-main__logo-wrap {
    justify-content: flex-start;
  }

  /* Hide desktop nav */
  .vsn-header-main__nav-left {
    display: none;
  }

  /* Hide shop now button desktop */


  /* Show hamburger */
  .vsn-header-main__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    pointer-events: all;
  }

  .vsn-header-main__hamburger svg {
    width: 22px;
    height: 22px;
    stroke: var(--vsn-white);
    stroke-width: 2;
    fill: none;
  }
  .vsn-header-page-offset {
    height: auto;
  }
  .vsn-header-main__logo-icon {
    width: 122px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .vsn-header-main__btn-shop
  {
    height: 30px;
    padding: 0 15px;
    font-size: 14px
  }
  .vsn-header-main {
    border-radius: 0px;
    max-width: 100%;
    height: 52px
  }
  .vsn-header-drawer__nav-link{
    width:100%;
  }
}
