/* STYLE & FEELING */
/* Color palette: Тёплые природные тона — малиновый, зелёный, кремовый, бежевый. */
/* Fonts: Уютный без засечек (например, Manrope или Inter). Крупные заголовки, просторные отступы. */
/* Mood: Аутентичность, тепло, доверие, как у фермерского дневника. */

:root {
    /* Color Palette */
    --color-ivory: #F9F6F1; /* background */
    --color-deep-berry: #8B2C3F; /* accent / buttons */
    --color-olive-green: #6C7A58; /* headers */
    --color-dark-brown: #3D2E26; /* text */
    --color-light-beige-linen: #F5F5DC; /* Empathy block background (example) */
    --color-soft-pastel-green: #E8F5E9; /* Contact form background (example) */
    --color-white: #FFFFFF;
    --color-hero-text: var(--color-dark-brown); /* Hero text color */

    /* Fonts */
    --font-title: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;

    /* Layout */
    --container-width: 1140px;
    --spacing-unit: 1rem; /* Approx 16px */
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(139, 44, 63, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(139, 44, 63, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(139, 44, 63, 0.3);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Base Styles */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark-brown);
    background-color: #F9F6F1 !important;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
    padding-top: 70px;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: calc(var(--spacing-unit) * 2.5) var(--spacing-unit);
}

section {
    padding: calc(var(--spacing-unit) * 4) 0;
    position: relative;
}

h1, h2 {
    font-family: var(--font-title);
    color: var(--color-olive-green);
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 42px;
    margin-bottom: calc(var(--spacing-unit) * 2.5);
}

h3 {
    font-family: var(--font-title);
    color: var(--color-olive-green);
    font-size: 28px;
    margin-bottom: var(--spacing-unit);
}

.btn {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 0.8) calc(var(--spacing-unit) * 2);
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
}

.btn-primary.pill-button {
    background-color: var(--color-deep-berry);
    color: var(--color-white);
    border-radius: 50px; /* Pill shape */
}

.btn-primary.pill-button:hover {
    background-color: #722332; /* Darker berry */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-deep-berry);
    border: 2px solid var(--color-deep-berry);
    border-radius: 50px;
    padding: calc(var(--spacing-unit) * 0.6) calc(var(--spacing-unit) * 1.8);
}

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

/* ⛰ Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/background.webp') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(139, 44, 63, 0.2),
        rgba(108, 122, 88, 0.2)
    );
    z-index: 1;
}

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

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    transform: translateY(-5vh);
}

.hero-section h1 {
    font-family: var(--font-title);
    font-size: 5rem;
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.hero-section .subtitle {
    font-size: 2rem;
    color: var(--color-white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    font-family: var(--font-title);
    font-weight: 500;
    line-height: 1.4;
}

.hero-section .description {
    font-size: 1.3rem;
    color: var(--color-white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 4rem;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #9F2D45 0%, #D76D77 100%);
    color: var(--color-white);
    padding: 1.25rem 2.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-title);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(159, 45, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D76D77 0%, #9F2D45 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(159, 45, 69, 0.4);
}

.hero-cta-button:hover::before {
    opacity: 1;
}

.hero-cta-button span {
    position: relative;
    z-index: 1;
}

.hero-cta-button svg {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover svg {
    transform: translateX(3px);
}

.hero-cta-button:hover .hero-cta-button-icon {
    transform: translateX(3px);
}

.hero-cta-button-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .hero-cta-button-icon {
    transform: translateX(3px);
}

.hero-cta-button-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.hero-cta-button:hover .hero-cta-button-text {
    color: var(--color-white);
}

.hero-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: #9B3D3D;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .hero-section .subtitle {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section .subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .hero-badge {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem;
    }
}

/* 🤝 Section 2 – Empathy Block */
.empathy-block {
    /* background-color: var(--color-light-beige-linen); */ /* Removed for global background */
    /* Consider adding a subtle background-image for linen texture */
}

.headline-quote {
    font-family: var(--font-title); /* Italic serif */
    font-style: italic;
    font-size: 32px; /* Increased from 28px */
    color: black; /* Changed from var(--color-olive-green) */
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-cards-container {
    display: flex;
    justify-content: space-around;
    gap: calc(var(--spacing-unit) * 2);
    flex-wrap: wrap;
}

.quote-card {
    background-color: rgba(255, 255, 255, 0.7); /* Warm framed box - slightly transparent */
    padding: calc(var(--spacing-unit) * 1.5);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-basis: calc(45% - var(--spacing-unit));
    min-width: 300px;
}

.quote-card p {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* 🎨 Section 3 – Testimonials & Benefits */
.testimonials-benefits-section {
    background: none !important;
    background-color: transparent !important;
    padding: 96px 0 32px 0;
}

.testimonials-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: visible;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: none;
    transform: none !important;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    min-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(108, 122, 88, 0.1);
    margin-right: 24px;
    position: relative;
}

.quote-marks {
    color: var(--color-deep-berry);
    font-size: 48px;
    font-family: var(--font-title);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-dark-brown);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-deep-berry);
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-handwritten);
    font-size: 20px;
    color: var(--color-olive-green);
    margin: 0 0 4px 0;
}

.verified-badge {
    font-size: 12px;
    color: #666;
    display: block;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-unit);
    margin-top: calc(var(--spacing-unit) * 1.5);
}

.carousel-control {
    background-color: var(--color-deep-berry);
    color: var(--color-white);
    border: none;
    border-radius: 50%; /* Circular buttons */
    width: 44px;
    height: 44px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1; /* Ensure icon is centered vertically */
}

.carousel-control:hover {
    background-color: #722332; /* Darker berry */
    transform: scale(1.1);
}

.carousel-control.prev {
    /* Specific styling for prev if needed */
}

.carousel-control.next {
    /* Specific styling for next if needed */
}

/* 🍇 Section 4 – Product Value */
.product-value-section {
    background: none !important;
    background-color: transparent !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/background 2.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 250px;
    height: 30vh;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-1 * ((100vw - 100%) / 2)); /* Full bleed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 1;
    overflow: hidden;
}

.product-value-section .container {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
}

.product-value-section .image-grid.bowls-row {
    min-height: 200px;
    height: 25vh;
    margin: 0 !important;
    width: 100vw;
    max-width: 100vw;
    background: none;
    box-shadow: none;
    display: block;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 3);
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item img {
    display: block;
    width: 100%;
    height: 250px; 
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-item:hover {
    transform: scale(1.03); /* Hover zoom effect */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.grid-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(61, 46, 38, 0.85); /* Dark brown semi-transparent */
    color: var(--color-ivory);
    padding: var(--spacing-unit);
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 16px;
}

.grid-item:hover .caption {
    opacity: 1;
    transform: translateY(0);
}

.grid-item .caption .season {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

/* 🎥 Section 5 – Video Showcase */
.video-showcase-section {
    padding: calc(var(--spacing-unit) * 8) 0;
    background: linear-gradient(to bottom, 
        rgba(249, 246, 241, 0.95),
        rgba(255, 255, 255, 0.98)
    );
    position: relative;
}

.video-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent,
        rgba(108, 122, 88, 0.15),
        transparent
    );
}

.farm-title {
    font-family: var(--font-title);
    font-size: 42px;
    color: var(--color-deep-berry);
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 4);
    line-height: 1.3;
}

.showcase-content-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 5);
    max-width: 900px;
    margin: 0 auto;
}

.showcase-video-v2 {
    width: 100%;
    position: relative;
}

.video-badge {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(139, 44, 63, 0.95);
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(139, 44, 63, 0.15);
    backdrop-filter: blur(4px);
}

.video-frame {
    border: none;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.showcase-video-v2 iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none; /* Remove iframe default border */
    border-radius: 3px; /* Slight rounding inside frame */
}

.video-subtitle {
    text-align: center;
    font-size: 27px;
    color: var(--color-dark-brown);
    margin-top: calc(var(--spacing-unit) * 2);
    font-family: var(--font-title);
    font-style: italic;
    opacity: 0.9;
}

.farm-values {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 2);
    margin-top: var(--spacing-unit);
    flex-wrap: wrap;
}

.farm-value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.farm-value-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 24px;
}

.value-text {
    font-size: 16px;
    color: var(--color-dark-brown);
    font-weight: 500;
}

@media (max-width: 768px) {
    .farm-title {
        font-size: 32px;
        padding: 0 var(--spacing-unit);
        margin-bottom: calc(var(--spacing-unit) * 3);
    }

    .video-badge {
        font-size: 13px;
        padding: 5px 14px;
        top: -20px;
    }

    .video-subtitle {
        font-size: 16px;
        padding: 0 var(--spacing-unit);
        margin-top: calc(var(--spacing-unit) * 2);
    }

    .farm-values {
        gap: var(--spacing-unit);
        padding: 0 var(--spacing-unit);
        margin-top: calc(var(--spacing-unit) * 2);
    }

    .farm-value-item {
        padding: 8px 16px;
    }

    .value-icon {
        font-size: 20px;
    }

    .value-text {
        font-size: 14px;
    }
}

/* 🛒 Section 5 – Catalog */
.catalog-section {
    padding: calc(var(--spacing-unit) * 5) 0;
    background: none !important;
    background-color: transparent !important;
    position: relative;
    padding-left: 270px; /* width of sidebar + gap */
}

.catalog-section h2 {
    font-family: var(--font-title);
    font-size: 42px;
    color: var(--color-deep-berry);
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
    position: relative;
}

.catalog-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: var(--color-olive-green);
    margin: calc(var(--spacing-unit) * 1.5) auto 0;
    position: relative;
}

.catalog-section h2::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    font-size: 24px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.catalog-card {
    background: none !important;
    background-color: transparent !important;
    border-radius: 16px;
    padding: 24px;
    min-width: 320px;
    max-width: 400px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.catalog-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.catalog-card-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.catalog-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-dark-brown);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-card h3 small {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-olive-green);
    font-style: italic;
}

.catalog-card ul {
    list-style: disc inside;
    padding-left: 18px;
}

.catalog-card ul li {
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.catalog-card ul li::before {
    content: '';
    position: static;
    display: none;
}

.catalog-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.catalog-card p em {
    font-style: italic;
    color: var(--color-olive-green);
}

.catalog-card .btn-secondary {
    margin-top: auto;
    width: 100%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Category-specific styles */
.catalog-card.berries {
    background: none !important;
    background-color: transparent !important;
}

.catalog-card.raspberry-saplings {
    background: none !important;
    background-color: transparent !important;
}

.catalog-card.blackberry-saplings {
    background: none !important;
    background-color: transparent !important;
}

.catalog-card.blueberry-bushes {
    background: none !important;
    background-color: transparent !important;
}

.catalog-card.honeysuckle {
    background: none !important;
    background-color: transparent !important;
}

.catalog-card.quail {
    background: none !important;
    background-color: transparent !important;
}

.catalog-card.saplings {
    background: none !important;
    background-color: transparent !important;
}

/* Category icons */
.catalog-card.berries h3::before,
.catalog-card.raspberry-saplings h3::before,
.catalog-card.blackberry-saplings h3::before,
.catalog-card.blueberry-bushes h3::before,
.catalog-card.honeysuckle h3::before,
.catalog-card.quail h3::before,
.catalog-card.saplings h3::before {
    content: '';
}

/* Hover effects for each category */
.catalog-card.berries:hover {
    background-color: #FCE4E9; /* Slightly brighter berry pink */
}

.catalog-card.raspberry-saplings:hover {
    background-color: #E8DCF0; /* Slightly brighter lavender */
}

.catalog-card.blackberry-saplings:hover {
    background-color: #DCE8EB; /* Slightly brighter blue */
}

.catalog-card.blueberry-bushes:hover {
    background-color: #D9E9E0; /* Slightly brighter mint */
}

.catalog-card.honeysuckle:hover {
    background-color: #FFE8D1; /* Slightly brighter peach */
}

.catalog-card.quail:hover {
    background-color: #FFEBCA; /* Slightly brighter honey */
}

.catalog-card.saplings:hover {
    background-color: #D7E9D7; /* Slightly brighter green */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-card {
        min-width: 280px;
    }
    
    .catalog-section h2 {
        font-size: 36px;
    }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 👩‍🌾 Section 7 – About Us */
.about-us-section {
    /* background-color: var(--color-ivory); */ /* Removed for global background */
}

.about-us-content {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 3);
    align-items: center;
}

.about-us-text {
    flex: 1.2;
    min-width: 300px;
    position: relative; /* For handwritten overlay */
}

.about-us-text h2 {
    text-align: left;
}

.about-us-text p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: var(--spacing-unit);
}

.handwritten-overlay {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-deep-berry);
    text-align: center;
    margin: 2rem 0;
}

.about-us-images {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-unit);
}

.about-us-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 280px;
    object-fit: cover;
}

/* 🧭 Footer */
.site-footer-v2 {
    background-color: #e8e4dc;
    color: var(--color-dark-brown);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(108, 122, 88, 0.15);
}

.site-footer-v2 .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-deep-berry);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-1px);
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    fill: var(--color-deep-berry);
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
    transform: scale(1.05);
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact h3,
.footer-navigation h3,
.footer-social h3 {
    font-family: var(--font-title);
    font-size: 20px;
    color: var(--color-deep-berry);
    margin: 0 0 16px 0;
}

.footer-contact p {
    margin: 0;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--color-dark-brown);
}

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

.footer-contact a:hover {
    color: var(--color-deep-berry);
}

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-navigation a {
    color: var(--color-dark-brown);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-navigation a:hover {
    color: var(--color-deep-berry);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-links-v2 {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    position: relative;
}

.social-icon svg {
    width: 48px;
    height: 48px;
    padding: 0;
    background-color: rgba(139, 44, 63, 0.08);
    border-radius: 50%;
    fill: var(--color-deep-berry);
    transition: all 0.2s ease-in-out;
    position: relative;
    z-index: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: radial-gradient(circle, rgba(139, 44, 63, 0.1) 0%, rgba(139, 44, 63, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: 0;
}

.social-icon span {
    font-size: 14px;
    color: var(--color-dark-brown);
    font-family: var(--font-body);
    opacity: 0.9;
    transition: color 0.2s ease-in-out;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover svg {
    transform: scale(1.1);
    background-color: var(--color-deep-berry);
    fill: var(--color-white);
    box-shadow: 0 4px 12px rgba(139, 44, 63, 0.15);
}

.social-icon:hover span {
    color: var(--color-deep-berry);
}

@media (max-width: 768px) {
    .social-links-v2 {
        justify-content: center;
    }
    .social-icon svg {
        width: 48px;
        height: 48px;
        padding: 0;
    }
    .social-icon::before {
        width: 72px;
        height: 72px;
    }
    .social-icon span {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .social-icon svg {
        width: 48px;
        height: 48px;
        padding: 0;
    }
    .social-icon::before {
        width: 72px;
        height: 72px;
    }
    .social-icon span {
        font-size: 16px;
    }
}

.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(108, 122, 88, 0.15);
    margin-top: 20px;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: var(--color-dark-brown);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .site-footer-v2 .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand,
    .footer-contact,
    .footer-navigation,
    .footer-social {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links-v2 {
        justify-content: center;
    }

    .footer-navigation a:hover {
        transform: translateX(0) scale(1.05);
    }
}

/* Fixed CTA for Mobile */
.fixed-cta-mobile {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: var(--spacing-unit) calc(var(--spacing-unit) * 2);
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Animations (from previous JS) */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .features-list-v2 li {
        flex-basis: 45%; /* Two columns on medium screens */
    }
    .about-us-images {
        grid-template-columns: 1fr; /* Stack images on smaller screens */
    }
    .about-us-images img {
        height: auto; /* Adjust height */
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }
    h1 {
        font-size: 40px;
    }
    .hero-section h1 {
        font-size: 42px; /* Increased size */
    }
    .hero-section .subtitle {
        font-size: 20px; /* Increased size */
    }
    h2 {
        font-size: 34px;
    }
    .quote-cards-container {
        flex-direction: column; /* Scroll stack on mobile */
        align-items: center;
    }
    .quote-card {
        flex-basis: 90%;
        max-width: 500px;
    }
    .features-list-v2 li {
        flex-basis: 100%; /* Single column on small screens */
        font-size: 18px;
    }
    .features-list-v2 .icon {
        font-size: 28px;
    }
    .showcase-content-v2 {
        flex-direction: column;
    }
    .about-us-content {
        flex-direction: column;
    }
    .about-us-text h2 {
        text-align: center;
    }
    .handwritten-overlay {
        font-size: 30px;
        bottom: 5px;
        right: 10px;
    }
    .fixed-cta-mobile {
        display: inline-block; /* Show fixed CTA */
    }
    body {
        background-color: #F9F6F1 !important; /* Цвет как на скриншоте для мобильной версии */
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 0.75);
    }
    h1 {
        font-size: 32px;
    }
    .hero-section h1 {
        font-size: 36px; /* Increased size */
    }
    .hero-section .subtitle {
        font-size: 18px; /* Increased size */
    }
    .hero-section .description {
        font-size: 18px; /* Increased size */
    }
    h2 {
        font-size: 28px;
    }
    .headline-quote {
        font-size: 22px;
    }
    .quote-card p {
        font-size: 22px;
    }
    .grid-item img {
        height: 200px;
    }
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .about-us-images img {
        height: 220px;
    }
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 5px 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #4A403A;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: -10px 0;
}

.logo img {
  display: block;
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.main-navigation li {
  margin-left: 25px;
}

.main-navigation a {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
  padding-bottom: 5px;
  position: relative;
}

/* Adjust body padding for the new header height */
body {
  padding-top: 70px;
}

@media (max-width: 768px) {
  .logo {
    margin: -5px 0;
  }
  
  .logo img {
    height: 60px;
  }
}

.main-navigation a:hover,
.main-navigation a.active {
  color: #8B2A4D; /* Berry-toned for hover/active */
}

.main-navigation a.active {
  font-weight: bold; /* Or use underline as per preference */
  /* Optional: Dancing Script style underline */
  /* border-bottom: 2px solid #8B2A4D; */
}

/* Optional: Animated underline from center */
.main-navigation a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #8B2A4D;
  transition: width 0.3s ease, left 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
  width: 100%;
  left: 0;
}


.header-cta {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: #A4303F; /* Contrasting berry shade */
  padding: 10px 20px;
  border-radius: 50px; /* Pill shape */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-cta:hover {
  background-color: #8B2A4D; /* Darker berry shade on hover */
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001; /* Above header content */
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333; /* Dark gray for hamburger lines */
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Styles for when mobile nav is open */
.mobile-nav-open .hamburger-menu span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-open .hamburger-menu span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-open .hamburger-menu span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
}

.mobile-nav-panel.open {
    transform: translateX(0);
}

body.mobile-nav-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10000;
}

.mobile-nav-close::before,
.mobile-nav-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-dark-brown);
    transition: transform 0.3s ease;
}

.mobile-nav-close::before {
    transform: rotate(45deg);
}

.mobile-nav-close::after {
    transform: rotate(-45deg);
}

.mobile-nav-close:hover::before,
.mobile-nav-close:hover::after {
    background: var(--color-deep-berry);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    display: block;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--color-dark-brown);
    text-decoration: none;
    border-radius: 12px;
    transition: background-color 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-nav-link:hover {
    background: rgba(139, 44, 63, 0.1);
    color: var(--color-deep-berry);
}

.mobile-nav-link.active {
    color: var(--color-deep-berry);
    font-weight: 600;
}

.mobile-nav-cta {
    margin-top: 24px;
    padding: 16px;
    background: var(--color-deep-berry);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-cta:hover {
    background: #722332;
    transform: translateY(-2px);
}

.mobile-nav-cta .telegram-icon {
    width: 24px;
    height: 24px;
}

.mobile-nav-phone {
    margin-top: 32px;
    padding: 16px;
    color: var(--color-dark-brown);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(139, 44, 63, 0.1);
    transition: background-color 0.2s ease;
}

.mobile-nav-phone:hover {
    background: rgba(139, 44, 63, 0.15);
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark-brown);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Header Adjustments */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .hamburger-menu {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .hamburger-menu span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--color-dark-brown);
        margin: 5px 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-nav-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(249, 246, 241, 0.98);
        backdrop-filter: blur(8px);
        z-index: 1000;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 24px 24px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-panel.open {
        transform: translateX(-100%);
    }

    .mobile-nav-close {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        z-index: 1002;
    }

    .mobile-nav-close::before,
    .mobile-nav-close::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: var(--color-dark-brown);
        transition: transform 0.3s ease;
    }

    .mobile-nav-close::before {
        transform: rotate(45deg);
    }

    .mobile-nav-close::after {
        transform: rotate(-45deg);
    }

    .mobile-nav-close:hover::before,
    .mobile-nav-close:hover::after {
        background: var(--color-deep-berry);
    }

    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-nav-link {
        display: block;
        padding: 16px;
        font-family: var(--font-body);
        font-size: 1.25rem;
        color: var(--color-dark-brown);
        text-decoration: none;
        border-radius: 12px;
        transition: background-color 0.2s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .mobile-nav-link:hover {
        background: rgba(139, 44, 63, 0.1);
        color: var(--color-deep-berry);
    }

    .mobile-nav-link.active {
        color: var(--color-deep-berry);
        font-weight: 600;
    }

    .mobile-nav-cta {
        margin-top: 24px;
        padding: 16px;
        background: var(--color-deep-berry);
        color: white;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .mobile-nav-cta:hover {
        background: #722332;
        transform: translateY(-2px);
    }

    .mobile-nav-cta .telegram-icon {
        width: 24px;
        height: 24px;
    }

    .mobile-nav-phone {
        margin-top: 32px;
        padding: 16px;
        color: var(--color-dark-brown);
        text-decoration: none;
        font-size: 1.25rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(139, 44, 63, 0.1);
        transition: background-color 0.2s ease;
    }

    .mobile-nav-phone:hover {
        background: rgba(139, 44, 63, 0.15);
    }

    body.mobile-nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Ensure header stays on top */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }
}

/* Tablet - Adjust max-width as per your design's breakpoints */
@media (max-width: 992px) {
  .main-navigation li {
    margin-left: 20px;
  }
  .main-navigation a {
    font-size: 15px;
  }
  .header-cta {
    padding: 8px 16px;
    font-size: 14px;
  }
  .logo {
    font-size: 26px;
  }
}

/* Mobile - Adjust max-width as per your design's breakpoints */
@media (max-width: 768px) {
  .main-navigation {
    display: none; /* Hide desktop nav */
  }
  .header-cta {
    display: none; /* Hide desktop CTA */
  }
  .hamburger-menu {
    display: block; /* Show hamburger */
  }

  .site-header .container {
      justify-content: space-between;
  }

  /* Ensure logo is still visible and to the left */
 .logo {
    margin-right: auto; 
  }
}

/* Ensure content doesn't hide behind sticky header */
body {
  padding-top: 70px; /* Adjust this based on actual header height */
} 

/* === NEW DARK CATALOG SECTION === */
.dark-catalog-section {
    background: none !important;
    background-color: transparent !important;
    padding: 80px 0 60px 0; /* Reduced bottom padding */
    min-height: unset; /* Remove forced min-height */
}
.catalog-title-block {
    text-align: center;
    margin-bottom: 36px;
}
.catalog-subtitle {
    color: var(--color-olive-green);
    font-family: var(--font-body);
    font-size: 18px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.catalog-main-title {
    color: var(--color-olive-green);
    font-family: var(--font-title);
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.1;
}
.berry-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    justify-items: center;
    margin-bottom: 40px; /* Add bottom margin to prevent footer overlap */
}
.berry-card {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.berry-img-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: none !important;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    transition: transform 0.3s ease;
}

.berry-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    transition: transform 0.3s ease;
}

/* Desktop-only hover effects */
@media (min-width: 769px) {
    .berry-card:hover .berry-img-wrap {
        transform: scale(1.1);
        box-shadow: none !important;
        border: none !important;
        outline: none !important;
    }

    .berry-card:hover .berry-img-wrap img {
        transform: scale(1.1);
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
}

/* Ensure no hover effects on mobile */
@media (max-width: 768px) {
    .berry-img-wrap {
        box-shadow: none !important;
        border: none !important;
        outline: none !important;
    }
    
    .berry-img-wrap,
    .berry-img-wrap img {
        transform: none !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
}

/* Remove any potential background artifacts */
.berry-img-wrap::before,
.berry-img-wrap::after,
.berry-card::before,
.berry-card::after {
    content: none !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Special styling for saplings section */
#saplings .berry-img-wrap {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

#saplings .berry-img-wrap img {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    object-fit: contain !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove any potential inherited styles */
#saplings .berry-img-wrap *,
#saplings .berry-card * {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure no white borders in bowls row */
.bowls-row .berry-img-wrap {
    width: 100%;
    height: 100%;
    box-shadow: none !important;
    background: none !important;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    transition: transform 0.3s ease;
}

.bowls-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    background: none !important;
    transition: transform 0.3s ease;
}

/* Remove any potential background artifacts in bowls row */
.bowls-row .grid-item::before,
.bowls-row .grid-item::after,
.bowls-row .berry-img-wrap::before,
.bowls-row .berry-img-wrap::after {
    content: none !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove hover effects for bowls row */
.bowls-row .grid-item:hover img {
    transform: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Remove any focus styles */
.berry-img-wrap:focus,
.berry-img-wrap:focus-within,
.berry-img-wrap:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove any active styles */
.berry-img-wrap:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove any browser default styles */
* {
    -webkit-tap-highlight-color: transparent !important;
}

/* Remove any potential browser-specific styles */
.berry-img-wrap,
.berry-img-wrap img,
.bowls-row .berry-img-wrap,
.bowls-row img {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.berry-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-olive-green);
    font-family: var(--font-title);
}
.berry-desc {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

#saplings .berry-desc {
    display: none;
    opacity: 0;
    text-align: center;
    margin: 10px auto;
    max-width: 80%;
}

#saplings .berry-desc.visible {
    display: block;
    opacity: 1;
    text-align: center;
}

#saplings .berry-desc br {
    display: block;
    content: "";
    margin: 4px 0;
}

#saplings .berry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#saplings .berry-title {
    text-align: center;
    width: 100%;
}

#saplings .berry-price {
    text-align: center;
    width: 100%;
}

.toggle-sorts {
    display: none;
    background: none;
    border: none;
    color: #4CAF50;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

#saplings .toggle-sorts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #F3F1EC;
    color: #8B2C3F;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border: none;
    border-radius: 999px;
    padding: 8px 22px 8px 20px;
    cursor: pointer;
    box-shadow: none;
    text-decoration: none;
    transition: none;
    margin: 10px 0;
    min-width: 0;
    min-height: 0;
    outline: none;
}
#saplings .toggle-sorts::after {
    content: '▼';
    color: #8B2C3F;
    font-size: 18px;
    margin-left: 8px;
    transition: none;
    font-weight: 700;
}
#saplings .toggle-sorts[aria-expanded="true"]::after {
    transform: rotate(180deg);
}
#saplings .toggle-sorts:hover,
#saplings .toggle-sorts:active,
#saplings .toggle-sorts:focus {
    background: #F3F1EC;
    color: #8B2C3F !important;
    box-shadow: none;
    outline: none;
}
#saplings .toggle-sorts:hover::after,
#saplings .toggle-sorts:active::after,
#saplings .toggle-sorts:focus::after {
    color: #8B2C3F !important;
}

.toggle-sorts:hover {
    color: #45a049;
}

.toggle-sorts[aria-expanded="true"] {
    color: #45a049;
    font-weight: bold;
}

/* Remove transition since we don't need it anymore */
.berry-desc.visible {
    display: block;
    opacity: 1;
}

/* Only show toggle button in saplings section */
#saplings .toggle-sorts {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-deep-berry);
    cursor: pointer;
    margin: 10px 0;
    padding: 8px 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    background: rgba(108, 122, 88, 0.1);
}

#saplings .toggle-sorts:hover {
    color: #fff;
    background: var(--color-deep-berry);
    transform: translateY(-2px);
}

#saplings .toggle-sorts::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}

#saplings .toggle-sorts[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

#saplings .toggle-sorts[aria-expanded="true"] {
    color: #fff;
    background: var(--color-deep-berry);
}

/* Hide toggle button in all other sections */
.toggle-sorts {
    display: none;
}

.berry-price {
    font-size: 18px;
    color: var(--color-dark-brown);
    margin-bottom: 18px;
}
.berry-price-value {
    color: #3B7D2F;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
}
.berry-btn {
    background: var(--color-deep-berry);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 32px;
    padding: 14px 32px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(255,255,0,0.15);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    margin-top: 8px;
}
.berry-btn:hover {
    background: #722332;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 1100px) {
    .berry-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .berry-cards-grid {
        grid-template-columns: 1fr;
    }
    .catalog-main-title {
        font-size: 30px;
    }
    .berry-card {
        max-width: 95vw;
    }
    .berry-img-wrap {
        width: 200px; /* Increased from 120px to match the bowls-row size */
        height: 200px; /* Increased from 120px to match the bowls-row size */
        margin: 0 auto 24px auto; /* Increased bottom margin for better spacing */
    }
}

/* Ensure consistent image sizing across all categories */
@media (max-width: 700px) {
    #berries .berry-img-wrap,
    #fruits .berry-img-wrap,
    #nuts .berry-img-wrap,
    #saplings .berry-img-wrap,
    #quail .berry-img-wrap {
        width: 200px;
        height: 200px;
        margin: 0 auto 24px auto;
    }

    #berries .berry-img-wrap img,
    #fruits .berry-img-wrap img,
    #nuts .berry-img-wrap img,
    #saplings .berry-img-wrap img,
    #quail .berry-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}
/* === END NEW DARK CATALOG SECTION === */

.only-top-berries .berry-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50%;
    display: block;
    /* background-color: #f9f6f1 !important; */ /* Removed to allow parent background to show through transparency */
    box-shadow: none;
    transform: scale(1.15); /* Increased scale slightly */
}

/* Ensure grid items are ready for animation if they are animated independently of parent section's fade-in */
.product-value-section .grid-item {
    opacity: 0; /* Start transparent if animating independently */
}

.product-value-section.visible .grid-item {
    animation: scaleUp 0.5s ease-out forwards;
}

/* Stagger animation for grid items */
.product-value-section.visible .grid-item:nth-child(1) {
    animation-delay: 0.2s; 
}
.product-value-section.visible .grid-item:nth-child(2) {
    animation-delay: 0.4s;
}
.product-value-section.visible .grid-item:nth-child(3) {
    animation-delay: 0.6s;
}
.product-value-section.visible .grid-item:nth-child(4) {
    animation-delay: 0.8s;
}
/* Add more if there are more items, or use JS for dynamic delays if number of items varies */

/* 🎥 Section 5 – Video Showcase */
.video-showcase-section h2 {
     margin-bottom: var(--spacing-unit);
}
.subheadline-video {
    text-align: center;
    font-size: 20px;
    margin-bottom: calc(var(--spacing-unit) * 2.5);
    color: var(--color-dark-brown);
}

.showcase-content-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 3);
    align-items: center;
}

.showcase-text-v2 {
    flex: 1;
    min-width: 300px;
    font-size: 18px;
    line-height: 1.8;
}

.showcase-video-v2 {
    flex: 1.2;
    min-width: 300px;
}

.video-frame {
    border: 10px solid var(--color-olive-green); /* Olive green, как у заголовка */
    /* Or use a background-image for a texture */
    /* background: url('assets/textures/wood-frame.png') repeat; */
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
}

.showcase-video-v2 iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none; /* Remove iframe default border */
    border-radius: 3px; /* Slight rounding inside frame */
}

.showcase-video-v2 small {
    display: block;
    text-align: center;
    margin-top: var(--spacing-unit);
    font-size: 15px;
}

/* Ensure berry cards are ready for animation */
.catalog-section .berry-card {
    opacity: 0; /* Start transparent for animation */
    will-change: transform, opacity; /* Hint for browser optimizations */
}

.catalog-section.visible .berry-card {
    animation: scaleUp 0.5s ease-out forwards;
}

/* Stagger animation for berry cards */
.catalog-section.visible .berry-card:nth-child(1) { animation-delay: 0.15s; }
.catalog-section.visible .berry-card:nth-child(2) { animation-delay: 0.30s; }
.catalog-section.visible .berry-card:nth-child(3) { animation-delay: 0.45s; }
.catalog-section.visible .berry-card:nth-child(4) { animation-delay: 0.60s; }
.catalog-section.visible .berry-card:nth-child(5) { animation-delay: 0.75s; }
.catalog-section.visible .berry-card:nth-child(6) { animation-delay: 0.90s; }
.catalog-section.visible .cherry-card { animation-delay: 1.05s; }

/* Sequential loading for bowls */
.bowls-row .grid-item {
    opacity: 0;
    will-change: transform, opacity;
}

.bowls-row.visible .grid-item {
    animation: scaleUp 0.5s ease-out forwards;
}

.bowls-row.visible .grid-item:nth-child(1) { animation-delay: 0.2s; }
.bowls-row.visible .grid-item:nth-child(2) { animation-delay: 0.4s; }
.bowls-row.visible .grid-item:nth-child(3) { animation-delay: 0.6s; }
.bowls-row.visible .grid-item:nth-child(4) { animation-delay: 0.8s; }

/* Add more if there are typically more cards visible on load, or adjust if layout changes significantly */

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Catalog Layout with Sidebar */
.catalog-layout {
    display: block;
    margin-top: 2rem;
}

/* New Horizontal Category Filter */
.category-filter {
    margin: 24px 0;
    padding: 0;
    width: 100%;
}

.category-list {
    display: flex;
    list-style: none;
    padding: 0 16px;
    margin: 0;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    width: 100%;
}

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

.category-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  min-height: 44px;
  min-width: max-content;
  background: none;
  border: 2px solid var(--color-deep-berry);
  border-radius: 12px;
  color: var(--color-deep-berry);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  scroll-snap-align: start;
  white-space: nowrap;
}

.category-btn:hover {
  background: rgba(139, 44, 63, 0.1);
  transform: translateY(-2px);
}

.category-btn.active {
  background: var(--color-deep-berry);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .category-filter {
    margin: 16px 0;
    position: relative;
    width: 100%;
  }

  .category-list {
    padding: 0 16px;
    margin: 0 -16px;
    width: calc(100% + 32px);
  }

  .category-btn {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}

/* Product Categories */
.product-categories {
    flex-grow: 1;
}

.category-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.category-content.active {
    display: block;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .category-list::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Remove old sidebar styles */
.catalog-section {
    padding: calc(var(--spacing-unit) * 5) 0;
    background: none !important;
    background-color: transparent !important;
    position: relative;
}

.bowls-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    margin: 40px 0 40px 0;
    background: none;
    box-shadow: none;
}

.bowls-row .grid-item {
    background: none;
    box-shadow: none;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 200px;
    height: 200px;
    position: relative;
}

.bowls-row .berry-img-wrap {
    width: 100%;
    height: 100%;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.bowls-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    background: transparent !important;
    line-height: 0 !important;
    font-size: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.bowls-row .grid-item:hover img {
    transform: scale(1.05);
}

/* Remove any potential inherited styles */
.bowls-row .grid-item *,
.bowls-row .berry-img-wrap * {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    background: #f8f6f2 !important;
}

/* Ensure perfect circle shape */
.bowls-row .grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #f8f6f2;
    z-index: -1;
}

/* Remove any potential background artifacts */
.bowls-row .grid-item::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    background: #f8f6f2;
    z-index: -2;
}

/* Remove any pseudo-element shadows or backgrounds */
.berry-img-wrap::before,
.berry-img-wrap::after,
.berry-card::before,
.berry-card::after {
    content: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.telegram-order-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #229ED9;
    color: white;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 1.5s backwards;
}

.telegram-order-button:hover {
    background-color: #1c90c7;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(34, 158, 217, 0.4);
}

.telegram-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.telegram-order-button:hover .telegram-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 42px;
    }
    .hero-section .subtitle {
        font-size: 20px;
    }
    .telegram-order-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 36px;
    }
    .hero-section .subtitle {
        font-size: 18px;
    }
    .telegram-order-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Custom HeroSection styles (Guillermo Rauch style) */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 60vh;
  width: 100%;
  padding: 4rem 0;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
    min-height: 40vh;
    align-items: center;
  }
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  margin-left: 6vw;
  background: rgba(0,0,0,0.6);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .hero__overlay {
    margin-left: 0;
    padding: 2rem 1rem;
    align-items: center;
    border-radius: 1rem;
  }
}

.hero__title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.1rem;
    text-align: center;
  }
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1rem;
    text-align: center;
  }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2AA3EF;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(42,163,239,0.12);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.hero__cta:hover {
  background: #1b7fc2;
  box-shadow: 0 4px 18px rgba(42,163,239,0.18);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

/* Quail section specific styles */
#quail .berry-card {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

#quail .berry-img-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: none !important;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    border: none !important;
    padding: 0;
}

#quail .berry-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
    margin: 0;
    padding: 0;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Quail bowls-row style for Перепёлка section */
.quail-bowls-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin: 40px 0 40px 0;
}

.quail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
}

.quail-img-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f6f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
}

.quail-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    background: #f8f6f2;
    box-shadow: none;
    margin: 0;
    padding: 0;
    border: none;
}

.quail-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-olive-green);
    font-family: var(--font-title);
    text-align: center;
    margin-bottom: 10px;
}

.quail-price {
    font-size: 18px;
    color: var(--color-dark-brown);
    text-align: center;
    margin-bottom: 0;
}

.quail-price-value {
    color: #39ff14;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .quail-bowls-row {
        gap: 32px;
    }
    .quail-img-wrap {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 600px) {
    .quail-bowls-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

/* Scrapbook/Farm Storytelling Styles */
.scrapbook-bg {
    background: none !important;
    background-color: transparent !important;
    background: #faf7f2 url('images/paper-texture-light.png') repeat;
    background-size: cover;
    padding: 100px 0 90px 0;
    position: relative;
}

.polaroid-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
    position: relative;
}

.scrapbook-polaroid {
    background: none !important;
    background-color: transparent !important;
    background: #fff url('images/paper-texture-light.png') repeat;
    border-radius: 18px 18px 28px 28px;
    box-shadow: 0 8px 32px 0 rgba(60,40,20,0.10), 0 1.5px 0 #e7e2d7 inset;
    padding: 18px 18px 38px 18px;
    position: relative;
    overflow: visible;
    min-width: 340px;
    max-width: 700px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.scrapbook-polaroid:hover {
    box-shadow: 0 16px 48px 0 rgba(60,40,20,0.16);
    transform: scale(1.02) rotate(-1deg);
}
.scrapbook-polaroid iframe {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    box-shadow: 0 2px 12px rgba(60,40,20,0.07);
    transition: transform 0.3s;
}
.scrapbook-polaroid:hover iframe {
    transform: scale(1.02);
}
.polaroid-caption {
    position: absolute;
    left: 24px;
    bottom: 10px;
    font-size: 15px;
    color: #a88b6b;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    background: rgba(255,255,255,0.85);
    border-radius: 8px;
    padding: 2px 12px;
    box-shadow: 0 2px 8px rgba(60,40,20,0.07);
    pointer-events: none;
}
.video-tag {
    position: absolute;
    top: -18px;
    right: 0;
    background: #fffbe7;
    color: #b07a3c;
    font-size: 13px;
    font-family: var(--font-body);
    border-radius: 8px;
    padding: 4px 14px;
    box-shadow: 0 2px 8px rgba(60,40,20,0.07);
    z-index: 2;
    letter-spacing: 0.2px;
    font-weight: 600;
    border: 1.5px dashed #f3e3b0;
    pointer-events: none;
}

.farm-quote {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #7a5c3a;
    font-style: italic;
    margin: 38px auto 38px auto;
    max-width: 600px;
    background: rgba(255,255,255,0.7);
    border-radius: 16px;
    padding: 18px 28px 10px 28px;
    box-shadow: 0 2px 12px rgba(60,40,20,0.04);
    position: relative;
}
.farm-quote .quote-author {
    display: block;
    font-size: 1.1rem;
    color: #b07a3c;
    font-family: var(--font-title);
    margin-top: 10px;
    font-style: normal;
}

.scrapbook-labels {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.farm-value-item {
    background: none !important;
    background-color: transparent !important;
    background: #fff url('images/paper-texture-light.png') repeat;
    border-radius: 18px 18px 22px 22px;
    box-shadow: 0 2px 12px rgba(60,40,20,0.07);
    border: 2.5px dashed #e7e2d7;
    min-width: 220px;
    min-height: 60px;
    padding: 18px 24px 14px 24px;
    font-family: var(--font-body);
    font-size: 18px;
    color: #7a5c3a;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    margin-bottom: 0;
    margin-top: 0;
    transform: rotate(-2deg);
    transition: box-shadow 0.3s, transform 0.3s;
}
.label-2 { transform: rotate(2.5deg); }
.label-3 { transform: rotate(-1.5deg); }
.farm-value-item .value-icon {
    font-size: 28px;
    filter: grayscale(0.2) contrast(0.9) brightness(1.1);
}
.farm-value-item .value-text {
    font-size: 17px;
    color: #7a5c3a;
    font-family: var(--font-body);
    font-weight: 600;
}
.farm-value-item:hover {
    box-shadow: 0 8px 24px rgba(60,40,20,0.13);
    transform: scale(1.03) rotate(-1deg) skewY(-1deg);
    z-index: 2;
}
.label-2:hover { transform: scale(1.03) rotate(3deg) skewY(1deg); }
.label-3:hover { transform: scale(1.03) rotate(-2.5deg) skewY(-1deg); }
.farm-value-item::after {
    content: attr(data-badge);
    display: none;
    position: absolute;
    left: 50%;
    top: -28px;
    transform: translateX(-50%) scale(0.95);
    background: #fffbe7;
    color: #b07a3c;
    font-size: 13px;
    font-family: var(--font-body);
    border-radius: 8px;
    padding: 3px 12px;
    box-shadow: 0 2px 8px rgba(60,40,20,0.07);
    border: 1.5px dashed #f3e3b0;
    font-weight: 600;
    z-index: 3;
    pointer-events: none;
}
.farm-value-item:hover::after {
    display: block;
}

@media (max-width: 900px) {
    .scrapbook-labels {
        gap: 18px;
    }
    .farm-value-item {
        min-width: 160px;
        font-size: 16px;
        padding: 12px 10px 10px 10px;
    }
}
@media (max-width: 600px) {
    .scrapbook-bg {
        padding: 60px 0 40px 0;
    }
    .scrapbook-labels {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .farm-value-item {
        min-width: 120px;
        font-size: 15px;
        padding: 10px 6px 8px 6px;
    }
    .farm-quote {
        font-size: 1.1rem;
        padding: 12px 8px 8px 8px;
    }
} 

/* Farm Moment Scrapbook Section */
.farm-moment-bg {
  background: none !important;
  background-color: transparent !important;
  background: #f8f6f2 url('images/linen-texture-light.png') repeat;
  background-size: cover;
  padding: 110px 0 100px 0;
  position: relative;
}
.farm-moment-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.farm-moment-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 54px;
  margin-top: 38px;
}
.farm-photo-taped {
  position: relative;
  margin-left: 32px;
  margin-bottom: 0;
  display: inline-block;
}
.farm-photo-frame {
  background: none !important;
  background-color: transparent !important;
  background: #fff url('images/paper-texture-light.png') repeat;
  border-radius: 22px 22px 32px 32px;
  box-shadow: 0 10px 38px 0 rgba(60,40,20,0.13), 0 2px 0 #e7e2d7 inset;
  padding: 18px 18px 54px 18px;
  min-width: 340px;
  max-width: 700px;
  position: relative;
  overflow: visible;
  transition: box-shadow 0.3s, transform 0.3s;
}
.farm-photo-frame:hover {
  box-shadow: 0 18px 60px 0 rgba(60,40,20,0.18);
  transform: scale(1.02) rotate(-1deg);
}
.farm-photo-frame iframe {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  box-shadow: 0 2px 12px rgba(60,40,20,0.07);
  transition: transform 0.3s;
}
.farm-photo-frame:hover iframe {
  transform: scale(1.02);
}
.photo-tape {
  width: 54px;
  height: 22px;
  background: #f3e3b0;
  opacity: 0.7;
  border-radius: 8px 8px 12px 12px;
  position: absolute;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(60,40,20,0.07);
}
.tape-top-left {
  top: -18px;
  left: 24px;
  transform: rotate(-8deg);
}
.tape-top-right {
  top: -18px;
  right: 38px;
  transform: rotate(7deg);
}
.photo-handwritten-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #a88b6b;
  font-style: italic;
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 4px 18px 4px 18px;
  margin-top: 10px;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(60,40,20,0.07);
  display: inline-block;
  letter-spacing: 0.1px;
}
.photo-quote-label {
  position: absolute;
  left: 24px;
  bottom: 18px;
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  padding: 8px 18px 6px 18px;
  box-shadow: 0 2px 8px rgba(60,40,20,0.07);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #7a5c3a;
  font-style: italic;
  max-width: 80%;
  pointer-events: none;
}
.photo-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #7a5c3a;
}
.photo-quote-author {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #b07a3c;
  font-style: normal;
}
.farm-values-moment {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-top: 0;
  margin-left: 0;
  position: relative;
  z-index: 1;
}
.farm-value-stamp {
  background: none !important;
  background-color: transparent !important;
  background: #fff url('images/paper-texture-light.png') repeat;
  border-radius: 18px 18px 22px 22px;
  box-shadow: 0 4px 18px rgba(60,40,20,0.10);
  border: 2.5px dashed #e7e2d7;
  min-width: 180px;
  min-height: 54px;
  padding: 14px 18px 12px 18px;
  font-family: var(--font-body);
  font-size: 18px;
  color: #7a5c3a;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 0;
  margin-top: 0;
  margin-right: -18px;
  margin-left: 0;
  z-index: 1;
  transform: rotate(-3deg);
  transition: box-shadow 0.3s, transform 0.3s, z-index 0.2s;
}
.stamp-2 {
  transform: rotate(4deg) translateY(18px);
  z-index: 2;
  margin-right: -12px;
}
.stamp-3 {
  transform: rotate(-2deg) translateY(-10px);
  z-index: 3;
  margin-right: 0;
}
.farm-value-stamp .stamp-icon {
  font-size: 26px;
  filter: grayscale(0.1) contrast(0.95) brightness(1.1);
}
.farm-value-stamp .stamp-text {
  font-size: 16px;
  color: #7a5c3a;
  font-family: var(--font-body);
  font-weight: 600;
}
.farm-value-stamp:hover {
  box-shadow: 0 10px 32px rgba(60,40,20,0.13);
  transform: scale(1.04) rotate(-1deg) skewY(-1deg);
  z-index: 10;
}
.stamp-2:hover { transform: scale(1.04) rotate(5deg) skewY(1deg) translateY(18px); z-index: 11; }
.stamp-3:hover { transform: scale(1.04) rotate(-3deg) skewY(-1deg) translateY(-10px); z-index: 12; }

@media (max-width: 900px) {
  .farm-moment-container { max-width: 98vw; }
  .farm-photo-frame { min-width: 220px; max-width: 98vw; }
  .farm-value-stamp { min-width: 120px; font-size: 15px; padding: 10px 6px 8px 6px; }
}
@media (max-width: 600px) {
  .farm-moment-bg { padding: 60px 0 40px 0; }
  .farm-moment-content { gap: 28px; }
  .farm-photo-taped { margin-left: 0; }
  .farm-photo-frame { padding: 8px 4px 38px 4px; }
  .photo-tape { width: 32px; height: 14px; }
  .photo-quote-label { left: 8px; bottom: 8px; font-size: 0.95rem; padding: 5px 8px 4px 8px; }
  .photo-handwritten-label { font-size: 1rem; padding: 3px 8px 3px 8px; margin-left: 4px; }
  .farm-values-moment { flex-direction: column; gap: 0; }
  .farm-value-stamp { margin-bottom: 8px; margin-right: 0; }
  .stamp-2, .stamp-3 { transform: none !important; margin-right: 0; }
} 

/* Centered layout for farm moment section */
.farm-moment-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
}
.farm-photo-taped-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.farm-values-moment-centered {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 0;
  margin-left: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .farm-moment-content-centered { gap: 32px; margin-top: 32px; }
}
@media (max-width: 600px) {
  .farm-moment-content-centered { gap: 18px; margin-top: 18px; }
  .farm-values-moment-centered { flex-direction: column; gap: 0; }
}

/* Polaroid-style video card for farm section */
.polaroid-card-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.farm-photo-polaroid-card {
  background: none !important;
  background-color: transparent !important;
  background: #fffaf0 url('images/paper-texture-light.png') repeat;
  border-radius: 18px 18px 26px 26px;
  box-shadow: 0 10px 38px 0 rgba(60,40,20,0.13), 0 2px 0 #e7e2d7 inset;
  padding: 22px 22px 44px 22px;
  min-width: 340px;
  max-width: 700px;
  position: relative;
  overflow: visible;
  transition: box-shadow 0.35s, transform 0.35s cubic-bezier(.4,1.4,.6,1), filter 0.35s;
  z-index: 2;
}
.farm-photo-polaroid-card:hover {
  box-shadow: 0 18px 60px 0 rgba(60,40,20,0.18);
  transform: scale(1.01) rotate(-0.5deg);
  filter: brightness(1.01);
}
.farm-photo-polaroid-card iframe {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  box-shadow: 0 2px 12px rgba(60,40,20,0.07);
  transition: transform 0.3s;
}
.photo-tape-img {
  position: absolute;
  width: 60px;
  height: 32px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.85;
}
.tape-top-left-img {
  top: -18px;
  left: 18px;
  transform: rotate(-8deg);
}
.tape-top-right-img {
  top: -18px;
  right: 18px;
  transform: rotate(7deg) scaleX(-1);
}
@media (max-width: 900px) {
  .farm-photo-polaroid-card { min-width: 220px; max-width: 98vw; padding: 12px 6px 28px 6px; }
  .photo-tape-img { width: 38px; height: 18px; }
  .tape-top-left-img, .tape-top-right-img { top: -10px; }
}
@media (max-width: 600px) {
  .farm-photo-polaroid-card { padding: 6px 2px 18px 2px; }
  .photo-tape-img { width: 28px; height: 12px; }
  .tape-top-left-img, .tape-top-right-img { top: -6px; }
}

/* Tape decorations for polaroid video card */
.tape {
  position: absolute;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}
.tape-left {
  top: -10px;
  left: -40px;
  transform: rotate(-12deg);
}
.tape-right {
  top: -10px;
  right: -40px;
  transform: rotate(10deg);
}
/* Remove old tape image rules */
.photo-tape-img, .tape-top-left-img, .tape-top-right-img { display: none !important; }

/* Reviews images section */
.reviews-images-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 32px 0;
}
.review-image {
    max-width: 100%;
    width: 350px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    object-fit: cover;
    background: #fff;
}
@media (max-width: 1100px) {
    .review-image {
        width: 300px;
    }
}
@media (max-width: 900px) {
    .reviews-images-container {
        gap: 18px;
    }
    .review-image {
        width: 220px;
    }
}
@media (max-width: 700px) {
    .reviews-images-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .review-image {
        width: 100%;
        max-width: 95vw;
    }
}

/* New Reviews Section Styles */
.reviews-section {
    padding: 80px 0;
    background: #faf7f0 !important;
}

.reviews-section h2 {
    text-align: center;
    font-family: var(--font-title);
    font-size: 42px;
    color: var(--color-deep-berry);
    margin-bottom: 48px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

.review-content p {
    margin: 0;
    flex: 1;
}

.telegram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 8px 16px;
    background-color: #0088cc;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.4s;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: none;
}

.review-info {
    flex: 1;
}

.review-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark-brown);
    margin: 0 0 4px 0;
}

.review-date {
    font-family: var(--font-body);
    font-size: 14px;
    color: #888;
    display: block;
}

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

/* Responsive styles for reviews section */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-section h2 {
        font-size: 36px;
        margin-bottom: 36px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .review-card {
        padding: 12px 10px;
        min-height: 120px;
    }
    .review-header {
        gap: 10px;
        margin-bottom: 10px;
    }
    .review-avatar {
        width: 40px;
        height: 40px;
    }
    .review-content {
        margin-top: 8px;
    }
    .telegram-link {
        margin-top: 10px;
        padding: 7px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .reviews-section h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .review-avatar {
        width: 32px;
        height: 32px;
    }
    
    .review-name {
        font-size: 16px;
    }
    
    .review-content {
        margin-top: 4px;
        font-size: 14px;
    }
    .telegram-link {
        margin-top: 6px;
        padding: 6px 6px;
        font-size: 12px;
    }
}

/* Location Section Styles */
.location-section, .map-full-bleed {
    background: #faf7f0 !important;
    background-color: #faf7f0 !important;
}

.location-section .container {
    text-align: center;
    margin-bottom: 40px;
}

.location-section h2 {
    font-family: var(--font-title);
    font-size: 42px;
    color: var(--color-deep-berry);
    margin-bottom: 30px;
}

.map-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.map-switch-btn {
    padding: 8px 16px;
    border: none;
    background: var(--color-ivory);
    color: var(--color-dark-brown);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-switch-btn:hover {
    background: var(--color-light-beige-linen);
}

.map-switch-btn.active {
    background: var(--color-deep-berry);
    color: white;
}

.map-full-bleed {
    background: #faf7f0 !important;
    position: relative;
    width: 100vw;
    min-height: 400px;
    overflow: hidden;
}

.map-full-bleed iframe {
    display: block;
    width: 100vw;
    min-height: 400px;
    height: 45vw;
    max-height: 500px;
    border: none;
}

.location-floating-card {
    position: absolute;
    top: 40px;
    left: 60px;
    background: #faf7f0;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(60,40,20,0.18);
    padding: 32px 38px 28px 38px;
    min-width: 320px;
    max-width: 420px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: #3D2E26;
    border: 1.5px solid #f3e3b0;
}
.location-floating-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #8B2C3F;
    margin: 0 0 8px 0;
}
.location-floating-address {
    font-size: 17px;
    color: #3D2E26;
    margin-bottom: 4px;
}
.location-floating-coords {
    font-size: 15px;
    color: #6C7A58;
    margin-bottom: 8px;
}
.location-floating-links a {
    display: inline-block;
    margin-top: 8px;
    background: #8B2C3F;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}
.location-floating-links a:hover {
    background: #e8e4dc;
}
@media (max-width: 900px) {
    .location-floating-card {
        left: 50%;
        top: 30px;
        transform: translateX(-50%);
        min-width: 220px;
        max-width: 90vw;
        padding: 22px 12px 18px 12px;
        font-size: 16px;
    }
    .map-full-bleed iframe {
        height: 300px;
        min-height: 220px;
    }
}
@media (max-width: 600px) {
    .location-floating-card {
        left: auto;
        right: 4px;
        top: auto;
        bottom: 4px;
        transform: none;
        min-width: 60px;
        max-width: 36vw;
        padding: 2px 3px 2px 4px;
        font-size: 7px;
        box-shadow: 0 1px 4px rgba(60,40,20,0.10);
        border-radius: 6px;
        opacity: 0.92;
    }
    .location-floating-card h3 {
        font-size: 7px;
        margin-bottom: 1px;
    }
    .location-floating-address, .location-floating-coords {
        font-size: 7px;
        margin-bottom: 1px;
    }
    .location-floating-links a {
        font-size: 7px;
        padding: 2px 4px;
        margin-top: 1px;
    }
}

.map-container {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container.active {
    display: block;
}

@media (min-width: 901px) {
  .location-section, .map-full-bleed {
    background: #faf7f0 !important;
    background-color: #faf7f0 !important;
  }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        padding: 0;
        position: relative;
    }

    .hero-section::before {
        display: none; /* Remove the dark overlay */
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
        padding: 16px;
        transform: translateY(-10vh);
        background: none; /* Remove the semi-transparent white background */
        backdrop-filter: none; /* Remove the blur effect */
        border-radius: 16px;
        margin: 0 16px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); /* Enhanced text shadow */
        color: #FFFFFF; /* Ensure text is white */
    }

    .hero-section .subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        line-height: 1.4;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6); /* Enhanced text shadow */
        color: #FFFFFF; /* Ensure text is white */
    }

    .hero-section .description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* Enhanced text shadow */
        color: #FFFFFF; /* Ensure text is white */
    }

    .hero-cta-button {
        width: 100%;
        height: 48px;
        padding: 0;
        font-size: 1.125rem;
        margin-top: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .hero-cta-button:active {
        transform: scale(0.98);
        background: #722332;
    }

    .hero-cta-button::after {
        content: "Ответим в течение часа";
        display: block;
        position: absolute;
        bottom: -24px;
        left: 0;
        width: 100%;
        text-align: center;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }

    .hero-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.875rem;
        padding: 0.5rem 1.25rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
    }
}

.mobile-filter-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-filter-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #fff9f4;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 998;
    padding: 8px 16px;
    gap: 8px;
  }

  .filter-button {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    background: none;
    border: none;
    padding: 4px 8px;
    font-size: 12px;
    color: var(--color-dark-brown);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
  }

  .filter-button span {
    margin-top: 4px;
    font-family: var(--font-body);
    font-weight: 500;
  }

  .filter-button.active {
    color: var(--color-deep-berry);
    font-weight: 600;
    background: rgba(139, 44, 63, 0.1);
  }

  .filter-button:active {
    transform: scale(0.95);
  }

  /* Add padding to main content to account for fixed nav */
  .catalog-section {
    padding-bottom: 80px;
  }

  /* Ensure CTA button stays above the filter nav */
  .mobile-nav-cta {
    z-index: 999;
  }
}

.floating-filter-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 16px;
  margin: 0 auto 32px;
  max-width: 800px;
  background: transparent;
  box-shadow: none;
}

.filter-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  color: #8A1F3D;
}

.filter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(138, 31, 61, 0.1);
}

.filter-btn.active {
  background: #fcefee;
  color: #8A1F3D;
  font-weight: 500;
  box-shadow: none;
}

.filter-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.filter-btn:hover .filter-icon {
  transform: scale(1.1);
}

.filter-label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .floating-filter-bar {
    gap: 16px;
    padding: 12px;
    margin-bottom: 24px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .filter-btn {
    padding: 8px 12px;
  }

  .filter-icon {
    width: 20px;
    height: 20px;
  }

  .filter-label {
    font-size: 12px;
  }
}

/* === ТОЧНАЯ КОПИЯ ПАНЕЛИ КАК НА СКРИНЕ (ПРИОРИТЕТНО) === */
.exact-filter-bar {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
  margin: 0 auto 32px auto !important;
  background: none !important;
  padding: 0 !important;
}

.exact-filter-btn {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 26px 8px 18px !important;
  background: #f6f3ee !important;
  border: none !important;
  border-radius: 999px !important;
  box-shadow: 0 2px 8px rgba(75,107,58,0.10) !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #4B6B3A !important;
  cursor: pointer !important;
  transition: all 0.18s cubic-bezier(.4,0,.2,1) !important;
  outline: none !important;
  min-width: 120px !important;
  min-height: 44px !important;
  text-transform: uppercase !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.exact-filter-btn:focus {
  outline: none !important;
}

.exact-filter-btn .exact-filter-icon {
  font-size: 22px !important;
  margin-right: 6px !important;
  display: flex !important;
  align-items: center !important;
}

.exact-filter-btn .exact-filter-label {
  font-size: 17px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  color: inherit !important;
  display: flex !important;
  align-items: center !important;
}

.exact-filter-btn.active {
  background: #4B6B3A !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(75,107,58,0.13) !important;
  font-weight: 700 !important;
}

.exact-filter-btn.active .exact-filter-label,
.exact-filter-btn.active .exact-filter-icon {
  color: #fff !important;
}

.exact-filter-btn:hover:not(.active) {
  box-shadow: 0 4px 16px rgba(75,107,58,0.18) !important;
  background: #ece7de !important;
  transform: translateY(-2px) scale(1.04) !important;
}

.exact-filter-btn:active {
  filter: brightness(0.97) !important;
}

@media (max-width: 700px) {
  .exact-filter-bar {
    gap: 4px !important;
    overflow-x: visible !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin: 0 0 32px 0 !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
  }

  .exact-filter-btn {
    flex: 1 1 16.5% !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 4px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    height: 64px !important;
    font-size: 10px !important;
    text-align: center !important;
    aspect-ratio: 1 !important;
    border-radius: 50% !important;
  }

  .exact-filter-btn .exact-filter-icon {
    font-size: 20px !important;
    margin: 0 !important;
    max-height: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .exact-filter-btn .exact-filter-label {
    font-size: 9px !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow: visible !important;
    text-overflow: unset !important;
    max-width: 100% !important;
    line-height: 1.1 !important;
    text-align: center !important;
    padding: 0 2px !important;
  }

  .exact-filter-btn[data-category="saplings"],
  .exact-filter-btn:nth-child(4) {
    max-width: 64px !important;
    min-width: 64px !important;
    font-size: 10px !important;
    padding: 4px !important;
  }

  .exact-filter-btn[data-category="saplings"] .exact-filter-label,
  .exact-filter-btn:nth-child(4) .exact-filter-label {
    font-size: 9px !important;
    padding: 0 2px !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
  }
}
/* === END === */

@media (max-width: 600px) {
    .location-floating-card-desktop {
        display: none !important;
    }
    .location-floating-card-mobile {
        display: flex !important;
        position: static !important;
        margin: 0 auto 18px auto;
        background: #faf7f0;
        border-radius: 18px;
        box-shadow: 0 8px 32px rgba(60,40,20,0.18);
        padding: 22px 12px 18px 12px;
        min-width: 0;
        max-width: 98vw;
        width: 95vw;
        font-size: 16px;
        z-index: 20;
        opacity: 1;
        border: 1.5px solid #f3e3b0;
        flex-direction: column;
        gap: 10px;
    }
    .location-floating-card-mobile h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }
    .location-floating-card-mobile .location-floating-address {
        font-size: 15px;
        margin-bottom: 2px;
    }
    .location-floating-card-mobile .location-floating-coords {
        font-size: 13px;
        margin-bottom: 4px;
    }
    .location-floating-card-mobile .location-floating-links a {
        font-size: 14px;
        padding: 7px 14px;
        margin-top: 4px;
    }
}

@media (max-width: 700px) {
  .location-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .map-full-bleed {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: unset !important;
    height: auto !important;
  }
  .map-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  /* Если есть пустой блок после карты, скрыть его */
  .location-section > *:not(.container):not(.map-full-bleed) {
    display: none !important;
    }
}

.webaweba-link {
  margin-top: 8px;
  font-size: 1.18rem;
  font-family: var(--font-title, 'Manrope', Arial, sans-serif);
  letter-spacing: 0.02em;
  display: inline-block;
  animation: fade-in 1.2s cubic-bezier(.4,0,.2,1);
}

.webaweba-link-anchor {
  color: #9F2D45;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  padding: 4px 12px 4px 4px;
  background: rgba(159,45,69,0.07);
  box-shadow: 0 2px 8px rgba(159,45,69,0.04);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.18s;
  position: relative;
}

.webaweba-link-anchor:hover,
.webaweba-link-anchor:focus {
  background: #9F2D45;
  color: #fff;
  box-shadow: 0 4px 16px rgba(159,45,69,0.13);
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}

.webaweba-link-anchor:hover svg circle,
.webaweba-link-anchor:focus svg circle {
  fill: #fff;
  transition: fill 0.25s;
}

.webaweba-link-anchor:hover svg path,
.webaweba-link-anchor:focus svg path {
  stroke: #9F2D45;
  transition: stroke 0.25s;
}

.webaweba-link-anchor::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%) scale(0.95);
  background: #fff;
  color: #9F2D45;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body, Arial, sans-serif);
  box-shadow: 0 2px 8px rgba(159,45,69,0.08);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.22s, transform 0.22s;
  z-index: 10;
}

.webaweba-link-anchor:hover::after,
.webaweba-link-anchor:focus::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

@media (max-width: 600px) {
  .webaweba-link {
    font-size: 1rem;
  }
  .webaweba-link-anchor {
    padding: 4px 8px 4px 4px;
    font-size: 0.98rem;
  }
}
