/** Shopify CDN: Minification failed

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

**/
.site-header {
    padding-top : 0;
    padding-bottom : 0;

}

/* =========================================================
   Iron Oak Header System — FINAL (Drop-in)
   ========================================================= */

/* ---------- Header Base ---------- */

.io-header {
  position: relative;
  z-index: 600;
  background: #2E241B;
}

.io-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
}


/* ---------- Nav ---------- */

.io-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
  align-items: center;
}

.io-nav-item {
  list-style: none;
  position: static; /* IMPORTANT: anchor mega to header, not item */
}

/* underline */
.io-nav-link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #000000;
  margin-top: 6px;
  transition: width .25s ease;
}

.io-nav-item:hover .io-nav-link::after {
  width: 100%;
}

/* ---------- Mega Menu Shell (FINAL FIX) ---------- */

.io-mega-shell {
  position: absolute;
  top: calc(100% + 12px);

  /* anchor to header container */
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;

  width: 100%;
  max-width: var(--page-width);

  z-index: 500;

  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;

  box-sizing: border-box;
  padding-left: max(env(safe-area-inset-left), 0px);
  padding-right: max(env(safe-area-inset-right), 0px);
}

.io-nav-item.is-active .io-mega-shell {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Mega Menu Surface ---------- */

/* ---------- Mega Menu Surface (Texture System) ---------- */

.io-mega-surface {
  position: relative; /* Essential for layering */
  z-index: 1;
  overflow: hidden; /* Keeps texture inside rounded corners */
  
  /* Base Color (Fallback to your current color if variables missing) */
  background-color: var(--io-mega-bg, #F6F2EA); 
}

/* Texture Layer 1: Paper Grain (Base) */
.io-mega-surface::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  
  /* Pulls image from Liquid schema */
  background-image: var(--io-mega-tex-1); 
  background-repeat: repeat;
  background-size: auto; /* 'auto' keeps the grain natural size */
  
  /* Pulls opacity from slider */
  opacity: var(--io-mega-op-1); 
  
  pointer-events: none;
  z-index: -2;
  mix-blend-mode: multiply; /* Blends texture INTO the paper color */
}

/* Texture Layer 2: Dirt/Grunge (Detail) */
.io-mega-surface::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  
  /* Pulls image from Liquid schema */
  background-image: var(--io-mega-tex-2);
  background-repeat: repeat;
  background-size: cover; /* Stretches dirt across the menu */
  
  /* Pulls opacity from slider */
  opacity: var(--io-mega-op-2);
  
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay; /* Adds highlights/scratches without darkening too much */
}

/* ---------- Mega Layout ---------- */



/* ---------- Text Columns ---------- */

.io-mega-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; /* Bold headers */
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.io-mega-heading a {
  text-decoration: none; /* Remove default browser underline */
  color: inherit;
  transition: opacity 0.2s ease;
}

.io-mega-heading a:hover {
  text-decoration: underline;
  text-underline-offset: 4px; /* Pushes the underline down slightly for a clean look */
  text-decoration-thickness: 2px; /* OPTIONAL: matches your bold font weight */
}

.io-mega-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; /* Regular weight for sub-links */
  display: block;
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 6px 0;
  color: #333; /* Soft black */
}

.io-mega-link:hover {
  text-decoration: underline;
}

/* ---------- Image Cards ---------- */

.io-mega-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.io-mega-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
  transition: transform .25s ease, box-shadow .25s ease;
}

.io-mega-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.18);
}

.io-mega-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.io-mega-card-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(20,20,20,0.65);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

/* ---------- Height Lock ---------- */

.io-nav-item[data-mega="shop"] .io-mega-inner,
.io-nav-item[data-mega="discover"] .io-mega-inner {
  min-height: 420px;
}

/* ---------- Header Logo & Icons ---------- */

.io-header-logo {
  text-align: center;
      padding: 15px;
}

.io-header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

/* ---------- Mobile ---------- */

@media (max-width: 989px) {
  .io-mega-shell {
    display: none;
  }
}

/* ===== HEADER HEIGHT TIGHTENING ===== */

/* Reduce overall header height */
.io-header-inner {
  min-height: 64px; /* was ~88px */
  padding-top: 0;
  padding-bottom: 0;
}

/* Tighten logo vertical padding (if any) */
.io-header-logo img {
  display: block;
  margin: 0 auto;
}

/* Tighten icon hit area without breaking usability */
.io-header-icons {
  align-items: center;
}

.io-header-icon,
.io-header-icons a {
  padding: 0px;
}

/* ===== REMOVE GAP BELOW HEADER ===== */

/* Kill any section spacing under header */
.shopify-section-header,
.shopify-section-group-header-group {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Ensure header itself has no bottom spacing */
.io-header {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Pull mega menu tight to header */
.io-mega-shell {
  top: 100%;
}
/* ===== MEGA MENU IMAGE GRID FIX ===== */

/* Force all 3 cards into one row */
.io-mega-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Lock card height */
.io-mega-card {
  height: 260px; /* adjust to taste: 240–280 sweet spot */
  display: block;
}

/* Ensure images fill evenly */
.io-mega-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keep labels consistent */
.io-mega-card-label {
  pointer-events: none;
}
.io-mega-card {
  height:280px;
}

/* Safety: prevent parent wrappers from breaking sticky */
.header-wrapper,
.header-sticky-wrapper,
.shopify-section-header-group {
  overflow: visible !important;
}
/* =========================================
   JS Sticky Header (Impulse-safe)
   ========================================= */


/* Spacer prevents layout jump */
.io-header-spacer {
  width: 100%;
  height: 0;
}
/* =========================================================
   Iron Oak Header System — TEXTURE & COLOR CONTROL
   ========================================================= */

/* 1. Base Header State (Applies to both Static & Sticky) */
.site-header.io-header {
  position: relative;
  z-index: 600;
  top: 0;
  background: inherit;
  /* DYNAMIC BACKGROUND: Pulls color from your Theme Settings */
  background-color: var(--io-header-bg, #2E241B); /* Fallback to dark brown if unset */
  
  /* IMPORTANT: Creates a new stacking context so textures stay inside */
  isolation: isolate; 
}

/* 2. Texture Layer 1: Paper Grain */
.site-header.io-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  
  /* Pulls texture & opacity from Theme Settings */
  background-image: var(--io-header-tex-1);
  background-repeat: repeat;
  background-size: auto;
  opacity: var(--io-header-op-1);
  
  pointer-events: none;
  z-index: -2; /* Sits behind content */
  mix-blend-mode: multiply; /* Blends nicely with the background color */
}

/* 3. Texture Layer 2: Dirt/Detail */
.site-header.io-header::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  
  /* Pulls texture & opacity from Theme Settings */
  background-image: var(--io-header-tex-2);
  background-repeat: repeat;
  background-size: cover;
  opacity: var(--io-header-op-2);
  
  pointer-events: none;
  z-index: -1; /* Sits on top of paper, behind content */
  mix-blend-mode: overlay;
}

/* =========================================================
   Sticky Header Overrides
   ========================================================= */

.site-header.io-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  
  /* Re-apply the dynamic background to ensure it doesn't get overwritten */
  background-color: var(--io-header-bg, #2E241B);
}
/* =========================================================
   MOBILE FIXES (Add to bottom of file)
   ========================================================= */

/* Default: Hide hamburger on desktop */
.io-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 989px) {
  
  /* 1. Resize Logo to prevent bleeding */
  .io-header-logo img {
    max-width: 140px !important; /* Force smaller size on mobile */
    height: auto !important;
  }

  /* 2. Hide Desktop Text Links */
  .io-nav-list {
    display: none !important;
  }

  /* 3. Show Hamburger Icon */
  .io-mobile-toggle {
    display: block;
    color: #2E241B;
  }

  /* 4. Adjust Layout Grid */
  /* This prevents the logo from taking up 'auto' width if it tries to expand */
  .io-header-inner {
    grid-template-columns: 40px 1fr 40px; /* Specific space for icons/logo */
    min-height: 60px; /* Slightly tighter height for mobile */
  }
  
  /* Ensure icons align nicely with new grid */
  .io-header-icons {
    justify-content: flex-end;
  }
}

/* =========================================================
   MOBILE DRAWER STYLES
   ========================================================= */

/* The Container (Hidden by default) */
.io-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999; /* On top of everything */
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

/* The Active State (Triggered by JS) */
.io-mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* The White Slide-out Panel */
.io-mobile-drawer-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px; /* Drawer width */
  max-width: 85%;
  background: #f6f2ea; /* Match your header color */
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.io-mobile-drawer.is-open .io-mobile-drawer-inner {
  transform: translateX(0);
}

/* The Dark Backdrop */
.io-drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.io-drawer-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.io-close-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.io-mobile-list {
  list-style: none;
  padding: 24px;
  margin: 0;
  overflow-y: auto;
}

.io-mobile-item {
  margin-bottom: 20px;
}

.io-mobile-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700; /* Bold for mobile too */
  color: #000;
  text-decoration: none;
  display: block;
}

/* Simple Submenu Styling */
.io-mobile-sublist {
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
  border-left: 2px solid #c2a35e;
}

/* =========================================
   STICKY HEADER LOGIC (Logo Swap & Shrink)
   ========================================= */

/* 1. Base State: FORCE hide sticky logo initially */
.io-header .io-logo-sticky {
  display: none !important;
}

/* Ensure main logo is visible */
.io-header .io-logo-main {
  display: block !important;
  transition: opacity 0.2s ease;
}

/* 2. Sticky State: Swap Logos */
/* When the header has the 'is-sticky' class, we switch them */
.io-header.is-sticky .io-logo-main {
  display: none !important; /* Hide main */
}

.io-header.is-sticky .io-logo-sticky {
  display: block !important; /* Show sticky */
  margin: 0 auto; /* Center it */
}

/* 3. Shrink Container Height */
.io-header-inner {
  transition: min-height 0.3s ease;
}

.io-header.is-sticky .io-header-inner {
  min-height: 60px; /* Tighter height when sticky */
}

/* 4. Shrink Nav Links Text */
.io-nav-link {
  transition: padding 0.3s ease;
}

.io-header.is-sticky .io-nav-link {
  padding: 10px 0;
}

/* =========================================
   VERTICAL CENTERING FIX
   ========================================= */

/* Ensure the main grid aligns everything to the center */
.io-header-inner {
  align-items: center !important; 
}

/* Ensure the nav list itself is centered */
.io-nav-list {
  align-items: center !important;
  margin: 0 !important; /* Remove default browser margins */
}

/* =========================================
   STICKY HEADER ANIMATION
   ========================================= */

/* Define the slide-down motion */
@keyframes ioSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Apply animation only when sticky */
.io-header.is-sticky {
  width: 100%;
}

/* Add to io-header.css if not already there */
.io-header-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px; /* Touch target size */
  color: #000;
  text-decoration: none;
}

/* Ensure the bubble sits in the right spot */
.cart-link__bubble {
  position: absolute;
  top: 4px;
  right: 0px;
  background-color: #000; /* Or your brand color */
  color: #fff;
  font-size: 10px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.cart-link__bubble--visible {
  opacity: 1;
}

/* =========================================
   FIX: RESTORE CART DRAWER
   ========================================= */

/* Neutralize the theme's default nav container styles */
.io-header .site-nav {
  margin: 0 !important;
  padding: 0 !important;
}

.io-header .site-nav__icons {
  display: flex !important;
  align-items: center !important;
  gap: 10px; /* Adjust spacing between icons here */
}

/* Force the links to behave like our custom icons */
.io-header .site-nav__link {
  padding: 0px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: none !important;
  border: none !important;
}

/* Ensure the cart bubble is positioned correctly */
.io-header .cart-link__bubble {
  top: 0px !important;
  right: -5px !important;
  width: 18px;
  height: 18px;
  background-color: #000;
  color: #fff;
  font-size: 10px;
}

/* =========================================
   FIX: FORCE CART DRAWER ON TOP
   ========================================= */

/* Target common theme drawer classes */
.drawer, 
.cart-drawer, 
#CartDrawer, 
.drawer__overlay, 
.js-drawer-open {
  z-index: 99999 !important; /* Force it above the header (which is 600) */
}

/* Ensure the backdrop covers the header too */
.drawer-backdrop, 
.is-moved-by-drawer .page-container {
  z-index: 9998 !important;
}

/* Fix for specific themes like Impulse/Prestige */
body.js-drawer-open {
  overflow: hidden !important; /* Prevents background scrolling */
}

/* =========================================
   CART COUNT BUBBLE (NUMBER)
   ========================================= */

.io-header .cart-link__bubble {
  /* Positioning */
  position: absolute !important;
  top: -2px !important;   /* Move up slightly */
  right: -6px !important; /* Move right slightly */
  
  /* Shape & Size */
  width: 20px !important;  /* Was 18px, increased for text */
  height: 20px !important;
  border-radius: 50%;      /* Perfect circle */
  
  /* Colors */
  background-color: #000000 !important; /* Black background */
  color: #ffffff !important;            /* White text */
  
  /* Text Alignment */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  
  /* Typography */
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

/* Hide if empty */
.cart-link__bubble:empty {
  display: none !important;
}

/* =========================================
   FLY-TO-CART ANIMATION
   ========================================= */
.io-fly-item {
  position: fixed;
  z-index: 9999;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%; /* Make it a circle */
  border: 2px solid #000;
  pointer-events: none; /* Let clicks pass through */
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1); /* Smooth 'ease-out' motion */
  opacity: 0.8;
}

/* =========================================
   CART DRAWER ITEM STYLES
   ========================================= */
.cart-item.drawer__item {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #eee;
  gap: 15px;
}

.cart-item__image-container {
  width: 90px;
  flex-shrink: 0;
}

.cart-item__image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.cart-item__details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 4px;
  display: block;
}

.cart-item__variant {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

.cart-item__price {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
}

.cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.cart-item__qty button {
  background: none;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.cart-item__qty button svg {
  width: 10px;
  height: 10px;
}

.cart-item__qty .qty-text {
  font-size: 13px;
  font-weight: 600;
  padding: 0 5px;
  min-width: 20px;
  text-align: center;
}

.cart-item__remove {
  background: none;
  border: none;
  text-decoration: underline;
  color: #888;
  font-size: 11px;
  cursor: pointer;
}

/* Styling for the category titles */
.io-mega-subheading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 15px 0 8px 0;
  color: #000; /* Adjust to match your brand black */
}

/* Indent the links to show they belong to the header above */
.io-mega-nested-links {
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #e5e5e5; /* Optional: adds a subtle vertical line */
}

/* Ensure spacing between the two groups */
.io-mega-group {
  margin-bottom: 20px;
}

@media screen and (max-width: 749px) {


  /* Ensure the logo has space to be centered and larger */
  .header__heading-logo {
    max-width: 150px; /* Adjust based on preference */
    margin: 0 auto;
  }
  
  /* Space out the remaining two icons (Menu and Cart) */
  .header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* Menu | Logo | Cart */
    align-items: center;
  }
}

/* ---------- Mega Menu Headings ---------- */
.io-mega-heading {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ---------- Mega Menu Sub-Links ---------- */
.io-mega-link {
  font-family: 'Montserrat';
  font-weight: 500; /* Medium weight for readability */
  display: block;
  font-size: 1.05rem; /* Serifs need a tiny size bump */
  line-height: 1.6;
  padding: 6px 0;
  color: #333;
}

/* ---------- Mobile Drawer Links ---------- */
.io-mobile-link {
  font-family: 'Montserrat';
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: block;
}

/* ---------- Nav Links (Updated for Size & Centering) ---------- */
.io-nav-link {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 18px; 
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2E241B; 
  
  /* Centering logic */
  display: flex; 
  align-items: center; 
  height: 100%; 
  line-height: 1;
  padding: 0;
  
  /* ADDED: Ensures the underline is positioned relative to the text width only */
  position: relative; 
}

/* Underline Base Style */
.io-nav-link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0; /* Starts at 0 width */
  background: #C2A35E;
  position: absolute;
  bottom: 0px; /* Adjusted slightly for the larger font size */
  left: 0;
  transition: width .25s ease;
}

/* UPDATED HOVER SELECTOR: Trigger on the link, not the item */
.io-nav-link:hover::after {
  width: 100%; /* Expands to the width of the .io-nav-link text only */
}

/* Add this to header.css to override the black hover */

/* 1. Change Text Color on Hover */
.io-nav-link:hover {
  color: #E6C56F !important; /* Brighter Gold */
  text-shadow: 0 0 15px rgba(230, 197, 111, 0.4); /* Optional: Adds a subtle glow */
}

/* 2. Change Underline Color on Hover to match */
.io-nav-link:hover::after {
  background: #E6C56F !important;
}

/* =========================================
   GUSSIED UP MEGA MENU TYPOGRAPHY
   ========================================= */

/* 1. Category Headers (e.g., "POCKETED SHIRTS") 
   Style: Rugged, structural, labeled. */
.io-mega-subheading {
  font-family: 'Montserrat', sans-serif; /* Clean contrast to the serif links */
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em; /* Wide spacing for that premium label look */
  text-transform: uppercase;
  color: #C2A35E; /* Iron Oak Gold */
  
  margin: 30px 0 12px 0; /* More breathing room above */
  padding-bottom: 8px;
  display: block;
  width: 100%;
}

/* 2. The Links (e.g., "The Oak-Washed Denim")
   Style: Elegant, classic western serif. */
.io-mega-link {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 1.15rem; /* Larger for readability */
  line-height: 1.8;   /* Loose spacing between items */
  color: #2E241B;     /* Deep brown (Leather color) instead of harsh black */
  text-decoration: none;
  
  /* Setup for the hover slide */
  display: block;
  transition: all 0.3s ease;
  padding-left: 0;
}

/* 3. The "Western Slide" Hover Effect */
.io-mega-link:hover {
  padding-left: 12px; /* Slides the text to the right */
  color: #C2A35E;     /* Turns gold */
  background: transparent;
  
  /* Optional: Adds a subtle "spur" icon next to it on hover */
  position: relative;
}

.io-mega-link:hover::before {
  content: "›"; /* Simple arrow, or use a custom icon if you have one */
  position: absolute;
  left: 0;
  color: #C2A35E;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.7; /* Align with text */
}

/* 4. Remove the indent for a cleaner "flush left" look */
.io-mega-nested-links {
  padding-left: 0;
  border-left: none; /* Remove the old vertical line if it exists */
}

/* 5. Fix the "Shop All" Header link to look consistent */
.io-mega-heading a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  border-bottom: none;
}

/* =========================================
   UNIFIED MEGA MENU HEADERS (SHOP ALL & MORE)
   ========================================= */

/* Target both the container and the link inside to ensure consistency */
.io-mega-heading,
.io-mega-heading a {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important; /* Extra Bold */
  font-size: 14px !important;  /* Standardized size */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000 !important;   /* Deep Black */

}

/* Remove any potential double-borders if previous CSS added them */
.io-mega-heading {
  border-bottom: none !important;
  margin-bottom: 20px; /* Consistent spacing below */
}

/* Ensure hover state stays solid */
.io-mega-heading a:hover {
  opacity: 0.7; /* Simple fade effect */
  text-decoration: underline !important;
}

/* Update this block to add the indentation */
.io-mega-group {
  margin-bottom: 30px; /* Keeps the vertical spacing */
  
  /* ADD THIS: Pushes the sub-groups to the right */
  margin-left: 24px; 
  
  /* Optional: Adds a subtle vertical line to connect them to the parent */
  border-left: 1px solid rgba(194, 163, 94, 0.3); /* Low opacity gold line */
  padding-left: 24px; /* Space between the line and text */
}

/* =========================================
   COMPACT MEGA MENU SPACING (Updated)
   ========================================= */

/* 1. Main Parent Group (The wrapper for Pocketed/Classic) */
.io-mega-group {
  margin-bottom: 20px; /* Reduced from 30px */
  margin-left: 24px;   /* Indent remains */
  border-left: 1px solid rgba(194, 163, 94, 0.3);
  padding-left: 20px;  /* Slightly tighter to the line */
}

/* 2. Sub-Headings ("POCKETED SHIRTS") */
.io-mega-subheading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C2A35E;
  
  /* TIGHTER SPACING HERE */
  margin: 10px 0 8px 0; /* Significantly reduced top margin (was 30px) */
  padding-bottom: 4px;  /* Tighter to the underline */
  display: block;
  width: 100%;
}

/* 3. The Links */
.io-mega-link {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 1.1rem; /* Slightly smaller for compactness */
  color: #2E241B;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  padding-left: 0;
  
  /* TIGHTER LINE HEIGHT */
  line-height: 1.4; /* Reduced from 1.8 to pull lines together */
  padding: 3px 0;   /* Reduced padding between items */
  margin-bottom: 2px;
}

/* 4. Top "Shop All" Header Spacing */
.io-mega-heading {
  margin-bottom: 12px; /* Pulls the first group closer to the top label */
}

/* ---------- Header Icons (Gold Update) ---------- */

.io-header-icon,
.io-header-icons a,
.header__icon, 
.site-nav__link {
  color: #2E241B; /* Base Iron Oak Gold */
  transition: all 0.2s ease;  /* Smooth transition for hover */
  display: flex;
  align-items: right;
  justify-content: right;
}

/* Ensure the SVG graphic actually takes the color */
.io-header-icon svg,
.io-header-icons svg,
.header__icon svg,
.site-nav__link svg {
  fill: currentColor;    /* For solid icons */
  stroke: currentColor;  /* For line icons (catch-all) */
}

/* Hover Effect: Brighter Shine + Subtle Grow */
.io-header-icon:hover,
.io-header-icons a:hover,
.header__icon:hover,
.site-nav__link:hover {
  color: #E6C56F !important; /* Bright "Shine" Gold */
  transform: scale(1.1);     /* Slight popup effect */
}

/* Update Cart Bubble to match Gold Theme */
.io-header .cart-link__bubble {
  background-color: #C2A35E !important; /* Gold background */
  color: #FFFFFF !important;             /* White text */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* =========================================================
   MOBILE DRAWER — TEXTURES & GUSSIED UP TYPE
   ========================================================= */

/* 1. The Container (Hidden by default) */
.io-mobile-drawer {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.io-mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* 2. The Slide-out Panel (Now with Textures!) */
.io-mobile-drawer-inner {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 320px; /* Slightly wider for elegance */
  max-width: 85%;
  
  /* BASE COLOR & BORDERS */
  background-color: var(--io-mega-bg, #F6F2EA); /* Matches Mega Menu */
  border-right: 1px solid #C2A35E; /* Gold Edge */
  box-shadow: 2px 0 20px rgba(0,0,0,0.15);
  
  /* ANIMATION */
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 2;
  
  /* TEXTURE LAYERING CONTEXT */
  isolation: isolate; 
}

/* Texture 1: Paper Grain */
.io-mobile-drawer-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: var(--io-mega-tex-1);
  background-repeat: repeat;
  background-size: auto;
  opacity: var(--io-mega-op-1);
  pointer-events: none;
  z-index: -2;
  mix-blend-mode: multiply;
}

/* Texture 2: Dirt/Detail */
.io-mobile-drawer-inner::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: var(--io-mega-tex-2);
  background-repeat: repeat;
  background-size: cover;
  opacity: var(--io-mega-op-2);
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay;
}

.io-mobile-drawer.is-open .io-mobile-drawer-inner {
  transform: translateX(0);
}

.io-drawer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 14px;
  color: #000;
}

.io-close-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #C2A35E; /* Gold Close Icon */
  transition: transform 0.2s;
}

.io-close-toggle:hover {
  transform: scale(1.1) rotate(90deg); /* Nice interaction */
}

/* 4. Top Level Links (SHOP, DISCOVER) */
.io-mobile-list {
  list-style: none;
  padding: 30px;
  margin: 0;
  overflow-y: auto;
}

.io-mobile-item {
  margin-bottom: 24px;
}

.io-mobile-link {
  font-family: 'Montserrat', sans-serif; /* Bold Headers */
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #000;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

/* 5. Submenu Items (The Shirts, Hats, etc.) */
.io-mobile-sublist {
  list-style: none;
  margin-left: 0px ;
  margin-top: 10px;
  
  /* The "Iron Oak" Gold Line */
  border-left: 2px solid #C2A35E; 
}

.io-mobile-sublist li {
  margin-bottom: 6px;
}

.io-mobile-sublist a {
  font-family: 'Montserrat'; /* Serif for items */
  font-size: 1rem; /* Large and readable */
  font-weight: 500;
  color: #2E241B; /* Dark Brown Text */
  text-decoration: none;
  transition: color 0.2s;
}

.io-mobile-sublist a:hover {
  color: #C2A35E; /* Turns Gold on touch */
}

/* Backdrop */
.io-drawer-backdrop {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(46, 36, 27, 0.6); /* Dark Brown tint instead of pure black */
  z-index: 1;
  backdrop-filter: blur(2px); /* Premium blur effect */
}

/* =========================================
   MOBILE ACCORDION STYLES
   ========================================= */

/* The Button (replaces the old link style for headers) */
.io-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 12px;
  cursor: pointer;
  
  /* Font Styling to match Links */
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #000;
  text-transform: uppercase;
}

/* The Arrow Icon */
.io-accordion-icon {
  font-size: 1.5rem;
  color: #C2A35E; /* Gold Arrow */
  transition: transform 0.3s ease;
  line-height: 1;
  font-family: serif; /* Ensures the chevron looks nice */
}

/* Rotate arrow when open */
.io-accordion-btn.is-active .io-accordion-icon {
  transform: rotate(90deg);
}

/* The Hidden Content Container */
.io-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5; /* Fade effect */
}

/* Open State */
.io-accordion-content.is-open {
  max-height: 2000px; /* Large enough to fit all content */
  opacity: 1;
}

/* Indent the sub-list inside the accordion */
.io-accordion-content .io-mobile-sublist {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 15px;
  border-left: 2px solid #C2A35E;
}

/* =========================================================
   MOBILE DRAWER SURFACE (MATCHES MEGA MENU)
   ========================================================= */

.io-mobile-drawer-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px; /* Drawer width */
  max-width: 85%;
  
  /* 1. Base Color - Pulls from Mega Menu Settings */
  background-color: var(--io-mega-bg, #f4f1ea); 
  
  /* 2. Border & Shadow */
  border-right: 1px solid #C2A35E; /* Iron Oak Gold Border */
  box-shadow: 2px 0 20px rgba(0,0,0,0.15);
  
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 2;
  
  /* IMPORTANT: creates a "stacking context" so textures stay inside */
  isolation: isolate; 
}

/* Texture Layer 1: Paper Grain */
.io-mobile-drawer-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  
  /* Shared Variable */
  background-image: var(--io-mega-tex-1); 
  background-repeat: repeat;
  background-size: auto;
  opacity: var(--io-mega-op-1); 
  
  pointer-events: none;
  z-index: -2;
  mix-blend-mode: multiply;
}

/* Texture Layer 2: Dirt/Detail */
.io-mobile-drawer-inner::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  
  /* Shared Variable */
  background-image: var(--io-mega-tex-2);
  background-repeat: repeat;
  background-size: cover;
  opacity: var(--io-mega-op-2);
  
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay;
}

/* =========================================================
   MOBILE DRAWER SURFACE (FULL SCREEN)
   ========================================================= */

.io-mobile-drawer-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  
  /* FULL SCREEN WIDTH */
  width: 100%;      /* Was 300px */
  max-width: 100%;  /* Was 85% */
  
  /* 1. Base Color - Pulls from Mega Menu Settings */
  background-color: var(--io-mega-bg, #f4f1ea); 
  
  /* 2. Texture & Styling */
  box-shadow: none; /* Shadow isn't needed for full screen */
  border-right: none; /* Remove side border since it touches the edge */
  
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 2;
  
  /* IMPORTANT: creates a "stacking context" so textures stay inside */
  isolation: isolate; 
}

/* Texture Layer 1: Paper Grain */
.io-mobile-drawer-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: var(--io-mega-tex-1); 
  background-repeat: repeat;
  background-size: auto;
  opacity: var(--io-mega-op-1); 
  pointer-events: none;
  z-index: -2;
  mix-blend-mode: multiply;
}

/* Texture Layer 2: Dirt/Detail */
.io-mobile-drawer-inner::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: var(--io-mega-tex-2);
  background-repeat: repeat;
  background-size: cover;
  opacity: var(--io-mega-op-2); 
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay;
}

/* =========================================
   DRAWER HEADER (LOGO CENTERED)
   ========================================= */

.io-drawer-header {
  position: relative; /* Acts as the anchor */
  display: flex;
  align-items: center;
  justify-content: center; /* FORCE Center alignment */
  padding: 15px 20px;
  min-height: 70px; /* Ensure enough height for the logo */
}

.io-drawer-header::before {
  background-color: var(--io-mega-bg, #f4f1ea);
  background-image: var(--io-mega-tex-1); 
  opacity: var(--io-header-op-1); 
}

/* The Logo Container */
.io-drawer-logo-wrapper {
  flex-grow: 0; /* Prevents it from stretching */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The Close Button - Pinned to the Right */
.io-close-toggle {
  position: absolute; /* Removes it from the flex flow */
  right: 24px;        /* Pinned to the right edge */
  top: 50%;           /* Move down 50% */
  transform: translateY(-50%); /* Move up 50% of its own height to center perfectly */
  
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #C2A35E; /* Gold Icon */
  transition: transform 0.2s ease;
  z-index: 10;
}

.io-close-toggle:hover {
  transform: translateY(-50%) scale(1.1) rotate(90deg); /* Maintains centering on hover */
}

/* Update .io-mega-inner to center content vertically */
/* Find this block around line 1238 and update grid-template-columns */

/* Replace your existing .io-mega-inner block with this */

.io-mega-inner {
  display: flex;             /* Aligns items in a row */
  justify-content: left;   /* Centers the group perfectly on screen */
  align-items: flex-start;   /* Aligns them to the top */
  
  gap: 50px;                 /* CONTROLS SPACING: Lower this number (e.g. 40px) to move them closer */
  
  padding: 50px 0px 0px 50px;           /* Vertical padding */
  width: 100%;               /* Ensures it spans the full width so it can find the center */
}

/* Optional: Ensures the columns don't accidentally shrink too small */
.io-mega-inner > div {
  flex-shrink: 0;            /* Prevents squishing */
  max-width: 250px;          /* Optional: Keeps columns from getting too wide */
}

/* Update .io-mega-card to be taller */
.io-mega-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
  transition: transform .25s ease, box-shadow .25s ease;
  
  height: 400px; /* INCREASED from 260px to 400px for dramatic vertical space */
  display: block;
}

/* =========================================
   UNIFIED MEGA MENU HEADERS (SHOP ALL & MORE)
   ========================================= */

/* Target the container AND the link inside so they look identical */
.io-mega-heading,
.io-mega-heading a {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important; /* Extra Bold */
  font-size: 14px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000 !important;   /* Deep Black */
  
  
  margin-bottom: 0; /* Reset margin since we handle spacing on the group */
  display: inline-block; /* Keeps underline tight to text */
}

/* Add spacing specifically to the container, not the text link */
div.io-mega-heading {
  margin-bottom: 16px;
  width: 100%;
}

/* Ensure hover state stays solid */
.io-mega-heading a:hover {
  color: #333 !important;
  text-decoration-color: #E6C56F !important; /* Brighter gold on hover */
}

/* =========================================
   MOBILE LAYOUT UPDATES (Hamburger | Search ... Logo ... Cart)
   ========================================= */

/* Base Styles for the new Mobile Search Button */
.io-mobile-search-btn {
  display: none; /* Hidden on desktop */
  background: none;
  border: none !important; /* Remove border */
  padding: 0px; /* Touch target */
  color: #2E241B;
  align-items: center;
  justify-content: center; 
}

/* Base Styles for Mobile Left Group */
.io-mobile-left-section {
  display: none; /* Hidden on desktop */
}

@media (max-width: 989px) {
  
  /* 1. Show Mobile Controls */
  .io-mobile-toggle,
  .io-mobile-search-btn,
  .io-mobile-left-section {
    display: flex !important;
    align-items: center;
  }
  
  /* 2. Hide Desktop Nav */
  .io-nav-list {
    display: none !important;
  }

  /* 3. Hide the ORIGINAL search icon that might be in header-icons */
  /* This prevents having two search icons */
  .io-header-icons .site-nav__link[href*="search"],
  .io-header-icons a[href*="search"],
  .io-header-icons .icon-search { 
     display: none !important; 
  }

  /* 4. THE GRID: Left | Center | Right */
  .io-header-inner {
    display: grid !important;
    /* 1fr on sides ensures logo stays centered */
    grid-template-columns: 1fr auto 1fr !important; 
    min-height: 60px;
    padding: 0 10px; /* Outer edges padding */
  }

  /* 5. Left Section: Hamburger + Search */
  .io-nav {
    justify-self: start; /* Push to far left */
  }
  
  .io-mobile-left-section {
    gap: 0px; /* "Cramped" / Reduced spacing as requested */
  }

  /* 6. Center Section: Logo */
  .io-header-logo {
    justify-self: center;
  }
  .io-header-logo img {
    max-width: 120px !important; /* Control logo size on mobile */
    height: auto !important;
  }

  /* 7. Right Section: Cart */
  .io-header-icons {
    justify-self: end; /* Push to far right */
    justify-content: flex-end !important;
    gap: 0px !important; /* Reduce spacing on the right side too */
    width: auto;
  }

  /* Tighten up icon padding on mobile */
  .io-header-icon, 
  .io-mobile-toggle,
  .io-mobile-search-btn,
  .site-nav__link {
    padding: 0px !important; /* Reduces the click area spacing visually */
  }
}

/* =========================================
   MOBILE LAYOUT UPDATES (Hamburger | Search ... Logo ... Cart)
   ========================================= */

/* Base Styles for the new Mobile Search Button */
.io-mobile-search-btn {
  display: none; /* Hidden on desktop */
  background: none;
  border: none !important;
  padding: 0px; /* Touch target */
  color: #2E241B;
  align-items: center;
  justify-content: center;
  /* Removed negative margin here to allow spacing */
  margin-left: 0; 
}

/* Base Styles for Mobile Left Group */
.io-mobile-left-section {
  display: none; /* Hidden on desktop */
}

@media (max-width: 989px) {
  
  /* 1. Show Mobile Controls */
  .io-mobile-toggle,
  .io-mobile-search-btn,
  .io-mobile-left-section {
    display: flex !important;
    align-items: center;
  }
  
  /* 2. Hide Desktop Nav */
  .io-nav-list {
    display: none !important;
  }

  /* 3. Hide the ORIGINAL search icon */
  .io-header-icons .site-nav__link[href*="search"],
  .io-header-icons a[href*="search"],
  .io-header-icons .icon-search { 
     display: none !important; 
  }

  /* 4. THE GRID: Left | Center | Right */
  .io-header-inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important; 
    min-height: 60px;
    padding: 0 16px; /* Increased side padding slightly */
  }

  /* 5. Left Section: Hamburger + Search */
  .io-nav {
    justify-self: start;
  }
  
  .io-mobile-left-section {
    /* ADDED GAP HERE: Separates Hamburger and Search */
    gap: 15px; 
  }

  /* 6. Center Section: Logo */
  .io-header-logo {
    justify-self: center;
  }
  
  /* REDUCED LOGO SIZE HERE */
  .io-header-logo img {
    max-width: 125px !important; /* Reduced to fix "Too Big" issue */
    height: auto !important;

  }

  /* 7. Right Section: Cart */
  .io-header-icons {
    justify-self: end;
    justify-content: flex-end !important;
    gap: 0px !important;
    width: auto;
  }

  /* Tighten up icon padding on mobile */
  .io-header-icon, 
  .io-mobile-toggle,
  .io-mobile-search-btn,
  .site-nav__link {
    padding: 0px !important;
  }


  .io-mobile-group-title {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #B89C5A;
  margin-top: 22px;
  margin-bottom: 5px;
}

.io-mega-subheading {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #B89C5A;
  margin-top: 22px;
  margin-bottom: 5px;
}
.io-mobile-links {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #2E241B;
  margin-bottom: 6px;
}



/* Ensure all header icons use stroke instead of fill */
.site-nav__link .icon {
  fill: none !important;
  stroke: currentColor; /* Matches your text color */
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 24px;  /* Adjust size as needed */
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

/* Specific handling for the search and hamburger if they feel too bold */
.icon-search, .icon-hamburger, .icon-user {
  stroke-width: 2.5; 
}

/* Updated Layout Container */
.io-mega-inner {
  display: flex; 
  justify-content: flex-start; /* We will use gap to push them out */
  align-items: flex-start;
  
  /* SPREAD: Big gap to eat up that right-side whitespace */
  gap: 110px; 
  
  /* TIGHTER VERTICAL: Reduced top/bottom padding to 40px (was 50+) */
  padding: 40px;
  padding-left: 16%;
  width: 100%;
}

/* IMPORTANT: This removes the forced large height */
.io-nav-item[data-mega="shop"] .io-mega-inner,
.io-nav-item[data-mega="discover"] .io-mega-inner {
  min-height: 0 !important; /* Allows box to shrink to fit content */
  height: auto !important;
}

.io-mega-bottom-action {
  padding-bottom: 20px;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-link__bubble cart-link__bubble--visible {
  /* 1. Shape & Size */
  width: 10px !important; 
  height: 10px !important;
  border-radius: 50%; /* Makes it a perfect circle */
  
  /* 2. Colors - Adjust these! */
  background-color: #c8a45c; /* Gold to match your 'Iron Oak' logo */
  color: #000000;            /* Black text for high contrast on gold */
  /* OR use standard red: background-color: #ff0000; color: #ffffff; */
  
  /* 3. Positioning relative to the icon */
  position: absolute;
  top: -6px;   /* Move up/down */
  right: -8px; /* Move left/right */
  z-index: 10;
  
  /* 4. Perfect Centering (The Secret Sauce) */
  display: flex;
  justify-content: center;
  align-items: center;
  
  /* 5. Text Styling */
  font-size: 6px; 
  font-weight: 700; /* Bold makes it readable */
  line-height: 1;   /* Prevents vertical shifting */
  box-shadow: 1px 1px 2px rgba(0,0,0,0.3); /* Subtle drop shadow for depth */
}

/* Optional: Hide if empty (if your liquid logic doesn't already handle this) */
.cart-link__bubble:empty {
  display: none;
}

.io-atc-error {
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid #C2A35E;
  background: rgba(246, 242, 234, 0.55); /* cream tint */
  color: #2E241B; /* walnut */
  font-size: 0.95rem;
  line-height: 1.25;
  border-radius: 6px;
}
