/* ===================================
   THE OIL HILL - NATURE & GOLD THEME
   Natural Cosmetics Landing Page Style
   =================================== */

:root {
    --cream: #FAF8F3;
    --ivory: #FFFFF0;
    --white: #ffffff;
    --soft-gold: #D4AF37;
    --deep-gold: #B8860B;
    --nature-green: #5F8670;
    --light-green: #8BA888;
    --sage: #9CAF88;
    --mint: #E8F5E9;
    --warm-grey: #F5F5F0;
    --text-primary: #2C2C2C;
    --text-secondary: #5A6C57;
    --dark-bg: #1a1a1a;
    --olive-white: #f5f6f0;
    --olive-light: #f8f9f5;
    --olive-warm: #f0f2e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-primary);
    background-color: var(--olive-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    font-weight: 600;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

/* SITE-WIDE SOFT OLIVE GREEN BACKGROUNDS */
section {
    background-color: var(--olive-white);
}

section:nth-child(even) {
    background-color: var(--olive-light);
}

section:nth-child(odd) {
    background-color: var(--olive-warm);
}

/* ===================================
   NAVIGATION - SOLIDROAD STYLE (FIXED)
   =================================== */
.navbar {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: white;
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 35px;
    justify-self: start;
}

.nav-left a {
    text-decoration: none;
    color: #2C2C2C;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-left a:hover,
.nav-left a.active {
    color: var(--nature-green);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: center;
    text-decoration: none;
}

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

.site-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--nature-green), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: end;
}

.nav-right a {
    text-decoration: none;
    color: #2C2C2C;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--nature-green);
}

.music-toggle {
    background: linear-gradient(135deg, var(--nature-green), var(--light-green));
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(95,134,112,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
}

.music-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95,134,112,0.35);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--nature-green);
    transition: all 0.3s;
}

/* ========================================
   HERO VIDEO SECTION - COMPLETE FIX
======================================== */
/* HERO VIDEO SECTION */
.hero-video {
    position: relative;
    height: 80vh;
    min-height: 800px;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

/* TEXT ON THE ROCK - VERY BOTTOM */
.hero-video-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 30px;
    text-align: center;
}

.hero-opening-text {
    max-width: 1100px;
    margin: 0 auto 30px;
}

.opening-story {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 18px;
    font-style: italic;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.opening-invitation {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.furrow-divider-gold {
    font-size: 1.8rem;
    font-weight: 800;
    color: #DAA520;
    letter-spacing: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-video {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-text-below {
        padding: 60px 20px;
    }
    
    .opening-line {
        font-size: 1.8rem;
    }
    
    .opening-story {
        font-size: 1.3rem;
    }
    
    .opening-invitation {
        font-size: 1.2rem;
    }
    
    .furrow-divider-gold {
        font-size: 2rem;
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary, .btn-secondary, .btn-gold {
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--nature-green), var(--light-green));
    color: white;
    box-shadow: 0 8px 25px rgba(95,134,112,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(95,134,112,0.4);
}

.btn-secondary {
    background: white;
    color: var(--nature-green);
    border: 2px solid var(--nature-green);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.btn-secondary:hover {
    background: var(--mint);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--soft-gold), var(--deep-gold));
    color: white;
    box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212,175,55,0.4);
}

.btn-large {
    padding: 20px 55px;
    font-size: 1.15rem;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--nature-green), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.lead-text {
    text-align: center;
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto 70px;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* ===================================
   DUAL BRANDS
   =================================== */
.dual-brands {
    background: var(--olive-white);
    position: relative;
    overflow: hidden;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
}

.brand-card {
    background: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(95,134,112,0.12);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.brand-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(95,134,112,0.18);
}

.brand-logo {
    width: 160px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.brand-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--nature-green);
    position: relative;
    z-index: 1;
}

.brand-card p {
    margin-bottom: 35px;
    color: var(--text-secondary);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.brand-video-card {
    padding: 60px !important;
    overflow: hidden;
}

.product-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 240px;
    margin: 0 auto 35px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(95,134,112,0.2);
}

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

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(95,134,112,0.95), transparent);
    padding: 25px;
    color: white;
}

.video-overlay h3 {
    color: var(--soft-gold);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.video-overlay p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
}

.brand-video-card .btn-gold {
    margin-top: 30px;
}

/* ===================================
   WHY ANOINTING
   =================================== */
.why-anointing {
    background: var(--olive-light);
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 45px;
    margin-bottom: 60px;
}

.why-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(95,134,112,0.1);
    transition: all 0.4s;
    border: 1px solid rgba(95,134,112,0.08);
    position: relative;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(95,134,112,0.15);
}

.why-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.why-card:hover .why-img {
    transform: scale(1.08);
}

.why-card h3 {
    padding: 30px 30px 12px;
    color: var(--nature-green);
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

.scripture {
    padding: 0 30px 30px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.85;
    position: relative;
    z-index: 1;
}

/* ===================================
   GRANDMA TEASER SECTION
   =================================== */
.grandma-teaser {
    background: linear-gradient(135deg, #f4e4c1 0%, #e8d4a8 50%, #f4e4c1 100%);
    padding: 100px 0;
}

.teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.teaser-content h2 {
    font-size: 2.5rem;
    color: var(--nature-green);
    margin-bottom: 20px;
}

.teaser-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.teaser-image {
    text-align: center;
}

.teaser-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(95,134,112,0.2);
    transition: transform 0.4s;
}

.teaser-image img:hover {
    transform: scale(1.03);
}

.grandparents-welcome-text {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
    padding: 30px 20px;
}

.grandparents-welcome-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #8B7355;
    margin-bottom: 25px;
    font-weight: 600;
}

.grandparents-welcome-text p {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    line-height: 1.9;
    color: #5a5a5a;
    font-style: italic;
}

/* ========================================
   THE OIL HILL LEGACY PAGE - VIDEO HERO
======================================== */

.about-hero-video {
    position: relative;
    height: 80vh;
    min-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}
/* Anchor Invitation Section (Welcome) */
.anchor-invitation-top {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08), rgba(255, 255, 255, 0.98));
    padding: 80px 20px;
    text-align: center;
    border-bottom: 2px solid rgba(218, 165, 32, 0.2);
}
.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #DAA520;
    font-weight: 600;
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.welcome-text {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

/* Voice Over Section with Card */
.voice-over-section {
    padding: 80px 20px;
    background: #FDFBF7;
}

.voice-player-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.voice-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.voice-player-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.voice-description {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.audio-player-wrapper {
    position: relative;
    margin-top: 30px;
}

.audio-player-wrapper audio {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    border-radius: 50px;
}

.listen-btn {
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.3);
}

.listen-btn:hover {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}
.legacy-story-section {
    background: var(--olive-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.legacy-story-section .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--nature-green);
}

.grandparents-photo {
    text-align: center;
    margin: 0 auto 60px;
    max-width: 600px;
}

.grandparents-photo img {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    display: block;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(95,134,112,0.2);
    transition: transform 0.4s;
}

.grandparents-photo img:hover {
    transform: scale(1.03);
}

.photo-caption {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 25px;
    font-style: italic;
    text-align: center;
    font-weight: 600;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.story-text {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 30px;
    text-align: justify;
}

.family-quote {
    background: white;
    border-left: 5px solid var(--soft-gold);
    padding: 40px 50px;
    margin: 50px 0;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(95,134,112,0.1);
    text-align: center;
}

.family-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--nature-green);
    font-style: italic;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.family-quote cite {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.scripture-section {
    padding: 100px 20px;
    background: var(--olive-light);
}

.scripture-card {
    background: white;
    border-radius: 25px;
    padding: 60px 50px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 6px solid var(--soft-gold);
}

.scripture-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--nature-green);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scripture-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--soft-gold);
    font-style: italic;
    line-height: 1.7;
    margin: 30px 0;
    padding: 0 20px;
}

.scripture-reference {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    display: block;
    margin-top: 20px;
}

.scripture-reflection {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-top: 35px;
}

.prayer-section {
    background: linear-gradient(135deg, var(--nature-green), var(--sage), var(--soft-gold));
    color: white;
    text-align: center;
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
}

.prayer-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.prayer-text {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.legacy-to-shop-cta {
    background: var(--olive-white);
    text-align: center;
    padding: 100px 30px;
}

.legacy-to-shop-cta h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--nature-green);
    margin-bottom: 20px;
}

.legacy-to-shop-cta p {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-style: italic;
}

.legacy-footer {
    background: linear-gradient(135deg, #2a2a2a, var(--dark-bg));
    color: white;
    padding: 80px 0 40px;
}

.footer-legacy-lockup {
    text-align: center;
    padding: 60px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.legacy-tagline {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-top: 25px;
    font-style: italic;
}

.legacy-micro {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    font-style: italic;
}

/* ===================================
   PRODUCT PAGE
   =================================== */
   /* LEGACY PRODUCT INTRO - FIX NAVBAR OVERLAP + CARD */
.legacy-product-intro {
    background: var(--olive-white);
    padding: 140px 0 100px; /* Extra top padding to clear navbar */
    margin-top: 80px; /* Push down from navbar */
}

.legacy-intro-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(95,134,112,0.15);
    text-align: center;
    position: relative;
}

/* Legacy Badge */
.legacy-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #5f7f5f 0%, #6b8e6b 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(95,134,112,0.3);
}

/* Title */
.legacy-intro-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--nature-green);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

/* Text */
.legacy-intro-text {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 500;
    margin: 0;
}
   
.product-hero {
    padding-top: 160px;
    background: var(--olive-white);
    position: relative;
    overflow: hidden;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.main-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(95,134,112,0.15);
}

.main-product-video {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(95,134,112,0.2);
}

.thumbnail-images {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.thumb {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.thumb.active, .thumb:hover {
    border-color: var(--nature-green);
    transform: scale(1.05);
}

.product-details h1 {
    font-size: 3.5rem;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--nature-green), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-subtitle {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.product-price {
    margin: 35px 0;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--soft-gold), var(--deep-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-features ul {
    list-style: none;
    margin-top: 25px;
}

.product-features li {
    padding: 15px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
}

.product-features li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.product-actions {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.scripture-sidebar {
    background: white;
    padding: 45px;
    border-radius: 30px;
    height: fit-content;
    position: sticky;
    top: 160px;
    box-shadow: 0 15px 50px rgba(95,134,112,0.12);
    border: 1px solid rgba(95,134,112,0.1);
}

.scripture-verse {
    margin-bottom: 40px;
}

.verse-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.verse-ref {
    color: var(--nature-green);
    font-weight: 600;
}

.sidebar-img {
    width: 100%;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 12px 35px rgba(95,134,112,0.15);
}

/* ===================================
   HOW TO USE PAGE
   =================================== */
.page-hero {
    padding-top: 200px;
    text-align: center;
    background: var(--olive-white);
}

.page-logo {
    width: 130px;
    margin-bottom: 30px;
}

.biblical-uses {
    background: var(--olive-light);
    position: relative;
    overflow: hidden;
}

.biblical-grid {
    display: grid;
    gap: 100px;
}

.biblical-card {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: start;
}

.biblical-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(95,134,112,0.15);
    transition: transform 0.4s;
}

.biblical-img:hover {
    transform: scale(1.03);
}

.biblical-content h3 {
    color: var(--nature-green);
    margin-bottom: 25px;
    font-size: 2.3rem;
}

.explanation {
    margin-top: 25px;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

.six-ways {
    background: var(--olive-white);
    position: relative;
    overflow: hidden;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 45px;
}

.way-card {
    background: white;
    padding: 45px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 40px rgba(95,134,112,0.1);
    transition: all 0.4s;
    border: 1px solid rgba(95,134,112,0.08);
}

.way-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(95,134,112,0.15);
}

.way-number {
    position: absolute;
    top: -25px;
    right: 35px;
    background: linear-gradient(135deg, var(--nature-green), var(--light-green));
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 10px 25px rgba(95,134,112,0.3);
}

.way-icon {
    font-size: 4rem;
    margin-bottom: 30px;
}

.calm-mind-method {
    background: var(--olive-light);
    position: relative;
    overflow: hidden;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
    margin-bottom: 60px;
}

.step {
    background: white;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 12px 40px rgba(95,134,112,0.1);
    transition: transform 0.4s;
    border: 1px solid rgba(95,134,112,0.08);
}

.step:hover {
    transform: translateY(-12px);
}

.step-number {
    background: linear-gradient(135deg, var(--nature-green), var(--light-green));
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(95,134,112,0.25);
}

.psalm-section {
    background: linear-gradient(135deg, var(--nature-green), var(--sage), var(--soft-gold));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.psalm-content {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.psalm-logo {
    width: 110px;
    margin-bottom: 35px;
}

.psalm-content h2 {
    color: white;
    margin-bottom: 25px;
    font-size: 3rem;
}

.psalm-text {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    padding: 55px;
    border-radius: 30px;
    margin: 45px 0;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.psalm-verse {
    font-size: 1.2rem;
    margin-bottom: 22px;
    line-height: 2;
}

.highlight-verse {
    background: rgba(255,255,255,0.2);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
}

/* ===================================
   STAY YOUNG
   =================================== */
.stay-young-hero {
    background: linear-gradient(135deg, #2a2a2a, var(--dark-bg));
    min-height: 75vh;
    padding: 140px 30px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.stay-young-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,168,136,0.2), transparent);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 20s infinite alternate;
}

.stay-young-logo-large {
    width: 240px;
    margin: 0 auto 45px; /* CHANGED: Added "0 auto" to center it */
    display: block; /* ADDED: Makes the margin auto work */
}

.stay-young-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--sage), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* STAY YOUNG - OUR PROMISE */
.stay-young-promise {
    background: var(--olive-white);
    padding: 100px 0;
}

.promise-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 50px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(95,134,112,0.15);
}

.promise-content h2 {
    font-size: 3rem;
    color: var(--nature-green);
    margin-bottom: 35px;
}

.promise-content p {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-style: italic;
}

@media (max-width: 768px) {
    .promise-content {
        padding: 40px 30px;
    }
    .promise-content h2 {
        font-size: 2rem;
    }
}


.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    margin-bottom: 120px;
}

.showcase-image {
    position: relative;
}

.product-showcase-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(95,134,112,0.2);
}

.coming-soon-badge {
    position: absolute;
    top: 35px;
    right: 35px;
    background: var(--nature-green);
    color: white;
    padding: 14px 28px;
    border-radius: 35px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(95,134,112,0.3);
}

.product-benefits {
    margin-top: 45px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.benefit-item {
    display: flex;
    gap: 22px;
    align-items: start;
}

.benefit-icon {
    font-size: 2.8rem;
}

.product-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--nature-green), var(--soft-gold), transparent);
    margin: 90px 0;
}

.product-showcase.reverse {
    grid-template-columns: 1fr 1fr;
}

.product-showcase.reverse .showcase-image {
    order: 2;
}

/* ===================================
   SHOP PAGE
   =================================== */
/* SHOP HERO SECTION */
.shop-hero {
    background: linear-gradient(135deg, var(--nature-green) 0%, #6b8e6b 100%);
    padding: 160px 0 100px;
    text-align: center;
    color: white;
    margin-top: 80px; /* Clear navbar */
}

.shop-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.shop-hero .hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #f4e4c1;
}

/* SHOP INTRO SECTION WITH CARD */
.shop-intro-section {
    background: var(--olive-white);
    padding: 100px 0;
    position: relative;
}

.shop-intro-card {
    max-width: 950px;
    margin: 0 auto;
    background: white;
    padding: 70px 60px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(95,134,112,0.18);
    text-align: center;
    position: relative;
    border: 1px solid rgba(95,134,112,0.1);
}

/* Decorative corner accents */
.shop-intro-card::before,
.shop-intro-card::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #DAA520;
    opacity: 0.3;
}

.shop-intro-card::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.shop-intro-card::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Furrow Divider inside card */
.shop-intro-card .furrow-divider {
    font-size: 2.5rem;
    color: #DAA520;
    letter-spacing: 15px;
    margin-bottom: 30px;
}

/* Title */
.shop-intro-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    color: var(--nature-green);
    margin-bottom: 35px;
    font-weight: 700;
    line-height: 1.3;
}

/* Main text */
.shop-intro-text {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 500;
}

/* Sub text */
.shop-intro-subtext {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #666;
    font-weight: 600;
    padding-top: 25px;
    border-top: 2px solid rgba(218,165,32,0.2);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .shop-hero {
        padding: 140px 0 80px;
    }
    
    .shop-hero h1 {
        font-size: 2.5rem;
    }
    
    .shop-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .shop-intro-section {
        padding: 60px 20px;
    }
    
    .shop-intro-card {
        padding: 50px 35px;
        border-radius: 20px;
    }
    
    .shop-intro-card::before,
    .shop-intro-card::after {
        width: 40px;
        height: 40px;
    }
    
    .shop-intro-card h2 {
        font-size: 2rem;
    }
    
    .shop-intro-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .shop-intro-subtext {
        font-size: 1.05rem;
    }
}

.products-grid-shop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 55px;
}

.product-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(95,134,112,0.12);
    transition: all 0.4s;
    border: 1px solid rgba(95,134,112,0.08);
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(95,134,112,0.18);
}

.product-image-card {
    position: relative;
    height: 380px;
    overflow: hidden;
}

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

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

.badge {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 1;
}

.pre-order {
    background: linear-gradient(135deg, var(--soft-gold), var(--deep-gold));
    color: white;
}

.product-info-card {
    padding: 35px;
    position: relative;
    z-index: 1;
}

.product-info-card h3 {
    color: var(--nature-green);
    margin-bottom: 18px;
    font-size: 1.6rem;
}

.view-details {
    color: var(--nature-green);
    text-decoration: none;
    display: block;
    margin-top: 22px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.view-details:hover {
    color: var(--soft-gold);
    transform: translateX(5px);
}

/* ===================================
   CART
   =================================== */
.cart-section {
    background: var(--olive-white);
    position: relative;
    overflow: hidden;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.cart-summary {
    background: white;
    padding: 45px;
    border-radius: 30px;
    height: fit-content;
    position: sticky;
    top: 160px;
    box-shadow: 0 15px 50px rgba(95,134,112,0.12);
    border: 1px solid rgba(95,134,112,0.08);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid rgba(95,134,112,0.1);
}

.summary-total {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--nature-green), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-options {
    margin-top: 45px;
}

.checkout-options h4 {
    margin-bottom: 28px;
}

#paypal-button-container {
    margin: 22px 0;
}

.mini-cart {
    position: fixed;
    right: -480px;
    top: 0;
    width: 480px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 40px rgba(95,134,112,0.2);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.mini-cart.active {
    right: 0;
}

.mini-cart-header {
    padding: 35px;
    background: linear-gradient(135deg, var(--nature-green), var(--light-green));
    color: white;
    display: flex;
    justify-content: space-between;
}

#close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.cart-toggle {
    position: fixed;
    bottom: 45px;
    right: 45px;
    background: linear-gradient(135deg, var(--nature-green), var(--light-green));
    color: white;
    border: none;
    padding: 20px 35px;
    border-radius: 50px;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 12px 40px rgba(95,134,112,0.35);
    transition: transform 0.3s;
}

.cart-toggle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 50px rgba(95,134,112,0.45);
}

.cart-badge {
    background: white;
    color: var(--nature-green);
    padding: 5px 12px;
    border-radius: 50%;
    font-size: 0.95rem;
    margin-left: 10px;
    font-weight: 700;
}

/* ===================================
   CONTACT
   =================================== */
.contact-hero {
    padding-top: 200px;
    text-align: center;
    background: var(--olive-white);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-weight: 600;
    color: var(--nature-green);
}

.form-group input,
.form-group textarea {
    padding: 18px 22px;
    border: 2px solid rgba(95,134,112,0.2);
    border-radius: 18px;
    font-family: 'Lora', serif;
    transition: all 0.3s;
    background: white;
    font-size: 1.05rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--nature-green);
    box-shadow: 0 5px 20px rgba(95,134,112,0.15);
}

.contact-info-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(95,134,112,0.1);
    transition: transform 0.3s;
    border: 1px solid rgba(95,134,112,0.08);
}

.contact-info-card:hover {
    transform: translateY(-8px);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: linear-gradient(135deg, #2a2a2a, var(--dark-bg));
    color: white;
    padding: 90px 0 45px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '🌿';
    position: absolute;
    font-size: 400px;
    opacity: 0.02;
    bottom: -100px;
    right: -100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Logo takes more space, others pushed right */
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    width: 110px;
    margin-bottom: 25px;
}

.footer-col h4 {
    background: linear-gradient(135deg, var(--sage), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--sage);
    transform: translateX(8px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 35px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ===================================
   MODAL
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(95,134,112,0.9);
    backdrop-filter: blur(15px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 55px;
    border-radius: 35px;
    max-width: 650px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    background: none;
    color: #999;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--nature-green);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }

    .nav-container {
        grid-template-columns: 1fr;
        padding: 12px 18px;
        gap: 15px;
    }

    .nav-left {
        display: none;
    }

    .logo {
        order: 1;
        justify-self: center;
        margin-bottom: 10px;
    }

    .logo-img {
        height: 32px;
    }

    .site-name {
        font-size: 1.1rem;
    }

    .nav-right {
        order: 2;
        justify-self: center;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .nav-right a {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .music-toggle {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-video {
        height: 100vh;
        min-height: 600px;
    }

    .section-title {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .brands-grid, 
    .why-grid, 
    .ways-grid, 
    .biblical-grid, 
    .product-main,
    .product-layout, 
    .teaser-grid, 
    .product-showcase, 
    .cart-layout, 
    .contact-grid,
    .products-grid-shop {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .biblical-card {
        grid-template-columns: 1fr;
    }

    .stay-young-title {
        font-size: 2.2rem;
    }

    .stay-young-logo-large {
        width: 150px;
    }

    .product-video-wrapper {
        height: 200px;
        max-width: 100%;
    }

    .product-card {
        margin-bottom: 25px;
    }

    .product-image-card {
        height: 280px;
    }

    .btn-primary, 
    .btn-secondary, 
    .btn-gold {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

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

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .footer-col a {
        font-size: 0.95rem;
        padding: 8px 0;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 25px;
    }

    .mini-cart {
        width: 100%;
        right: -100%;
    }

    .cart-toggle {
        bottom: 25px;
        right: 25px;
        padding: 15px 25px;
        font-size: 1.1rem;
    }

    .grandparents-photo img {
        max-width: 100%;
    }

    .photo-caption {
        font-size: 1rem;
    }

    .story-text {
        font-size: 1rem;
        text-align: left;
    }

    .family-quote {
        padding: 30px 25px;
    }

    .family-quote p {
        font-size: 1.4rem;
    }

    .scripture-card {
        padding: 40px 30px;
    }

    .scripture-text {
        font-size: 1.5rem;
    }

    .prayer-title {
        font-size: 2rem;
    }

    .prayer-text {
        font-size: 1.1rem;
    }

    .legacy-to-shop-cta h3 {
        font-size: 1.8rem;
    }

    .grandparents-welcome-text h3 {
        font-size: 2rem;
    }

    .grandparents-welcome-text p {
        font-size: 1.2rem;
    }
}

/* GRANDPARENTS DATES */
.grandparents-dates {
    margin-top: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.dates-line {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.dates-line:last-child {
    margin-bottom: 0;
}

.dates-line strong {
    color: var(--nature-green);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .grandparents-dates {
        padding: 20px;
    }
    
    .dates-line {
        font-size: 1rem;
    }
    
    .dates-line strong {
        font-size: 1.1rem;
    }
}
/* ====================================
   HAIR CARE COLLECTION SECTION
==================================== */
.hair-care-collection {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fdfbf7 0%, #f8f5ed 100%);
}

.collection-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.collection-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #2c5f2d;
    margin: 20px 0;
}

.collection-intro {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.hair-product-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hair-product-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.hair-product-grid.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.hair-product-grid.reverse .hair-product-image {
    order: 2;
}

.hair-product-grid.reverse .hair-product-content {
    order: 1;
}

.hair-product-image {
    width: 100%;
}

.product-img-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8dcc4 0%, #c9b896 100%);
}

.hair-product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.hair-product-tagline {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #c9a961;
    margin-bottom: 20px;
}

.how-to-use-box {
    background: #f8f5ed;
    padding: 20px;
    border-left: 4px solid #c9a961;
    margin: 20px 0;
    border-radius: 4px;
}

.how-to-use-box h4 {
    font-family: 'Cinzel', serif;
    color: #2c5f2d;
    margin-bottom: 10px;
    font-size: 1rem;
}

.how-to-use-box p {
    font-family: 'Lora', serif;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .hair-product-grid,
    .hair-product-grid.reverse {
        grid-template-columns: 1fr;
    }
    
    .hair-product-grid.reverse .hair-product-image,
    .hair-product-grid.reverse .hair-product-content {
        order: unset;
    }
    
    .collection-title {
        font-size: 2rem;
    }
    
    .hair-product-card {
        padding: 30px 20px;
    }
}
