/** Shopify CDN: Minification failed

Line 920:10 Expected identifier but found whitespace
Line 920:12 Unexpected "{"
Line 920:21 Expected ":"
Line 920:53 Expected ":"

**/
/* ========================================
   CHUBBY'S CHOW - CUSTOM HEADER STYLES
   Client Requirements: Brand Colors + Fully Customizable
   Updated: Dropdown arrow on RIGHT side
======================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Client Brand Colors */
:root {
  /* Chubby's Chow Colors */
  --cc-brown-dark: #754c29;
  --cc-brown-light: #78512d;
  --cc-cream: #efe9e2;
  --cc-green-dark: #80ba41;
  --cc-green-light: #a1d182;
  
  /* Chubby Mascot Colors */
  --cc-grey: #a7c3ca;
  --cc-orange: #e7a853;
  
  /* Chubby's Chews */
  --cc-chews-text: #a97c51;
  
  /* Second Chance Garden */
  --cc-garden-light: #62ba46;
  --cc-garden-dark: #04733b;
  --cc-ocean-blue: #20c3f3;
  --cc-yellow: #efc31a;
  --cc-red: #b42025;
  --cc-orange-carrot: #f99e1c;
  
  /* Header Specific */
  --header-height: 90px;
  --header-height-mobile: 70px;
  --header-padding: 20px 40px;
  --header-padding-mobile: 15px 20px;
}
/* Log In / Register Button */
.header__login-btn-wrap {
  display: flex;
  align-items: center;
}

.header__login-btn {
  background: #80ba41;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.header__login-btn:hover {
  background: #6aa334;
}

/* Hide on mobile (burger menu mein already hai) */
@media (max-width: 768px) {
  .header__login-btn-wrap {
    display: none;
  }
}
/* ========================================
   ANNOUNCEMENT BAR
======================================== */

.announcement-bar {
  background: var(--cc-green-dark);
  color: white;
  text-align: center;
  padding: 12px 20px;
  position: relative;
  z-index: 1001;
}

.announcement-bar__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
}

.announcement-bar__message,
.announcement-bar__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: white;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.announcement-bar__link:hover {
  text-decoration: underline;
}

.announcement-bar__close {
  position: absolute;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.announcement-bar__close:hover {
  opacity: 0.7;
}

/* ========================================
   HEADER MAIN
======================================== */

.header {
  background: var(--cc-cream);
  position: relative;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.header__logo-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.header__logo-link {
  display: inline-block;
  max-width: 100%;
}
.header--sticky {
  position: sticky;
  top: 0;
      border-bottom: 1px solid #754c291f;
}

.header--sticky.scrolled {
  box-shadow: 0 2px 12px rgba(117, 76, 41, 0.1);
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0rem;
}

/* ========================================
   LOGO (LEFT SIDE)
======================================== */

.header__logo {
  flex-shrink: 0;
}


.header__logo-link {
  display: block;
  text-decoration: none;
}

.header__logo-image {
  display: block;
  object-fit: contain;
}

/* Text Logo (if no image) */
.header__logo-text {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.header__brand-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--cc-brown-dark);
  line-height: 1;
  letter-spacing: -0.5px;
  margin: 0;
}

.header__tagline {
  font-size: 12px; /* CLIENT REQUIREMENT: 12px NOT 15px */
  font-style: italic;
  color: var(--cc-brown-light);
  letter-spacing: 1px;
  line-height: 1;
  margin: 0;
  display: block;
}

/* ========================================
   NAVIGATION MENU (CENTER)
======================================== */

.header__nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 25px; /* 2rem spacing between items */
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu-item {
  position: relative;
}

.header__menu-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--cc-brown-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 10px 0;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

.header__menu-link:hover {
  color: var(--cc-green-dark);
}

/* Underline Animation - ONLY for regular links (no dropdown) */
.header__menu-item:not(.header__menu-item--has-dropdown) .header__menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--cc-green-dark);
  transition: width 0.3s ease;
}

.header__menu-item:not(.header__menu-item--has-dropdown) .header__menu-link:hover::after,
.header__menu-item:not(.header__menu-item--has-dropdown) .header__menu-link[aria-current="page"]::after {
  width: 100%;
}

/* ========================================
   DROPDOWN ARROW - RIGHT SIDE ✅
======================================== */

/* Add space for arrow on right */
.header__menu-item--has-dropdown > .header__menu-link {
  padding-right: 18px; /* Space for arrow */
  position: relative;
}

/* Arrow positioned on RIGHT side */
.header__menu-item--has-dropdown > .header__menu-link::after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  color: currentColor;
  transition: transform 0.3s ease;
  pointer-events: none;
}

/* Rotate arrow on hover */
.header__menu-item--has-dropdown:hover > .header__menu-link::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Active/Expanded state */
.header__menu-item--has-dropdown > .header__menu-link[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

/* ========================================
   DROPDOWN MENU
======================================== */

.header__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  min-width: auto;  /* ← YEH CHANGE KAREIN (ya line ko delete kar dein) */
  width: max-content;  /* ← YEH ADD KAREIN */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.3s ease;
  z-index: 100;
  border-top: 3px solid var(--cc-green-dark);
}

.header__menu-item:hover > .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__submenu-item {
  position: relative;
}

.header__submenu-link {
  display: block;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--cc-brown-dark);
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.header__submenu-link:hover {
  background: var(--cc-cream);
  color: var(--cc-green-dark);
  padding-left: 28px;
}

/* Third Level Dropdown (Sub-sub Menu) */
.header__submenu--third-level {
  left: 98%;
  top: 0;
  margin-left: 5px;
}

.header__submenu-item--has-submenu > .header__submenu-link::after {
  content: '→';
  float: right;
  margin-left: 12px;
  font-size: 12px;
}

.header__submenu-item:hover > .header__submenu--third-level {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}.header__submenu--third-level .header__submenu-item--has-submenu:hover > .header__submenu--fourth-level {
  opacity: 1 !important;
  pointer-events: all !important;
  transform: translateX(0) !important;
  visibility: visible !important;
}
/* Fourth level - Life Stages dropdown position fix */
.header__submenu--fourth-level {
  position: absolute;
  left: 101%;
  top: -8px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  visibility: hidden;
  z-index: 999;
}

.header__submenu--third-level .header__submenu-item--has-submenu {
  position: relative;
}

.header__submenu--third-level .header__submenu-item--has-submenu:hover > .header__submenu--fourth-level {
  opacity: 1 !important;
  pointer-events: all !important;
  transform: translateX(0) !important;
  visibility: visible !important;
}

/* Fourth level links styling */
.header__submenu--fourth-level .header__submenu-link {
  padding: 11px 20px;
  font-size: 14px;
  color: #3a3a3a;
  display: block;
  transition: background 0.15s, color 0.15s;
}

.header__submenu--fourth-level .header__submenu-link:hover {
  background: #f4f9f1;
  color: #7a9e6e;
}
/* ========================================
   ICONS (RIGHT SIDE)
======================================== */

.header__icons {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__icon {
  width: 40px;
  height: 30px;
  color: var(--cc-brown-dark);
  transition: color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  background:transparent;
  border:none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header__icon:hover {
  color: var(--cc-green-dark);
  transform: scale(1.1);
}

.header__icon svg {
  width: 100%;
  height: 100%;
}

/* Cart Count Badge */
.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--cc-green-dark);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.cart-count-badge.hidden {
  display: none;
}

/* ========================================
   ACCOUNT DROPDOWN (LOGGED IN)
======================================== */

.header__account-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.3s ease;
  z-index: 100;
  border-top: 3px solid var(--cc-green-dark);
}

.header__icon--account:hover .header__account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__account-name {
  padding: 0 20px 12px;
  margin: 0 0 8px;
  border-bottom: 1px solid var(--cc-cream);
  font-size: 16px;
  font-weight: 600;
  color: var(--cc-brown-dark);
}

.header__account-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__account-menu li {
  margin: 0;
}

.header__account-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--cc-brown-dark);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: all 0.2s ease;
}

.header__account-menu a:hover {
  background: var(--cc-cream);
  color: var(--cc-green-dark);
  padding-left: 24px;
}

.header__account-menu a.account-subscription {
  color: var(--cc-green-dark);
  font-weight: 600;
}

/* ========================================
   SEARCH DRAWER
======================================== */

.search-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(117, 76, 41, 0.9);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-drawer.active {
  opacity: 1;
  visibility: visible;
}

.search-drawer__wrapper {
  width: 100%;
  max-width: 600px;
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
}

.search-drawer.active .search-drawer__wrapper {
  transform: translateY(0);
}

.search-drawer__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.2s ease;
}

.search-drawer__close:hover {
  opacity: 0.7;
}

.search-drawer__form {
  display: flex;
  gap: 10px;
  background: white;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-drawer__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--cc-brown-dark);
  background: transparent;
}

.search-drawer__input::placeholder {
  color: var(--cc-brown-light);
  opacity: 0.6;
}

.search-drawer__submit {
  width: 50px;
  height: 50px;
  background: var(--cc-green-dark);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-drawer__submit:hover {
  background: var(--cc-brown-dark);
  transform: scale(1.05);
}

/* ========================================
   MOBILE NAVIGATION
======================================== */

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: white;
  z-index: 10000;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav__wrapper {
  padding: 20px;
}

.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--cc-cream);
}

.mobile-nav__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--cc-brown-dark);
}

.mobile-nav__close {
  background: transparent;
  border: none;
  color: var(--cc-brown-dark);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.mobile-nav__close:hover {
  color: var(--cc-green-dark);
}

.mobile-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--cc-cream);
}

/* MOBILE MENU - ICON RIGHT SIDE ✅ */
.mobile-nav__link {
  display: flex;
  justify-content: space-between; /* TEXT LEFT, ICON RIGHT */
  align-items: center;
  padding: 16px 0;
  color: var(--cc-brown-dark);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
  width: 100%;
}

.mobile-nav__link:hover {
  color: var(--cc-green-dark);
}

/* Text wrapper (left side) */
.mobile-nav__link-text {
  flex: 1;
  text-align: left;
}

/* Toggle icon (RIGHT side) */
.mobile-nav__toggle {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--cc-green-dark);
  flex-shrink: 0;
  margin-left: 12px;
  min-width: 20px;
  text-align: right;
  font-weight: 300;
}

/* Plus/Minus toggle */
.mobile-nav__toggle::before {
  content: '+';
  display: block;
}

.mobile-nav__item.open .mobile-nav__toggle::before {
  content: '−';
}

/* Alternative: Rotate animation */
.mobile-nav__item.open .mobile-nav__toggle {
  transform: rotate(45deg);
}

/* Submenu styling */
.mobile-nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 10px 20px;
  display: none;
  background: rgba(128, 186, 65, 0.05);
  border-left: 2px solid var(--cc-green-light);
  margin-left: 10px;
  margin-top: 8px;
}



.mobile-nav__submenu--third {
  padding-left: 16px;
  display: none;
}

.mobile-nav__submenu-item--has-submenu.active .mobile-nav__submenu--third {
  display: block;
}

.mobile-nav__submenu-link--indent {
  padding-left: 20px;
  font-size: 13px;
  color: #888;
}
















.mobile-nav__item.open .mobile-nav__submenu {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav__submenu-item {
  margin: 0;
}

.mobile-nav__submenu-link {
  display: block;
  padding: 12px 0 12px 10px;
  color: var(--cc-brown-light);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-nav__submenu-link::before {
  content: '•';
  position: absolute;
  left: -8px;
  color: var(--cc-green-dark);
}

.mobile-nav__submenu-link:hover {
  color: var(--cc-green-dark);
  padding-left: 14px;
}

/* Mobile Account Section */
.mobile-nav__account {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid var(--cc-cream);
}

.mobile-nav__account-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--cc-brown-dark);
  margin: 0 0 15px;
}

.mobile-nav__account-link {
  display: block;
  padding: 12px 0;
  color: var(--cc-brown-dark);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  transition: color 0.2s ease;
}

.mobile-nav__account-link:hover {
  color: var(--cc-green-dark);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */

@media screen and (max-width: 989px) {
  
  :root {
    --header-padding: 15px 20px;
  }

  /* Hide desktop menu */
  .header__nav {
    display: none;
  }
.header__logo-image {
    width: {{ section.settings.logo_width_mobile }}px !important;
  }
  /* Show mobile menu icon */
  .header__icon--menu {
    display: flex !important;
  }

  /* Logo adjustments */
  .header__logo img {
    max-width: 215px !important;
    margin-left:20px;
  }

  .header__brand-name {
    font-size: 24px;
  }

  .header__tagline {
    font-size: 10px;
  }

  /* Icons spacing */
  .header__icons {
    gap: 5px;
  }

  .header__icon {
    width: 40px;
    height: 22px;
  }

  /* Hide account dropdown on mobile */
  .header__account-dropdown {
    display: none;
  }
}

@media screen and (min-width: 990px) {
  
  /* Hide mobile menu icon on desktop */
  .header__icon--menu {
    display: none;
  }
  
  .mobile-only {
    display: none !important;
  }
}

/* ========================================
   UTILITY CLASSES
======================================== */

.hidden {
  display: none !important;
}

.page-width {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Scrolled State */
.scrolled {
  box-shadow: 0 2px 12px rgba(117, 76, 41, 0.1);
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
======================================== */

/* Focus states for keyboard navigation */


/* Skip to main content link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--cc-green-dark);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10001;
}

.skip-to-content:focus {
  top: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}