/** Shopify CDN: Minification failed

Line 306:0 Expected "}" to go with "{"

**/
/**
 * JULEPS HEADER - Custom Header Styles
 * 
 * Design: Pixel-perfect from Figma
 * Background: Crème #FCF6F3
 * Layout: Logo left, Nav center-right, Actions right
 */

/* ========================================
   HEADER CONTAINER
   ======================================== */

.header-wrapper {
  position: sticky !important;
  top: 0;
  z-index: var(--juleps-z-sticky);
}

.juleps-header {
  background-color: #FCF6F3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
}

.juleps-header__container {
  max-width: var(--juleps-container-max-width);
  margin: 0 auto;
  padding: var(--juleps-spacing-6) var(--juleps-container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--juleps-spacing-8);
}

/* ========================================
   LOGO
   ======================================== */

.juleps-header__logo {
  flex-shrink: 0;
}

.juleps-header__logo-link {
  display: block;
  line-height: 0;
}

.juleps-header__logo-image {
  display: block;
  height: auto;
  max-height: 88px;
  width: auto;
}

/* ========================================
   NAVIGATION DESKTOP
   ======================================== */

.juleps-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: var(--juleps-spacing-10);
}

.juleps-header__menu {
  display: flex;
  align-items: center;
  gap: var(--juleps-spacing-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.juleps-header__menu-item {
  margin: 0;
}

.juleps-header__menu-link {
  font-family: var(--juleps-font-primary);
  font-size: 20px;
  font-weight: var(--juleps-font-weight-semibold);
  letter-spacing: -0.02em;
  color: var(--juleps-black);
  text-decoration: none;
  transition: color var(--juleps-transition-fast);
  padding: var(--juleps-spacing-2) 0;
  display: block;
}

.juleps-header__menu-link:hover {
  color: var(--juleps-green-dark);
}

/* ========================================
   ACTIONS (Panier + Compte)
   ======================================== */

.juleps-header__actions {
  display: flex;
  align-items: center;
  gap: var(--juleps-spacing-3);
  flex-shrink: 0;
}

/* Panier */
.juleps-header__cart {
  display: block;
  text-decoration: none;
  position: relative;
}

.juleps-header__cart-icon-wrapper {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--juleps-orange);
  background-color: transparent;
  transition: all var(--juleps-transition-fast);
}

.juleps-header__cart:hover .juleps-header__cart-icon-wrapper {
  background-color: var(--juleps-orange-lightest);
}

.juleps-header__cart-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.juleps-header__cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--juleps-orange);
  color: var(--juleps-white);
  font-family: var(--juleps-font-primary);
  font-size: 12px;
  font-weight: var(--juleps-font-weight-semibold);
  line-height: 1;
  padding: 4px 6px;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Compte */
.juleps-header__account {
  display: block;
  text-decoration: none;
}

.juleps-header__account-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--juleps-green-dark);
  color: var(--juleps-white);
  transition: background-color var(--juleps-transition-fast);
}

.juleps-header__account:hover .juleps-header__account-icon {
  background-color: var(--juleps-green-darker);
}

/* Menu burger mobile */
.juleps-header__menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--juleps-spacing-2);
  cursor: pointer;
  color: var(--juleps-green-dark);
}

/* ========================================
   MENU MOBILE
   ======================================== */

.juleps-header__mobile-menu {
  display: none;
  background-color: #FCF6F3;
  border-top: 1px solid rgba(62, 71, 30, 0.1);
  padding: 20px 0;
}

.juleps-header__mobile-menu.is-open {
  display: block;
}

.juleps-header__mobile-nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.juleps-header__mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.juleps-header__mobile-menu-item {
  margin: 0;
  border-bottom: 1px solid rgba(62, 71, 30, 0.1);
}

.juleps-header__mobile-menu-item:last-child {
  border-bottom: none;
}

.juleps-header__mobile-menu-link {
  display: block;
  padding: 20px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #3E471E;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.juleps-header__mobile-menu-link:hover {
  opacity: 0.7;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablette */
@media (max-width: 989px) {
  .juleps-header__container {
    padding: var(--juleps-spacing-5) var(--juleps-container-padding);
  }

  .juleps-header__logo-image {
    max-height: 70px;
  }

  .juleps-header__nav {
    padding-right: var(--juleps-spacing-6);
  }

  .juleps-header__menu {
    gap: var(--juleps-spacing-5);
  }

  .juleps-header__cart-icon-wrapper,
  .juleps-header__account-icon {
    width: 48px;
    height: 48px;
  }
}

/* Mobile */
@media (max-width: 749px) {
  .juleps-header__container {
    padding: var(--juleps-spacing-4) var(--juleps-container-padding);
  }

  .juleps-header__nav {
    display: none !important;
  }

  .juleps-header__menu-toggle {
    display: block;
  }

  .juleps-header__logo-image {
    max-height: 60px;
  }

  .juleps-header__cart-icon-wrapper,
  .juleps-header__account-icon {
    width: 44px;
    height: 44px;
  }

  .juleps-header__cart-icon {
    width: 22px;
    height: 22px;
  }

  .juleps-header__account-icon svg {
    width: 22px;
