/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors from Guidelines */
    --cream: #FFF8ED;
    --black-olive: #1B1B1B;
    --pimento: #D64933;
    --green-olive: #89B5B5;
    --ice: #89B5B5;
    --orange-peel: #F2810C;
    --lemon-peel: #F6BC05;
    
    /* Balanced Color Strategy - Matching Image Ratios */
    --primary-color: var(--pimento);
    --secondary-color: var(--green-olive);
    --accent-color: var(--ice);
    --success-color: var(--green-olive);
    --warning-color: var(--orange-peel);
    --info-color: var(--ice);
    --text-dark: var(--black-olive);
    --text-light: #666666;
    --white: #FFFFFF;
    --light-bg: var(--cream);
    --beige-bg: var(--cream);
    
    /* Simplified Gradients - Reduced Color Usage */
    --gradient-primary: linear-gradient(135deg, var(--pimento) 0%, var(--black-olive) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--green-olive) 0%, var(--black-olive) 100%);
    --gradient-accent: linear-gradient(135deg, var(--ice) 0%, var(--black-olive) 100%);
    
    --shadow-light: 0 2px 8px rgba(27, 27, 27, 0.1);
    --shadow-medium: 0 8px 25px rgba(27, 27, 27, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Balanced Theme Colors - Reduced Bright Colors */
    --summer-orange: var(--pimento);
    --summer-yellow: var(--pimento);
    --spritz-blue: var(--ice);
    --spritz-green: var(--green-olive);
    --hours-brown: var(--black-olive);
    --hours-tan: var(--cream);
    --event-pink: var(--pimento);
    --event-light-pink: var(--cream);
    --icon-gold: var(--pimento);
    --icon-orange: var(--pimento);
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--beige-bg);
}

/* Yellow Banner */
.yellow-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--lemon-peel);
    z-index: 1001;
    padding: 0.3rem 0;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.banner-link {
    color: var(--black-olive);
    text-decoration: underline;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.banner-link:hover {
    text-decoration: underline;
    color: var(--black-olive);
}

.container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Text', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Main section titles - elegant serif font */
.section-title {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

/* Community Voices section title in red */
.community-section .section-title {
    color: var(--pimento);
    text-align: right;
}

.section-description {
    font-family: 'Work Sans', sans-serif;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--pimento);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Override for Explore All Drinks button to match View All design */
.shop-cta .btn-primary {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--pimento);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.shop-cta .btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--pimento);
    transition: all 0.3s ease;
}

.shop-cta .btn-primary:hover::after {
    height: 3px;
    background: var(--black-olive);
}

.shop-cta .btn-primary:hover {
    color: var(--black-olive);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 2rem;
    width: 100%;
    background: var(--black-olive);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: top 0.3s ease, background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 248, 237, 0.1);
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: calc(2rem + 80px); /* navbar top + navbar height */
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 500px;
    max-height: 80vh;
    overflow: hidden;
}

/* Left Sidebar */
.mega-menu-sidebar {
    background: var(--white);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.mega-menu-categories {
    display: flex;
    flex-direction: column;
}

.mega-category-item {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-category-item:last-child {
    border-bottom: none;
}

.mega-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.mega-category-link:hover {
    background: rgba(214, 73, 51, 0.05);
    color: var(--pimento);
}

.mega-category-item.active .mega-category-link {
    background: var(--pimento);
    color: var(--white);
}

.mega-category-item.active .mega-category-link .fas {
    color: var(--white);
}

.mega-category-link .fas {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

/* Main Content Area */
.mega-menu-main {
    padding: 2rem 3rem;
    background: var(--white);
    overflow-y: auto;
}

.mega-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mega-menu-title {
    display: none;
}

.mega-menu-filters {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(214, 73, 51, 0.3);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: rgba(214, 73, 51, 0.1);
    border-color: var(--pimento);
}

.filter-btn.active {
    background: var(--pimento);
    color: var(--white);
    border-color: var(--pimento);
}

.view-all-btn {
    background: var(--pimento);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    background: var(--black-olive);
    transform: translateY(-2px);
}

/* Product Grid */
.mega-menu-products {
    margin-top: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.mega-product-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mega-product-card:hover {
    transform: translateY(-4px);
}

.mega-product-card .product-image {
    position: relative;
    height: 120px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.mega-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mega-product-card:hover .product-image img {
    transform: scale(1.05);
}

.mega-product-card .product-info {
    padding: 0;
    text-align: center;
}

.mega-product-card .product-name {
    font-family: 'DM Serif Text', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.mega-product-card:hover .product-name {
    text-decoration: underline;
}

.mega-product-card .product-description {
    display: none;
}

.mega-product-card .product-tagline {
    display: none;
}

/* Shop Trigger Animation */
.shop-trigger .fas {
    transition: transform 0.3s ease;
}

.nav-item-has-mega:hover .shop-trigger .fas,
.shop-trigger.active .fas {
    transform: rotate(180deg);
}

.shop-trigger.active {
    color: var(--ice);
}

.navbar.scrolled {
    top: 0;
    background: rgba(27, 27, 27, 0.95);
    backdrop-filter: blur(15px);
}

.navbar.scrolled ~ .mega-menu {
    top: 80px; /* navbar height when scrolled */
}

.nav-container {
    max-width: none;
    margin: 0;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-image {
    height: 50px;
    width: auto;
    margin-bottom: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.nav-logo p {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--ice);
}

.nav-menu a i {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: var(--transition);
}

.nav-menu a:hover i {
    transform: rotate(180deg);
}

.nav-cta {
    color: var(--white);
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
}

.nav-cta:hover {
    color: var(--ice);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-action-btn:hover {
    background: var(--ice);
    color: var(--white);
    transform: translateY(-2px);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--pimento);
    color: var(--white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
    height: 90vh;
    width: 100%;
}

.hero-content {
    padding: 3rem;
    padding-top: clamp(6rem, 12vw, 8rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    background: var(--beige-bg);
    height: 90vh;
    max-height: 90vh;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    z-index: 3;
    width: 100%;
    background: transparent;
}





.hero-theme {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-theme.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Simple fade-in for theme elements */
.hero-theme.active .theme-tag,
.hero-theme.active .hero-title,
.hero-theme.active .hero-subtitle,
.hero-theme.active .hero-description,
.hero-theme.active .hero-ctas {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.theme-tag {
    display: inline-block;
    background: var(--white);
    color: var(--text-dark);
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
    border-radius: 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--ice);
}

.hero-title {
    font-family: 'DM Serif Text', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.title-line {
    display: block;
    color: var(--text-dark);
}

.hero-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-description {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 400;
}

.theme-spacer {
    height: 1rem;
    flex-shrink: 0;
}



.hero-ctas {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-wrap: wrap;
}

.hero-ctas .btn {
    padding: clamp(0.75rem, 2vw, 14px) clamp(1.5rem, 4vw, 28px);
    font-size: clamp(0.9rem, 2vw, 1rem);
    border-radius: 0;
}





.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    min-height: 500px;
}

.hero-image[data-theme="summer"] {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}



/* Theme-specific backgrounds */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



/* Hero Leaves - Static decorative leaves on right side */
.hero-leaves {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-leaves-image {
    position: absolute;
    width: 500px;
    height: auto;
    opacity: 0.25;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    z-index: 1;
}

/* Theme Navigation Dots */
.hero-theme-dots {
    position: absolute;
    top: 50%;
    right: clamp(1rem, 3vw, 2rem);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    z-index: 10;
}

.theme-dot {
    width: clamp(8px, 2vw, 12px);
    height: clamp(8px, 2vw, 12px);
    border-radius: 50%;
    background: rgba(137, 181, 181, 0.6);
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.theme-dot:hover {
    background: rgba(137, 181, 181, 0.8);
    transform: scale(1.2);
}

.theme-dot.active {
    background: var(--ice);
    border-color: var(--white);
    transform: scale(1.3);
}



/* Shop Section */
.shop-section {
    padding: 6rem 3rem 5.5rem 3rem;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.shop-text {
    flex: 1;
    max-width: 70%;
}

.shop-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.shop-text .section-description {
    text-align: left;
    margin: 0;
    max-width: none;
}

.shop-header .shop-cta {
    text-align: right;
    margin-top: 0;
    align-self: flex-end;
}

/* Responsive design for shop header */
@media (max-width: 768px) {
    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .shop-text {
        max-width: 100%;
    }
    
    .shop-text .section-title {
        text-align: center;
    }
    
    .shop-text .section-description {
        text-align: center;
    }
    
    .shop-header .shop-cta {
        text-align: center;
        width: 100%;
    }
}

/* Popular Picks Section */
.popular-picks-section {
    padding: 4rem 3rem;
    background: var(--white);
    margin-top: 90vh;
    position: relative;
    z-index: 2;
}

.popular-picks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.popular-picks-title {
    font-family: 'DM Serif Text', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}

.view-all-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--pimento);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.view-all-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--pimento);
    transition: all 0.3s ease;
}

.view-all-link:hover::after {
    height: 3px;
    background: var(--black-olive);
}

.view-all-link:hover {
    color: var(--black-olive);
    transform: translateY(-2px);
}

.popular-picks-container {
    overflow: hidden;
}

.popular-picks-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.popular-picks-scroll::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1200px) {
    .popular-picks-scroll {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .popular-picks-scroll {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .popular-picks-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .popular-picks-scroll {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: transparent;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    padding: 0;
    margin: 0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    z-index: 1;
    aspect-ratio: 1;
    background: transparent;
    margin: 0;
    padding: 0;
    width: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-hover-icons {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.product-card:hover .product-hover-icons {
    opacity: 1;
}

.hover-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pimento);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hover-icon:hover {
    transform: scale(1.1);
    background: var(--pimento);
    box-shadow: 0 4px 12px rgba(214, 73, 51, 0.4);
}

.hover-icon i {
    font-size: 1rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.preview-icon:hover i {
    color: var(--white);
}

.cart-icon:hover i {
    color: var(--white);
}

.product-card:hover .product-badges {
    opacity: 1;
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    transition: var(--transition);
    z-index: 10;
}

.sale-badge {
    background: var(--pimento);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 11;
    position: relative;
}

.award-badges {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.award-badge {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 12px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    text-align: center;
}

.product-info {
    padding: 1rem;
    background: var(--white);
    margin: 0;
}

.product-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.product-note {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0 0 0.75rem 0;
    font-style: italic;
}

.product-price {
    margin-bottom: 0.75rem;
}

.current-price {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    display: inline;
}

.original-price {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.save-amount {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--pimento);
    font-weight: 500;
    margin-left: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--lemon-peel);
    font-size: 0.9rem;
}

.rating-value {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Recommendation Section - New Split Layout */
.recommendation-section {
    padding: 0;
    background: #E8EAD3;
    min-height: 600px;
    width: 100%;
}

.recommendation-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
    max-width: none;
    margin: 0;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

/* Left Side: Product Image (40%) */
.recommendation-image {
    position: relative;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}


/* Right Side: Quiz Interface (60%) */
.recommendation-quiz {
    padding: 3rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-header {
    margin-bottom: 2rem;
}

.quiz-title {
    font-family: 'DM Serif Text', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.quiz-description {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Quiz Container */
.quiz-container {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(214, 73, 51, 0.1);
}

/* Progress Bar */
.quiz-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    display: flex;
    gap: 8px;
    width: 100%;
    height: 6px;
}

.progress-segment {
    flex: 1;
    height: 100%;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.progress-segment.completed {
    background: #8DB16A;
}

.progress-segment.upcoming {
    background: rgba(141, 177, 106, 0.5);
}

/* Quiz Content */
.quiz-content {
    width: 100%;
}

.quiz-question h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Drink Options Grid */
.drink-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.drink-option {
    background: var(--white);
    border: 2px solid rgba(137, 181, 181, 0.2);
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: lowercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    min-height: 45px;
}

.drink-option i {
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.drink-option span {
    transition: all 0.3s ease;
}

.drink-option:hover {
    background: #8DB16A;
    color: var(--white);
    border-color: #8DB16A;
    transform: translateY(-2px);
}

.drink-option.selected {
    background: #8DB16A;
    color: var(--white);
    border-color: #8DB16A;
}

/* Navigation Buttons */
.quiz-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    min-width: 80px;
}

.prev-btn {
    background: rgba(141, 177, 106, 0.5);
    color: var(--white);
    border: 2px solid rgba(141, 177, 106, 0.5);
}

.prev-btn:hover {
    background: rgba(141, 177, 106, 0.7);
    transform: translateY(-2px);
}

.next-btn {
    background: #8DB16A;
    color: var(--white);
    border: 2px solid #8DB16A;
}

.next-btn:hover {
    background: #7A9E5A;
    border-color: #7A9E5A;
    transform: translateY(-2px);
}

/* Hidden Original Quiz Content */
.original-quiz-content {
    display: none;
}

.selection-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.selection-group {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(214, 73, 51, 0.1);
    transition: var(--transition);
}

.selection-group:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.selection-group h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: var(--pimento);
    text-underline-offset: 6px;
}

.selection-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.selection-btn {
    background: transparent;
    border: 2px solid rgba(141, 177, 106, 0.2);
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: lowercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.selection-btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.selection-btn span {
    transition: all 0.3s ease;
}

.selection-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pimento) 0%, var(--orange-peel) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}


.selection-btn:hover {
    background: var(--pimento);
    color: var(--white);
    border-color: var(--pimento);
}

.selection-btn.selected {
    background: var(--pimento);
    color: var(--white);
    border-color: var(--pimento);
}



@keyframes iconPulse {
    0%, 100% { 
        transform: rotate(10deg); 
    }
    50% { 
        transform: rotate(15deg); 
    }
}

/* Surprise Button */
.surprise-container {
    text-align: center;
    margin-bottom: 2rem;
}

.surprise-btn {
    background: var(--text-dark);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(45, 45, 45, 0.3);
}

.surprise-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pimento);
    transition: left 0.3s ease;
    z-index: -1;
}

.surprise-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(27, 27, 27, 0.4);
}

.surprise-btn:hover::before {
    left: 0;
}

.surprise-btn i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* Recommendations Display */
.recommendations-display {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(214, 73, 51, 0.1);
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    max-width: none;
    margin: 0;
    width: 100%;
}

.recommendations-display.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.recommendations-content h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.recommendation-card {
    background: var(--beige-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(214, 73, 51, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.recommendation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--pimento);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.recommendation-card:hover::before {
    transform: scaleX(1);
}

.recommendation-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.recommendation-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.recommendation-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pimento);
    margin-bottom: 1.5rem;
    text-align: center;
}

.recommendation-card .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: auto;
}

.recommendations-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.recommendations-actions .btn {
    min-width: 200px;
}

/* Responsive Design for Recommendation Tool */
@media (max-width: 1024px) {
    .recommendation-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .recommendation-image {
        height: 300px;
        order: 1;
    }
    
    .recommendation-quiz {
        padding: 2rem;
        order: 2;
    }
    
    .quiz-title {
        font-size: 2rem;
    }
    
    .drink-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .recommendation-section {
        padding: 0;
    }
    
    .recommendation-content {
        margin: 0;
        border-radius: 0;
    }
    
    .recommendation-image {
        height: 250px;
    }
    
    .recommendation-quiz {
        padding: 1.5rem;
    }
    
    .quiz-container {
        padding: 1.5rem;
    }
    
    .quiz-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .quiz-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .drink-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .drink-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        min-height: 40px;
    }
    
    .drink-option i {
        font-size: 0.9rem;
    }
    
    .quiz-navigation {
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .nav-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        min-width: 70px;
    }
    
    .progress-bar {
        gap: 6px;
        height: 5px;
    }
    
    /* Original quiz content responsive */
    .selection-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .selection-group {
        padding: 1.5rem;
    }
    
    .selection-group h3 {
        font-size: 1.3rem;
    }
    
    .selection-options {
        gap: 0.5rem;
    }
    
    .selection-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .selection-btn i {
        font-size: 0.9rem;
    }
    
    .surprise-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .recommendations-display {
        padding: 1.5rem;
    }
    
    .recommendations-content h3 {
        font-size: 1.6rem;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recommendation-card {
        min-height: 280px;
        padding: 2rem;
        min-width: 100%;
    }
    
    .recommendations-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .recommendations-actions .btn {
        min-width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .recommendation-section {
        padding: 0;
    }
    
    .recommendation-content {
        margin: 0;
        border-radius: 0;
    }
    
    .recommendation-image {
        height: 200px;
    }
    
    .recommendation-quiz {
        padding: 1rem;
    }
    
    .quiz-container {
        padding: 1rem;
    }
    
    .quiz-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .quiz-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .drink-options {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        margin-bottom: 1rem;
    }
    
    .drink-option {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        min-height: 35px;
    }
    
    .drink-option i {
        font-size: 0.8rem;
    }
    
    .quiz-navigation {
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .progress-bar {
        gap: 4px;
        height: 4px;
    }
    
    .quiz-question h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Original quiz content responsive */
    .selection-group {
        padding: 1rem;
    }
    
    .selection-group h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .selection-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .selection-btn i {
        font-size: 0.8rem;
    }
    
    .surprise-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .recommendations-display {
        padding: 1rem;
    }
    
    .recommendations-content h3 {
        font-size: 1.4rem;
    }
    
    .recommendation-card {
        min-height: 260px;
        padding: 1.75rem;
        min-width: 100%;
    }
    
    .recommendation-card h4 {
        font-size: 1.2rem;
    }
    
    .recommendation-card p {
        font-size: 0.95rem;
    }
    
    .recommendation-card .price {
        font-size: 1.2rem;
    }
}

.drink-categories-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.drink-categories {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.drink-categories::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--black-olive);
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}

.slider-nav:hover {
    background: #ffffff;
    color: var(--black-olive);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: -25px;
}

.slider-next {
    right: -25px;
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.category-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 0;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214, 73, 51, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    width: 280px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-card:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.category-card:hover .shop-now-btn {
    opacity: 1;
    transform: translateY(0);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}



.category-overlay {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.category-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}



.category-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: center;
    max-width: 100%;
}

.shop-now-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}




.category-card p {
    display: none;
}

.shop-cta {
    text-align: center;
}

.shop-cta .btn {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--pimento);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.shop-cta .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--pimento);
    transition: all 0.3s ease;
}

.shop-cta .btn:hover::after {
    height: 3px;
    background: var(--black-olive);
}

.shop-cta .btn:hover {
    color: var(--black-olive);
    transform: translateY(-2px);
}

/* Membership Section - Three Column Layout */
.membership-section {
    padding: 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.membership-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.membership-column {
    display: flex;
    flex-direction: column;
    background: var(--white);
    position: relative;
    overflow: hidden;
    border-right: 1px solid #ccc;
}

.membership-column:last-child {
    border-right: none;
}

.membership-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.membership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.membership-column:hover .membership-image img {
    transform: scale(1.05);
}

.membership-content {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    flex-grow: 1;
    min-height: 400px;
}

.membership-icon {
    width: 60px;
    height: 60px;
    background: var(--pimento);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.membership-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.membership-column:hover .membership-icon {
    transform: scale(1.1);
    background: var(--black-olive);
}

.membership-content h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.membership-content p {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    max-width: 320px;
}

.membership-content .btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 0;
    background: var(--pimento);
    color: var(--white);
    border: none;
    transition: var(--transition);
}

.membership-content .btn:hover {
    transform: translateY(-2px);
}

/* Events Section */
.events-section {
    padding: 6rem 3rem 5.5rem 3rem;
    background: var(--white);
}

.events-section .events-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: stretch;
}

.events-section .events-text {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}





.events-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.events-section .events-text .section-title {
    text-align: left;
    margin-bottom: 0;
    font-size: 2.2rem;
    color: var(--text-dark);
}

.events-text .btn {
    border-radius: 0;
    padding: clamp(0.75rem, 2vw, 14px) clamp(1.5rem, 4vw, 28px);
    font-size: clamp(0.9rem, 2vw, 1rem);
    display: inline-block;
    width: auto;
    align-self: flex-start;
    flex-shrink: 0;
}

/* Events Gallery Container with Tabs */
.events-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.event-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

.events-section .event-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(27, 27, 27, 0.2);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--pimento);
    font-weight: 500;
    white-space: nowrap;
    flex: 1;
}

.events-section .event-tab:hover {
    background: var(--pimento);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--pimento);
    box-shadow: var(--shadow-light);
}

.events-section .event-tab.active {
    background: var(--pimento);
    color: var(--white);
    border-color: var(--pimento);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.events-section .event-tab i {
    color: var(--pimento);
    transition: var(--transition);
    font-size: 1rem;
}

.events-section .event-tab:hover i,
.events-section .event-tab.active i {
    color: var(--white);
}

.events-section .events-text p {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    font-size: 1.1rem;
}

.event-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.event-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(214, 73, 51, 0.1);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: var(--text-dark);
}

.event-type:hover {
    background: var(--ice);
    color: var(--white);
    transform: translateX(5px);
    border-color: var(--ice);
}

.event-type.active {
    background: var(--ice);
    color: var(--white);
    border-color: var(--ice);
    transform: translateX(5px);
}

.event-type i {
    color: var(--ice);
    transition: var(--transition);
}

.event-type:hover i,
.event-type.active i {
    color: var(--white);
}

.events-section .events-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}

.events-section .gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(214, 73, 51, 0.1);
    display: none;
}

.events-section .gallery-item.active {
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--green-olive);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.gallery-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Upcoming Events Section */
.upcoming-events-section {
    background: #8DB16A;
    overflow: hidden;
}

.upcoming-events-section .events-content {
    display: grid;
    grid-template-columns: 1.22fr 1fr;
    gap: 0;
    align-items: start;
    min-height: 500px;
}

.events-text {
    color: var(--white);
    padding: 4rem 3rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    gap: 1.5rem;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.events-text .section-title {
    text-align: left;
    margin-bottom: 0;
    font-size: 2.5rem;
    color: #FFF8ED;
    font-weight: 400;
    line-height: 1.2;
}

.events-text .section-description {
    text-align: left;
    margin: 0 0 1.5rem 0;
    max-width: none;
    color: #FFF8ED;
    font-size: 1.1rem;
    line-height: 1.6;
}

.events-text .view-all-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: #FFF8ED;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    align-self: flex-start;
}

.events-text .view-all-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFF8ED;
    transition: all 0.3s ease;
}

.events-text .view-all-link:hover::after {
    height: 3px;
    background: var(--black-olive);
}

.events-text .view-all-link:hover {
    color: var(--black-olive);
    transform: translateY(-2px);
}

.events-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100%;
    background: transparent;
    border-radius: 0;
}

.events-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
    border: none;
    outline: none;
    border-radius: 0;
}

.events-display {
    position: relative;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

.event-item {
    display: none;
    background: #FFF8ED;
    border-radius: var(--border-radius);
    padding: 0;
    margin: 0 auto;
    width: 100%;
    height: 120px;
    min-width: 100%;
    min-height: 120px;
    max-width: 100%;
    max-height: 120px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(27, 27, 27, 0.1);
    transition: var(--transition);
    flex-shrink: 0;
    overflow: hidden;
}

.event-item.active {
    display: grid;
    grid-template-columns: 80px 1fr 1.5fr;
    gap: 0;
    animation: fadeIn 0.5s ease-in;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.events-dots {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1rem;
}

.event-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.event-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.event-dot:hover {
    background: var(--white);
    transform: scale(1.1);
}

.event-date {
    background: var(--pimento);
    color: var(--white);
    padding: 1rem 0.5rem;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.event-day {
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    display: block;
}

.event-month {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 0.25rem;
}

.event-details {
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    background: #FFF8ED;
    border-right: 1px solid rgba(27, 27, 27, 0.1);
}

.event-title {
    font-family: 'DM Serif Text', serif;
    font-size: 1.3rem !important;
    color: var(--text-dark);
    margin: 0 0 0.2rem 0;
    font-weight: 400;
    line-height: 1.1;
}

.event-time {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.event-duration {
    font-family: 'Work Sans', sans-serif;
    color: var(--pimento);
    font-weight: 600;
    font-size: 0.8rem;
    margin: 0 0 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.event-description {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    background: #FFF8ED;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.event-description p {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    text-align: left;
    flex: 1;
}

.event-description .event-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: auto;
}

.event-tag {
    background: var(--cream);
    color: var(--text-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid var(--pimento);
    display: inline-block;
    font-family: 'Work Sans', sans-serif;
}

/* Responsive Design for Events Section */
@media (max-width: 768px) {
    .upcoming-events-section .events-content {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 2rem;
        min-height: auto;
    }
    
    .events-text {
        padding: 3rem 2rem 1.5rem 2rem;
        text-align: center;
        gap: 1rem;
    }
    
    .events-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .events-text .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .events-text .section-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .events-text .view-all-link {
        display: block;
        text-align: center;
        margin-top: 1rem;
        align-self: center;
    }
    
    .events-image {
        height: 300px;
        order: -1;
    }
    
    .events-display {
        margin: 0;
        max-width: 100%;
        padding: 0;
    }
    
    .event-item {
        padding: 0;
        width: 100%;
        height: 110px;
        min-height: 110px;
        max-height: 110px;
    }
    
    .event-item.active {
        grid-template-columns: 70px 1fr 1.3fr;
    }
    
    .event-date {
        padding: 0.75rem 0.4rem;
    }
    
    .event-day {
        font-size: 1.2rem;
    }
    
    .event-month {
        font-size: 0.6rem;
    }
    
    .event-title {
        font-size: 1.2rem !important;
    }
    
    .event-time {
        font-size: 0.7rem;
    }
    
    .event-duration {
        font-size: 0.7rem;
    }
    
    .event-description {
        font-size: 0.85rem;
    }
    
    .event-tag {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }
    
    .events-dots {
        justify-content: flex-end;
        margin-top: 0.75rem;
    }
    
    .event-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .events-text {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    }
    
    .events-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .events-text .section-title {
        font-size: 1.8rem;
    }
    
    .event-item {
        width: 100%;
        height: 100px;
        min-height: 100px;
        max-height: 100px;
    }
    
    .event-item.active {
        grid-template-columns: 60px 1fr 1.2fr;
    }
    
    .event-date {
        padding: 0.6rem 0.3rem;
    }
}

/* Why Section */
.why-section {
    padding: 4rem 3rem;
    background: var(--cream);
    position: relative;
    overflow: visible;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23a8d5a8" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.why-section .section-title {
    color: var(--pimento);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 400;
}

.why-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.why-panel {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.panel-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.why-panel:hover .panel-image img {
    transform: scale(1.05);
}

.panel-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
    z-index: 10;
    transition: var(--transition);
}

.why-panel:hover .panel-icon {
    transform: translateY(-10px) scale(1.1);
}

.panel-content {
    padding: 4.5rem 2rem 3rem;
    background: linear-gradient(to bottom, #ffffff 20%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0) 95%, rgba(255, 255, 255, 0));
    border-radius: 12px;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.why-panel:nth-child(1) .panel-icon {
    background: #89B5B5;
}

.why-panel:nth-child(2) .panel-icon {
    background: #8DB16A;
}

.why-panel:nth-child(3) .panel-icon {
    background: #F6BC05;
}

.panel-title {
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.panel-description {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.why-cta {
    text-align: center;
}

.why-cta .btn {
    border-radius: 0;
}

.why-leaves {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
    z-index: 1;
}

.leaves-image {
    position: absolute;
    width: 400px;
    height: auto;
    opacity: 0.3;
    transition: transform 0.1s ease-out;
}

.leaves-left {
    left: 5%;
    bottom: 0;
    transform: rotate(-15deg) translateY(100px);
}

.leaves-right {
    right: 5%;
    bottom: 0;
    transform: rotate(15deg) translateY(100px);
}

/* Community Section */
.community-section {
    padding: 0;
    background: var(--beige-bg);
    position: relative;
    overflow: hidden;
}

.community-container {
    display: flex;
    min-height: 500px;
}

.community-image-column {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
}

.community-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.community-content-column {
    flex: 0 0 40%;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: var(--pimento);
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(214, 73, 51, 0.2));
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Larger icons for key community elements */
.icon-heart,
.icon-users,
.icon-handshake {
    font-size: 2rem;
    opacity: 0.7;
}

.icon-star {
    font-size: 1.8rem;
    opacity: 0.65;
}

.floating-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(214, 73, 51, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-icon i {
    transition: var(--transition);
}

.floating-icon:hover {
    transform: scale(1.1);
    opacity: 1;
}

.floating-icon:hover i {
    transform: scale(1.2);
    color: var(--orange-peel);
    filter: drop-shadow(0 4px 8px rgba(242, 129, 12, 0.4));
}

.floating-icon:hover::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

/* Individual icon positioning and animations */
.icon-heart {
    top: 8%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.icon-star {
    top: 12%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.icon-users {
    top: 85%;
    left: 8%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.icon-coffee {
    top: 6%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.icon-leaf {
    top: 88%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 8.5s;
}

.icon-smile {
    top: 90%;
    right: 10%;
    animation-delay: 5s;
    animation-duration: 7.5s;
}

.icon-handshake {
    top: 92%;
    right: 20%;
    animation-delay: 6s;
    animation-duration: 9.5s;
}

.icon-lightbulb {
    top: 10%;
    left: 15%;
    animation-delay: 7s;
    animation-duration: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

/* Ensure testimonials are above floating icons */
.testimonials {
    position: relative;
    max-width: 100%;
    margin: 2rem 0;
    z-index: 2;
}

/* Responsive adjustments for floating icons */
@media (max-width: 768px) {
    .floating-icon {
        font-size: 1.2rem;
        opacity: 0.4;
    }
    
    .icon-heart,
    .icon-users,
    .icon-handshake {
        font-size: 1.6rem;
        opacity: 0.5;
    }
    
    .icon-star {
        font-size: 1.4rem;
        opacity: 0.45;
    }
    
    .icon-heart { top: 20%; left: 5%; }
    .icon-star { top: 30%; right: 10%; }
    .icon-users { top: 50%; left: 3%; }
    .icon-leaf { top: 70%; left: 15%; }
    .icon-smile { top: 60%; right: 5%; }
    .icon-handshake { top: 80%; right: 15%; }
    .icon-lightbulb { top: 90%; left: 10%; }
    
    /* Membership section responsive */
    .membership-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .membership-column {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .membership-column:last-child {
        border-bottom: none;
    }
    
    .membership-image {
        height: 250px;
    }
    
    .membership-content {
        padding: 3rem 1.5rem;
        min-height: 350px;
    }
    
    .membership-content h3 {
        font-size: 1.6rem;
    }
    
    .membership-content p {
        font-size: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .floating-icon {
        font-size: 1rem;
        opacity: 0.3;
    }
    
    .icon-heart,
    .icon-users,
    .icon-handshake {
        font-size: 1.3rem;
        opacity: 0.4;
    }
    
    .icon-star {
        font-size: 1.15rem;
        opacity: 0.35;
    }
    
    .icon-heart { top: 25%; left: 3%; }
    .icon-star { top: 35%; right: 8%; }
    .icon-users { top: 55%; left: 2%; }
    .icon-leaf { top: 75%; left: 12%; }
    .icon-smile { top: 65%; right: 3%; }
    .icon-handshake { top: 85%; right: 12%; }
    .icon-lightbulb { top: 95%; left: 8%; }
    
    /* Membership section responsive for small screens */
    .membership-image {
        height: 200px;
    }
    
    .membership-content {
        padding: 2.5rem 1.25rem;
        min-height: 300px;
    }
    
    .membership-content h3 {
        font-size: 1.5rem;
    }
    
    .membership-content p {
        font-size: 0.95rem;
    }
    
    .membership-icon {
        width: 50px;
        height: 50px;
    }
    
    .membership-icon i {
        font-size: 1.3rem;
    }
    
    .membership-content .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
}

.testimonials {
    position: relative;
    max-width: 100%;
    margin: 2rem 0;
}

.testimonial {
    display: none;
    text-align: right;
    padding: 1.5rem 0;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author strong {
    font-family: 'Work Sans', sans-serif;
    color: var(--pimento);
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-author span {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-light);
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
}

.testimonial-dots {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--ice);
    transform: scale(1.2);
}

/* Community Voices dots in red */
.community-section .dot {
    background: rgba(214, 73, 51, 0.3);
}

.community-section .dot.active {
    background: var(--pimento);
    transform: scale(1.2);
}

/* Join Section */
.join-section {
    padding: 3rem 3rem;
    background: var(--green-olive);
    color: var(--white);
}

.newsletter-signup {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-signup .section-title {
    font-family: 'DM Serif Text', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 400;
}

.newsletter-signup p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 400;
    color: var(--black-olive);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 450px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 14px;
    border: none;
    border-radius: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    outline: none;
}

.newsletter-form .btn {
    background: var(--ice);
    color: var(--white);
    border: 2px solid var(--ice);
    border-radius: 0;
}

.newsletter-form .btn:hover {
    background: var(--ice);
    color: var(--white);
}

/* Footer newsletter form alignment */
.footer-section:last-child .newsletter-form {
    margin: 0;
    justify-content: flex-end;
}

/* Stay Connected heading styling */
.footer-section:last-child h4 {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--black-olive);
    color: var(--white);
    padding: 4rem 3rem 2rem 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr 2.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Work Sans', sans-serif;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
}

.footer-section p {
    font-family: 'Work Sans', sans-serif;
    color: #BDC3C7;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #BDC3C7;
}

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--pimento);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--ice);
    width: 16px;
    text-align: center;
}

/* Contact section specific styling */
.footer-section:last-child ul li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--ice);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.follow-shop-button {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
}

.follow-shop-button .btn {
    width: 100%;
}

.btn-follow-shop {
    background: #8B5CF6;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: calc(100% - 2rem);
    max-width: 200px;
}

.btn-follow-shop:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.btn-follow-shop i {
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 248, 237, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: #BDC3C7;
}

.footer-bottom p {
    font-family: 'Work Sans', sans-serif;
    color: #BDC3C7;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    /* Mega Menu Responsive */
    .mega-menu-content {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: 70vh;
    }
    
    .mega-menu-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }
    
    .mega-menu-categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .mega-category-item {
        border-bottom: none;
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mega-category-item:nth-child(even) {
        border-right: none;
    }
    
    .mega-category-link {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        text-align: center;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .mega-category-link .fas {
        display: none;
    }
    
    .mega-menu-main {
        padding: 1.5rem 2rem;
    }
    
    .mega-menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .mega-menu-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .view-all-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        align-self: flex-start;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .mega-product-card .product-image {
        height: 100px;
    }
    
    .mega-product-card .product-name {
        font-size: 0.9rem;
    }
    
    .popular-picks-section,
    .shop-section,
    .why-section,
    .events-section {
        padding: 4rem 2rem;
    }
    
    .community-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .community-image-column {
        height: 300px;
    }
    
    .community-content-column {
        padding: 2rem;
    }
    
    .community-section,
    .join-section,
    .footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--black-olive);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .events-section .events-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-panels {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .why-panel {
        padding: 0;
    }
    
    .panel-image {
        height: 220px;
    }
    
    .panel-content {
        padding: 3.5rem 1.5rem 2rem;
        margin-top: -60px;
    }
    
    .panel-title {
        font-size: 1.3rem;
    }
    
    .event-types {
        grid-template-columns: 1fr;
    }
    
    .why-icons {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .popular-picks-title {
        font-size: 1.5rem;
    }
    
    .product-card {
        min-width: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:nth-child(4),
    .footer-section:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    /* Mega Menu Mobile */
    .mega-menu-categories {
        grid-template-columns: 1fr;
    }
    
    .mega-category-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mega-category-item:nth-child(even) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mega-category-item:last-child {
        border-bottom: none;
    }
    
    .mega-category-link {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .mega-category-link .fas {
        display: block;
        font-size: 0.6rem;
    }
    
    .mega-menu-main {
        padding: 1rem 1.5rem;
    }
    
    .mega-menu-title {
        font-size: 1.3rem;
    }
    
    .filter-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .view-all-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .mega-product-card .product-image {
        height: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
        font-family: 'DM Serif Text', serif;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .drink-categories {
        grid-template-columns: 1fr;
    }
    
    .event-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .events-section .events-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

/* Hover Effects */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Focus States for Accessibility */
.btn:focus,
input:focus,
a:focus {
    outline: 2px solid var(--green-olive);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-ctas,
    .newsletter-form,
    .social-links {
        display: none;
    }
    
    .hero {
        min-height: auto;
    }
}

/* Popup Styles */
/* Global background blur when popup is active */
body.popup-active {
    overflow: hidden;
}

body.popup-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 1999;
    pointer-events: none;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
    opacity: 0;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Ensure proper centering */
    align-items: center;
    justify-content: center;
}



.popup-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    padding: 20px;
}

.popup-content {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
    z-index: 2001;
    /* Ensure popup is always visible */
    min-height: 200px;
    box-sizing: border-box;
    /* Smooth scrolling */
    scrollbar-width: thin;
    scrollbar-color: var(--green-olive) transparent;
}

/* Custom scrollbar for webkit browsers */
.popup-content::-webkit-scrollbar {
    width: 6px;
}

.popup-content::-webkit-scrollbar-track {
    background: transparent;
}

.popup-content::-webkit-scrollbar-thumb {
    background: var(--green-olive);
    border-radius: 3px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: var(--ice);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Ensure smooth entrance animation */
.popup-content {
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px 16px 0 0;
}

.popup-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.popup-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: 300;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    transform: rotate(90deg);
}

/* Search Popup */
.search-popup {
    max-width: 650px;
}

.search-form {
    display: flex;
    padding: 2rem;
    gap: 0.75rem;
    background: var(--white);
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    border-color: var(--green-olive);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(141, 177, 106, 0.1);
}

.search-submit {
    background: var(--pimento);
    color: var(--white);
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    min-width: 120px;
}

.search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 27, 27, 0.3);
}

.search-suggestions {
    padding: 0 2rem 2rem;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
}

.search-suggestions h4 {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background: var(--white);
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 400;
}

.tag:hover {
    background: var(--ice);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 27, 27, 0.3);
}

/* Login Popup */
.login-popup {
    max-width: 450px;
}

.login-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    border-color: var(--green-olive);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(141, 177, 106, 0.1);
}

.form-links {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.form-links a {
    color: var(--pimento);
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.form-links a:hover {
    color: var(--pimento);
    text-decoration: underline;
}

/* Cart Popup */
.cart-popup {
    max-width: 500px;
}

.cart-items {
    padding: 2rem;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart {
    text-align: center;
    color: var(--text-light);
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.1);
}

.empty-cart p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
}

.cart-total {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

.total-amount {
    color: var(--pimento);
    margin-left: 0.75rem;
    font-size: 1.4rem;
}

.checkout-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Responsive popup adjustments */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 0;
        max-height: 85vh;
        transform: scale(0.95) translateY(15px);
    }
    
    .popup-overlay.active .popup-content {
        transform: scale(1) translateY(0);
    }
    
    .popup-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .search-form,
    .login-form,
    .cart-items {
        padding: 1.5rem;
    }
    
    .search-suggestions {
        padding: 0 1.5rem 1.5rem;
    }
    
    .cart-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 98%;
        margin: 0;
        max-height: 90vh;
        transform: scale(0.98) translateY(10px);
    }
    
    .popup-overlay.active .popup-content {
        transform: scale(1) translateY(0);
    }
    
    .popup-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }
    
    .search-form,
    .login-form,
    .cart-items {
        padding: 1.25rem;
    }
    
    .search-suggestions {
        padding: 0 1.25rem 1.25rem;
    }
    
    .cart-footer {
        padding: 1.25rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .popup-content {
        width: 99%;
        max-height: 95vh;
        margin: 0;
    }
    
    .popup-overlay.active {
        padding: 10px;
    }
    
    .popup-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .search-form,
    .login-form,
    .cart-items {
        padding: 1rem;
    }
    
    .search-suggestions {
        padding: 0 1rem 1rem;
    }
    
    .cart-footer {
        padding: 1rem;
    }
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content {
        padding: 2rem 0;
        order: 2;
    }
    
    .hero-visual {
        height: 400px;
        order: 1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }
    
    .hero-container {
        padding: 0 15px;
        gap: 0;
        height: 100vh;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        padding-top: clamp(4rem, 10vw, 6rem);
        height: 100vh;
        max-height: 100vh;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .hero-leaves-image {
        width: 350px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(-10deg);
        opacity: 0.2;
    }
    
    .hero-theme-dots {
        top: 50%;
        right: clamp(0.5rem, 2vw, 1.5rem);
        transform: translateY(-50%);
        flex-direction: column;
    }
    
    /* Shop Section Responsive */
    .drink-categories {
        gap: 1.5rem;
    }
    
    .category-card {
        height: 380px;
        width: 250px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: -22px;
    }
    
    .slider-next {
        right: -22px;
    }
    
    .hours-info {
        padding: 1rem;
    }
    
    .hours-row {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .popular-picks-section,
    .shop-section,
    .why-section,
    .events-section {
        padding: 3rem 1.5rem;
    }
    
    .community-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .community-image-column {
        height: 250px;
    }
    
    .community-content-column {
        padding: 1.5rem;
    }
    
    .community-section,
    .join-section,
    .footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero-container {
        height: 100vh;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        padding-top: clamp(3.5rem, 8vw, 5rem);
        height: 100vh;
        max-height: 100vh;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 2rem;
        font-family: 'DM Serif Text', serif;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-leaves-image {
        width: 250px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(-10deg);
        opacity: 0.15;
    }
    
    .theme-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-theme-dots {
        top: 50%;
        right: clamp(0.5rem, 1.5vw, 1rem);
        transform: translateY(-50%);
        flex-direction: column;
        gap: clamp(0.5rem, 1.5vw, 1rem);
    }
    
    .shop-section {
        margin-top: 100vh;
    }
    
    /* Shop Section Mobile Responsive */
    .drink-categories {
        gap: 1rem;
    }
    
    .category-card {
        height: 350px;
        width: 220px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slider-prev {
        left: -20px;
    }
    
    .slider-next {
        right: -20px;
    }
    
    .theme-dot {
        width: 10px;
        height: 10px;
    }
}