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

html {
    scroll-behavior: smooth;
}

:root {
    --pantone-green: #2C3A1E;
    --metallic-silver: #B8A898;
    --gradient-silver: linear-gradient(135deg, #B8A898 0%, #D4C4B0 50%, #9A8A7A 100%);
    --silver-color: #B8A898;
    /* Rich Old Money Gold Accents */
    --rich-gold: #B8A898;
    --antique-gold: #D4C4B0;
    --warm-gold: #E8E0D5;
    --deep-gold: #9A8A7A;
    --primary-dark: #1a1a1a;
    --secondary-dark: #2a2a2a;
    --accent-green: #3E4E2D;
    /* Warmer Cream Tones */
    --light-bg: #F7F3E9;
    --off-white: #FBF8F3;
    --warm-cream: #F5F0E5;
    --soft-ivory: #FFF9F0;
    --text-primary: #2B2B2B;
    --text-secondary: #5A5A5A;
    --border-color: #B8A898;
}

body {
    font-family: 'Garamond', serif;
    line-height: 2.4;
    color: var(--text-primary);
    background-color: var(--pantone-green);
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle 400px at 50% 50%, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.25) 60%, rgba(255, 255, 255, 0.3) 66%, rgba(255, 255, 255, 0.25) 72%, rgba(255, 255, 255, 0.05) 85%, transparent 100%);
    animation: floatHalos 30s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle 400px at 50% 50%, transparent 0%, transparent 64%, rgba(255, 255, 255, 0.0001) 66%, rgba(255, 255, 255, 0.0001) 67%, transparent 69%);
    filter: blur(45px);
    animation: floatHalos 30s ease-in-out infinite;
}

@keyframes floatHalos {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(2%, 3%) scale(1.05);
    }
    50% {
        transform: translate(-2%, -2%) scale(0.95);
    }
    75% {
        transform: translate(3%, -3%) scale(1.02);
    }
}

/* Ensure content stays above the halo effect */
body > * {
    position: relative;
    z-index: 10;
}

h1, h2, h3, h4 {
    font-family: 'Garamond', serif;
    font-weight: 400;
    letter-spacing: 5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--pantone-green);
    z-index: 1000;
    height: 90px;
    border-bottom: 3px double var(--rich-gold);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 0;
}

.by-aurarae {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 8px;
    opacity: 0.8;
}

.nav-menu {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    top: 90px;  /* Positioned below navbar */
    flex-direction: column;
    background-color: rgba(64, 73, 44, 0.97);
    width: auto;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(192, 168, 110, 0.2);
    padding: 30px 50px;
    gap: 8px;
    list-style: none;
    margin: 0;
    z-index: 999;
    border: 1px solid rgba(192, 168, 110, 0.3);
    border-top: 2px solid var(--rich-gold);
    opacity: 0;
    visibility: hidden;
}

.nav-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nav-menu a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 12px 20px;
    font-family: 'EB Garamond', 'Cormorant Garamond', Garamond, serif;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
    width: 100%;
}

.nav-menu a:hover {
    color: var(--rich-gold);
    letter-spacing: 4px;
}

/* Dropdown Menu Styles - Disabled for hamburger menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;  /* Vertically center dropdown */
}

.hamburger {
    display: flex;  /* Always show hamburger on all screen sizes */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    height: 40px;  /* Match logo height for alignment */
    margin-left: auto;  /* Push hamburger to the right */
}

.hamburger span {
    width: 25px;
    height: 1px;
    background: #ffffff;  /* White hamburger lines on all screen sizes */
    margin: 4px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Menu in Hamburger - All Screen Sizes */
.dropdown-menu {
    display: none;  /* Completely hide by default */
    position: static;
    transform: none;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: rgba(50, 58, 35, 0.6);
    border-top: 1px solid rgba(192, 168, 110, 0.2);
    border-bottom: 1px solid rgba(192, 168, 110, 0.2);
    width: 100%;
    text-align: center;
    opacity: 1;
    visibility: visible;
    padding: 8px 0;
}

.dropdown.active .dropdown-menu {
    display: block;  /* Show when active */
}

.dropdown-toggle::after {
    display: inline-block;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
    font-family: 'EB Garamond', 'Cormorant Garamond', Garamond, serif;
}

.dropdown-menu a:hover {
    color: var(--rich-gold);
    letter-spacing: 3px;
}

/* Hero Section */
.hero, .wholesale-hero, .history-hero {
    margin-top: 0 !important;
}

.hero {
    --hero-height: 180vh;
    --hero-wave-height: calc(var(--hero-height) * 0.5);
    height: var(--hero-height);
    background-image: url('images/pastoral-landscape-flowing-stream.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-start;  /* Changed from center to position logo at top */
    justify-content: center;
    padding-top: calc(90px + 20vh);  /* Navbar height + original padding */
    padding-bottom: var(--hero-wave-height);
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;  /* Hide wave divider overflow */
    z-index: 0;  /* Below the aura rings which are at z-index: 1 */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 40px;
    z-index: 3;
}

/* Hero content text styling */
.hero-content .japanese-aura {
    font-size: 24px;
    color: #ffffff;
    margin: 20px 0;
    opacity: 0.9;
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-title {
    text-transform: none;
    font-size: 72px;
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: 24px;
    font-family: 'Garamond', serif;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 5px;
    opacity: 0.95;
    font-family: 'Garamond', serif;
}

/* Special styling for "Pour into yourself" subtitle on history page */
.history-hero .hero-subtitle {
    font-family: 'Garamond', serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: none;
    font-style: italic;
}

/* Delicate matcha title styling */
.matcha-delicate-title {
    font-size: 52px !important;
    font-weight: 300 !important;
    letter-spacing: 2px !important;
    text-transform: none !important;
    font-style: italic !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
}

/* Matcha benefits title - capitalize override */
.matcha-benefits-title {
    text-transform: capitalize !important;
}

/* Matcha Introduction Section */
.matcha-intro-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

.matcha-intro-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.matcha-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.matcha-intro-text {
    font-size: 16px;
    line-height: 2.2;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.matcha-intro-text.emphasis {
    font-style: italic;
    margin-top: 50px;
    font-size: 18px;
    color: var(--antique-gold);
    letter-spacing: 1px;
}

.hero-japanese {
    display: block;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-top: 12px;
    opacity: 0.85;
    font-family: 'Garamond', serif;
}

.hero-logo-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    top: 10%;
}

@media (min-width: 1025px) {
    .hero-logo-image {
        max-width: 260px;
    }
}

/* Section Titles */
.section-title {
    font-size: 30px;
    text-align: center;
    margin: 0 auto 120px;
    color: var(--rich-gold);
    font-weight: 400;
    letter-spacing: 10px;
    border-bottom: 3px double var(--antique-gold);
    padding-bottom: 40px;
    display: block;
    max-width: fit-content;
}

/* About Section */
.about-section {
    padding: 200px 0;
    margin-top: 0;
    background-image: url('images/pastoral-landscape-flowing-stream.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: visible;
    z-index: -1;
}

.hero-wave-with-image {
    z-index: 10;
    bottom: 0 !important;  /* Start from bottom of hero */
    height: 90vh !important;  /* Fill bottom half of 180vh hero */
    transform: rotate(180deg);  /* Flip the wave */
}

.hero-wave-with-image svg {
    height: 100% !important;  /* Make SVG fill the entire container */
}

.hero-wave-with-image .shape-fill {
    fill: url(#pastoralPattern) !important;
}

/* Hero Wave with Pastoral Image - wave edge anchored to bottom */
.hero-wave-pastoral {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: var(--hero-wave-height);
    overflow: hidden;
    line-height: 0;
    z-index: 2;  /* Above background but below content */
}

.hero-wave-pastoral svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100%;  /* Fill entire container */
}

.hero-wave-pastoral .shape-fill {
    fill: url(#pastoralFillPattern) !important;
}

.hero-wave-gif {
    transform-origin: center;
    transform-box: fill-box;  /* Keep GIF scaling anchored to its own bounds */
}

/* Video replacement for GIF in hero wave */
.hero-wave-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: url(#waveClipPath);
    -webkit-clip-path: url(#waveClipPath);
}

.hero-wave-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    clip-path: url(#waveClipPath);
    -webkit-clip-path: url(#waveClipPath);
    pointer-events: none;
}

.hero-wave-mask {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Text overlay on GIF section */
.hero-gif-text {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;  /* Above the wave */
    width: 100%;
}

.hero-gif-text .pour-into-yourself {
    font-size: 32px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'EB Garamond', 'Cormorant Garamond', 'Garamond', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: none;
    margin-bottom: 20px;
}

.hero-gif-text .rounded-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--pantone-green);
    font-weight: 600;
    font-size: 8px;
    padding: 10px 28px;
    letter-spacing: 2px;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}


.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Japanese Aura text above "Pour into yourself" */
.japanese-aura {
    font-size: 24px;
    text-align: center;
    color: var(--rich-gold);
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 28px;
    opacity: 0.95;
    font-family: 'Garamond', serif;
}

/* Special styling for "Pour into yourself" title */
.about-section .section-title {
    font-family: 'Garamond', serif;
    font-weight: 400;
    font-size: 38px;
    letter-spacing: 2px;
    font-style: italic;
    border: none;
}

/* Make "Pour into yourself" smaller when it has the class */
.about-section .section-title.pour-into-yourself {
    font-size: 36px;
    margin-bottom: 70px;
    text-transform: none;
    letter-spacing: 1px;
}

.about-text {
    font-size: 16px;
    line-height: 2.6;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 50px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Video Section */
.video-section {
    padding: 120px 0;
    background-color: transparent;
}

/* Mobile video section override will be in media query */

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0;
    border: 5px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Tea Farm Gallery Section - 4x Photo Carousel */
.tea-farm-gallery-section {
    padding: 120px 0 140px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Mobile: Remove padding to allow full-screen carousel */
@media (max-width: 1268px) {
    .tea-farm-gallery-section {
        padding: 0;
    }
}

/* Add visible stroke to wave between dark sections */
.tea-farm-gallery-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

/* Carousel Container */
.carousel-container {
    max-width: 100%;
    margin: 60px 0 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.carousel-wrapper {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 20px;
}

.carousel-photo {
    flex: 1;
    width: 25%;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.carousel-photo:hover {
    transform: scale(1.02);
    z-index: 1;
}

.carousel-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text block styling for carousel */
.carousel-text-block {
    background: rgba(255, 255, 255, 0.03);
    border: 3px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    transition: all 0.4s ease;
}

.carousel-text-block:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--warm-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4), 0 8px 24px rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
}

.carousel-text-block .text-content {
    text-align: center;
}

.carousel-text-block .text-content h3 {
    font-size: 24px;
    color: var(--rich-gold);
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-family: 'Garamond', serif;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 12px;
}

.carousel-text-block .text-content p {
    font-size: 15px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Hide carousel dots on desktop */
.carousel-dots {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 1268px) {
    /* Mobile carousel - single full-width photo with swipe */
    .carousel-container {
        overflow: hidden;
        position: relative;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 0;
        margin-top: 0;  /* Reduced from 60px */
    }
    
    .carousel-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        height: 100vh;
        gap: 0;
        transition: transform 0.4s ease;
        width: 400%; /* 4 slides at 100vw each */
        touch-action: pan-y;
    }
    
    .carousel-photo {
        width: 100vw;
        flex: 0 0 100vw;
        height: 100vh;
        min-width: 100vw;
        position: relative;
    }
    
    .carousel-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    /* Text block on mobile takes full screen */
    .carousel-text-block {
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 30px;  /* Reduced from 60px 40px */
        background: rgba(44, 58, 30, 0.95);
        border: none;
    }
    
    .carousel-text-block .text-content {
        max-width: 500px;
    }
    
    .carousel-text-block .text-content h3 {
        font-size: 24px;  /* Reduced from 28px */
        margin-bottom: 18px;  /* Reduced from 24px */
        letter-spacing: 4px;  /* Reduced from 6px */
    }
    
    .carousel-text-block .text-content p {
        font-size: 15px;  /* Reduced from 16px */
        line-height: 2;  /* Reduced from 2.2 */
    }
    
    /* Carousel navigation dots */
    .carousel-dots {
        display: flex !important;
        position: absolute;
        bottom: 25px;  /* Reduced from 40px */
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;  /* Reduced from 14px */
        z-index: 100;
    }
    
    .carousel-dot {
        width: 10px;  /* Reduced from 12px */
        height: 10px;  /* Reduced from 12px */
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.7);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .carousel-dot.active {
        background: var(--rich-gold);
        border-color: var(--rich-gold);
        transform: scale(1.3);
    }
}

/* Origin Information Section */
.origin-info-section {
    padding: 100px 0 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

.origin-info-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.origin-info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Two Column Layout for Origin Section */
.origin-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto 80px;
}

.origin-text-column {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 0;
}

.origin-image-column {
    height: auto;
    overflow: hidden;
    border-radius: 0;
    border: 5px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2), 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.origin-image-column:hover {
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4), 0 12px 32px rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
}

.origin-image-column img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.origin-image-column:hover img {
    transform: scale(1.08);
}

.origin-info-title {
    font-size: 18px;
    text-align: left;
    margin-bottom: 40px;
    color: var(--rich-gold);
    font-weight: 300;
    letter-spacing: 3px;
    font-family: 'Garamond', serif;
    border-bottom: 2px solid var(--antique-gold);
    padding-bottom: 20px;
    display: block;
    width: 100%;
    opacity: 0.95;
}

.origin-info-text {
    font-size: 17px;
    line-height: 2.4;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 0.5px;
}

.origin-info-text:last-child {
    margin-bottom: 0;
}

/* Mobile responsive for two-column layout */
@media (max-width: 1268px) {
    .origin-two-column {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .origin-text-column {
        text-align: center;
    }
    
    .origin-info-title {
        text-align: center;
    }
    
    .origin-info-text {
        text-align: justify;
    }
    
    .origin-image-column {
        height: 300px;  /* Reduced from 400px */
    }
}

/* Mini Gallery Container (on matcha page and history page) */
.mini-gallery-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 15px;
    max-width: 1300px;
    margin: 80px auto 0;
    padding: 0 40px;
}

.mini-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 3px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

/* Create a dynamic masonry-style layout */
.mini-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.mini-gallery-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
}

.mini-gallery-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.mini-gallery-item:nth-child(4) {
    grid-column: span 3;
    grid-row: span 1;
}

.mini-gallery-item:nth-child(5) {
    grid-column: span 3;
    grid-row: span 1;
}

.mini-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4), 0 8px 24px rgba(212, 175, 55, 0.2);
    z-index: 10;
}

.mini-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: none;
    transition: transform 0.6s ease;
}

.mini-gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 1268px) {
    .mini-gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        padding: 0 20px;
        margin: 40px auto 0;
        gap: 15px;
    }
    
    /* Reset grid spans for mobile */
    .mini-gallery-item:nth-child(1),
    .mini-gallery-item:nth-child(2),
    .mini-gallery-item:nth-child(3),
    .mini-gallery-item:nth-child(4),
    .mini-gallery-item:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }
}

@media (max-width: 576px) {
    .mini-gallery-container {
        grid-template-columns: 1fr;
        gap: 8px;  /* Reduced from 12px */
    }
    
    .mini-gallery-item:nth-child(1),
    .mini-gallery-item:nth-child(2),
    .mini-gallery-item:nth-child(3),
    .mini-gallery-item:nth-child(4),
    .mini-gallery-item:nth-child(5) {
        height: 180px !important;  /* Reduced from 220px */
    }
}

/* Matcha Photo Gallery */
.matcha-photo-gallery {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-photo {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.4s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-photo:hover {
    transform: scale(1.02);
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: none;
    transition: transform 0.6s ease;
}

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

@media (max-width: 1268px) {
    .matcha-photo-gallery {
        padding: 0 20px;
        margin: 20px auto 0;  /* Reduced from 40px auto 0 */
        gap: 10px;  /* Reduced from 15px */
    }
    
    .gallery-row {
        grid-template-columns: 1fr;
        gap: 10px;  /* Reduced from 15px */
    }
    
    .gallery-photo {
        aspect-ratio: 16/9;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0 120px 0;  /* Add extra top padding for wave overlap */
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;  /* Same as hero section */
    /* border-top removed - using wave divider instead */
}

/* Section-level accordion toggle */
.section-accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0 0 60px 0;
    transition: all 0.3s ease;
    position: relative;
}

.section-accordion-toggle:hover {
    opacity: 0.8;
}

.section-accordion-toggle .section-title {
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.section-accordion-icon {
    font-size: 32px;
    color: var(--rich-gold);
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
    margin-top: 0;
    order: -1;
}

.section-accordion-toggle.active .section-accordion-icon {
    transform: rotate(45deg);
    color: var(--warm-gold);
}

.section-accordion-toggle.active .section-title {
    color: var(--warm-gold);
}

/* Benefits accordion content container */
#benefitsAccordionContent {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, margin-top 0.6s ease;
    margin-top: 0;
}

#benefitsAccordionContent.active {
    max-height: 3000px;
    margin-top: 0;
}

/* Add visible stroke to wave between Benefits and Products sections */
.benefits-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);  /* Aura color with subtle opacity */
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}



.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 70px 50px;
    text-align: center;
    border-radius: 0;
    border: 3px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.3);
    transition: all 0.5s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--warm-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.5), 0 8px 24px rgba(212, 175, 55, 0.15);
}

.benefit-card h3 {
    font-size: 17px;
    margin-bottom: 28px;
    color: var(--rich-gold);
    font-weight: 400;
    letter-spacing: 4px;
    font-family: 'Garamond', serif;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 16px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Benefits Accordion Styles */
.benefits-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 3px double var(--antique-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.15);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.benefit-accordion-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--warm-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.benefit-accordion-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4);
}

.benefit-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-accordion-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.benefit-accordion-header h3 {
    font-size: 16px;
    margin: 0;
    color: var(--antique-gold);
    font-weight: 400;
    letter-spacing: 4px;
    transition: color 0.3s ease;
    font-family: 'Garamond', serif;
}

.benefit-accordion-item.active .benefit-accordion-header h3 {
    color: var(--warm-gold);
}

.accordion-icon {
    font-size: 24px;
    color: var(--antique-gold);
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
    min-width: 24px;
    text-align: center;
}

.benefit-accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--warm-gold);
}

.benefit-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 40px;
}

.benefit-accordion-item.active .benefit-accordion-content {
    max-height: 500px;
    padding: 0 40px 40px 40px;
}

.benefit-accordion-content p {
    font-size: 14px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.benefit-accordion-content p:last-child {
    margin-bottom: 0;
}

.benefit-accordion-content p:first-child {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Shop Matcha Section on Matcha Page */
.shop-matcha-section {
    padding: 100px 0 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

.shop-matcha-header {
    text-align: center;
    margin-bottom: 80px;
}

.shop-matcha-header .section-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--rich-gold);
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: lowercase;
    border-bottom: 3px double var(--antique-gold);
    padding-bottom: 26px;
    display: inline-block;
}

.shop-matcha-subtitle {
    font-size: 15px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 0.5px;
    font-style: italic;
}

.loading-products {
    text-align: center;
    padding: 60px 0;
    color: var(--antique-gold);
    font-size: 16px;
    letter-spacing: 2px;
    font-style: italic;
}

/* Products Section */
.products-section {
    padding: 180px 0 200px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave between Products and Origin sections */
.products-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.02);
    padding: 50px;
    border-radius: 0;
    border: 3px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
    transition: all 0.5s ease;
}

.product-image {
    height: 380px;
    overflow: hidden;
    margin-bottom: 40px;
    background-color: var(--warm-cream);
    border-radius: 0;
    border: 4px double var(--antique-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.15);
}

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

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

.product-info h3 {
    font-size: 17px;
    margin-bottom: 24px;
    color: var(--rich-gold);
    font-weight: 400;
    letter-spacing: 5px;
    border-bottom: none;
    padding-bottom: 0;
}

.price {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
    display: none; /* Hidden on homepage */
    font-weight: 300;
}

.product-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
    display: none;
}

.multi-variant-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-options-container {
    display: none;
    margin-top: 20px;
    text-align: left;
    padding: 20px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.product-options-container.visible {
    display: block;
}

.variant-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--antique-gold);
    margin-bottom: 12px;
}

.variant-select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 16px;
}

.variant-select option {
    color: #1a1a1a;
}

.variant-add-btn {
    display: block;
    margin: 10px auto 0 auto;
}

/* Product visibility controls */
.product-card-hidden {
    display: none;
}

.product-card-revealed {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

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

.shop-all-products-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.shop-all-btn {
    min-width: 220px;
    font-size: 14px;
    letter-spacing: 1.2px;
}

/* Product Image and Title Links */
.product-image-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.product-title-link {
    color: var(--rich-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title-link:hover {
    color: var(--antique-gold);
}

/* Product Detail Page */
.product-detail-section {
    padding: 120px 0 80px 0;
    min-height: 70vh;
}

.product-detail-breadcrumb {
    margin-bottom: 40px;
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.product-detail-breadcrumb a {
    color: var(--antique-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-detail-breadcrumb a:hover {
    color: var(--rich-gold);
}

.breadcrumb-separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.4);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-main-image {
    border: 4px double var(--antique-gold);
    overflow: hidden;
    background-color: var(--warm-cream);
}

.product-main-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.product-thumbnail.active,
.product-thumbnail:hover {
    border-color: var(--rich-gold);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-detail-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    color: var(--rich-gold);
    letter-spacing: 4px;
    margin: 0;
    line-height: 1.3;
}

.product-detail-price {
    font-size: 22px;
    color: #ffffff;
    font-weight: 300;
    margin: 0;
}

.product-variant-selector {
    margin: 10px 0;
}

.product-variant-selector .variant-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--antique-gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.variant-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.variant-button {
    padding: 14px 24px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: var(--off-white);
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Garamond', serif;
}

.variant-button:hover:not(.disabled) {
    border-color: var(--rich-gold);
    background-color: rgba(212, 175, 55, 0.1);
}

.variant-button.selected {
    border-color: var(--rich-gold);
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--rich-gold);
}

.variant-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

.product-add-to-cart {
    margin-top: 10px;
    padding: 18px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    width: fit-content;
}

.product-detail-description {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
}

.product-detail-description p {
    margin-bottom: 16px;
}

.product-detail-description ul,
.product-detail-description ol {
    margin: 16px 0;
    padding-left: 24px;
}

.product-detail-description li {
    margin-bottom: 8px;
}

/* Product Detail Responsive */
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-main-image img {
        max-height: 500px;
    }
}

@media (max-width: 600px) {
    .product-detail-section {
        padding: 100px 20px 60px 20px;
    }

    .product-detail-title {
        letter-spacing: 2px;
    }

    .variant-buttons {
        flex-direction: column;
    }

    .variant-button {
        width: 100%;
        text-align: center;
    }

    .product-add-to-cart {
        width: 100%;
    }

    .product-thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave */
.gallery-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

/* Scrolling carousel text */
.rotating-text-container {
    width: 100%;
    overflow: hidden;
    margin: 60px 0;
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
}

.rotating-text {
    display: flex;
    animation: scrollText 20s linear infinite;
    white-space: pre;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Garamond', serif;
    font-weight: 400;
    font-style: italic;
    color: var(--antique-gold);
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 0.1em;
    will-change: transform;
}

.rotating-text::before,
.rotating-text::after {
    content: 'Pour into yourself.          Pour into yourself.          Pour into yourself.          ';
    padding: 0 2em;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* Hover effect to pause animation */
.rotating-text-container:hover .rotating-text {
    animation-play-state: paused;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1;
    box-shadow: none;
    border: none;
    transition: transform 0.4s ease;
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s ease;
}

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

/* Origin Section */
.origin-section {
    padding: 100px 0 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave between Origin and Gallery sections */
.origin-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.origin-section .section-title {
    color: var(--silver-color);
}

.origin-grid {
    display: grid;
    gap: 80px;
}

.origin-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.origin-item:nth-child(even) {
    direction: rtl;
}

.origin-item:nth-child(even) > * {
    direction: ltr;
}

.origin-image {
    height: 400px;
    overflow: hidden;
    border-radius: 0;
    border: 5px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.origin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.origin-content h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--warm-gold);
    font-weight: 400;
    letter-spacing: 5px;
    font-family: 'Garamond', serif;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 16px;
}

.origin-content p {
    font-size: 15px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Ritual Section */
.ritual-section {
    padding: 180px 0 200px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave */
.ritual-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.ritual-intro {
    text-align: center;
    font-size: 17px;
    color: var(--antique-gold);
    margin-top: -60px;
    margin-bottom: 80px;
    font-weight: 400;
    letter-spacing: 3px;
    font-style: italic;
    font-family: 'Garamond', serif;
}

/* Mobile: shrink ritual intro to fit on one line */
@media (max-width: 1268px) {
    .ritual-intro {
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 60px;
    }
}

.ritual-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.ritual-step {
    background: var(--soft-ivory);
    padding: 0;
    text-align: center;
    border: 4px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.ritual-step:nth-child(1) { animation-delay: 0.1s; }
.ritual-step:nth-child(2) { animation-delay: 0.2s; }
.ritual-step:nth-child(3) { animation-delay: 0.3s; }
.ritual-step:nth-child(4) { animation-delay: 0.4s; }
.ritual-step:nth-child(5) { animation-delay: 0.5s; }
.ritual-step:nth-child(6) { animation-delay: 0.6s; }

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

.step-image {
    width: 100%;
    height: 320px;
    margin: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 0;
    border-bottom: 3px double var(--antique-gold);
}

.step-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ritual-step:hover .step-image::after {
    opacity: 1;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.02) contrast(1.05);
}

.ritual-step:hover .step-image img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.08);
}

.ritual-step:hover {
    transform: translateY(-6px);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4), 0 12px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--warm-gold);
}

.step-number {
    font-size: 14px;
    color: var(--deep-gold);
    font-weight: 400;
    letter-spacing: 4px;
    opacity: 0.6;
    line-height: 1;
}

.ritual-step h4 {
    font-size: 19px;
    color: var(--deep-gold);
    font-weight: 400;
    letter-spacing: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 45px 40px 0;
    font-family: 'Garamond', serif;
}

.ritual-step p {
    font-size: 14px;
    line-height: 2;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px 45px;
    letter-spacing: 0.5px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave */
.philosophy-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-family: 'Garamond', serif;
    font-size: 24px;
    margin-bottom: 26px;
    color: var(--rich-gold);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: none;
    text-align: center;
}

/* Mobile philosophy heading override will be in media query */

.title-underline {
    width: 100%;
    max-width: 320px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--rich-gold) 50%, transparent 100%);
    margin: 0 auto 50px auto;
    opacity: 0.6;
}

/* Mobile title underline override will be in media query */

.philosophy-content p {
    font-size: 17px;
    line-height: 2.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-weight: 400;
    text-align: justify;
    letter-spacing: 0.5px;
}

/* Mobile philosophy content override will be in media query */

/* FAQ Section */
.faq-section {
    padding: 70px 0;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

/* Mobile FAQ section override will be in media query */

.faq-section .section-title {
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--antique-gold);
    opacity: 0.7;
    letter-spacing: 3px;
    transition: opacity 0.8s ease;
}

.faq-section.hidden .section-title {
    opacity: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

.faq-section.hidden .faq-grid {
    opacity: 0;
    transform: translateY(50px);
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.hidden .faq-item {
    opacity: 0;
    transform: translateY(30px);
}

.faq-section.hidden .faq-item:nth-child(1) { transition-delay: 0s; }
.faq-section.hidden .faq-item:nth-child(2) { transition-delay: 0s; }
.faq-section.hidden .faq-item:nth-child(3) { transition-delay: 0s; }
.faq-section.hidden .faq-item:nth-child(4) { transition-delay: 0s; }
.faq-section.hidden .faq-item:nth-child(5) { transition-delay: 0s; }
.faq-section.hidden .faq-item:nth-child(6) { transition-delay: 0s; }
.faq-section.hidden .faq-item:nth-child(7) { transition-delay: 0s; }
.faq-section.hidden .faq-item:nth-child(8) { transition-delay: 0s; }
.faq-section.hidden .faq-item:nth-child(9) { transition-delay: 0s; }
.faq-section.hidden .faq-item:nth-child(10) { transition-delay: 0s; }

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-item:nth-child(5) { transition-delay: 0.5s; }
.faq-item:nth-child(6) { transition-delay: 0.6s; }
.faq-item:nth-child(7) { transition-delay: 0.7s; }
.faq-item:nth-child(8) { transition-delay: 0.8s; }
.faq-item:nth-child(9) { transition-delay: 0.9s; }
.faq-item:nth-child(10) { transition-delay: 1s; }

.faq-question {
    font-size: 12px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.faq-answer {
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    opacity: 0.9;
}

.faq-list {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
}

.faq-list li {
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    opacity: 0.9;
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
}

.faq-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--antique-gold);
    opacity: 0.9;
}

/* Location Section */
.location-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave */
.location-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.info-block h4 {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--rich-gold);
    margin-bottom: 22px;
    font-family: 'Garamond', serif;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 12px;
}

.info-block p {
    font-size: 16px;
    line-height: 2.4;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.info-block a {
    color: #ffffff;
}

.location-image {
    height: 450px;
    overflow: hidden;
    border-radius: 0;
    border: 5px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-map {
    height: 450px;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    border: 5px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.location-map .map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.location-map .map-link::after {
    content: 'Click to open in Google Maps';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
    white-space: nowrap;
}

.location-map .map-link:hover::after {
    opacity: 1;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
}

/* Pop-up Schedule Section */
.popup-schedule-section {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave */
.popup-schedule-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.popup-intro {
    text-align: center;
    font-size: 17px;
    color: var(--antique-gold);
    margin-top: -40px;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 3px;
    font-style: italic;
    font-family: 'Garamond', serif;
}

.popup-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Desktop: Center location box in the middle */
@media (min-width: 1269px) {
    .popup-locations-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        justify-items: center;
    }
    
    .popup-location-card {
        width: 100%;
        max-width: 600px;
    }
}

.popup-location-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 50px 45px;
    text-align: center;
    border-radius: 0;
    border: 3px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 420px;
}

.popup-location-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: var(--warm-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.5), 0 16px 40px rgba(212, 175, 55, 0.25);
}

.popup-icon {
    margin-bottom: 24px;
}

.popup-icon svg {
    stroke: var(--rich-gold);
    opacity: 0.95;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.popup-location-card:hover .popup-icon svg {
    opacity: 1;
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
}

.popup-location-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--warm-gold);
    font-weight: 400;
    letter-spacing: 5px;
    font-family: 'Garamond', serif;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 16px;
    width: 100%;
}

.popup-frequency {
    font-size: 14px;
    color: var(--antique-gold);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0.95;
    font-family: 'Garamond', serif;
    font-style: italic;
}

.popup-description {
    font-size: 15px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.popup-address {
    font-size: 14px;
    color: var(--antique-gold);
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 15px;
    font-style: italic;
}

.popup-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 35px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.popup-note a {
    color: var(--antique-gold);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.popup-note a:hover {
    opacity: 1;
}

@media (max-width: 1268px) {
    .popup-locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;  /* Reduced from 30px */
    }

    .popup-location-card {
        padding: 30px 25px;  /* Reduced from 40px 30px */
        width: 100%;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0 120px;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave */
.contact-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper h3 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--warm-gold);
    font-weight: 400;
    letter-spacing: 5px;
    font-family: 'Garamond', serif;
    border-bottom: 3px double var(--antique-gold);
    padding-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro p {
    font-size: 14px;
    line-height: 2.4;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 1.2px;
    display: inline;
}

.contact-email {
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-email a {
    color: var(--antique-gold);
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.contact-email a:hover {
    color: var(--warm-gold);
    opacity: 1;
    border-bottom-color: var(--rich-gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 70px;
    border-radius: 0;
    border: 4px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2), 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--warm-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4), 0 8px 24px rgba(212, 175, 55, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--rich-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    padding: 18px 60px;
    background-color: transparent;
    color: var(--rich-gold);
    border: 2px solid var(--rich-gold);
    border-radius: 0;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 4px;
    font-family: 'Garamond', serif;
}

.submit-btn:hover {
    background-color: var(--rich-gold);
    color: var(--pantone-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Rounded Pill Buttons */
.rounded-btn {
    display: inline-block;
    padding: 18px 56px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid var(--rich-gold);
    border-radius: 0;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 5px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    font-family: 'Garamond', serif;
}

.rounded-btn:hover {
    background-color: var(--rich-gold);
    color: var(--pantone-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    opacity: 1;
}

.rounded-btn.solid {
    background-color: #ffffff;
    color: var(--pantone-green);
    border-color: #ffffff;
}

.rounded-btn.solid:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.rounded-btn.silver {
    border-color: var(--silver-color);
    color: var(--silver-color);
}

.rounded-btn.silver:hover {
    background-color: var(--silver-color);
    color: var(--pantone-green);
    border-color: var(--silver-color);
}

/* Footer */
.footer {
    background-color: transparent;
    color: #ffffff;
    padding: 100px 0 50px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    gap: 100px;
    margin-bottom: 70px;
    padding-bottom: 70px;
    align-items: start;
}

.footer-brand {
    text-align: center;
}

.footer-brand h4,
.footer-links h4,
.footer-social h4 {
    font-size: 15px;
    margin-bottom: 38px;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--rich-gold);
    position: relative;
    padding-bottom: 20px;
    font-family: 'Garamond', serif;
}

.footer-brand h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--rich-gold) 0%, transparent 100%);
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--rich-gold) 0%, transparent 100%);
}

.footer-brand p {
    font-size: 14px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-contact {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
}

.footer-contact a {
    color: var(--antique-gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffffff;
    opacity: 1;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links ul li {
    margin-bottom: 0;
    position: relative;
    padding-left: 0;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUpFooter 0.6s ease forwards;
}

.footer-links ul li:nth-child(1) { animation-delay: 0.1s; }
.footer-links ul li:nth-child(2) { animation-delay: 0.2s; }
.footer-links ul li:nth-child(3) { animation-delay: 0.3s; }
.footer-links ul li:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUpFooter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-links ul li a,
.footer-links ul li button {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.footer-links ul li a::after,
.footer-links ul li button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rich-gold) 0%, transparent 100%);
    transition: width 0.4s ease;
}

.footer-links ul li a:hover::after,
.footer-links ul li button:hover::after {
    width: 100%;
}

.footer-links ul li a:hover,
.footer-links ul li button:hover {
    color: rgba(255, 255, 255, 1);
    opacity: 1;
    transform: translateX(4px);
}

.faq-link {
    background: none;
    border: none;
    padding: 4px 0;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-link:hover {
    opacity: 1;
}

.footer-social .social-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.footer-social .social-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rich-gold) 0%, transparent 100%);
    transition: width 0.4s ease;
}

.footer-social .social-link:hover {
    color: rgba(255, 255, 255, 1);
    opacity: 1;
    transform: translateX(4px);
}

.footer-social .social-link:hover::after {
    width: 100%;
}

.social-icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-social .social-link:hover .social-icon {
    transform: scale(1.15) rotate(5deg);
    opacity: 1;
}

.footer-faq {
    margin-bottom: 60px;
    padding-bottom: 40px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-content.active {
    max-height: 5000px;
    padding-top: 30px;
}

.footer-faq h4 {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
}

.footer-faq .faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-faq .faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-faq .faq-item h5 {
    font-size: 15px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.footer-faq .faq-item p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 10px;
}

.footer-faq .faq-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.footer-faq .faq-item ul li {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.footer-faq .faq-item ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ritual-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .carousel-container {
        padding: 0 20px;
    }
}

@media (max-width: 1268px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    /* Mobile-specific adjustments */
    .navbar {
        top: 0;
        padding: 8px 0;  /* Reduced padding for mobile */
        height: 60px;  /* Reduced height */
    }

    /* Hamburger already displayed on all screen sizes - no change needed */
    
    .logo img {
        height: 35px;  /* Reduced from 40px for mobile */
    }
    
    /* Tighten up body line-height on mobile */
    body {
        line-height: 2;  /* Reduced from 2.4 */
    }

    .nav-menu {
        top: 60px;  /* Adjusted for mobile navbar height */
    }

    .nav-menu a {
        color: #ffffff;
    }

    /* Mobile dropdown styles already defined globally */

    .hero {
        background-attachment: scroll;
        --hero-height: 120vh;
        --hero-wave-height: calc(var(--hero-height) * 0.4);
        min-height: 400px;  /* Reduced min-height */
        padding-top: calc(70px + 10vh);  /* Mobile navbar height + original padding */
    }

    .wave-divider svg {
        height: 40px;  /* Smaller wave on mobile - reduced from 50px */
    }

    .hero-title {
    text-transform: none;
        font-size: 32px;  /* Reduced for mobile */
        letter-spacing: 6px;  /* Reduced for mobile */
        margin-bottom: 15px;  /* Reduced spacing */
    }

    .matcha-delicate-title {
        font-size: 30px !important;  /* Reduced for mobile */
        letter-spacing: 0.5px !important;  /* Reduced from 1px */
        line-height: 1.2 !important;  /* Reduced from 1.3 */
    }

    .hero-subtitle {
        font-size: 13px;  /* Reduced from 14px */
        letter-spacing: 3px;  /* Tightened */
    }

    .hero-logo-image {
        max-width: 140px;  /* Reduced from 160px */
        top: 5%;  /* Reduced from 8% */
    }

    .section-title {
        font-size: 20px;  /* Reduced for mobile */
        margin-bottom: 30px;  /* Reduced from 60px */
        letter-spacing: 6px;  /* Reduced for mobile */
    }

    /* Ensure "Pour into yourself" stays on one line on mobile */
    .about-section .section-title {
        white-space: nowrap;
        font-size: 24px;  /* Reduced for mobile */
        margin-bottom: 40px;  /* Reduced spacing below title */
    }
    
    .about-section {
        padding: 80px 0;  /* Reduced from 200px 0 */
    }

    /* Carousel handled by mobile-specific rules above */

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    /* Reduce section padding on mobile */
    .tea-farm-gallery-section {
        padding: 0;
        margin: 0;
    }
    
    .products-section {
        padding: 60px 0 80px 0;  /* Reduced from 180px 0 200px 0 */
    }
    
    .benefits-section {
        padding: 60px 0 80px 0;  /* Reduced from 100px 0 120px 0 */
    }
    
    .origin-section {
        padding: 60px 0 80px 0;  /* Reduced from 100px 0 120px 0 */
    }
    
    .gallery-section {
        padding: 60px 0 80px 0;  /* Reduced from 100px 0 120px 0 */
    }
    
    .ritual-section {
        padding: 60px 0 80px 0;  /* Reduced from 180px 0 200px 0 */
    }
    
    .philosophy-section {
        padding: 60px 0;  /* Reduced from 120px 0 */
    }
    
    .location-section {
        padding: 60px 0;  /* Reduced from 120px 0 */
    }
    
    .popup-schedule-section {
        padding: 60px 0;  /* Reduced from 120px 0 */
    }
    
    .contact-section {
        padding: 60px 0 80px;  /* Reduced from 100px 0 120px */
    }
    
    .footer {
        padding: 60px 0 30px;  /* Reduced from 100px 0 50px */
    }
    
    /* Matcha page sections */
    .matcha-intro-section {
        padding: 60px 0;  /* Reduced from 120px 0 */
    }
    
    .origin-info-section {
        padding: 60px 0 80px 0;  /* Reduced from 100px 0 120px 0 */
    }
    
    .shop-matcha-section {
        padding: 60px 0 80px 0;  /* Reduced from 100px 0 120px 0 */
    }
    
    /* History page sections */
    .history-intro-section {
        padding: 60px 0;  /* Reduced from 120px 0 */
    }
    
    .pinterest-gallery-section {
        padding: 60px 0;  /* Reduced from 120px 0 */
    }
    
    .heritage-values-section {
        padding: 60px 0;  /* Reduced from 120px 0 */
    }
    
    .history-cta-section {
        padding: 60px 0;  /* Reduced from 120px 0 */
    }
    
    /* Wholesale page sections */
    .wholesale-intro-section {
        padding: 50px 0;  /* Reduced from 120px 0 */
    }
    
    .wholesale-benefits-section {
        padding: 60px 0;  /* Reduced from 120px 0 */
    }
    
    .wholesale-contact-section {
        padding: 50px 0 70px;  /* Reduced from 100px 0 120px */
    }
    
    /* Reduce margins between elements */
    .ritual-intro {
        margin-top: -30px;  /* Reduced from -60px */
        margin-bottom: 40px;  /* Reduced from 60px */
    }
    
    .popup-intro {
        margin-top: -30px;
        margin-bottom: 40px;
    }
    
    .rotating-text-container {
        margin: 30px 0;  /* Reduced from 60px 0 */
    }
    
    .mini-gallery-container {
        margin: 30px auto 0;  /* Reduced from 40px auto 0 */
    }
    
    .origin-two-column {
        margin: 0 auto 40px;  /* Reduced from 0 auto 80px */
    }
    
    .shop-matcha-header {
        margin-bottom: 40px;  /* Reduced from 80px */
    }
    
    /* Reduce footer spacing */
    .footer-content {
        margin-bottom: 40px;  /* Reduced from 70px */
        padding-bottom: 30px;  /* Reduced from 40px */
        gap: 30px;  /* Reduced from 45px */
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image {
        height: 350px;
    }

    .origin-item {
        grid-template-columns: 1fr;
    }

    .origin-item:nth-child(even) {
        direction: ltr;
    }

    .origin-image {
        height: 350px;
    }

    .ritual-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;  /* Reduced from 25px */
        max-width: 100%;
        padding: 0 10px;
    }

    .ritual-step {
        padding: 0;
    }

    .step-image {
        height: 180px;
    }

    .ritual-step h4 {
        font-size: 16px;
        letter-spacing: 1.5px;
        padding: 20px 15px 0;
        gap: 6px;
    }

    .step-number {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .ritual-step p {
        font-size: 12px;
        line-height: 1.6;
        padding: 0 15px 20px;
    }

    /* Stack steps on very small mobile screens */
    @media (max-width: 576px) {
        .ritual-steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;  /* Reduced from 18px */
            padding: 0 8px;  /* Reduced from 0 10px */
        }

        .step-image {
            height: 120px !important;  /* Reduced from 150px */
        }

        .ritual-step h4 {
            font-size: 13px;  /* Reduced from 14px */
            letter-spacing: 0.5px;  /* Reduced from 1px */
            padding: 12px 8px 0;  /* Reduced from 15px 10px 0 */
        }

        .ritual-step p {
            font-size: 10px;  /* Reduced from 11px */
            padding: 0 8px 12px;  /* Reduced from 0 10px 15px */
        }
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;  /* Reduced from 30px */
    }

    .step-image {
        height: 280px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;  /* Reduced from 30px */
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 25px;  /* Reduced from 40px */
    }

    .location-image,
    .location-map {
        height: 350px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-bottom: 40px;
    }

    .footer-brand h4::after,
    .footer-links h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-links ul li a,
    .footer-links ul li button {
        display: inline-block;
    }
}

/* Wholesale Page Styles */
.wholesale-hero {
    height: calc(60vh + 90px);  /* Match history-hero height */
    padding-top: 90px;  /* Push content below navbar */
    padding-bottom: 90px;  /* Balance for vertical centering */
    background-image: url('images/cafe-interior.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.wholesale-hero .hero-title {
    text-transform: capitalize !important;
    font-size: 72px !important;
    letter-spacing: 10px !important;
    margin-bottom: 0 !important;
    line-height: 1 !important;
}

.wholesale-partner-subtitle {
    display: block;
    font-size: 14px !important;
    font-weight: 300 !important;
    letter-spacing: 2px !important;
    text-transform: none !important;
    margin-top: 15px !important;
    text-align: center !important;
    line-height: 1 !important;
}

.wholesale-intro-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave */
.wholesale-intro-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.wholesale-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.wholesale-cursive-title {
    font-family: 'Garamond', serif !important;
    font-size: 42px !important;
    font-weight: 400 !important;
    letter-spacing: 3px !important;
    text-transform: capitalize !important;
    font-style: italic !important;
    margin: 0 auto 25px !important;
    padding-bottom: 15px !important;
}

.wholesale-intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #ffffff;
    font-weight: 300;
    margin: 0 auto 24px;
    letter-spacing: 0.5px;
    text-align: center;
    max-width: 760px;
}

.wholesale-intro-text.emphasis {
    font-style: italic;
    margin-top: 30px;
    font-size: 17px;
    color: var(--antique-gold);
}

.wholesale-benefits-section {
    padding: 120px 0;
    background-color: transparent;
}

.wholesale-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.wholesale-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    text-align: center;
    border-radius: 0;
    border: 3px double var(--antique-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.wholesale-benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    border-color: var(--warm-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4), 0 10px 24px rgba(212, 175, 55, 0.2);
}

.wholesale-benefit-card h3 {
    font-size: 19px;
    margin-bottom: 20px;
    color: var(--rich-gold);
    font-weight: 400;
    letter-spacing: 3px;
}

.wholesale-benefit-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.wholesale-contact-section {
    padding: 100px 0 120px;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave */
.wholesale-contact-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.wholesale-contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.wholesale-contact-wrapper h3 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 28px;
    color: var(--warm-gold);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: lowercase;
    font-family: 'Garamond', serif;
}

.wholesale-contact-divider {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--rich-gold) 50%, transparent 100%);
    margin: 0 auto 30px auto;
}

.wholesale-contact-intro {
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.8px;
    padding: 0 20px;
}

.wholesale-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 70px 60px;
    border-radius: 0;
    border: 4px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2), 0 12px 36px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.wholesale-contact-form:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--warm-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4), 0 16px 44px rgba(212, 175, 55, 0.2);
}

.wholesale-contact-form input,
.wholesale-contact-form textarea {
    padding: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.wholesale-contact-form input:focus,
.wholesale-contact-form textarea:focus {
    outline: none;
    border-color: var(--rich-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.wholesale-contact-form textarea {
    resize: vertical;
}

@media (max-width: 1268px) {
    .wholesale-cursive-title {
        font-size: 26px !important;  /* Reduced for mobile readability */
        letter-spacing: 0.5px !important;
        margin-bottom: 25px !important;
        line-height: 1.3 !important;
    }

    .wholesale-intro-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
        letter-spacing: 0.2px;
        text-align: center;
    }

    .wholesale-intro-text.emphasis {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.5;
    }

    .wholesale-contact-intro {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 28px;
        letter-spacing: 0.3px;
        padding: 0 10px;
    }

    .wholesale-contact-wrapper h3 {
        font-size: 20px;
        margin-bottom: 16px;
        letter-spacing: 2px;
    }

    .wholesale-contact-divider {
        margin: 0 auto 16px auto;
    }

    .wholesale-contact-form {
        padding: 30px 20px;
        gap: 16px;
    }

    .wholesale-benefit-card {
        padding: 25px 20px;
    }

    .wholesale-benefit-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
    }

    .wholesale-benefit-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .wholesale-benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .wholesale-hero {
        height: calc(40vh + 70px);  /* Reduced from 50vh + mobile navbar */
        padding-top: 70px;  /* Mobile navbar height */
        padding-bottom: 70px;  /* Balance for vertical centering */
    }

    .wholesale-hero .hero-title {
        text-transform: capitalize !important;
        font-size: 48px !important;
        letter-spacing: 7px !important;
        margin-bottom: 0 !important;
        line-height: 1 !important;
    }

    .wholesale-partner-subtitle {
        font-size: 12px !important;
        letter-spacing: 1.8px !important;
        margin-top: 12px !important;
    }

    .history-hero {
        height: calc(40vh + 70px);  /* Reduced from 60vh + mobile navbar */
        padding-top: 70px;  /* Mobile navbar height */
    }

    .history-hero .hero-title {
        font-size: 22px !important;  /* Smaller on mobile */
        letter-spacing: 3px !important;
    }

    .benefits-accordion {
        gap: 8px;  /* Reduced from 12px */
    }

    .benefit-accordion-header {
        padding: 20px 20px;
    }

    .benefit-accordion-header h3 {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .benefit-accordion-content {
        padding: 0 20px;
    }

    .benefit-accordion-item.active .benefit-accordion-content {
        padding: 0 20px 25px 20px;
    }

    .benefit-accordion-content p {
        font-size: 13px;
    }
}

/* History Page Styles */

/* Cursive "Rooted in Tradition" title styling */
.history-cursive-title {
    font-family: "EB Garamond", "Cormorant Garamond", Garamond, Baskerville, Palatino, serif !important;
    font-size: 48px !important;
    font-weight: 400 !important;
    letter-spacing: 4px !important;
    text-transform: none !important;
    font-style: normal !important;
}

@media (max-width: 1268px) {
    .history-cursive-title {
        font-size: 32px !important;
        letter-spacing: 1px !important;
        text-transform: none !important;
    }
}

@media (max-width: 480px) {
    .history-cursive-title {
        font-size: 28px !important;
    }
}
.history-hero {
    height: calc(60vh + 90px);  /* Add navbar height to maintain visual size */
    padding-top: 90px;  /* Push content below navbar */
    background-image: url('images/japanese-moonlit-coastal-landscape.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

@media (min-width: 1025px) {
    .history-hero[style*="aura-restaurant-storefront-entrance"] {
        background-position: center -90px;
    }
}

.matcha-hero {
    background-image: url('images/matcha-ceremony-overhead.jpg');
}

.matcha-hero .matcha-hero-title {
    font-family: "EB Garamond", "Cormorant Garamond", Garamond, Baskerville, Palatino, serif !important;
    letter-spacing: 10px !important;
    font-size: 48px !important;
    text-transform: none !important;
}

/* Shop page hero - custom background */
.history-hero.shop-hero {
    background-image: url('images/aura-matcha-tea-tins.jpg');
}

/* Location page hero - ensure title is centered between navbar and wave */
.history-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    padding: 40px;
    margin-bottom: 60px; /* Push content up to center between navbar and wave divider */
}

.history-intro-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave */
.history-intro-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.history-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.history-intro-text {
    font-size: 16px;
    line-height: 2.2;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.history-intro-text.emphasis {
    font-style: italic;
    margin-top: 40px;
    font-size: 18px;
    color: var(--antique-gold);
    letter-spacing: 1px;
}

/* Pinterest Gallery Section */
.pinterest-gallery-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Journey Gallery - Clean Grid Layout */
.journey-gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.journey-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 4px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2), 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.journey-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4), 0 16px 40px rgba(212, 175, 55, 0.25);
    border-color: var(--warm-gold);
    z-index: 10;
}

.journey-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s ease;
}

.journey-gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 1268px) {
    .journey-gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .journey-gallery-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
    }
    
    .journey-gallery-item {
        aspect-ratio: 16/9;
    }
}

/* Add visible stroke to wave */
.pinterest-gallery-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.pinterest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 8px;
    max-width: 1400px;
    margin: 0 auto;
}

.pinterest-item {
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.pinterest-item:hover {
    transform: scale(1.02);
}

.pinterest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s ease;
}

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

/* Pinterest Grid Layout - Varied Heights */
.pinterest-item:nth-child(1) {
    grid-row: span 2;
}

.pinterest-item:nth-child(2) {
    grid-row: span 1;
}

.pinterest-item:nth-child(3) {
    grid-row: span 1;
}

.pinterest-item:nth-child(4) {
    grid-row: span 2;
}

.pinterest-item:nth-child(5) {
    grid-row: span 1;
}

.pinterest-item:nth-child(6) {
    grid-row: span 2;
}

.pinterest-item:nth-child(7) {
    grid-row: span 1;
}

.pinterest-item:nth-child(8) {
    grid-row: span 1;
}

.heritage-values-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave */
.heritage-values-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.heritage-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 45px;
    text-align: center;
    border-radius: 0;
    border: 4px double var(--rich-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--warm-gold);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4), 0 10px 24px rgba(212, 175, 55, 0.2);
}

.value-card h3 {
    font-size: 17px;
    margin-bottom: 26px;
    color: var(--rich-gold);
    font-weight: 400;
    letter-spacing: 4px;
    font-family: 'Garamond', serif;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 14px;
}

.value-card p {
    font-size: 14px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.history-cta-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* Add visible stroke to wave */
.history-cta-section .wave-divider svg path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.history-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.history-cta-content h2 {
    font-size: 36px;
    margin-bottom: 34px;
    color: var(--rich-gold);
    font-weight: 400;
    letter-spacing: 5px;
    font-family: 'Garamond', serif;
}

.history-cta-content p {
    font-size: 16px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    padding: 18px 60px;
    background-color: var(--rich-gold);
    color: var(--pantone-green);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Garamond', serif;
    border: 2px solid var(--rich-gold);
}

.cta-button:hover {
    background-color: var(--warm-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
    opacity: 1;
    border-color: var(--warm-gold);
}

@media (max-width: 1024px) {
    .heritage-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;  /* Reduced from 30px */
    }
}

@media (max-width: 1268px) {
    .pinterest-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 4px;
    }

    .heritage-values-grid {
        grid-template-columns: 1fr;
        gap: 15px;  /* Reduced from 25px */
    }
    
    .pinterest-gallery-section {
        padding: 60px 0;  /* Reduced padding on mobile */
    }
}

@media (max-width: 480px) {
    .cursive-logo {
        font-size: 32px;
    }
    
    .hero-title {
    text-transform: none;
        font-size: 28px;  /* Further reduced for small mobile */
        letter-spacing: 5px;  /* Reduced for small mobile */
    }

    .hero-subtitle {
        font-size: 11px;  /* Reduced from 12px */
    }

    .featured-content {
        padding: 30px 15px;  /* Reduced from 40px 20px */
    }

    .product-image,
    .origin-image,
    .location-image,
    .location-map {
        height: 250px !important;  /* Reduced from 300px */
    }
    
    /* Further reduce section padding on very small screens */
    .products-section,
    .benefits-section,
    .origin-section,
    .gallery-section,
    .ritual-section {
        padding: 40px 0 60px 0 !important;
    }
    
    .philosophy-section,
    .location-section,
    .popup-schedule-section,
    .contact-section {
        padding: 40px 0 !important;
    }
}


/* Squiggle Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
    transform: rotate(180deg);  /* Flip the wave */
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: #2C3A1E;  /* Match the pantone-green background */
}

/* Squiggly line only divider (no bottom straight line) */
.wave-divider.squiggle-only .shape-fill {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2.5;
    fill: #2C3A1E;
}

/* For sections with wave dividers */
.section-with-wave {
    position: relative;
    overflow: visible;
}

/* Mobile adjustments for hero GIF text */
@media (max-width: 1268px) {
    .hero-gif-text {
        bottom: calc(25% - 1.5in);
        padding: 0 30px;
        width: calc(100% - 60px);
    }

    .hero-gif-text .pour-into-yourself {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    }

    .hero-gif-text .rounded-btn {
        font-size: 9px;
        padding: 12px 26px;
        letter-spacing: 2.5px;
    }
}

/* Additional mobile fixes for smaller screens */
@media (max-width: 576px) {
    .navbar {
        top: 0;
        padding: 6px 0;  /* Further reduced padding */
        height: 50px;  /* Further reduced height */
    }

    .logo img {
        height: 35px;  /* Slightly smaller logo */
    }

    .nav-menu {
        top: 50px;  /* Adjusted for navbar height */
    }

    /* Prevent hero video from overlapping headers */
    .hero {
        margin-top: 50px;  /* Adjusted for navbar only */
        --hero-height: calc(80vh + 90px);
        --hero-wave-height: calc(var(--hero-height) * 0.35 + 90px);
        min-height: 560px;
        padding-top: 12vh;
    }

    /* Ensure wave divider fills bottom half on mobile */
    .hero-wave-with-image {
        height: 90vh !important;  /* Fill bottom half of hero on mobile */
    }

    /* GIF styling on mobile handled via HTML attribute */

    /* Adjust text over GIF on mobile */
    .hero-gif-text {
        bottom: 10%;  /* Reduced from 15% */
        padding: 0 20px;
        width: calc(100% - 40px);
    }

    .hero-gif-text .pour-into-yourself {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 15px;  /* Reduced from 20px */
        letter-spacing: 0.5px;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-gif-text .rounded-btn {
        font-size: 9px;
        padding: 11px 22px;
        letter-spacing: 2.5px;
    }

    /* Ensure hero content is properly positioned */
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 15px;  /* Reduced from 20px */
    }

    /* Adjust hero text on mobile */
    .hero-content .japanese-aura {
        font-size: 18px;  /* Reduced from 20px */
        margin: 12px 0;  /* Reduced spacing */
    }
    
    .japanese-aura {
        margin-bottom: 18px;  /* Reduced from 28px */
    }

    .hero-text {
        font-size: 13px;  /* Reduced from 14px */
        line-height: 1.5;  /* Reduced from 1.6 */
        margin-bottom: 10px;  /* Reduced spacing */
    }
    
    /* Additional mobile spacing reductions */
    .contact-form {
        padding: 40px 30px;  /* Reduced from 80px 70px */
    }
    
    .wholesale-contact-form {
        padding: 40px 30px;  /* Reduced from 70px 60px */
    }
    
    .benefit-card {
        padding: 40px 30px;  /* Reduced from 70px 50px */
    }
    
    .value-card {
        padding: 40px 30px;  /* Reduced from 60px 45px */
    }
    
    .wholesale-benefit-card {
        padding: 35px 25px;  /* Reduced from 50px 40px */
    }
    
    .product-card {
        padding: 25px;  /* Reduced from 50px */
    }
    
    .product-info h3 {
        font-size: 15px;  /* Reduced for mobile */
        margin-bottom: 15px;  /* Reduced from 24px */
        letter-spacing: 3px;  /* Reduced for mobile */
    }
    
    .price {
        margin-bottom: 8px;  /* Reduced from 10px */
    }
    
    .contact-intro {
        margin-bottom: 30px;  /* Reduced from 50px */
    }
    
    .wholesale-contact-intro {
        margin-bottom: 40px;  /* Reduced from 60px */
    }
    
    .contact-wrapper h3 {
        font-size: 20px;  /* Reduced for mobile */
        margin-bottom: 30px;  /* Reduced from 50px */
    }
    
    .wholesale-contact-wrapper h3 {
        margin-bottom: 20px;  /* Reduced from 28px */
    }
    
    .wholesale-contact-divider {
        margin: 0 auto 20px auto;  /* Reduced from 0 auto 30px auto */
    }
    
    .origin-info-title {
        font-size: 24px;  /* Reduced for mobile */
        margin-bottom: 25px;  /* Reduced from 40px */
    }
    
    .history-cta-content h2 {
        font-size: 28px;  /* Reduced for mobile */
        margin-bottom: 20px;  /* Reduced from 34px */
    }
    
    .history-cta-content p {
        margin-bottom: 30px;  /* Reduced from 50px */
    }
    
    /* Override desktop values for mobile */
    .video-section {
        padding: 60px 0 !important;
    }
    
    .faq-section {
        padding: 40px 0 !important;
    }
    
    .philosophy-content p {
        margin-bottom: 20px !important;
    }
    
    .philosophy-content h2 {
        margin-bottom: 20px !important;
    }
    
    .title-underline {
        margin: 0 auto 30px auto !important;
    }
    
    /* Reduce text spacing on mobile */
    .about-text {
        margin-bottom: 30px;  /* Reduced from 50px */
    }
    
    .matcha-intro-text,
    .history-intro-text,
    .wholesale-intro-text {
        margin-bottom: 20px;  /* Reduced from 28px */
    }
    
    .matcha-intro-text.emphasis,
    .history-intro-text.emphasis,
    .wholesale-intro-text.emphasis {
        margin-top: 30px;  /* Reduced from 40px/50px */
    }
    
    .origin-info-text {
        margin-bottom: 20px;  /* Reduced from 30px */
    }
    
    /* Reduce card internal spacing */
    .benefit-card h3,
    .value-card h3,
    .wholesale-benefit-card h3 {
        font-size: 15px;  /* Reduced for mobile */
        margin-bottom: 15px;  /* Reduced from various values */
        padding-bottom: 10px;  /* Reduced from 14px/16px */
        letter-spacing: 2px;  /* Reduced for mobile */
    }
    
    .popup-location-card h3 {
        font-size: 18px;  /* Reduced for mobile */
        margin-bottom: 15px;  /* Reduced from 20px */
        letter-spacing: 3px;  /* Reduced for mobile */
    }
    
    .popup-frequency {
        margin-bottom: 20px;  /* Reduced from 28px */
    }
    
    .popup-icon {
        margin-bottom: 15px;  /* Reduced from 24px */
    }
    
    /* Reduce info block spacing */
    .info-block {
        margin-bottom: 25px;  /* Add to location section */
    }
    
    .info-block h4 {
        font-size: 13px;  /* Reduced for mobile */
        margin-bottom: 15px;  /* Reduced from 22px */
        padding-bottom: 8px;  /* Reduced from 12px */
        letter-spacing: 2px;  /* Reduced for mobile */
    }
    
    /* Reduce accordion spacing */
    .section-accordion-toggle {
        margin: 0 0 40px 0;  /* Reduced from 0 0 60px 0 */
    }
    
    .benefit-accordion-header {
        padding: 20px 25px;  /* Reduced from 30px 40px */
    }
    
    .benefit-accordion-item.active .benefit-accordion-content {
        padding: 0 25px 25px 25px;  /* Reduced from 0 40px 40px 40px */
    }
    
    /* Reduce form input spacing */
    .contact-form input,
    .contact-form textarea,
    .wholesale-contact-form input,
    .wholesale-contact-form textarea {
        padding: 14px;  /* Reduced from 18px */
    }
    
    .submit-btn {
        padding: 14px 40px;  /* Reduced from 18px 60px */
    }
    
    .rounded-btn {
        padding: 14px 40px;  /* Reduced from 18px 56px */
    }
    
    /* Reduce image heights on mobile */
    .product-image {
        height: 280px !important;  /* Reduced from 350px */
        margin-bottom: 25px;  /* Reduced from 40px */
    }
    
    .origin-image {
        height: 280px !important;  /* Reduced from 350px */
    }
    
    .location-image,
    .location-map {
        height: 280px !important;  /* Reduced from 350px */
    }
    
    .step-image {
        height: 150px !important;  /* Reduced from 180px */
    }
    
    /* Reduce hero content padding */
    .hero-content {
        padding: 10px !important;  /* Further reduced */
    }
    
    /* Tighten up footer FAQ */
    .footer-faq {
        margin-bottom: 30px;  /* Reduced from 60px */
        padding-bottom: 20px;  /* Reduced from 40px */
    }
    
    .footer-faq .faq-item {
        margin-bottom: 20px;  /* Reduced from 30px */
        padding-bottom: 20px;  /* Reduced from 30px */
    }
    
    .footer-faq h4 {
        margin-bottom: 25px;  /* Reduced from 40px */
    }
    
    .footer-bottom {
        padding-top: 20px;  /* Reduced from 30px */
    }
    
    /* Reduce carousel text block padding */
    .carousel-text-block {
        padding: 30px;  /* Reduced from 40px */
    }
    
    .carousel-text-block .text-content h3 {
        margin-bottom: 15px;  /* Reduced from 24px */
    }
    
    /* Reduce mini gallery item heights */
    .mini-gallery-item:nth-child(1),
    .mini-gallery-item:nth-child(2),
    .mini-gallery-item:nth-child(3),
    .mini-gallery-item:nth-child(4),
    .mini-gallery-item:nth-child(5) {
        height: 200px !important;  /* Reduced from 250px */
    }

    /* Wholesale page mobile refinements */
    .wholesale-intro-section {
        padding: 35px 0 !important;
    }

    .wholesale-contact-section {
        padding: 35px 0 50px !important;
    }

    .wholesale-cursive-title {
        font-size: 24px !important;  /* Reduced for small mobile */
        letter-spacing: 0.3px !important;
        margin-bottom: 20px !important;
        line-height: 1.2 !important;
    }

    .wholesale-intro-text {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        letter-spacing: 0.1px !important;
        text-align: center !important;
    }

    .wholesale-intro-text.emphasis {
        margin-top: 16px !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    .wholesale-contact-wrapper h3 {
        font-size: 18px !important;  /* Reduced for small mobile */
        margin-bottom: 14px !important;
        letter-spacing: 1.5px !important;
    }

    .wholesale-contact-divider {
        margin: 0 auto 14px auto !important;
    }

    .wholesale-contact-intro {
        font-size: 11px !important;
        line-height: 1.4 !important;
        margin-bottom: 22px !important;
        letter-spacing: 0.2px !important;
        padding: 0 8px !important;
    }

    .wholesale-contact-form {
        padding: 24px 18px !important;
        gap: 14px !important;
    }

    .wholesale-contact-form input,
    .wholesale-contact-form textarea {
        padding: 12px !important;
        font-size: 13px !important;
    }

    .wholesale-benefit-card {
        padding: 22px 18px !important;
    }

    .wholesale-benefit-card h3 {
        font-size: 15px !important;
        margin-bottom: 10px !important;
        letter-spacing: 1.2px !important;
    }

    .wholesale-benefit-card p {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .wholesale-benefits-grid {
        gap: 10px !important;
    }

    .wholesale-hero {
        height: calc(40vh + 70px) !important;  /* Match history-hero mobile height */
        padding-top: 60px !important;  /* Mobile navbar height */
        padding-bottom: 60px !important;  /* Balance for vertical centering */
    }

    .wholesale-hero .hero-title {
        text-transform: capitalize !important;
        font-size: 32px !important;
        letter-spacing: 5px !important;
        margin-bottom: 0 !important;
        line-height: 1 !important;
    }

    .wholesale-partner-subtitle {
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
        margin-top: 10px !important;
    }
}

/* ============================================================================
   SHOPIFY CART STYLING OVERRIDES
   Customized to match Aura Matcha's aesthetic
   ============================================================================ */

/* Cart Button - Match Aura's aesthetic */
.vibeotter-cart-button {
    background: var(--pantone-green) !important;
    border: 2px solid var(--metallic-silver) !important;
    box-shadow: 0 4px 12px rgba(64, 73, 44, 0.3) !important;
}

.vibeotter-cart-button:hover {
    background: var(--accent-green) !important;
    border-color: var(--off-white) !important;
    box-shadow: 0 6px 16px rgba(64, 73, 44, 0.4) !important;
}

.vibeotter-cart-button svg {
    stroke: var(--off-white) !important;
}

/* Cart Badge - Sage green accent */
.vibeotter-cart-badge {
    background: var(--metallic-silver) !important;
    color: var(--pantone-green) !important;
    border: 2px solid var(--off-white) !important;
    font-family: 'Garamond', serif !important;
}

/* Cart Drawer - Match elegant design */
.vibeotter-cart-drawer {
    background: var(--off-white) !important;
    font-family: 'EB Garamond', 'Cormorant Garamond', serif !important;
}

.vibeotter-cart-header {
    background: var(--pantone-green) !important;
    color: var(--off-white) !important;
    border-bottom: 2px solid var(--metallic-silver) !important;
}

.vibeotter-cart-title {
    font-family: 'Garamond', serif !important;
    font-weight: 300 !important;
    letter-spacing: 2px !important;
    color: var(--off-white) !important;
}

.vibeotter-cart-close {
    color: var(--off-white) !important;
}

.vibeotter-cart-close:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.vibeotter-cart-close svg {
    stroke: var(--off-white) !important;
}

/* Cart Items */
.vibeotter-cart-items {
    background: var(--off-white) !important;
}

.vibeotter-cart-item {
    border-bottom: 1px solid var(--metallic-silver) !important;
}

.vibeotter-cart-item-title {
    font-family: 'Garamond', serif !important;
    color: var(--text-primary) !important;
    font-weight: 400 !important;
}

.vibeotter-cart-item-variant {
    color: var(--text-secondary) !important;
    font-style: italic !important;
}

.vibeotter-cart-item-price {
    color: var(--pantone-green) !important;
    font-weight: 500 !important;
}

/* Quantity Controls */
.vibeotter-qty-btn {
    background: var(--light-bg) !important;
    color: var(--pantone-green) !important;
    border: 1px solid var(--metallic-silver) !important;
}

.vibeotter-qty-btn:hover {
    background: var(--metallic-silver) !important;
}

.vibeotter-qty-input {
    background: var(--off-white) !important;
    color: var(--text-primary) !important;
    font-family: 'Garamond', serif !important;
}

.vibeotter-remove-btn:hover {
    color: #8B4513 !important;
}

/* Cart Footer */
.vibeotter-cart-footer {
    background: var(--light-bg) !important;
    border-top: 2px solid var(--metallic-silver) !important;
}

.vibeotter-discount-input {
    border: 1px solid var(--metallic-silver) !important;
    font-family: 'Garamond', serif !important;
    background: var(--off-white) !important;
}

.vibeotter-discount-input:focus {
    border-color: var(--pantone-green) !important;
}

.vibeotter-discount-btn {
    background: var(--pantone-green) !important;
    color: var(--off-white) !important;
    border: 1px solid var(--pantone-green) !important;
    font-family: 'Garamond', serif !important;
    letter-spacing: 1px !important;
}

.vibeotter-discount-btn:hover {
    background: var(--accent-green) !important;
}

.vibeotter-cart-subtotal-row {
    font-family: 'Garamond', serif !important;
    color: var(--text-primary) !important;
}

.vibeotter-cart-note {
    color: var(--text-secondary) !important;
    font-style: italic !important;
}

/* Cart Buttons - Match Aura's rounded-btn style */
.vibeotter-cart-btn {
    font-family: 'Garamond', serif !important;
    border-radius: 50px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
}

.vibeotter-cart-btn-primary {
    background: var(--pantone-green) !important;
    color: var(--off-white) !important;
    border: 2px solid var(--pantone-green) !important;
}

.vibeotter-cart-btn-primary:hover:not(:disabled) {
    background: var(--accent-green) !important;
    border-color: var(--accent-green) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(64, 73, 44, 0.3) !important;
}

.vibeotter-cart-btn-secondary {
    background: transparent !important;
    color: var(--pantone-green) !important;
    border: 2px solid var(--pantone-green) !important;
}

.vibeotter-cart-btn-secondary:hover {
    background: var(--pantone-green) !important;
    color: var(--off-white) !important;
    transform: translateY(-2px) !important;
}

/* Toast Notifications */
.vibeotter-toast-success {
    background: var(--pantone-green) !important;
    color: var(--off-white) !important;
    font-family: 'Garamond', serif !important;
    letter-spacing: 1px !important;
}

.vibeotter-toast-error {
    background: #8B4513 !important;
    color: var(--off-white) !important;
    font-family: 'Garamond', serif !important;
    letter-spacing: 1px !important;
}

/* Loading Spinner */
.vibeotter-cart-spinner {
    border-top-color: var(--pantone-green) !important;
}

/* Product Actions (injected by cart.js) */
.vibeotter-product-actions {
    margin-top: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
}

.vibeotter-variant-selector {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.vibeotter-variant-selector label {
    font-family: 'Garamond', serif !important;
    color: var(--off-white) !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    font-size: 14px !important;
}

.vibeotter-variant-select {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid var(--metallic-silver) !important;
    font-family: 'Garamond', serif !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--pantone-green) !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2340492C' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding-right: 40px !important;
}

.vibeotter-variant-select:focus {
    outline: none !important;
    border-color: var(--off-white) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2) !important;
}

.vibeotter-variant-select:hover {
    border-color: var(--off-white) !important;
}

.vibeotter-add-to-cart-btn {
    display: inline-block !important;
    width: 100% !important;
    padding: 14px 32px !important;
    background: transparent !important;
    color: var(--off-white) !important;
    border: 2px solid var(--off-white) !important;
    border-radius: 50px !important;
    font-family: 'Garamond', serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin-top: 16px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.vibeotter-add-to-cart-btn:hover:not(:disabled) {
    background: var(--off-white) !important;
    color: var(--pantone-green) !important;
    border-color: var(--off-white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
}

.vibeotter-add-to-cart-btn:active:not(:disabled) {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2) !important;
}

.vibeotter-add-to-cart-btn:disabled {
    background: rgba(192, 192, 192, 0.2) !important;
    border-color: rgba(192, 192, 192, 0.4) !important;
    color: rgba(192, 192, 192, 0.6) !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

/* Empty State */
.vibeotter-cart-empty {
    color: var(--text-secondary) !important;
}

.vibeotter-cart-empty svg {
    stroke: var(--pantone-green) !important;
}

/* Ensure cart appears above everything */
.vibeotter-cart-button,
.vibeotter-cart-overlay,
.vibeotter-cart-drawer {
    z-index: 9999 !important;
}

/* Mobile Responsiveness for Cart */
@media (max-width: 768px) {
    .vibeotter-cart-drawer {
        max-width: 100% !important;
    }
}

/* Location Page Specific Styles */
.location-address {
    font-size: 14px;
    color: var(--antique-gold);
    margin-top: 16px;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 1px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
    text-align: center;
}

.location-actions {
    margin-top: 20px;
    padding-top: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.location-actions .rounded-btn {
    display: inline-block;
    margin: 0;
    padding: 16px 48px;
    font-size: 11px;
    letter-spacing: 4px;
}

@media (max-width: 1268px) {
    .location-address {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .location-actions {
        margin-top: 20px;
    }
}

/* Tablet specific hero height fix */
@media (min-width: 577px) and (max-width: 1024px) {
    .hero {
        --hero-height: 100vh;  /* Tablet height closer to mobile */
        --hero-wave-height: calc(var(--hero-height) * 0.5);
        padding-top: 10vh;  /* Reduced padding-top */
    }

    /* Ensure wave divider fills bottom half on tablet */
    .hero-wave-with-image {
        height: 90vh !important;  /* Fill bottom half of hero on tablet */
    }

    /* Adjust text over GIF on tablet */
    .hero-gif-text .pour-into-yourself {
        font-size: 26px;  /* Reduced from 28px */
        margin-bottom: 18px;  /* Reduced spacing */
    }

    .hero-gif-text .rounded-btn {
        font-size: 15px;
    }

    /* Adjust hero text on tablet */
    .hero-content .japanese-aura {
        font-size: 20px;  /* Reduced from 22px */
        margin: 15px 0;  /* Reduced spacing */
    }

    .hero-text {
        font-size: 14px;  /* Reduced from 15px */
        line-height: 1.8;  /* Tightened */
        margin-bottom: 12px;  /* Reduced spacing */
    }
}

/* Desktop hero spacing aligned with tablet */
@media (min-width: 1025px) {
    .hero {
        --hero-height: 130vh;
        --hero-wave-height: calc(var(--hero-height) * 0.45);
        padding-top: 12vh;
        padding-bottom: var(--hero-wave-height);
    }

    /* Counter the desktop stretch on the hero GIF without altering the wave shape */
    .hero-wave-gif {
        transform: translateY(100px) scaleY(1.98);
    }

    /* Keep origin photo a normal size on desktop */
    .origin-two-column {
        align-items: center;
    }

    .origin-image-column {
        height: auto;
    }

    .origin-image-column img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Matcha hero - zoom out on desktop */
    .history-hero[style*="matcha-tea-white-pillows"] {
        background-size: 100% !important;
    }

    /* Home carousel: 4-up images with full-width intro on desktop */
    .tea-farm-gallery-section .carousel-wrapper {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        height: auto;
    }

    .tea-farm-gallery-section .carousel-text-block {
        grid-column: 1 / -1;
        height: auto;
        min-height: 0;
    }

    .tea-farm-gallery-section .carousel-photo {
        flex: 0 0 auto;
        width: 100%;
    }

    .tea-farm-gallery-section .carousel-photo:not(.carousel-text-block) {
        min-height: 320px;
    }

    .tea-farm-gallery-section .carousel-photo img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.matcha-latte-cinnamon {
    object-position: center bottom;
}

@media (max-width: 768px) {
    .matcha-latte-cinnamon {
        object-position: center 80%;
    }
    .cowgirls-img {
        object-position: center 35%;
    }
}
