/** Shopify CDN: Minification failed

Line 2101:21 Expected identifier but found whitespace
Line 2101:22 Unexpected "#4B6F44"

**/
/* ==================== DoobyUsGear Theme - Full Rebuild ==================== */
/* Color Palette:
   Deep Purple: #6A4E82 (products/info/cart navbar)
   Green: #4B6F44 (titles, homepage navbar)
   Lavender: #B59BC0 (pills, hover, icons)
   Soft Olive: #A8C57E (main bg)
   Brown: #8B5A2B (footer)
   Orange: #EB9F34 (accents)
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    background-color: #B59BC0;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== NAVBAR (Homepage - Green #4B6F44) ==================== */
header.site-header {
    background-color: #4B6F44;
    padding: 0.56rem 1.12rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Products/Info/Cart/Search pages use purple navbar */
body.template-collection header.site-header,
body.template-list-collections header.site-header,
body.template-page header.site-header,
body.template-cart header.site-header,
body.template-product header.site-header,
body.template-search header.site-header {
    background-color: #6A4E82;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: flex-start;
}

.desktop-logo { 
    display: block; 
    height: 66px; 
    transform: scaleX(1.44);
}

.mobile-logo { 
    display: none;
}

.header-center {
    flex: 1 1 auto;
    text-align: center;
}

.header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logo-text {
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #A8C57E;
    letter-spacing: 1px;
    display: none;
}

/* Hide mobile search item on desktop */
.mobile-search-item {
    display: none;
}

/* Mobile search bar in hamburger menu */
.mobile-search-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 0.5rem;
}

.mobile-search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 16px;
    flex: 1;
    width: 100%;
}

.mobile-search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-search-bar button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.mobile-search-bar button svg {
    width: 20px;
    height: 20px;
    stroke: #EB9F34;
}

/* Non-homepage mobile search icon - lavender purple */
body.template-collection .mobile-search-bar button svg,
body.template-list-collections .mobile-search-bar button svg,
body.template-page .mobile-search-bar button svg,
body.template-cart .mobile-search-bar button svg,
body.template-product .mobile-search-bar button svg,
body.template-search .mobile-search-bar button svg {
    stroke: #B59BC0;
}

/* Nav icon links */
.nav-icon-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
}

.nav-icon {
    width: 24px;
    height: 24px;
    display: none;
    stroke: #FFFFFF;
}

/* Homepage icon colors - burnt orange */
body.template-index .nav-icon-link .nav-icon {
    stroke: #EB9F34;
}

body.template-index .nav-icon-link:hover .nav-icon {
    stroke: #A8C57E;
}

/* Active icon state - lavender purple */
.nav-icon-link.active .nav-icon {
    stroke: #B59BC0;
}

/* Nav icons group - shown on desktop */
.nav-icons-group {
    display: none;
    gap: 1.5rem;
    align-items: center;
}

/* Desktop search bar */
.desktop-search-bar {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

/* Homepage nav links - green bg so different colors */
.nav-menu a {
    color: #A8C57E;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #EB9F34;
}

/* Products/Info/Cart/Search pages - purple bg so white text */
body.template-collection .nav-menu a,
body.template-list-collections .nav-menu a,
body.template-page .nav-menu a,
body.template-cart .nav-menu a,
body.template-product .nav-menu a,
body.template-search .nav-menu a {
    color: #FFFFFF;
}

body.template-collection .nav-menu a:hover,
body.template-list-collections .nav-menu a:hover,
body.template-page .nav-menu a:hover,
body.template-cart .nav-menu a:hover,
body.template-product .nav-menu a:hover,
body.template-search .nav-menu a:hover {
    color: #B59BC0;
}

.navbar-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Homepage search icon - orange */
.search-icon {
    width: 46px;
    height: 46px;
    color: #EB9F34;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: #F5B84D;
}

/* Products/Info/Cart/Search pages - lavender icon */
body.template-collection .search-icon,
body.template-list-collections .search-icon,
body.template-page .search-icon,
body.template-cart .search-icon,
body.template-product .search-icon,
body.template-search .search-icon {
    color: #B59BC0;
}

body.template-collection .search-icon:hover,
body.template-list-collections .search-icon:hover,
body.template-page .search-icon:hover,
body.template-cart .search-icon:hover,
body.template-product .search-icon:hover,
body.template-search .search-icon:hover {
    color: #FFFFFF;
}

/* Search button wrapper */
.search-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: #EB9F34;
}

.search-form {
    display: flex;
    border: 2px solid #6A4E82;
    border-radius: 50px;
    overflow: hidden;
    background: #FFFFFF;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    outline: none;
    font-family: 'Lato', sans-serif;
}

.search-input::placeholder {
    color: #999;
}

.search-submit {
    background: #6A4E82;
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: #8B5A2B;
}

.search-submit svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* Homepage hamburger - orange */
.hamburger span {
    width: 20px;
    height: 3px;
    background-color: #EB9F34;
    margin: 5px 0;
    transition: 0.3s;
}

/* Products/Info/Cart/Search pages - lavender hamburger */
body.template-collection .hamburger span,
body.template-list-collections .hamburger span,
body.template-page .hamburger span,
body.template-cart .hamburger span,
body.template-product .hamburger span,
body.template-search .hamburger span {
    background-color: #B59BC0;
}

/* Pills Toggle Button */
.pills-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-arrow {
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Desktop toggle - white, in nav-menu */
.desktop-toggle {
    display: flex;
    align-items: center;
}

.desktop-toggle .toggle-arrow {
    color: #FFFFFF;
}

.desktop-toggle .pills-toggle-btn:hover .toggle-arrow {
    color: #B59BC0;
}

/* Mobile toggle - lavender, in navbar-icons */
.mobile-toggle {
    display: none;
}

.mobile-toggle .toggle-arrow {
    color: #B59BC0;
}

.mobile-toggle:hover .toggle-arrow {
    color: #FFFFFF;
}

.pills-toggle-btn.active .toggle-arrow {
    transform: rotate(180deg);
}

/* Show/hide toggles based on screen size */
@media (max-width: 768px) {
    .desktop-toggle {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
}

/* Hidden state for pill navs */
.collection-nav,
.info-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.collection-nav.visible,
.info-nav.visible {
    max-height: 200px;
    padding: 1rem 2rem;
}

@media (min-width: 769px) {
    .hamburger { display: none; }
    .navbar-icons { display: none; }
    
    /* Desktop layout: Logo (left) | Searchbar (center) | Icons (right) */
    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .header-left {
        flex: 0 0 auto;
    }
    
    .header-center { 
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
    }
    
    /* Hide logo text on desktop */
    .header-center .logo-text {
        display: none;
    }
    
    .header-right {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    /* Hide nav-menu on desktop */
    .header-right nav {
        display: none;
    }
    
    /* Show nav icons group on desktop */
    .nav-icons-group {
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }
    
    .nav-menu a {
        font-size: 23px;
    }
    
    /* Show icons, hide text on desktop */
    .desktop-text {
        display: none;
    }
    .nav-icon {
        display: block;
    }
    
    /* Show and style desktop search bar */
    .desktop-search-bar {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 0.36rem 0.96rem;
    }
    
    .desktop-search-bar input {
        background: transparent;
        border: none;
        outline: none;
        color: #FFFFFF;
        font-size: 19px;
        width: 240px;
    }
    
    .desktop-search-bar input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    
    /* Homepage search bar */
    body.template-index .desktop-search-bar input,
    body.template-index .desktop-search-bar input::placeholder {
        color: rgba(168, 197, 126, 0.8);
    }
    
    body.template-index .desktop-search-bar {
        background: rgba(168, 197, 126, 0.15);
    }
    
    .desktop-search-bar button {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
    }
    
    .desktop-search-bar button svg {
        width: 24px;
        height: 24px;
        stroke: #FFFFFF;
    }
    
    body.template-index .desktop-search-bar button svg {
        stroke: #A8C57E;
    }
    
    header.site-header {
        padding: 0.35rem 1.12rem;
    }
}

@media (max-width: 768px) {
    .desktop-logo { display: none; }
    .mobile-logo { display: block; height: 38px; }
    body.template-index .mobile-logo { height: 46px; }
    .logo-text { display: block; font-size: 22px; color: #B59BC0; }
    /* Homepage logo text color */
    body.template-index .logo-text { color: #A8C57E !important; }
    /* Show mobile search item at top of menu */
    .mobile-search-item { 
        display: block; 
        padding: 0.5rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 0.5rem;
    }
    /* Hide desktop search bar on mobile */
    .desktop-search-bar { display: none !important; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #4B6F44;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    body.template-collection .nav-menu,
    body.template-list-collections .nav-menu,
    body.template-page .nav-menu,
    body.template-cart .nav-menu,
    body.template-product .nav-menu,
    body.template-search .nav-menu {
        background-color: #6A4E82;
    }
    .nav-menu.active { display: flex; }
    .hamburger { display: flex; }
    .search-icon { width: 28px; height: 28px; }
    .hamburger span { width: 21px; height: 2.5px; margin: 4.2px 0; }
    header.site-header { padding: 0.45rem 0.9rem; }
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        align-items: center;
        position: relative;
    }
    .header-left {
        gap: 0;
        margin-left: -0.5rem;
    }
    .header-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ==================== HERO SECTION (Homepage) ==================== */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #6A4E82;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.secondary-hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #6A4E82;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

.secondary-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

/* Homepage main area */
main.homepage-main {
    margin: 0;
    padding: 0;
    display: block;
    background-color: #B59BC0;
}

/* ==================== STANDARDIZED CAROUSEL STYLES ==================== */
/* Base carousel - used across all pages */
.carousel-wrapper,
.homepage-carousel,
.product-carousel {
    position: relative;
    width: 100%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Homepage carousel specific */
.homepage-carousel {
    z-index: 10;
    width: 50%;
    max-width: 400px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-label {
    z-index: 11;
    color: #4e2e69;
    font-size: 1.2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 0 0.5rem 0;
    opacity: 0;
    transition: opacity 0.5s ease, background-color 0.3s ease, color 0.3s ease;
    background: #FFFFFF;
    padding: 0.384rem 0.768rem 0.31104rem 0.768rem;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.carousel-label:hover {
    background: #4e2e69;
    color: #FFFFFF;
}

/* Desktop carousel sizing */
@media (min-width: 769px) {
    .homepage-carousel { width: 52%; max-width: 520px; }
    .hero-section { gap: 2rem; }
}

/* Mobile carousel sizing */
@media (max-width: 768px) {
    .homepage-carousel { width: 78%; max-width: 364px; }
    .product-carousel { max-width: 100%; }
}

/* Carousel visibility on hover/touch */
@media (hover: hover) and (pointer: fine) {
    .hero-section:hover .homepage-carousel,
    .hero-section:hover .carousel-label,
    .secondary-hero-section:hover .homepage-carousel,
    .secondary-hero-section:hover .carousel-label {
        opacity: 1;
    }
}

@media (hover: none), (pointer: coarse) {
    .homepage-carousel.carousel-visible,
    .carousel-label.carousel-visible {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .homepage-carousel.carousel-visible,
    .carousel-label.carousel-visible {
        opacity: 1;
    }
}

/* Standardized carousel container - SAME HEIGHT ALL SCREENS */
.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.homepage-carousel .carousel-container,
.product-carousel .carousel-container {
    height: 400px;
}

/* Standardized carousel slide */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    color: inherit;
    cursor: default;
    pointer-events: none;
    text-decoration: none !important;
}

a.carousel-slide,
a.carousel-slide:hover,
a.carousel-slide:visited,
a.carousel-slide:active {
    text-decoration: none !important;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Standardized slide image area - now clickable link */
.slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6A4E82 0%, #A8C57E 100%);
    overflow: hidden;
    height: 76%;
    cursor: pointer;
    text-decoration: none;
}

.slide-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Standardized slide info area */
.slide-info {
    height: 24%;
    padding: 0.48rem 0.8rem 0.8rem 0.8rem;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none !important;
    text-decoration: none !important;
}

.slide-info * {
    text-decoration: none !important;
}

.slide-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    color: #333;
    margin: 0 0 0.2rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.6em;
    line-height: 1.3;
    text-decoration: none !important;
}

.slide-price {
    font-size: 0.8rem;
    font-weight: bold;
    color: #4B6F44;
    margin: 0;
    text-decoration: none !important;
}

/* Standardized carousel controls - dots */
.carousel-controls {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 10px;
    margin-top: 4px;
    pointer-events: auto;
}

.carousel-dot {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.carousel-dot.active {
    background-color: #FFD700;
    border-color: #FFD700;
}

/* Hide carousel nav buttons */
.carousel-nav {
    display: none;
}

/* Coming Soon placeholder slide */
.carousel-slide.coming-soon-slide {
    background: transparent;
    color: #FFFFFF;
    font-size: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 4px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Empty carousel */
.empty-carousel {
    background-color: transparent;
    box-shadow: none;
}

.empty-carousel .carousel-container {
    background-color: transparent;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .carousel-container,
    .homepage-carousel .carousel-container,
    .product-carousel .carousel-container {
        height: 455px;
    }
    
    .slide-title { font-size: 0.7rem; }
    .slide-price { font-size: 0.75rem; }
    .slide-image { height: 82%; }
    .slide-info { height: 18%; padding: 0.36rem 0.6rem 0.6rem 0.6rem; }
    
    .carousel-dot {
        width: 14px;
        height: 14px;
    }
}

/* ==================== COLLECTION NAV (Pills - Products Page) ==================== */
.collection-nav {
    background-color: #B59BC0;
    position: relative;
    z-index: 15;
    /* Controlled by toggle - starts hidden */
}

.collection-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.collection-link {
    padding: 0.6rem 1rem;
    background-color: #6A4E82;
    border: 2px solid #6A4E82;
    border-radius: 25px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-link:hover,
.collection-link.active {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #6A4E82;
}

@media (max-width: 1024px) {
    .collection-nav-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==================== INFO NAV (Pills - Info Page) ==================== */
.info-nav {
    background-color: #B59BC0;
    position: relative;
    z-index: 15;
    /* Controlled by toggle - starts hidden */
}

.info-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.info-link {
    padding: 0.6rem 1rem;
    background-color: #6A4E82;
    border: 2px solid #6A4E82;
    border-radius: 25px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
    .info-link:hover {
        background-color: #FFFFFF;
        border-color: #FFFFFF;
        color: #6A4E82;
    }
}

@media (max-width: 1024px) {
    .info-nav-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== BACKGROUND OVERLAY (Products/Info/Cart/Search) ==================== */
body.template-collection::after,
body.template-list-collections::after,
body.template-page::after,
body.template-cart::after,
body.template-product::after,
body.template-search::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('OrangeLogo2.png');
    background-size: 80%;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.75;
    z-index: 10;
    pointer-events: none;
}

@media (min-width: 769px) {
    body.template-collection::after,
    body.template-list-collections::after,
    body.template-page::after,
    body.template-cart::after,
    body.template-product::after,
    body.template-search::after {
        background-size: 42%;
        background-position: center 75%;
    }
}

/* ==================== MAIN CONTENT AREA ==================== */
main {
    background-color: #A8C57E;
    position: relative;
}

/* ==================== PRODUCT PAGE ==================== */
.product-main {
    position: relative;
    padding: 2rem;
    min-height: calc(100vh - 200px);
    /* No z-index here - let children stack at root level */
}

.product-container {
    position: relative;
    z-index: 15;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-gallery {
    position: relative;
    z-index: 15;
}

.product-image-main {
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 15;
}

.product-image-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #6A4E82;
}

.product-info {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    z-index: 15;
}

.breadcrumb {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #6A4E82;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #4B6F44;
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #6A4E82;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-options {
    margin-bottom: 1.5rem;
}

.option-group {
    margin-bottom: 1rem;
}

.option-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.option-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #6A4E82;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    transition: all 0.3s;
}

.option-btn:hover,
.option-btn.active {
    background: #6A4E82;
    color: white;
}

.product-quantity {
    margin-bottom: 1.5rem;
}

.product-quantity label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #6A4E82;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: #6A4E82;
    color: white;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #4B6F44;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 1.5rem;
}

.add-to-cart-btn:hover {
    background: #3d5a38;
}

.add-to-cart-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.product-description {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-description h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.product-description p,
.product-description ul {
    color: #555;
    line-height: 1.6;
}

.product-description ul {
    padding-left: 1.5rem;
}

.shipping-note {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
}

@media (max-width: 768px) {
    .product-main {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .product-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
        width: 100%;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-info {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ==================== COLLECTION SECTIONS (Products Page Carousels) ==================== */

/* List-Collections 2-column grid layout on desktop/tablet */
.template-list-collections main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

@media (max-width: 900px) {
    .template-list-collections main {
        grid-template-columns: 1fr;
    }
}

.collection-section {
    padding: 3rem 2rem;
    scroll-margin-top: 100px;
    position: relative;
    z-index: 15;
}

.collection-section:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.section-header {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #4B6F44;
    margin: 0;
}

.section-header .view-all {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.section-header .view-all:hover {
    color: #4B6F44;
}

/* ==================== SEARCH FILTER DROPDOWN ==================== */
.desktop-search-wrapper,
.mobile-search-wrapper,
.search-results-wrapper {
    position: relative;
}

.search-filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
    z-index: 200;
    display: none;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
}

.search-filter-dropdown.visible {
    display: block;
}

.search-filter-dropdown .filter-label {
    padding: 0.5rem 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: #6A4E82 !important;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0.25rem;
}

.search-filter-dropdown .filter-option {
    display: block;
    padding: 0.5rem 1rem;
    color: #333 !important;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    transition: background-color 0.2s, color 0.2s;
}

.search-filter-dropdown .filter-option:hover {
    background: #B59BC0;
    color: #FFFFFF !important;
}

.search-filter-dropdown .filter-option.active {
    background: #6A4E82;
    color: #FFFFFF !important;
}

/* Mobile filter dropdown positioning */
.mobile-search-wrapper {
    width: 100%;
}

.mobile-filter {
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    max-height: 350px;
}

/* Clear filter link */
.clear-filter {
    color: #6A4E82;
    text-decoration: underline;
    font-weight: 500;
}

/* ==================== SEARCH FORM (Search Page) ==================== */
/* Hide search form on desktop/tablet - use navbar search instead */
@media (min-width: 769px) {
    body.template-search .search-form {
        display: none;
    }
}

.search-form {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-form input {
    flex: 1;
    max-width: 400px;
    padding: 0.75rem 1rem;
    border: 2px solid #4B6F44;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.search-form input:focus {
    outline: none;
    border-color: #6A4E82;
}

.search-form button {
    padding: 0.75rem 1.5rem;
    background: #4B6F44;
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form button:hover {
    background: #6A4E82;
}

.results-count {
    max-width: 900px;
    margin: 0 auto 1rem;
    font-family: 'Oswald', sans-serif;
    color: #4B6F44;
}

@media (max-width: 480px) {
    .search-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-form input {
        max-width: 100%;
    }
}

/* ==================== SEARCH RESULTS PAGE SEARCH BAR ==================== */
/* Completely standalone - not affected by nav menu styles */
.search-results-searchbar {
    display: block !important;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #6A4E82;
    margin: 0;
}

@media (min-width: 769px) {
    .search-results-searchbar {
        display: none !important;
    }
}

.search-results-form {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    max-width: 320px;
    margin: 0 auto;
}

.search-results-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #FFFFFF !important;
    font-size: 16px !important;
    width: 100%;
}

.search-results-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-results-btn {
    background: none !important;
    border: none !important;
    cursor: pointer;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.search-results-btn svg {
    width: 22px;
    height: 22px;
    stroke: #B59BC0;
}

.search-results-wrapper {
    max-width: 320px;
    margin: 0 auto;
}

.search-results-wrapper .search-results-form {
    margin: 0;
}

.search-results-wrapper .search-filter-dropdown {
    margin-top: 0.5rem;
    max-height: 350px;
}

/* ==================== PRODUCT GRID (Collection Page) ==================== */
.collection-main {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-grid-section {
    padding: 2rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 15;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.product-card-link {
    text-decoration: none;
    display: block;
}

.product-card-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, #6A4E82, #A8C57E);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
}

.product-placeholder {
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
}

.product-card-info {
    padding: 1rem;
    text-align: center;
}

.product-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.product-card-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #4B6F44;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .collection-main {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card-title {
        font-size: 0.95rem;
    }
}

/* ==================== PRODUCT CAROUSEL (Products Page) ==================== */
/* Note: Base carousel styles are now standardized above */
/* This section contains only Products Page specific overrides */

.carousel-wrapper {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

/* Products page carousel uses orange active dot */
.product-carousel .carousel-dot.active {
    background-color: #EB9F34;
    border-color: #EB9F34;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.empty-state p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* ==================== INFO SECTIONS ==================== */
.info-section {
    padding: 4rem 2rem;
    scroll-margin-top: 100px;
    position: relative;
    z-index: 15;
}

.info-section:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.section-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 3rem;
    color: #333;
}

.section-container h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #6A4E82;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #6A4E82;
}

.section-container h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #4B6F44;
    margin: 2rem 0 1rem;
}

.section-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section-container ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.section-container li {
    margin-bottom: 0.5rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #4B6F44;
}

.contact-card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.contact-card strong {
    display: block;
    color: #6A4E82;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #6A4E82;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #4B6F44;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #3d5a38;
}

/* Shipping Table */
.shipping-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.shipping-table th,
.shipping-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.shipping-table th {
    background-color: #f8f8f8;
    color: #6A4E82;
    font-family: 'Oswald', sans-serif;
}

@media (max-width: 768px) {
    .shipping-table {
        font-size: 0.45rem;
        font-weight: bold;
        width: 100%;
        overflow-x: auto;
        display: block;
    }
    
    .shipping-table th,
    .shipping-table td {
        padding: 0.3rem 0.15rem;
        word-break: break-word;
        font-weight: bold;
    }
}

/* ==================== CART STYLES ==================== */
.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 15;
}

.cart-container h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #4B6F44;
    margin-bottom: 2rem;
    text-align: center;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
}

.cart-items {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.cart-item-details h3 {
    font-family: 'Oswald', sans-serif;
    color: #4B6F44;
    margin-bottom: 0.25rem;
}

.cart-item-details p {
    color: #666;
    font-size: 0.9rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background-color: #6A4E82;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: #4B6F44;
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
    color: #333;
}

.cart-item-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #4B6F44;
    font-weight: 600;
}

.remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
}

.remove-btn:hover {
    color: #c0392b;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.empty-cart h2 {
    font-family: 'Oswald', sans-serif;
    color: #4B6F44;
    margin-bottom: 1rem;
}

.continue-shopping {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background-color: #6A4E82;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    transition: background-color 0.3s;
}

.continue-shopping:hover {
    background-color: #4B6F44;
}
    background-color: #4B6F44;
}

.cart-summary {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.cart-summary h2 {
    font-family: 'Oswald', sans-serif;
    color: #4B6F44;
    margin-bottom: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #333;
}

.summary-line.total {
    border-top: 2px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #4B6F44;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: #6A4E82;
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background-color: #4B6F44;
}

.checkout-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 0.75rem;
    }
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    .quantity-control {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 0.5rem;
    }
    .cart-item-price {
        grid-column: 1 / -1;
        text-align: center;
    }
}

/* ==================== FOOTER ==================== */
footer.site-footer {
    background-color: transparent;
    color: #FFFFFF;
    padding: 3rem 2rem 1.5rem;
    margin-top: 0;
    position: relative;
    /* No z-index here so ::before and content can be in global stacking context */
}

footer.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8B5A2B;
    z-index: 5;
}

/* Homepage footer should fully cover (no logo showing through) */
body.template-index footer.site-footer {
    background-color: #8B5A2B;
    z-index: 15;
}

body.template-index footer.site-footer::before {
    z-index: -1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    position: relative;
    z-index: 15;
}

.footer-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #A8C57E;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #EB9F34;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 15;
}

/* Collection/Search pages footer - hide Shop section, space-between layout */
body.template-collection .footer-content .footer-section.shop-section,
body.template-list-collections .footer-content .footer-section.shop-section,
body.template-search .footer-content .footer-section.shop-section {
    display: none;
}

body.template-collection .footer-content,
body.template-list-collections .footer-content,
body.template-search .footer-content {
    justify-content: space-between;
}

/* Info page footer - hide Help section */
body.template-page .footer-content .footer-section.help-section {
    display: none;
}

body.template-page .footer-content {
    justify-content: space-between;
}

/* Cart page footer - hide Follow Us section */
body.template-cart .footer-content .footer-section.follow-section {
    display: none;
}

body.template-cart .footer-content {
    justify-content: space-between;
}

/* Product page footer - hide Follow Us section, space-between layout */
body.template-product .footer-content .footer-section.follow-section {
    display: none;
}

body.template-product .footer-content {
    justify-content: space-between;
}

@media (max-width: 768px) {
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1.5rem;
    }
    /* Hide Shop section on Product page mobile footer */
    body.template-product .footer-content .footer-section.shop-section {
        display: none;
    }
}

/* Homepage Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-grid .footer-section {
    background-color: #4B6F44;
    padding: 1.5rem;
    border-radius: 4px;
}

.footer-grid .footer-section h3 {
    color: #A8C57E;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-grid .footer-section a,
.footer-grid .footer-section p {
    color: #A8C57E;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-grid .footer-section a:hover {
    color: #FFD700;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
