/*
Theme Name: Julia Rawsome (Deutsch) V10
Theme URI: https://juliarawsome.com
Description: Deutsches Theme für Julia Rawsome - Premium Color Palette
Author: Julia Rawsome
Version: 10.0
Text Domain: julia-rawsome-de
*/

/* CSS Variables - Premium Color Palette */
:root {
    /* Core Colors */
    --deep-forest: #00674F;
    --silk-blush: #F5E6E8;
    --pearl-cream: #FEFCF9;
    --diamond-white: #FFFFFF;
    
    /* Green Variations */
    --green-hover: #005A43;
    --green-light: #1A7A63;
    --green-muted: #4D8B73;
    
    /* Background Variations */
    --cream-light: #FFFFF8;
    --pink-wash: #FAF7F7;
    
    /* Legacy compatibility (mapped to new colors) */
    --olive: #00674F;
    --text-dark: #00674F;
    --text-light: #4D8B73;
    --white: #FFFFFF;

    /* Missing variables used across templates */
    --dark: #333333;
    --light-bg: var(--pink-wash);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-forest);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--pearl-cream);
}


html {
    background: var(--pearl-cream);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
}

/* Prevent rare mobile (Android) horizontal overflow issues */
img, video, iframe, svg {
    max-width: 100%;
    height: auto;
}

.post-section,
.blog-section {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* GDPR Compliant Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    padding: 2rem;
    border-top: 3px solid #00674F;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #00674F;
    font-weight: 600;
}

.cookie-text p {
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
    font-size: 0.95rem;
    color: #666;
}

.cookie-text a {
    color: #3b82f6;
    text-decoration: none;
}

.cookie-text a:hover,
.cookie-text a:focus {
    text-decoration: underline;
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner button {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-family: inherit;
}

.cookie-settings-btn {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
    background: #f9fafb;
    outline: 2px solid #00674F;
    outline-offset: 2px;
}

.cookie-reject {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.cookie-reject:hover,
.cookie-reject:focus {
    background: #e5e7eb;
    outline: 2px solid #00674F;
    outline-offset: 2px;
}

.cookie-accept {
    background: #3b82f6;
    color: white;
}

.cookie-accept:hover,
.cookie-accept:focus {
    background: #2563eb;
    outline: 2px solid #1d4ed8;
    outline-offset: 2px;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #00674F;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.cookie-modal-close:hover,
.cookie-modal-close:focus {
    background: #f3f4f6;
    color: #374151;
    outline: 2px solid #00674F;
    outline-offset: 2px;
}

.cookie-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-modal-body > p {
    margin: 0 0 1.5rem 0;
    color: #6b7280;
    line-height: 1.6;
}

.cookie-category {
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    background: #f9fafb;
}

.cookie-category-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-category-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #111827;
}

.cookie-category-desc {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

.cookie-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #6b7280;
}

.cookie-details p {
    margin: 0.5rem 0;
}

.cookie-details a {
    color: #3b82f6;
    text-decoration: none;
}

.cookie-details a:hover {
    text-decoration: underline;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #3b82f6;
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

input:focus + .cookie-slider {
    outline: 2px solid #00674F;
    outline-offset: 2px;
}

.cookie-switch.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-switch.disabled .cookie-slider {
    cursor: not-allowed;
    background-color: #9ca3af;
}

/* Modal Footer */
.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cookie-save-settings,
.cookie-accept-all {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-family: inherit;
}

.cookie-save-settings {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.cookie-save-settings:hover,
.cookie-save-settings:focus {
    background: #e5e7eb;
    outline: 2px solid #00674F;
    outline-offset: 2px;
}

.cookie-accept-all {
    background: #3b82f6;
    color: white;
}

.cookie-accept-all:hover,
.cookie-accept-all:focus {
    background: #2563eb;
    outline: 2px solid #1d4ed8;
    outline-offset: 2px;
}

/* Persistent Settings Toggle */
.cookie-settings-toggle {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background: white;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    align-items: center;
    gap: 0.5rem;
    z-index: 9999;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.cookie-settings-toggle:hover,
.cookie-settings-toggle:focus {
    background: #f9fafb;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transform: translateY(-2px);
    outline: 2px solid #00674F;
    outline-offset: 2px;
}

.cookie-settings-toggle svg {
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-banner button {
        width: 100%;
    }
    
    .cookie-modal-content {
        max-height: 95vh;
        margin: 0.5rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-save-settings,
    .cookie-accept-all {
        width: 100%;
    }
    
    .cookie-settings-toggle {
        bottom: 0.5rem;
        left: 0.5rem;
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }
    
    header {
        padding: 0.5rem 4%;
    }
    
    .logo img {
        height: 60px;
        top: 0;
    }
}

/* Print - Hide cookie UI */
@media print {
    .cookie-banner,
    .cookie-modal,
    .cookie-settings-toggle {
        display: none !important;
    }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    background: var(--diamond-white);
    box-shadow: 0 2px 10px rgba(0, 103, 79, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    position: relative;
    z-index: 10;
}

.logo img {
    height: 80px;
    position: relative;
    top: 0;
}


.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--deep-forest);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--green-light);
}

.members-btn {
    background: var(--deep-forest);
    color: var(--diamond-white);
    padding: 0.75rem 2rem;
    border: 2px solid transparent;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.members-btn:hover {
    background: var(--diamond-white);
    color: var(--deep-forest);
    border: 2px solid var(--deep-forest);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--deep-forest);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--diamond-white);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    background: none;
    border: none;
    color: var(--deep-forest);
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.mobile-nav a {
    font-size: 1.2rem;
    color: var(--deep-forest);
    padding: 1rem;
    border-bottom: 1px solid var(--silk-blush);
}

/* Hero Section with Video */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 252, 249, 0.25) 0%, rgba(245, 230, 232, 0.25) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--deep-forest);
    line-height: 1.2;
}

.hero h1 strong {
    color: var(--diamond-white);
    text-shadow: 2px 2px 4px rgba(0, 103, 79, 0.4);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--diamond-white);
}

.julia-name {
    color: var(--diamond-white);
    font-size: 1.1em;
    font-weight: 600;
}

.cta-btn {
    background: var(--deep-forest);
    color: var(--diamond-white);
    padding: 1.25rem 3rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 103, 79, 0.3);
}

.cta-btn:hover {
    background: var(--diamond-white);
    color: var(--deep-forest);
    border: 2px solid var(--deep-forest);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 103, 79, 0.4);
}

/* About Section with Image Mosaic */
.about {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--pearl-cream) 0%, var(--cream-light) 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.image-collage {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.main-image {
    flex: 2;
    overflow: hidden;
    border-radius: 15px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 103, 79, 0.12);
}

.side-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.side-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 103, 79, 0.1);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--green-muted);
}

/* Products Preview Section */
.products-preview {
    padding: 5rem 5%;
    background: var(--diamond-white);
}

.products-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.products-preview h2 {
    font-size: 3rem;
    color: var(--deep-forest);
    margin-bottom: 1rem;
}

.products-subtitle {
    font-size: 1.2rem;
    color: var(--green-muted);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.3rem;
    color: var(--deep-forest);
}

.julia-message {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1300px;
    margin: 4rem auto 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(245, 230, 232, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.julia-message-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.julia-message-text {
    padding: 1rem;
}

.julia-message-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--deep-forest);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.julia-message-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--deep-forest);
    margin-bottom: 1.2rem;
}

.julia-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--deep-forest);
    margin-top: 1.5rem;
    font-weight: 600;
}

.products-cta {
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-block;
    background: var(--deep-forest);
    color: white;
    padding: 1.25rem 3rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--diamond-white);
    color: var(--deep-forest);
    border: 2px solid var(--deep-forest);
    transform: translateY(-3px);
}

/* Membership Section */
/* Membership Section */
.membership {
    padding: 8rem 5%;
    background: var(--pink-wash);
    position: relative;
    overflow: hidden;
}

.membership::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 230, 232, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}

.membership-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.membership-header {
    text-align: center;
    margin-bottom: 5rem;
}

.membership-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.membership-header p {
    font-size: 1.25rem;
    color: var(--dark);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.membership-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 4rem;
}

.membership-images img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.membership-content {
    background: var(--white);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 103, 79, 0.15);
    border: 2px solid rgba(245, 230, 232, 0.4);
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.benefits h3,
.content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--deep-forest);
    margin-bottom: 2rem;
    font-weight: 600;
}

.content h3 {
    color: var(--green-light);
}

.benefits ul,
.content ul {
    list-style: none;
}

.benefits li,
.content li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 103, 79, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.benefits li:hover,
.content li:hover {
    padding-left: 1rem;
    background: rgba(245, 230, 232, 0.15);
    border-radius: 10px;
}

.benefits li:last-child,
.content li:last-child {
    border-bottom: none;
}

.benefits li::before,
.content li::before {
    content: '✦';
    color: var(--silk-blush);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefits strong,
.content strong {
    color: var(--deep-forest);
    font-weight: 600;
}

.join-btn-container {
    text-align: center;
    padding-top: 2rem;
}

.join-btn {
    background: var(--silk-blush);
    color: var(--white);
    padding: 1.3rem 4.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(230, 139, 190, 0.3);
}

.join-btn:hover {
    background: var(--deep-forest);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 103, 79, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f8f8 0%, var(--pearl-cream) 100%);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--green-muted);
    margin-bottom: 4rem;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-carousel {
    overflow: hidden;
    padding: 0 80px;
    position: relative;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    min-height: 320px;
    display: none;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card.visible {
    display: flex;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    color: var(--silk-blush);
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--green-muted);
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--deep-forest);
    font-size: 1.1rem;
    margin-top: auto;
    text-align: right;
    font-style: normal;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--deep-forest);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.carousel-arrow:hover {
    background: var(--silk-blush);
    color: var(--deep-forest);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #bbb;
}

.dot.active {
    background: var(--deep-forest);
    width: 35px;
    border-radius: 10px;
}

/* eBook Section */
.ebook {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--silk-blush) 0%, var(--pearl-cream) 100%);
}

.ebook-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ebook-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.ebook-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.ebook-image-mobile {
    display: none;
}

.ebook-subtitle {
    color: var(--green-light);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.ebook-text h2 {
    font-size: 3rem;
    color: var(--deep-forest);
    margin-bottom: 2rem;
}

.ebook-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--deep-forest);
}

.ebook-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.ebook-benefits li {
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--deep-forest);
}

.ebook-closing {
    margin-bottom: 2.5rem;
    color: var(--green-muted);
}

.download-btn {
    background: var(--deep-forest);
    color: white;
    padding: 1.25rem 3rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--diamond-white);
    color: var(--deep-forest);
    border: 2px solid var(--deep-forest);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--deep-forest);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icons a {
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--silk-blush);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--silk-blush);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.legal-modal-content {
    max-width: 800px;
}

.modal-scroll {
    max-height: calc(90vh - 6rem);
    overflow-y: auto;
    padding-right: 1rem;
}

.modal-scroll::-webkit-scrollbar {
    width: 8px;
}

.modal-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-scroll::-webkit-scrollbar-thumb {
    background: var(--deep-forest);
    border-radius: 10px;
}

.modal-scroll h2 {
    color: var(--deep-forest);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.modal-scroll h3 {
    color: var(--deep-forest);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.modal-scroll p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.modal-scroll ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.modal-scroll li {
    margin-bottom: 0.5rem;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--deep-forest);
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--silk-blush);
    transform: rotate(90deg);
}

.modal h3 {
    color: var(--deep-forest);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal p {
    margin-bottom: 2rem;
    color: var(--green-muted);
}

/* Members Modal */
.members-modal .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Forms in Modals */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-forest);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--deep-forest);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--green-muted);
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    background: var(--deep-forest);
    color: white;
    padding: 1.25rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--diamond-white);
    color: var(--deep-forest);
    border: 2px solid var(--deep-forest);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.subscribe-btn,
.download-btn {
    width: 100%;
    background: var(--deep-forest);
    color: white;
    padding: 1.25rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover,
.download-btn:hover {
    background: var(--diamond-white);
    color: var(--deep-forest);
    border: 2px solid var(--deep-forest);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-btn.prev {
        left: -20px;
    }
    
    .carousel-btn.next {
        right: -20px;
    }
}

@media (max-width: 968px) {
    .main-nav, .members-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .image-collage {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .side-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .julia-message {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .ebook-content {
        grid-template-columns: 1fr;
    }
    
    .ebook-image {
        display: none;
    }
    
    .ebook-image-mobile {
        display: block;
        margin: 2rem 0;
    }
    
    .ebook-image-mobile img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about {
        padding: 4rem 5%;
    }
    
    .side-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-track {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
    }
    
    .carousel-arrow.prev {
        left: 5px;
    }
    
    .carousel-arrow.next {
        right: 5px;
    }
    
    .testimonials-carousel {
        padding: 0 55px;
    }
    
    .membership {
        padding: 4rem 5%;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .membership-content {
        padding: 2rem;
    }
    
    .membership-header h2 {
        font-size: 2.5rem;
    }
    
    .membership-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto 3rem;
    }
    
    .testimonials {
        padding: 4rem 5%;
    }
    
    .ebook {
        padding: 4rem 5%;
    }
    
    .modal-content {
        padding: 2rem;
        width: 95%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .julia-message {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin: 3rem auto 2rem;
    }
    
    .julia-message-text h3 {
        font-size: 1.8rem;
    }
    
    .julia-message-text p {
        font-size: 1rem;
    }
    
    .products-preview h2,
    .membership-header h2,
    .testimonials h2,
    .ebook-text h2 {
        font-size: 2.5rem;
    }
    
    .carousel-track {
        flex-direction: column;
        align-items: center;
    }
    
    .product-card {
        flex: 1 1 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .close-modal {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .carousel-btn.prev, .carousel-btn.next {
        display: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}
/* Products Hero */
.products-hero {
    background: linear-gradient(135deg, var(--pearl-cream) 0%, var(--silk-blush) 100%);
    padding: 5rem 10% 4rem;
    text-align: center;
}

.products-hero-content h1 {
    font-size: 3rem;
    color: var(--deep-forest);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.products-hero-content p {
    font-size: 1.2rem;
    color: var(--green-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Promo Banner */
.promo-banner {
    background: var(--deep-forest);
    color: white;
    padding: 1.5rem 10%;
}

.promo-content {
    max-width: 1400px;
    margin: 0 auto;
}

.promo-codes {
    text-align: center;
}

.promo-codes p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.promo-brand-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid white;
    transition: all 0.3s ease;
}

.promo-brand-link:hover {
    color: var(--silk-blush);
    border-bottom-color: var(--silk-blush);
}

.promo-icon {
    font-size: 1.5rem;
}

.promo-code {
    background: white;
    color: var(--deep-forest);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin: 0 0.3rem;
}

/* Products Section */
.products-section {
    padding: 4rem 10%;
    background: white;
    scroll-margin-top: 120px;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--deep-forest);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--green-hover);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    background: var(--pearl-cream);
    padding: 2rem;
    text-align: center;
}

.product-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--silk-blush);
    color: var(--deep-forest);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.6rem;
    color: var(--deep-forest);
    margin-bottom: 0.3rem;
}

.product-tagline {
    color: var(--green-hover);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--deep-forest);
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.discounted-price {
    font-size: 1.8rem;
    color: var(--deep-forest);
    font-weight: 700;
}

.savings {
    background: #ffebee;
    color: #c62828;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--deep-forest);
    color: white;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: var(--diamond-white);
    color: var(--deep-forest);
    border: 2px solid var(--deep-forest);
    transform: translateX(3px);
}

.product-btn svg {
    transition: transform 0.3s ease;
}

.product-btn:hover svg {
    transform: translateX(3px);
}

/* Why Section */
.why-section {
    background: var(--pearl-cream);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.why-section h3 {
    font-size: 2rem;
    color: var(--deep-forest);
    text-align: center;
    margin-bottom: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
}

.why-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.why-item h4 {
    font-size: 1.3rem;
    color: var(--deep-forest);
    margin-bottom: 0.5rem;
}

.why-item p {
    color: var(--deep-forest);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Purazell Section */
.purazell-section {
    padding: 5rem 10%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    scroll-margin-top: 120px;
}

.purazell-container {
    max-width: 1400px;
    margin: 0 auto;
}

.purazell-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.purazell-text h2 {
    font-size: 2.5rem;
    color: var(--deep-forest);
    margin-bottom: 1rem;
}

.purazell-intro {
    font-size: 1.2rem;
    color: var(--green-hover);
    margin-bottom: 2rem;
    font-weight: 500;
}

.purazell-story p {
    margin-bottom: 1.5rem;
    color: var(--deep-forest);
    line-height: 1.8;
    font-size: 1rem;
}

.purazell-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.purazell-image {
    width: 100%;
}

.purazell-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.purazell-highlights {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.highlight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.highlight-item strong {
    color: var(--deep-forest);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.highlight-item span {
    color: var(--deep-forest);
    font-size: 0.95rem;
}

.purazell-cta-inline {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.purazell-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.promo-text {
    font-size: 1.2rem;
    color: var(--deep-forest);
    margin-bottom: 1.5rem;
}

.promo-code-large {
    background: var(--silk-blush);
    color: var(--deep-forest);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-block;
}

.purazell-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--deep-forest);
    color: white;
    padding: 1.2rem 2.5rem;
    border: 2px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.purazell-btn:hover {
    background: var(--diamond-white);
    color: var(--deep-forest);
    border: 2px solid var(--deep-forest);
    transform: translateX(5px);
}

.affiliate-disclosure {
    font-size: 0.85rem;
    color: #999;
    margin-top: 1rem;
    font-style: italic;
}

/* Mobile Responsive - Products Page */
@media (max-width: 1024px) {
    .products-hero {
        padding: 4rem 5%;
    }

    .products-hero-content h1 {
        font-size: 2.5rem;
    }

    .products-section {
        padding: 3rem 5%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .purazell-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .purazell-right {
        order: 1;
    }

    .purazell-text {
        order: 2;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 3rem 4%;
    }

    .products-hero-content h1 {
        font-size: 2rem;
    }

    .products-hero-content p {
        font-size: 1.1rem;
    }

    .promo-banner {
        padding: 1rem 4%;
    }

    .promo-codes {
        text-align: center;
    }

    .promo-codes p {
        font-size: 0.9rem;
        margin: 0.3rem 0;
    }

    .products-section {
        padding: 2rem 4%;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .product-card {
        max-width: 400px;
        width: 100%;
    }

    .product-content {
        padding: 1.5rem;
    }

    .why-section {
        padding: 2rem 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .purazell-section {
        padding: 3rem 4%;
    }

    .purazell-text h2 {
        font-size: 2rem;
    }

    .purazell-highlights {
        padding: 1.5rem;
    }

    .purazell-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-content h3 {
        font-size: 1.4rem;
    }

    .discounted-price {
        font-size: 1.5rem;
    }

    .product-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .purazell-text h2 {
        font-size: 1.8rem;
    }

    .promo-code-large {
        font-size: 1.3rem;
    }
}
/* Blog Styles */

/* Blog Navigation */
header .main-nav {
    display: none;
}

@media (min-width: 1024px) {
    header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 3rem;
    }

    header .main-nav {
        display: flex;
        gap: 2rem;
        justify-content: center;
    }

    header .main-nav a {
        color: var(--deep-forest);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.3s ease;
        position: relative;
    }

    header .main-nav a:hover,
    header .main-nav a.active {
        color: var(--green-light);
    }

    header .main-nav a.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--green-light);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--deep-forest);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex !important;
    }

    header .main-nav {
        display: none !important;
    }
    
    header .members-btn {
        display: none !important;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--deep-forest);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav a {
    color: var(--deep-forest);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--pearl-cream);
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    color: var(--silk-blush);
    padding-left: 1rem;
}

.mobile-nav .mobile-members-link {
    background: var(--deep-forest);
    color: var(--white);
    text-align: center;
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-top: 1rem;
    border: none;
}

.mobile-nav .mobile-members-link:hover {
    background: var(--silk-blush);
    padding-left: 2rem;
}

/* Mobile Menu Backdrop */
body.mobile-menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Blog Hero Section */
.blog-hero {
    margin-top: 130px;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--pearl-cream) 0%, rgba(181, 229, 80, 0.2) 100%);
    text-align: center;
}

.blog-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 1rem;
}

.blog-hero-content p {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 300;
}

/* Blog Section */
.blog-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}


/* Blog overflow + grid shrink fix (Android/Chrome) */
.blog-container,
.blog-main-content,
.blog-sidebar,
.blog-grid,
.blog-card {
    min-width: 0;
}

.blog-container > * {
    min-width: 0;
}

.blog-card,
.blog-card-content,
.blog-card-excerpt,
.blog-card-title {
    overflow-wrap: anywhere;
}

/* Prevent subtle horizontal overflow on blog index */
body.blog,
body.archive,
body.category,
body.tag {
    overflow-x: hidden;
}

body.blog .blog-hero,
body.blog .blog-section,
body.archive .blog-hero,
body.archive .blog-section {
    overflow-x: hidden;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.search-box {
    flex: 1;
}

.search-box form {
    display: flex;
    gap: 0;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--pearl-cream);
    border-radius: 50px 0 0 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: var(--white);
}

.search-box input:focus {
    outline: none;
    border-color: var(--silk-blush);
}

.search-box button {
    padding: 1rem 1.5rem;
    border: 2px solid var(--pearl-cream);
    border-left: none;
    border-radius: 0 50px 50px 0;
    background: var(--white);
    color: var(--deep-forest);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--silk-blush);
    border-color: var(--silk-blush);
}

.category-filter select {
    padding: 1rem 1.5rem;
    border: 2px solid var(--pearl-cream);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    min-width: 200px;
}

.category-filter select:focus {
    outline: none;
    border-color: var(--silk-blush);
}

/* Blog Grid - 2 Column */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(96, 124, 60, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(96, 124, 60, 0.15);
}

.blog-card-image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--deep-forest);
}

.blog-separator {
    color: var(--pearl-cream);
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--deep-forest);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--silk-blush);
}

.blog-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.category-tag {
    background: var(--pearl-cream);
    color: var(--deep-forest);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: var(--silk-blush);
    color: var(--white);
}

.blog-card-excerpt {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--deep-forest);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--silk-blush);
}

/* Blog Pagination */
.blog-pagination {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.blog-pagination ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
}

.blog-pagination a,
.blog-pagination span {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    background: var(--white);
    color: var(--deep-forest);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination a:hover,
.blog-pagination .current {
    background: var(--deep-forest);
    color: var(--white);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(96, 124, 60, 0.08);
}

.sidebar-widget h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 1.5rem;
}

.sidebar-about img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1rem;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.sidebar-about p {
    color: var(--dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

.sidebar-newsletter {
    background: linear-gradient(135deg, var(--silk-blush), var(--deep-forest));
    color: var(--white);
}

.sidebar-newsletter h3 {
    color: var(--white);
}

.sidebar-newsletter p {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.sidebar-cta-btn {
    width: 100%;
    background: var(--white);
    color: var(--deep-forest);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sidebar-categories,
.sidebar-recent {
    list-style: none;
}

.sidebar-categories li,
.sidebar-recent li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(96, 124, 60, 0.1);
}

.sidebar-categories li:last-child,
.sidebar-recent li:last-child {
    border-bottom: none;
}

.sidebar-categories a,
.sidebar-recent a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-categories a:hover,
.sidebar-recent a:hover {
    color: var(--deep-forest);
}

.sidebar-categories span {
    color: var(--deep-forest);
    font-size: 0.85rem;
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud-item {
    background: var(--pearl-cream);
    color: var(--deep-forest);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-cloud-item:hover {
    background: var(--silk-blush);
    color: var(--white);
}

/* No Posts Message */
.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--dark);
}

/* Single Post Styles */
.post-header {
    margin-top: 130px;
    padding: 3rem 5%;
    background: var(--white);
    border-bottom: 1px solid rgba(96, 124, 60, 0.1);
}

.post-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.post-breadcrumbs {
    font-size: 0.9rem;
    color: var(--deep-forest);
    margin-bottom: 1.5rem;
}

.post-breadcrumbs a {
    color: var(--deep-forest);
    text-decoration: none;
}

.post-breadcrumbs a:hover {
    color: var(--silk-blush);
}

.post-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    color: var(--deep-forest);
}

.post-separator {
    color: var(--pearl-cream);
}

.post-categories a {
    background: var(--pearl-cream);
    color: var(--deep-forest);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
}

.post-section {
    padding: 3rem 5%;
    background: var(--light-bg);
}

.post-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.post-main-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(96, 124, 60, 0.08);
}

.post-featured-image {
    margin: -3rem -3rem 3rem;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content-wrapper {
    margin-bottom: 3rem;
}

.post-content,
.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.post-content p,
.entry-content p,
.post-content > p:first-child {
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.post-content h1,
.entry-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-content h2,
.entry-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-content h3,
.entry-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-content h4,
.entry-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.post-content ul,
.post-content ol,
.entry-content ul,
.entry-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.post-content li,
.entry-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.post-content blockquote,
.entry-content blockquote {
    border-left: 4px solid var(--deep-forest);
    padding-left: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--green-muted);
    background: #f9f9f9;
}

.post-content img,
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    display: block;
}

.post-content a,
.entry-content a {
    color: var(--deep-forest);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.post-content a:hover,
.entry-content a:hover {
    color: var(--silk-blush);
}

.post-content strong,
.entry-content strong {
    font-weight: 600;
    color: var(--deep-forest);
}

.post-content em,
.entry-content em {
    font-style: italic;
}

.post-content code,
.entry-content code {
    background: #f5f5f5;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.post-content pre,
.entry-content pre {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 2rem 0;
}

.post-content pre code,
.entry-content pre code {
    background: none;
    padding: 0;
}

.post-share-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    margin-bottom: 3rem;
}

.share-label {
    font-weight: 600;
    color: var(--deep-forest);
}

.share-btn {
    display: inline-flex;
    align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: var(--white);
	color: var(--deep-forest);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.share-btn svg {
	width: 18px;
	height: 18px;
}

.share-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

/* Optional brand accents */
.share-btn.facebook:hover { background: rgba(24, 119, 242, 0.08); }
.share-btn.twitter:hover { background: rgba(0, 0, 0, 0.06); }
.share-btn.instagram:hover { background: rgba(225, 48, 108, 0.08); }
.share-btn.whatsapp:hover { background: rgba(37, 211, 102, 0.10); }
.share-btn.telegram:hover { background: rgba(0, 136, 204, 0.10); }

/* Author Bio */
.post-author-bio {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	padding: 2rem;
	background: var(--light-bg);
	border-radius: 20px;
	margin: 3rem 0;
}

.author-bio-image img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid var(--white);
}

.author-bio-content h3 {
	margin: 0 0 0.5rem;
	color: var(--deep-forest);
}

.author-bio-content p {
	margin: 0;
	color: #333;
}

/* Newsletter CTA */
.post-newsletter-cta {
	padding: 2.5rem;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(96, 124, 60, 0.10), rgba(170, 190, 140, 0.15));
	margin: 3rem 0;
}

.post-newsletter-cta h3 {
	margin-top: 0;
	color: var(--deep-forest);
}

.post-newsletter-cta p {
	margin: 0.5rem 0 1.5rem;
}

.post-newsletter-cta .cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	border: 0;
	background: var(--deep-forest);
	color: var(--white);
	font-weight: 700;
	cursor: pointer;
}

/* Post Navigation */
.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin: 3rem 0;
}

.post-nav-link {
	display: block;
	padding: 1.5rem;
	border-radius: 20px;
	background: var(--white);
	border: 1px solid rgba(0,0,0,0.06);
	text-decoration: none;
	color: inherit;
}

.post-nav-link .nav-label {
	display: block;
	font-size: 0.9rem;
	opacity: 0.7;
	margin-bottom: 0.4rem;
}

.post-nav-link .nav-title {
	display: block;
	font-weight: 700;
	color: var(--deep-forest);
}

.post-nav-link:hover {
	box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* Related Posts */
.related-posts {
	margin-top: 3rem;
}

.related-posts h3 {
	color: var(--deep-forest);
	margin-bottom: 1.5rem;
}

.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.related-post-card {
	background: var(--white);
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,0.06);
}

.related-post-image img {
	width: 100%;
	height: auto;
	display: block;
}

.related-post-card h4 {
	margin: 1rem;
	font-size: 1.05rem;
}

.related-post-card h4 a {
	color: var(--deep-forest);
	text-decoration: none;
}

/* Comments */
.post-comments {
	margin-top: 3rem;
}

/* Sidebar widgets */
.post-sidebar .sidebar-widget {
	background: var(--white);
	border-radius: 20px;
	padding: 1.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	margin-bottom: 1.5rem;
}

.sidebar-widget h3 {
	margin-top: 0;
	color: var(--deep-forest);
}

.sidebar-about img {
	width: 100%;
	border-radius: 14px;
	margin: 0.75rem 0 1rem;
}

.sidebar-categories,
.sidebar-recent {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-categories li,
.sidebar-recent li {
	margin: 0.6rem 0;
}

.sidebar-categories a,
.sidebar-recent a {
	text-decoration: none;
	color: var(--deep-forest);
}

.sidebar-cta-btn {
	width: 100%;
	padding: 0.9rem 1rem;
	border-radius: 999px;
	border: 0;
	background: var(--deep-forest);
	color: var(--white);
	font-weight: 700;
	cursor: pointer;
}



/* =========================
   Responsive (Blog Index)
   ========================= */
@media (max-width: 1100px) {
    .blog-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .blog-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .blog-filters {
        flex-direction: column;
        align-items: stretch;
    }
    .search-box,
    .category-filter {
        width: 100%;
    }
    .search-box form {
        width: 100%;
    }
    .category-filter select {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .blog-section {
        padding: 3rem 5%;
    }
    .blog-card-content {
        padding: 1.5rem;
    }
    .blog-card-title {
        font-size: 1.55rem;
    }
    .blog-pagination a,
    .blog-pagination span {
        padding: 0.65rem 0.95rem;
    }
}

/* Responsive */
@media (max-width: 1100px) {
	.post-container { grid-template-columns: 1fr; }
	.post-sidebar { position: static; }
	.related-posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.post-section { padding: 2rem 5%; }
	.post-main-content { padding: 1.5rem; }
	.post-featured-image { margin: -1.5rem -1.5rem 1.5rem; }
	.post-author-bio { flex-direction: column; align-items: flex-start; }
	.post-navigation { grid-template-columns: 1fr; }
}


/* =========================
   Comments (Single Post)
   ========================= */
.comments-area {
    margin-top: 30px;
    background: var(--diamond-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 103, 79, 0.08);
    padding: 24px;
    border: 1px solid rgba(0, 103, 79, 0.08);
}

.comments-title,
.comment-reply-title {
    color: var(--deep-forest);
    font-size: 18px;
    margin: 0 0 14px 0;
    font-weight: 600;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list > li {
    margin: 0 0 16px 0;
}

.comment-body {
    background: var(--pink-wash);
    border-radius: 16px;
    padding: 16px 16px 12px;
    border: 1px solid rgba(0, 103, 79, 0.08);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-author .avatar {
    border-radius: 999px;
}

.comment-author .fn {
    color: var(--deep-forest);
    font-weight: 600;
    font-style: normal;
}

.comment-metadata a,
.comment-metadata time {
    color: var(--green-muted);
    font-size: 12px;
    text-decoration: none;
}

.comment-content {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.6;
}

.comment-content p {
    margin: 0 0 10px 0;
}

.reply a.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--diamond-white);
    border: 1px solid rgba(0, 103, 79, 0.18);
    color: var(--deep-forest);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.reply a.comment-reply-link:hover {
    background: rgba(0, 103, 79, 0.06);
    transform: translateY(-1px);
}

/* Comment form */
.comment-respond {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 103, 79, 0.10);
}

.comment-form p {
    margin: 0 0 12px 0;
}

.comment-form label {
    display: block;
    margin-bottom: 6px;
    color: var(--deep-forest);
    font-weight: 600;
    font-size: 13px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0, 103, 79, 0.18);
    padding: 12px 12px;
    outline: none;
    font-size: 14px;
    background: var(--diamond-white);
}

.comment-form textarea {
    min-height: 140px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: rgba(0, 103, 79, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 103, 79, 0.10);
}

.form-submit input#submit {
    appearance: none;
    border: none;
    cursor: pointer;
    background: var(--deep-forest);
    color: var(--diamond-white);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.form-submit input#submit:hover {
    background: var(--green-hover);
    transform: translateY(-1px);
}

.comment-notes,
.logged-in-as,
.must-log-in,
.comment-awaiting-moderation {
    color: var(--green-muted);
    font-size: 13px;
}

@media (max-width: 768px) {
    .comments-area { padding: 18px; }
    .comment-body { padding: 14px; }
}

