/** Shopify CDN: Minification failed

Line 32:17 Expected identifier but found whitespace
Line 32:19 Unexpected "{"
Line 32:29 Expected ":"
Line 36:20 Expected identifier but found whitespace
Line 36:22 Unexpected "{"
Line 36:32 Expected ":"
Line 37:23 Expected identifier but found whitespace
Line 37:25 Unexpected "{"
Line 37:35 Expected ":"
Line 46:19 Expected identifier but found whitespace
... and 13 more hidden warnings

**/
/* ============================================
   FIX: Text Spacing Issues
   ============================================ 
   If spaces between words disappear, this is usually caused by:
   1. HTML whitespace collapsing (multiple spaces become one)
   2. Copy-pasting from Word/docs with non-breaking spaces
   3. Line clamping truncating long text
   
   Solution: Ensure proper whitespace handling in content
*/

/* ============================================
   1. VARIABLES & THEME SETTINGS
   ============================================ */
:root {
    /* Brand Colors - Standardized */
    --colorTheme: {{ settings.color_accent | default: "#FFD219" }}; /* Use theme settings or fallback */
    --colorBeige: #FAF7EF; /* Beige background for cards/sections */
    
    /* Text Colors - Use theme settings */
    --colorTextBody: {{ settings.color_body_text | default: "#333333" }};
    --colorTextHeading: {{ settings.color_headings | default: "#111111" }};
    --colorLighterText: #606060;
    --colorWhite: #ffffff; /* White color for hero subtitles and other elements */
    
    /* Layout */
    --grid-gap: 20px;
    --border-radius-card: 8px;
    
    /* Typography Defaults */
    --typeBaseSize: {{ settings.type_base_size | default: 16 }}px;
    --typeHeaderSize: {{ settings.type_header_base_size | default: 32 }}px;
    --typeBaseWeight: {{ settings.type_base_weight | default: 400 }};
    --typeHeaderWeight: {{ settings.type_header_weight | default: 700 }};
}

/* ============================================
   2. IMMUTABLE CORE (Typography & Utilities)
   ============================================ */

/* UTILITIES */
.lh-index-section { padding-top: 48px; padding-bottom: 48px; }
.lh-index-section--spacious { padding-top: 80px; padding-bottom: 80px; }
.lh-container-fluid { max-width: 1600px; margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }
.lh-border-radius { border-radius: 10px; }
.lh-gap { gap: 12px; }

/* Product Grid Spacing */
/* Convert product grid to CSS Grid for proper layout with inserted elements */
/* Override the weird float-based grid system for collection pages */
/* File: assets/lh-sections.css */
#CollectionAjaxContent .grid.grid--uniform {
  margin-left: 0 !important; /* Remove negative margin */
  padding-left: 0 !important;
  padding-top: 20px; /* Top padding for mobile/tablet (under 768px) */
  display: block !important;
  width: 100% !important;
}

/* Desktop: 30px top padding above 768px */
@media screen and (min-width: 768px) {
  #CollectionAjaxContent .grid.grid--uniform {
    padding-top: 30px;
  }
}

.product-grid-container {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important; /* Default gap */
  width: 100% !important;
  max-width: 100% !important; /* Prevent overflow */
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

/* Mobile: 10px gap, cards adapt to fit with page-width padding (10px each side) */
@media screen and (max-width: 589px) {
  .product-grid-container {
    gap: 10px !important; /* 10px gap on mobile */
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Cards take available space: (100% - 10px gap) / 2 */
  /* The parent .lh-page-width already has 10px padding on each side */
  .product-grid-container .grid__item.grid-product,
  .product-grid-container > .grid__item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important; /* Allow cards to shrink */
  }
}

/* Medium screens (590px - 989px): 3 columns */
@media only screen and (min-width: 590px) and (max-width: 989px) {
  .product-grid-container {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  
  /* Ensure cards don't overflow in the 590-690px range where padding increases */
  .product-grid-container .grid__item.grid-product,
  .product-grid-container > .grid__item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important; /* Allow cards to shrink */
  }
}

/* Narrow medium screens (590px - 690px): Reduce gap to prevent overflow */
@media only screen and (min-width: 590px) and (max-width: 690px) {
  .product-grid-container {
    gap: 15px !important; /* Reduced gap to account for larger padding (40px each side) */
  }
}

/* Large screens (990px+): 4 columns */
@media only screen and (min-width: 990px) {
  .product-grid-container {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
  }
}

/* Override float-based widths - let CSS Grid handle sizing */
.product-grid-container .grid__item.grid-product,
.product-grid-container > * {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  padding-left: 0 !important; /* Remove float-grid padding */
  margin-bottom: 0; /* Gap handles spacing */
  position: relative !important;
}

/* Override ALL float-based fraction classes inside product grid */
.product-grid-container .small--one-half,
.product-grid-container .small--one-third,
.product-grid-container .small--one-quarter,
.product-grid-container .medium-up--one-half,
.product-grid-container .medium-up--one-third,
.product-grid-container .medium-up--one-quarter,
.product-grid-container .medium-up--one-fifth,
.product-grid-container .widescreen--one-quarter,
.product-grid-container .widescreen--one-fifth,
.product-grid-container [class*="--one-"] {
  width: 100% !important;
  float: none !important;
}

/* Reassurances wrapper - styles defined in collection-reassurances.liquid */

/* Page Width - Wider variant (1750px max-width instead of 1400px) */
/* File: assets/lh-sections.css */
/* Used in: lh-slideshow.liquid, lh-collections-highlight.liquid, lh-judgeme.liquid */
.lh-page-width {
  margin: 0 auto;
  max-width: 1750px;
  padding: 0 10px; /* Mobile: reduced from 20px */
  overflow-x: hidden; /* Prevent horizontal page scrolling from child overflow */
  overflow-y: visible; /* Allow vertical overflow for sticky positioning to work */
}

@media only screen and (min-width: 590px) {
  .lh-page-width {
    padding: 0 40px;
  }
}

/* COLORS */
.lh-text-theme { color: var(--colorTheme); }
.lh-text-body { color: var(--colorTextBody); }
.lh-text-lighter { color: var(--colorLighterText); }
.lh-text-white { color: var(--colorWhite); }

/* Hero Subtitle - White text override */
.hero__subtitle.lh-small-light-text.lh-text-body {
    color: var(--colorWhite);
}

/* BACKGROUND COLORS */

/* TYPOGRAPHY - Strict Usage Only */
/* New Typography System - Specific Font Sizes */
.lh-bold-15 { font-size: calc(var(--typeBaseSize) * 0.94); font-weight: 700; } /* 15px @ 16px base */
.lh-semibold-15 { font-size: calc(var(--typeBaseSize) * 0.94); font-weight: 600; } /* 15px @ 16px base */
.lh-heavy-15 { font-size: calc(var(--typeBaseSize) * 0.94); font-weight: 900; } /* 15px @ 16px base */
.lh-bold-15-opensans { font-size: calc(var(--typeBaseSize) * 0.94); font-weight: 700; font-family: 'Open Sans', sans-serif; } /* 15px @ 16px base */
.lh-normal-17 { font-size: calc(var(--typeBaseSize) * 1.06); font-weight: 400; } /* 17px @ 16px base */
.lh-semibold-40 { font-size: calc(var(--typeBaseSize) * 2.50); font-weight: 600; } /* 40px @ 16px base */
.lh-heavy-40 { font-size: calc(var(--typeBaseSize) * 2.50); font-weight: 900; } /* 40px @ 16px base */
.lh-normal-25 { font-size: calc(var(--typeBaseSize) * 1.56); font-weight: 400; } /* 25px @ 16px base */
.lh-heavy-20 { font-size: calc(var(--typeBaseSize) * 1.25); font-weight: 900; } /* 20px @ 16px base */
.lh-normal-16 { font-size: calc(var(--typeBaseSize) * 1.00); font-weight: 400; } /* 16px @ 16px base */
.lh-bold-20 { font-size: calc(var(--typeBaseSize) * 1.25); font-weight: 700; } /* 20px @ 16px base */
.lh-medium-20 { font-size: calc(var(--typeBaseSize) * 1.25); font-weight: 500; } /* 20px @ 16px base */
.lh-medium-10 { font-size: calc(var(--typeBaseSize) * 0.625); font-weight: 500; } /* 10px @ 16px base */
.lh-medium-12 { font-size: calc(var(--typeBaseSize) * 0.75); font-weight: 500; } /* 12px @ 16px base */
.lh-normal-12 { font-size: calc(var(--typeBaseSize) * 0.75); font-weight: 400; } /* 12px @ 16px base */
.lh-semibold-12 { font-size: calc(var(--typeBaseSize) * 0.75); font-weight: 600; } /* 12px @ 16px base */
.lh-medium-25 { font-size: calc(var(--typeBaseSize) * 1.56); font-weight: 500; } /* 25px @ 16px base */
.lh-semibold-28 { font-size: calc(var(--typeBaseSize) * 1.75); font-weight: 600; } /* 28px @ 16px base */
.lh-normal-14 { font-size: calc(var(--typeBaseSize) * 0.88); font-weight: 400; } /* 14px @ 16px base */
.lh-normal-20 { font-size: calc(var(--typeBaseSize) * 1.25); font-weight: 400; } /* 20px @ 16px base */
.lh-semibold-30 { font-size: calc(var(--typeBaseSize) * 1.625); font-weight: 600; } /* 26px @ 16px base - reduced for mockup alignment */
.lh-semibold-19 { font-size: calc(var(--typeBaseSize) * 1.19); font-weight: 600; } /* 19px @ 16px base */
.lh-normal-18 { font-size: calc(var(--typeBaseSize) * 1.13); font-weight: 400; } /* 18px @ 16px base */
.lh-semibold-18 { font-size: calc(var(--typeBaseSize) * 1.13); font-weight: 600; } /* 18px @ 16px base */
.lh-bold-18 { font-size: calc(var(--typeBaseSize) * 1.13); font-weight: 700; } /* 18px @ 16px base */
.lh-medium-18 { font-size: calc(var(--typeBaseSize) * 1.13); font-weight: 500; } /* 18px @ 16px base */
.lh-heavy-24 { font-size: calc(var(--typeBaseSize) * 1.50); font-weight: 900; } /* 24px @ 16px base */
/* Big title: size controlled by theme settings (--lhBigTitleMultiplierDesktop/Mobile from css-variables.liquid) */
.lh-heavy-87 { font-size: calc(calc(var(--typeBaseSize) * 3.5) * var(--lhBigTitleMultiplierDesktop, 1)); font-weight: 900; } /* 56px @ 16px base - reduced for mockup alignment */
.lh-heavy-80 { font-size: calc(var(--typeBaseSize) * 5.0); font-weight: 900; } /* 87px @ 16px base */
.lh-bold-19 { font-size: calc(var(--typeBaseSize) * 1.19); font-weight: 700; } /* 19px @ 16px base */
.lh-bold-50 { font-size: calc(var(--typeBaseSize) * 3.125); font-weight: 700; } /* 50px @ 16px base */


/* TYPOGRAPHY - RESPONSIVE ADAPTATIONS */
/* Tablet: Scale down slightly (responsive scaling for large headings) */
@media (max-width: 990px) {
    /* Scale down badge text on medium screens */
    .lh-medium-18 {
        font-size: calc(var(--typeBaseSize) * 0.85); /* ~14px @ 16px base */
    }
    
    /* Scale down very large headings */
    .lh-heavy-87 {
        font-size: calc(calc(var(--typeBaseSize) * 2.875) * var(--lhBigTitleMultiplierDesktop, 1)); /* 46px @ 16px base - proportionally scaled */
    }
    .lh-heavy-80 {
        font-size: calc(var(--typeBaseSize) * 3.7); /* 64px @ 16px base */
    }
    .lh-semibold-40,
    .lh-heavy-40 {
        font-size: calc(var(--typeBaseSize) * 2.0); /* 32px @ 16px base */
    }
    .lh-semibold-30 {
        font-size: calc(var(--typeBaseSize) * 1.69); /* 27px @ 16px base */
    }
    .lh-semibold-28 {
        font-size: calc(var(--typeBaseSize) * 1.56); /* 25px @ 16px base */
    }
    .lh-heavy-24 {
        font-size: calc(var(--typeBaseSize) * 1.38); /* 22px @ 16px base */
    }
    
    /* Legacy classes */
    .lh-large-thick-heading,
    .lh-large-extra-bold-heading {
        font-size: calc(var(--typeHeaderSize) * 1.5);
    }
    
    .lh-small-semibold-heading {
        font-size: calc(var(--typeHeaderSize) * 0.9);
    }
    
    .lh-medium-thick-text {
        font-size: calc(var(--typeBaseSize) * 1.1);
    }
    
    .lh-large-light-text {
        font-size: calc(var(--typeHeaderSize) * 0.55);
    }
}

/* Mobile: Scale down further */
@media (max-width: 768px) {
    /* Scale down badge text more on smaller tablets */
    .lh-medium-18 {
        font-size: calc(var(--typeBaseSize) * 0.75); /* ~12px @ 16px base */
    }
    
    /* Scale down very large headings more aggressively */
    .lh-heavy-87 {
        font-size: calc(calc(var(--typeBaseSize) * 3.0) * var(--lhBigTitleMultiplierMobile, 1)); /* 48px @ 16px base */
    }
    .lh-heavy-80 {
        font-size: calc(var(--typeBaseSize) * 2.75); /* 64px @ 16px base */
    }
    .lh-semibold-40,
    .lh-heavy-40 {
        font-size: calc(var(--typeBaseSize) * 1.75); /* 28px @ 16px base */
    }
    .lh-semibold-30 {
        font-size: calc(var(--typeBaseSize) * 1.5); /* 24px @ 16px base */
    }
    .lh-semibold-28 {
        font-size: calc(var(--typeBaseSize) * 1.38); /* 22px @ 16px base */
    }
    .lh-heavy-24 {
        font-size: calc(var(--typeBaseSize) * 1.25); /* 20px @ 16px base */
    }
    .lh-normal-25,
    .lh-medium-25 {
        font-size: calc(var(--typeBaseSize) * 1.38); /* 22px @ 16px base */
    }
    
    /* Legacy classes */
    .lh-large-thick-heading,
    .lh-large-extra-bold-heading {
        font-size: calc(var(--typeHeaderSize) * 1.2);
    }
    
    .lh-small-semibold-heading {
        font-size: calc(var(--typeHeaderSize) * 0.8);
    }
    
    .lh-medium-thick-text {
        font-size: var(--typeBaseSize);
    }
    
    .lh-large-light-text {
        font-size: calc(var(--typeHeaderSize) * 0.5);
    }
}

/* Small Mobile: Additional scaling for very small screens */
@media (max-width: 590px) {
    /* Scale down very large headings even more */
    .lh-heavy-87 {
        font-size: calc(calc(var(--typeBaseSize) * 2.5) * var(--lhBigTitleMultiplierMobile, 1)); /* 40px @ 16px base */
    }
    .lh-heavy-80     {
        font-size: calc(var(--typeBaseSize) * 2.2); /* 64px @ 16px base */
    }
    .lh-semibold-40,
    .lh-heavy-40 {
        font-size: calc(var(--typeBaseSize) * 1.5); /* 24px @ 16px base */
    }
    .lh-semibold-30 {
        font-size: calc(var(--typeBaseSize) * 1.38); /* 22px @ 16px base */
    }
    .lh-semibold-28 {
        font-size: calc(var(--typeBaseSize) * 1.25); /* 20px @ 16px base */
    }
    .lh-heavy-24 {
        font-size: calc(var(--typeBaseSize) * 1.19); /* 19px @ 16px base */
    }
    .lh-normal-25,
    .lh-medium-25 {
        font-size: calc(var(--typeBaseSize) * 1.25); /* 20px @ 16px base */
    }
    
    /* Make bold-20 and medium-20 similar size on small devices */
    .lh-bold-20,
    .lh-medium-20,
    .lh-normal-20 {
        font-size: calc(var(--typeBaseSize) * 1.0); /* 16px @ 16px base - similar size for all */
    }
    .lh-bold-19,
    .lh-semibold-19 {
        font-size: calc(var(--typeBaseSize) * 1.06); /* 17px @ 16px base */
    }
    .lh-normal-18,
    .lh-semibold-18,
    .lh-bold-18,
    .lh-medium-18 {
        font-size: calc(var(--typeBaseSize) * 0.70); /* 16px @ 16px base */
    }
    .lh-normal-17,
    .lh-bold-15,
    .lh-semibold-15 {
        font-size: calc(var(--typeBaseSize) * 0.94); /* 15px @ 16px base */
    }
    .lh-normal-16 {
        font-size: calc(var(--typeBaseSize) * 0.88); /* 14px @ 16px base */
    }
    
    /* Legacy classes */
    .lh-large-thick-heading,
    .lh-large-extra-bold-heading {
        font-size: calc(var(--typeHeaderSize) * 1.0);
    }
    
    .lh-small-semibold-heading {
        font-size: calc(var(--typeHeaderSize) * 0.75);
    }
    
    .lh-small-light-text,
    .lh-small-thick-text {
        font-size: calc(var(--typeBaseSize) * 0.9);
    }
    
    .lh-medium-thick-text {
        font-size: calc(var(--typeBaseSize) * 0.95);
    }
    
    .lh-large-light-text {
        font-size: calc(var(--typeHeaderSize) * 0.45);
    }
}

@media (max-width: 490px) {
    /* Scale down very large headings even more */
    .lh-heavy-87 {
        font-size: calc(calc(var(--typeBaseSize) * 1.8) * var(--lhBigTitleMultiplierMobile, 1)); /* 40px @ 16px base */
    }
}
/* ============================================
   HEADING LAYOUT SYSTEM
   ============================================ */

/* Category 1: Left-aligned headings (small semibold)
   Usage: <div class="section-header"><h2 class="section-header__title lh-small-semibold-heading">Title</h2></div>
   - Uses theme's section-header for spacing (30px mobile, 50px desktop)
   - Override text-transform in section-specific CSS if needed
*/
/* Note: section-header and section-header__title are defined in theme.css.liquid */

/* Category 2: Centered headings (large extra-bold)
   Usage: <div class="lh-heading-centered"><h2 class="lh-large-extra-bold-heading">Title</h2></div>
   - Centered, margin-bottom 60px (width constraint should be applied by parent container like .page-width--narrow)
*/
.lh-heading-centered {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .lh-heading-centered {
        margin-bottom: 30px;
    }
}

/* View All Link - Centered below section header */
.lh-view-all-link {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 20px;
}

.lh-view-all-link a {
    text-decoration: underline;
}


/* ============================================
   3. GENERIC COMPONENTS
   ============================================ */

/* Horizontal Scroll Container */
.lh-horizontal-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    /* scroll-behavior: smooth; - Removed to allow JS to control scroll animation precisely without conflict */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: var(--grid-gap);
    padding-bottom: 20px;
    
    /* Scrollbar Styling - Hidden for Desktop as per request */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}

.lh-horizontal-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Webkit */
}

/* Only show scrollbar on mobile if needed, but request said "Don't show... on desktop", usually implies hiding it by default */
@media (max-width: 768px) {
    .lh-horizontal-scroll {
        scrollbar-width: thin;
        scrollbar-color: var(--colorTheme) transparent;
    }
    .lh-horizontal-scroll::-webkit-scrollbar {
        display: block;
        height: 6px;
    }
    .lh-horizontal-scroll::-webkit-scrollbar-track {
        background: transparent;
    }
    .lh-horizontal-scroll::-webkit-scrollbar-thumb {
        background-color: var(--colorTheme);
        border-radius: 4px;
    }
}
.lh-horizontal-scroll > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* Generic Grid System */
.lh-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 4), 1fr);
    gap: var(--grid-gap);
    width: 100%;
}
.lh-col-1 { --cols: 1; }
.lh-col-2 { --cols: 2; }
.lh-col-3 { --cols: 3; }
.lh-col-4 { --cols: 4; }

@media (max-width: 990px) { .lh-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 590px) { .lh-grid { grid-template-columns: 1fr; } }


/* Generic Card Wrapper */
.lh-card {
    background-color: var(--colorBeige); /* Fixes "Blackout" bug */
    border-radius: var(--border-radius-card);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--colorTextBody); /* Ensure text is visible */
}

.lh-card--shadow {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.lh-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Card Internals */
.lh-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square aspect ratio default */
    overflow: hidden;
    background: #f4f4f4;
}

.lh-card__image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}

.lh-card__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card Modifiers */
.lh-card--spacious {
    padding: 30px 20px;
    align-items: center;
    text-align: center;
}


/* Icon Wrapper - Generic pattern for icon containers */
.lh-icon-wrapper {
    margin-bottom: 20px;
}

.lh-icon-wrapper img {
    display: block;
    max-width: 80px;
    height: auto;
}

/* Judge.me Centered Wrapper (Fix for Bug A & Layout) */
.lh-judgeme-centered {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    width: 100%;
}

.lh-judgeme-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

/* Judge.me Product Block - Beige background with border radius */
.lh-judgeme-product-block {
    background-color: var(--colorBeige);
    border-radius: var(--border-radius-card);
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

/* Simple Star Rating Component - No JS Required */
.lh-rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 16px;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif; /* Ensure font supports star characters */
}

.lh-rating-stars--yellow .lh-rating-star {
    color: var(--colorTheme, #FFD219);
}

.lh-rating-stars--black .lh-rating-star {
    color: #000000;
}

.lh-rating-star {
    display: inline-block;
    width: 1em;
    height: 1em;
}

.lh-rating-star::before {
    content: '\2605'; /* Unicode for filled star ★ */
    display: block;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif; /* Ensure font supports star characters */
}

.lh-rating-star.lh-rating-star--empty::before {
    content: '\2606'; /* Unicode for empty star ☆ */
    opacity: 0.3;
    font-family: Arial, sans-serif; /* Ensure font supports star characters */
}

/* Decor Elements */
/* Badge styles moved to badge section below */


/* Media Wrapper */
.lh-media-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-card);
    background: #000;
}
.lh-media-wrapper iframe, .lh-media-wrapper video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* ============================================
   4. DECORATION & HIGHLIGHTS (Unified)
   ============================================ */

/* Unified Highlight System */
.lh-highlight-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1;
  white-space: nowrap;
  /* Horizontal breathing room; no vertical padding so height ~ text height */
  padding-inline: 0.18em;
  padding-block: 0;
  box-sizing: content-box;
}

.lh-highlight-text {
  position: relative;
  z-index: 2;
}

/* Background Image/Element (for image tag approach)
 * Fills exactly the wrapper box (text width + horizontal padding),
 * so it follows the word/group width precisely.
 */
.lh-highlight-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  object-fit: fill; /* can stretch horizontally more than vertically */
}

/* Background Image/Element - Underline variant (positioned at bottom) */
.lh-highlight-bg-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110%; /* Slight overlap default - stretches to fill width */
    height: auto;
    max-height: 40%; /* Limit height to bottom portion */
    min-width: 100%; /* Ensure it stretches at least to full width */
    z-index: -1;
    pointer-events: none;
    object-fit: fill; /* Stretch to fill width without preserving aspect ratio */
    object-position: bottom center;
}

/* Background Shape (CSS only fallback) */
.lh-highlight-shape {
    position: absolute;
    bottom: 5px;
    left: -5px;
    width: 110%;
    height: 35%;
    background-color: var(--colorTheme);
    z-index: -1;
    border-radius: 4px;
    transform: skew(-10deg) rotate(-1deg);
    opacity: 0.8;
}

/* Specific variants can be added here if needed, but keeping it simple as requested */

/* Scribble Border Button (Latest Highlight) */
.lh-scribble-border-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    background: rgba(0,0,0,0.4);
    border: 3px solid var(--colorTheme);
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    transition: transform 0.2s, background 0.2s;
}
.lh-card:hover .lh-scribble-border-btn,
.lh-category-card:hover .lh-scribble-border-btn {
    background: rgba(0,0,0,0.7);
    transform: scale(1.05) rotate(-1deg);
}

/* 5. Image Background Text Wrapper - DEPRECATED/Unified above but kept for strict replace if needed, removing for cleanup */
/* Removed old .lh-bg-text-wrapper blocks */

/* 6. Background Image Button */
.lh-bg-img-btn {
    background: transparent;
    border: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    color: var(--colorTextHeading);
    font-weight: 700;
    text-decoration: none;
    z-index: 1;
    transition: transform 0.2s;
}
.lh-bg-img-btn:hover {
    transform: scale(1.05);
}
.lh-bg-img-btn-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    object-fit: fill;
}

/* Lightweight button backgrounds to replace heavy PNGs on critical paths */
.lh-bg-img-btn--yellow,
.lh-bg-img-btn--black {
    border-radius: 999px;
    min-height: 56px;
    box-sizing: border-box;
}

.lh-bg-img-btn--yellow {
    background: var(--colorTheme);
}

.lh-bg-img-btn--black {
    background: #111111;
}

/* ============================================
   5. NAVIGATION ARROWS (Generic)
   ============================================ */

/* Navigation Arrow Base */
.lh-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.lh-nav-arrow svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    color: var(--colorTextBody);
}

.lh-nav-arrow:hover {
    opacity: 0.7;
}

.lh-nav-arrow[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.lh-prev-arrow {
    left: -20px;
}

.lh-next-arrow {
    right: -20px;
}

/* ============================================
   6. CARD MODIFIERS & PRODUCT CARDS
   ============================================ */

/* Fixed Width Card (for horizontal scroll) */
.lh-card--fixed-width {
    min-width: 260px;
    max-width: 260px;
    padding: 12px;
    box-sizing: border-box;
}

/* Card Link - Full height link wrapper with no padding */
.lh-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    padding: 0;
    box-sizing: border-box;
}


/* Badge Container - Positioned ON the top-right corner of card image */
.lh-badge-container {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
    z-index: 5;
}

/* For cards with internal padding (collection page), offset by the padding */
.lh-card--fixed-width ~ .lh-badge-container,
#CollectionSection .lh-badge-container {
    top: 7px; /* 12px padding - 5px to sit on corner */
    right: 7px;
}

/* Badge - Base class (used for discount badges in product cards) */
.lh-badge {
    background: transparent;
    border: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    color: var(--colorTextHeading);
    text-decoration: none;
    z-index: 1;
    white-space: nowrap; /* Prevent text wrapping */
}

/* Discount Tag - Price discount percentage badge (independent from lh-badge) */
.lh-discount-tag {
    background: var(--colorTheme);
    color: #000;
    padding: 4px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static;
    border: none;
    text-decoration: none;
}

/* Badge container badges - use image background, completely separate styling */
.lh-badge-container .lh-badge {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5px 12px !important;
    color: var(--colorTextHeading) !important;
    text-decoration: none !important;
    z-index: 1 !important;
}

/* Badge background image - same pattern as lh-bg-img-btn-img */
.lh-badge-container .lh-badge .lh-badge-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -1 !important;
    object-fit: fill !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Badge icon image */
.lh-badge-container .lh-badge .lh-badge__icon {
    position: relative !important;
    display: inline-block !important;
    margin-right: 6px !important;
    width: auto !important;
    height: 16px !important;
    vertical-align: middle !important;
    z-index: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Badge Variants */
.lh-badge--sold-out {
    background: #999;
    color: #fff;
}

.lh-badge--sold-out .lh-badge-img {
    display: none;
}

/* Product Title - 2 line truncation */
.lh-product-title {
    margin-bottom: 4px;
    line-height: 1.3;
    text-transform: uppercase;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-spacing: normal; /* Ensure normal spacing between words */
    white-space: normal; /* Allow normal whitespace handling */
}

/* Product Card Tooltip */
.lh-product-card-tooltip-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.lh-product-card-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    white-space: normal;
    max-width: 300px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    font-weight: normal;
    text-transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lh-product-card-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.lh-product-card-tooltip-wrapper:hover .lh-product-card-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-12px);
}

/* Price Container */
.lh-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

/* Inventory Dot */
.lh-inventory-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--colorTheme);
    display: inline-block;
}

.lh-inventory-dot--green {
    background-color: #28a745;
}

.lh-inventory-dot--red {
    background-color: #dc3545;
}

/* ============================================
   7. TEXT UTILITIES & SPACING
   ============================================ */

/* Text Transform & Spacing */
.lh-text-uppercase {
    text-transform: uppercase;
}

.lh-text-uppercase-spaced {
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lh-text-italic {
    font-style: italic;
}

.lh-text-underline {
    text-decoration: underline;
}

/* Spacing Utilities */
.lh-margin-left-small {
    margin-left: 5px;
}

/* ============================================
   8. LAYOUT UTILITIES
   ============================================ */

/* Flex Container - Centered */
.lh-flex-center {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

/* Flex Container - Row */
.lh-flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

/* Flex Container - Start */
.lh-flex-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

/* Image Display */
.lh-img-block {
    display: block;
}

/* Margin Utilities */
.lh-margin-top-medium {
    margin-top: 20px;
}

/* ============================================
   9. COLLECTION PAGE - MISSION TITLE & FILTER CARDS
   ============================================ */

/* Mission-style Collection Title */
.lh-collection-mission-header {
  text-align: center;
  padding: 40px 0 30px;
}

/* Collection title h1 styling */
.lh-collection-mission-header h1 {
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--colorTextHeading, #000000);
  letter-spacing: -0.02em;
  font-family: var(--typeHeaderPrimary, var(--font-heading-family)), var(--typeHeaderFallback, 'Impact', 'Arial Black', sans-serif);
  display: block;
  text-align: center;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* Collection subtitle styling */
.lh-collection-mission-header p {
  margin: 16px 0 0;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Legacy class: layout/decoration only; font-size from .lh-heavy-87 when present so theme multiplier applies */
.lh-collection-mission-title {
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: var(--typeHeaderWeight, 900);
  color: var(--colorTextHeading, #000000);
  letter-spacing: -0.02em;
  font-family: var(--typeHeaderPrimary, var(--font-heading-family)), var(--typeHeaderFallback, 'Impact', 'Arial Black', sans-serif);
  display: block;
  text-align: center;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* When lh-heavy-87 is not used, keep a fallback size for backwards compatibility */
.lh-collection-mission-title:not(.lh-heavy-87) {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

/* Collection-specific: Allow wrapping for long collection titles */
.lh-collection-mission-header h1 .lh-highlight-wrapper,
.lh-collection-mission-title .lh-highlight-wrapper {
  display: inline;
  white-space: normal;
  max-width: 100%;
}

.lh-collection-mission-header h1 .lh-highlight-text,
.lh-collection-mission-title .lh-highlight-text {
  display: inline;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Category Filter Cards Section */
.lh-category-filter-section {
  margin: 0 0 30px;
  padding: 0;
}

.lh-category-cards-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start; /* Start from left to allow scrolling to beginning */
  padding: 5px 0;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #FFD219 transparent;
  -ms-overflow-style: auto;
  gap: 12px; /* 12px gap between cards */
  scroll-padding: 0; /* Allow scrolling to edges */
}

.lh-category-cards-wrapper::-webkit-scrollbar {
  display: block;
  height: 6px;
}

.lh-category-cards-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.lh-category-cards-wrapper::-webkit-scrollbar-thumb {
  background-color: #FFD219;
  border-radius: 4px;
}

/* Desktop (large): Center cards with 180px height */
@media screen and (min-width: 990px) {
  .lh-category-cards-wrapper {
    padding: 5px;
    justify-content: center; /* Center cards on large desktop */
  }
}

/* Small devices: Center when content fits, scrollable to left when overflow */
@media screen and (max-width: 989px) {
  .lh-category-filter-section .lh-category-cards-wrapper {
    justify-content: flex-start; /* Start from left - allows scrolling to beginning */
    padding-left: 0; /* No left padding - allows scrolling all the way to left */
    padding-right: 0; /* No right padding - allows scrolling all the way to right */
  }
  
  /* Add pseudo-elements to create centering effect when content fits */
  .lh-category-filter-section .lh-category-cards-wrapper::before,
  .lh-category-filter-section .lh-category-cards-wrapper::after {
    content: '';
    flex: 1 1 auto;
    min-width: 0;
    max-width: 50%;
  }
  
  /* When content overflows, pseudo-elements shrink to 0, allowing scroll to left */
}

/* Mobile: Ensure full scrollability */
@media screen and (max-width: 749px) {
  .lh-category-filter-section {
    padding: 0; /* No padding on section - allows full scroll */
  }
  
  .lh-category-filter-section .lh-category-cards-wrapper {
    padding: 5px 0; /* Keep vertical padding only */
    padding-left: 0; /* No left padding - allows scroll to left edge */
    padding-right: 0; /* No right padding - allows scroll to right edge */
    justify-content: flex-start; /* Start from left - allows scrolling to beginning */
  }
  
  /* Pseudo-elements for centering when content fits */
  .lh-category-filter-section .lh-category-cards-wrapper::before,
  .lh-category-filter-section .lh-category-cards-wrapper::after {
    content: '';
    flex: 1 1 auto;
    min-width: 0;
    max-width: 50%;
  }
}

/* Medium screens (tablet): Allow scrolling, smaller cards */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .lh-category-cards-wrapper {
    padding: 5px 0;
    overflow-x: auto; /* Enable horizontal scroll within cards section */
  }
  
  .category-filter-card {
    min-width: 150px; /* Smaller cards on medium screens */
    width: 150px;
    height: 150px;
  }
}

/* Filter Card - Interactive */
.category-filter-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FAF7EF;
  flex: 0 0 auto; /* Don't grow or shrink, use content size */
  min-width: 180px; /* Default: 180px for large screens */
  width: 180px; /* Desktop: fixed width */
  height: 180px; /* Desktop: fixed height 180px */
  padding: 10px;
  box-sizing: border-box;
  transition: transform 0.2s ease, background-color 0.2s ease;
  overflow: visible;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Mobile: Responsive cards to fit 3 cards on screens down to 320px */
@media screen and (max-width: 749px) {
  .category-filter-card {
    flex: 1 0 calc((100% - 24px) / 3); /* Responsive width to fit 3 cards (accounting for 2 gaps of 12px) */
    min-width: 70px; /* Reduced minimum to fit on 320px screens */
    max-width: 90px; /* Maximum size for larger mobile screens */
    aspect-ratio: 1; /* Maintain square shape */
    width: auto; /* Auto width on mobile */
    height: auto; /* Auto height on mobile */
    padding: 8px; /* Reduced padding on very small screens */
  }
}

/* Very small screens: Further reduce padding */
@media screen and (max-width: 360px) {
  .category-filter-card {
    padding: 6px;
  }
}

.category-filter-card:hover {
  transform: translateY(-2px);
  background-color: #F5F2E8;
}

/* Active State - Same as Hover (just yellow frame) */
.category-filter-card.is-active {
  background-color: #FAF7EF; /* Same as default */
  border-color: transparent;
}

.category-filter-card.is-active .filter-card-label {
  color: inherit;
}

/* Icon Image - Always visible */
.category-filter-card .filter-icon-img,
.category-filter-card .icon-img {
  width: 55.56%;
  height: 55.56%;
  object-fit: contain;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  opacity: 1;
  display: block;
}

/* Hover Frame (Yellow Select Border) */
.category-filter-card .hover-frame {
  position: absolute;
  top: -5px;
  left: 2px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  object-fit: contain;
}

/* Show when active */
.category-filter-card.is-active .hover-frame {
  opacity: 1;
}

/* Show on hover (desktop only), but NOT if just deselected (prevents flickering) */
@media (hover: hover) and (pointer: fine) {
  .category-filter-card:hover:not(.just-deselected) .hover-frame {
    opacity: 1;
  }
}

/* Hide when not active and not hovered */
.category-filter-card:not(.is-active):not(:hover) .hover-frame {
  opacity: 0;
}

/* Explicitly hide when just deselected (even if hovering or on mobile) */
.category-filter-card.just-deselected .hover-frame {
  opacity: 0 !important;
}

/* Filter Card Label */
.filter-card-label {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Mobile: Text label overflow handling for 80px filter cards */
@media screen and (max-width: 749px) {
  .category-filter-card .filter-card-label {
    font-size: 10px; /* Smaller font on mobile for 80px cards */
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Allow 2 lines max */
    line-clamp: 2; /* Standard property for compatibility */
    -webkit-box-orient: vertical;
    word-break: break-word;
    max-width: 100%;
    padding: 0 2px; /* Small horizontal padding */
  }
}

/* Price Range Display - Vertical Center Numbers */
.price-range__display-wrapper {
  align-items: center;
}

.price-range__display-min,
.price-range__display-max {
  display: flex;
  align-items: center;
}

/* Responsive Mobile */
@media screen and (max-width: 768px) {
  .lh-collection-mission-header {
    padding: 25px 0 20px;
  }
  
  .lh-collection-mission-title:not(.lh-heavy-87) {
    font-size: clamp(2rem, 8vw, 2.625rem);
  }
  
  .lh-category-filter-section {
    margin: 0 0 20px;
  }
  
  /* Card spacious mobile padding */
  .lh-card--spacious {
    padding: 16px 16px;
  }
  
  /* Remove bottom spacing from featured collection triple section */

}

/* Note: Product grid responsive columns are handled by .product-grid-container CSS Grid above */
