:root {
    --forest-green: #2d5a27;
    --light-green: #7cb342;
    --berry-red: #e53935;
    --berry-pink: #ff6b9d;
    --blueberry: #5c6bc0;
    --cream: #fff8e7;
    --sun-yellow: #ffd54f;
    --warm-orange: #ff8a65;
    --dark-text: #2c3e50;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comfortaa', cursive;
    background: #e8f5e9;
    color: var(--dark-text);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Forest Background Animation */
.forest-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.trees {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
}

.tree {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 100px solid var(--forest-green);
    opacity: 0.3;
}

.tree::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 70px solid var(--forest-green);
}

.tree-1 { left: 5%; transform: scale(0.8); }
.tree-2 { left: 15%; transform: scale(1.2); border-bottom-color: var(--light-green); }
.tree-2::before { border-bottom-color: var(--light-green); }
.tree-3 { left: 35%; transform: scale(0.9); }
.tree-4 { left: 60%; transform: scale(1.1); border-bottom-color: #3d7a35; }
.tree-4::before { border-bottom-color: #3d7a35; }
.tree-5 { right: 10%; transform: scale(1); }

.berries {
    position: absolute;
    width: 100%;
    height: 100%;
}

.berry {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 46% 54%;
    transform-origin: center;
    animation: float 6s ease-in-out 1;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.berry::before,
.berry::after {
    content: '';
    position: absolute;
}

.berry::before {
    top: -8px;
    right: 6px;
    width: 11px;
    height: 8px;
    border-radius: 70% 10% 70% 35%;
    background: linear-gradient(135deg, #a8d85f 0%, #5c8e31 100%);
    transform: rotate(-26deg);
}

.berry::after {
    top: -7px;
    left: 14px;
    width: 2px;
    height: 8px;
    border-radius: 999px;
    background: #5f3b1d;
    transform: rotate(14deg);
}

.berry-strawberry {
    border-radius: 48% 52% 50% 50%;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.55) 0 20%, transparent 22%),
        radial-gradient(circle at 34% 70%, #f7e38f 0 7%, transparent 8%),
        radial-gradient(circle at 62% 64%, #f7e38f 0 7%, transparent 8%),
        radial-gradient(circle at 52% 45%, #f7e38f 0 6%, transparent 7%),
        linear-gradient(160deg, #ff8d7f 0%, #e53935 58%, #ad1f1b 100%);
}

.berry-blueberry {
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.62) 0 20%, transparent 22%),
        radial-gradient(circle at 52% 56%, #dbe4ff 0 9%, #9caad8 10%, transparent 16%),
        linear-gradient(155deg, #8cb0ff 0%, #4f63c9 58%, #2c2f7d 100%);
}

.berry-blackberry {
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.52) 0 18%, transparent 20%),
        radial-gradient(circle at 50% 46%, rgba(255, 199, 237, 0.48) 0 12%, transparent 16%),
        linear-gradient(160deg, #c584ef 0%, #8a45b7 58%, #4d1f67 100%);
}

.berry-cherry {
    background:
        radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.56) 0 22%, transparent 24%),
        linear-gradient(160deg, #ff8585 0%, #e53935 56%, #8e1b1b 100%);
}

.b1 { top: 15%; left: 10%; animation-delay: 0s; }
.b2 { top: 25%; right: 15%; animation-delay: 1s; }
.b3 { top: 40%; left: 5%; animation-delay: 2s; }
.b4 { top: 20%; right: 25%; animation-delay: 0.5s; }
.b5 { top: 35%; right: 5%; animation-delay: 1.5s; }
.b6 { top: 10%; left: 30%; animation-delay: 2.5s; }
.b7 { top: 30%; left: 20%; animation-delay: 3s; }
.b8 { top: 45%; right: 20%; animation-delay: 0.8s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 20px rgba(45, 90, 39, 0.1);
}

.logo {
    display: inline-flex;
    align-items: center;
    font-family: 'Lobster', cursive;
    font-size: 2.15rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    color: var(--forest-green);
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35), 0 2px 6px rgba(45, 90, 39, 0.28);
    letter-spacing: 0.03em;
    position: relative;
    padding: 0 60px;
}

.logo::first-letter {
    font-size: 2.55rem;
}

.logo::before,
.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 44px;
    transform: translateY(-50%);
    background: linear-gradient(180deg, #9ada73 0%, #5f9444 48%, #2f5f27 100%);
    clip-path: polygon(
        50% 0,
        66% 20%,
        58% 20%,
        76% 42%,
        66% 42%,
        86% 66%,
        58% 66%,
        58% 84%,
        42% 84%,
        42% 66%,
        14% 66%,
        34% 42%,
        24% 42%,
        42% 20%,
        34% 20%
    );
    filter: drop-shadow(0 3px 6px rgba(24, 61, 23, 0.32));
    opacity: 0.98;
}

.logo::before {
    left: 0;
    transform: translateY(-50%) rotate(-7deg);
}

.logo::after {
    right: 0;
    transform: translateY(-50%) rotate(7deg);
}

.logo-leaf {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--light-green);
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    margin: 0 3px;
    position: relative;
}

.logo-leaf::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 6px;
    background: var(--light-green);
    border-radius: 0 50% 50% 50%;
    transform: rotate(90deg);
}

.logo:hover {
    color: #3e7f35;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 1rem;
    font-family: 'Lobster', cursive;
    font-size: 1.45rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1;
    text-decoration: none;
    color: var(--dark-text);
    border-radius: 50px;
    border: 2px solid rgba(45, 90, 39, 0.28);
    background: rgba(255, 255, 255, 0.24);
    transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
    position: relative;
}

.nav a.nav-link-about {
    background: linear-gradient(135deg, rgba(200, 240, 205, 0.9), rgba(182, 228, 188, 0.9));
    border-color: rgba(84, 142, 89, 0.46);
}

.nav a.nav-link-berries {
    background: linear-gradient(135deg, rgba(167, 219, 159, 0.9), rgba(138, 196, 132, 0.9));
    border-color: rgba(61, 126, 66, 0.5);
}

.nav a.nav-link-contacts {
    background: linear-gradient(135deg, rgba(118, 180, 111, 0.92), rgba(94, 151, 88, 0.92));
    border-color: rgba(46, 108, 51, 0.56);
    color: #173915;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--berry-red);
    transition: width 0.3s;
    transform: translateX(-50%);
}

.nav a.nav-link-about::after,
.nav a.nav-link-berries::after,
.nav a.nav-link-contacts::after {
    display: none;
}

.nav a:hover {
    color: var(--forest-green);
    background: rgba(255, 255, 255, 0.42);
    border-color: rgba(45, 90, 39, 0.45);
    transform: translateY(-1px);
}

.nav a.nav-link-about:hover {
    background: linear-gradient(135deg, rgba(187, 233, 193, 0.96), rgba(164, 220, 173, 0.96));
}

.nav a.nav-link-berries:hover {
    background: linear-gradient(135deg, rgba(150, 208, 143, 0.96), rgba(121, 187, 114, 0.96));
}

.nav a.nav-link-contacts:hover {
    background: linear-gradient(135deg, rgba(102, 164, 96, 0.96), rgba(80, 136, 75, 0.96));
    color: #112c10;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    position: relative;
    z-index: 1;
    background: 
        linear-gradient(
            135deg,
            rgba(45, 90, 39, 0.7) 0%,
            rgba(124, 179, 66, 0.5) 50%,
            rgba(232, 245, 233, 0.6) 100%
        ),
        url('../img/forest-meadow.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(45, 90, 39, 0.3) 100%
    );
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: #ffeb3b;
    text-shadow: 3px 3px 0 var(--forest-green), 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.home-refresh {
    overflow: hidden;
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(260px, 0.95fr);
    gap: 2.8rem;
    align-items: center;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0;
    border-radius: 0;
    background: none;
    color: #eaff9f;
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(25, 56, 21, 0.35), 0 8px 22px rgba(18, 48, 14, 0.35);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.btn-ghost {
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--berry-red), var(--warm-orange));
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

.btn-ghost:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229, 57, 53, 0.5);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.hero-highlight-item {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(145deg, #4f8d3a 0%, #2f6e2b 100%);
    border: 1px solid rgba(190, 226, 160, 0.6);
    color: #f4ffe8;
    box-shadow: 0 6px 16px rgba(33, 84, 33, 0.28);
    font-size: 0.84rem;
    font-weight: 600;
}

.home-refresh .hero-illustration {
    position: relative;
    flex: unset;
    justify-self: center;
    width: min(430px, 100%);
    padding: 2.2rem 1.2rem 1rem;
    border-radius: 34px;
    background: linear-gradient(160deg, rgba(255, 248, 231, 0.26), rgba(124, 179, 66, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 16px 40px rgba(10, 40, 13, 0.24);
}

.hero-note {
    position: absolute;
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 116px;
    padding: 0.58rem 0.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(124, 179, 66, 0.34);
    box-shadow: 0 9px 22px rgba(45, 90, 39, 0.18);
    text-align: center;
}

.hero-note-top {
    top: 0.9rem;
    right: 0.35rem;
}

.hero-note-bottom {
    bottom: 0.65rem;
    left: -0.35rem;
}

.hero-note-label {
    color: #476845;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-note-value {
    color: var(--forest-green);
    font-family: 'Fredoka', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--berry-red), var(--warm-orange));
    color: white;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229, 57, 53, 0.5);
}

.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.basket {
    width: 250px;
    height: 200px;
    background: linear-gradient(135deg, #a1887f, #8d6e63);
    border-radius: 10px 10px 50% 50%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 -10px 30px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

.basket::before {
    content: '';
    position: absolute;
    top: -30px;
    width: 200px;
    height: 60px;
    border: 8px solid #8d6e63;
    border-radius: 50%;
    border-bottom: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.basket-berry {
    font-size: 2.5rem;
    position: absolute;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transform-origin: center 80px;
}

.basket-berry:nth-child(1) {
    animation: rotateClockwise 3s linear 1;
    animation-delay: 0s;
}
.basket-berry:nth-child(2) {
    animation: rotateClockwise 3s linear 1;
    animation-delay: 0.35s;
}
.basket-berry:nth-child(3) {
    animation: rotateClockwise 3s linear 1;
    animation-delay: 0.7s;
}

@keyframes rotateClockwise {
    0% { transform: rotate(0deg) translateX(45px) translateY(0); }
    25% { transform: rotate(90deg) translateX(0) translateY(-45px); }
    50% { transform: rotate(180deg) translateX(-45px) translateY(0); }
    75% { transform: rotate(270deg) translateX(0) translateY(45px); }
    100% { transform: rotate(360deg) translateX(45px) translateY(0); }
}

/* Sections Common */
section {
    padding: 6rem 5%;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--forest-green);
}

.home-refresh-section .section-title {
    margin-bottom: 0.9rem;
}

.section-head {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-intro {
    color: rgba(44, 62, 80, 0.84);
    font-size: 1.03rem;
    line-height: 1.55;
}

.reviews-section .section-intro {
    font-weight: 400;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #c8e6c9 0%, white 30%);
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
    padding-top: 80px;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    background: linear-gradient(135deg, #f8fdf4, #e8f5e9);
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.75s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, border-color 0.35s ease;
    border: 3px solid transparent;
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.08);
}

.feature-card:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.45rem;
    width: 1.45rem;
    height: 2px;
    transform: translateY(-50%);
    background: rgba(45, 90, 39, 0.45);
}

.feature-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(50% - 5px);
    right: -1.45rem;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(45, 90, 39, 0.7);
    border-right: 2px solid rgba(45, 90, 39, 0.7);
    transform: rotate(45deg);
}

.feature-card:hover,
.feature-card:focus-within {
    background: linear-gradient(135deg, #eef7ff, #dcefff);
    border-color: #c5dff8;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 90, 39, 0.15);
}

.feature-icon {
    width: 100%;
    max-width: 170px;
    margin: 0 auto 1rem;
}

.feature-icon-image {
    display: block;
    width: 100%;
    height: 94px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(124, 179, 66, 0.35);
    box-shadow: 0 7px 16px rgba(34, 76, 34, 0.18);
}

.feature-icon-forest {
    object-position: center 62%;
}

.feature-icon-berries {
    object-position: center 45%;
}

.feature-icon-photo {
    object-position: center;
}

.feature-icon-tea {
    object-position: center;
}
}

.feature-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.7rem;
    border-radius: 50%;
    background: rgba(124, 179, 66, 0.18);
    color: var(--forest-green);
    font-family: 'Fredoka', sans-serif;
    font-size: 0.93rem;
    font-weight: 700;
}

.feature-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card::before,
    .feature-card::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .features {
        grid-template-columns: 1fr;
    }
}

/* Berries Section */
.berries-section {
    background: linear-gradient(180deg, #a5d6a7 0%, #81c784 100%);
}

.berries-basket-illustration {
    width: min(440px, 90vw);
    margin: 0 auto 2.4rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-illustration .berries-basket-illustration {
    margin: 0;
}

.woven-basket {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 170px;
    border-radius: 36px 36px 52% 52%;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(132, 82, 37, 0.16) 0,
            rgba(132, 82, 37, 0.16) 11px,
            rgba(222, 182, 124, 0.15) 11px,
            rgba(222, 182, 124, 0.15) 22px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(121, 78, 39, 0.42) 0,
            rgba(121, 78, 39, 0.42) 10px,
            rgba(171, 123, 67, 0.3) 10px,
            rgba(171, 123, 67, 0.3) 20px
        ),
        linear-gradient(155deg, #d6a462 0%, #ba8344 45%, #95602d 100%);
    border: 3px solid #7a4c1f;
    box-shadow: 0 20px 35px rgba(55, 35, 15, 0.24), inset 0 16px 18px rgba(255, 232, 196, 0.22), inset 0 -16px 18px rgba(101, 65, 30, 0.25);
    overflow: visible;
}

.woven-basket::before {
    content: '';
    position: absolute;
    top: -90px;
    left: 50%;
    width: 176px;
    height: 176px;
    transform: translateX(-50%);
    border: 10px solid #7a4c1f;
    border-radius: 50%;
    clip-path: inset(0 0 50% 0);
    z-index: -1;
    box-shadow: 0 8px 14px rgba(55, 35, 15, 0.2);
}

.woven-basket::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    bottom: 12px;
    background:
        repeating-linear-gradient(
            14deg,
            rgba(255, 230, 184, 0.13) 0,
            rgba(255, 230, 184, 0.13) 8px,
            transparent 8px,
            transparent 18px
        );
    opacity: 0.9;
}

.basket-weave {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(180deg, rgba(248, 220, 168, 0.34), rgba(130, 85, 41, 0.12));
    border-left: 1px solid rgba(102, 67, 33, 0.16);
    border-right: 1px solid rgba(102, 67, 33, 0.16);
    opacity: 0.8;
}

.weave-1 { left: 22px; }
.weave-2 { left: 66px; }
.weave-3 { left: 110px; }
.weave-4 { left: 154px; }
.weave-5 { left: 198px; }
.weave-6 { left: 242px; }

.basket-fruit {
    position: absolute;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50% 50% 46% 54%;
    filter: drop-shadow(0 5px 7px rgba(55, 35, 15, 0.26));
}

.basket-fruit::before,
.basket-fruit::after {
    content: '';
    position: absolute;
}

.basket-fruit::before {
    top: -8px;
    right: 6px;
    width: 11px;
    height: 8px;
    border-radius: 70% 10% 70% 35%;
    background: linear-gradient(135deg, #b0dc67 0%, #5d8f31 100%);
    transform: rotate(-25deg);
}

.basket-fruit::after {
    top: -7px;
    left: 14px;
    width: 2px;
    height: 9px;
    border-radius: 999px;
    background: #5f3b1d;
    transform: rotate(15deg);
}

.basket-fruit-strawberry {
    border-radius: 48% 52% 50% 50%;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.55) 0 20%, transparent 22%),
        radial-gradient(circle at 34% 70%, #f8e798 0 7%, transparent 8%),
        radial-gradient(circle at 62% 64%, #f8e798 0 7%, transparent 8%),
        radial-gradient(circle at 52% 45%, #f8e798 0 6%, transparent 7%),
        linear-gradient(160deg, #ff8d7f 0%, #e53935 58%, #ad1f1b 100%);
}

.basket-fruit-blueberry {
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.62) 0 20%, transparent 22%),
        radial-gradient(circle at 52% 56%, #dbe4ff 0 9%, #9caad8 10%, transparent 16%),
        linear-gradient(155deg, #8cb0ff 0%, #4f63c9 58%, #2c2f7d 100%);
}

.basket-fruit-cherry {
    background:
        radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.56) 0 22%, transparent 24%),
        linear-gradient(160deg, #ff8585 0%, #e53935 56%, #8e1b1b 100%);
}

.basket-fruit-blackberry {
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.52) 0 18%, transparent 20%),
        radial-gradient(circle at 50% 46%, rgba(255, 199, 237, 0.48) 0 12%, transparent 16%),
        linear-gradient(160deg, #c584ef 0%, #8a45b7 58%, #4d1f67 100%);
}


.fruit-1 {
    top: 42px;
    left: 100px;
    transform: rotate(-8deg);
}

.fruit-2 {
    top: 36px;
    left: 142px;
    transform: rotate(10deg);
}

.fruit-3 {
    top: 52px;
    left: 176px;
    transform: rotate(-6deg);
}

.fruit-4 {
    top: 56px;
    left: 130px;
    transform: rotate(4deg);
}

.fruit-5 {
    top: 28px;
    left: 124px;
    transform: rotate(5deg);
}

.fruit-6 {
    top: 30px;
    left: 164px;
    transform: rotate(-4deg);
}

.fruit-7 {
    top: 44px;
    left: 82px;
    transform: rotate(-5deg);
}

.fruit-8 {
    top: 60px;
    left: 108px;
    transform: rotate(7deg);
}

.fruit-9 {
    top: 66px;
    left: 144px;
    transform: rotate(-3deg);
}

.fruit-10 {
    top: 60px;
    left: 182px;
    transform: rotate(8deg);
}

.fruit-11 {
    top: 78px;
    left: 96px;
    transform: rotate(-6deg);
}

.fruit-12 {
    top: 86px;
    left: 126px;
    transform: rotate(4deg);
}

.fruit-13 {
    top: 84px;
    left: 160px;
    transform: rotate(-8deg);
}

.fruit-14 {
    top: 98px;
    left: 84px;
    transform: rotate(5deg);
}

.fruit-15 {
    top: 104px;
    left: 118px;
    transform: rotate(-4deg);
}

.fruit-16 {
    top: 102px;
    left: 152px;
    transform: rotate(6deg);
}

.fruit-17 {
    top: 24px;
    left: 84px;
    transform: rotate(-10deg);
}

.fruit-18 {
    top: 18px;
    left: 150px;
    transform: rotate(12deg);
}

.fruit-19 {
    top: 34px;
    left: 196px;
    transform: rotate(-7deg);
}

.fruit-20 {
    top: 74px;
    left: 188px;
    transform: rotate(9deg);
}

.fruit-21 {
    top: 116px;
    left: 94px;
    transform: rotate(-8deg);
}

.fruit-22 {
    top: 122px;
    left: 130px;
    transform: rotate(6deg);
}

.fruit-23 {
    top: 120px;
    left: 166px;
    transform: rotate(-5deg);
}

.fruit-24 {
    top: 98px;
    left: 186px;
    transform: rotate(10deg);
}

.fruit-25 {
    top: 72px;
    left: 62px;
    transform: rotate(-6deg);
}

.fruit-26 {
    top: 92px;
    left: 56px;
    transform: rotate(8deg);
}

.fruit-27 {
    top: 112px;
    left: 64px;
    transform: rotate(-7deg);
}

.fruit-28 {
    top: 126px;
    left: 202px;
    transform: rotate(11deg);
}

.berries-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.berry-item {
    --berry-accent: var(--forest-green);
    --berry-text: #4a4a4a;
    background: white;
    padding: 1.25rem 1.2rem;
    border-radius: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    width: 100%;
    height: 100%;
    min-height: 244px;
    border: 2px solid transparent;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.berry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.berry-kostyanika {
    background: #e53935;
    border-color: #c62828;
    --berry-accent: #ffffff;
    --berry-text: #ffffff;
}

.berry-chernika {
    background: #7b1fa2;
    border-color: #6a1b9a;
    --berry-accent: #ffffff;
    --berry-text: #ffffff;
}

.berry-vishnya {
    background: #800020;
    border-color: #5f0018;
    --berry-accent: #ffffff;
    --berry-text: #ffffff;
}

.berry-ezhevika {
    background: #b26ad6;
    border-color: #9d4fca;
    --berry-accent: #ffffff;
    --berry-text: #ffffff;
}

.berry-golubika {
    background: #1565c0;
    border-color: #0d47a1;
    --berry-accent: #ffffff;
    --berry-text: #ffffff;
}

.berry-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.25rem;
    border-radius: 50% 50% 46% 54%;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.36);
    position: relative;
}

.berry-emoji::before,
.berry-emoji::after {
    content: '';
    position: absolute;
}

.berry-emoji::before {
    top: -6px;
    right: 4px;
    width: 10px;
    height: 7px;
    border-radius: 70% 10% 70% 35%;
    background: linear-gradient(135deg, #b7e279 0%, #5b8b33 100%);
    transform: rotate(-24deg);
}

.berry-emoji::after {
    top: -5px;
    left: 13px;
    width: 2px;
    height: 7px;
    border-radius: 999px;
    background: #5f3b1d;
    transform: rotate(14deg);
}

.berry-icon-kostyanika {
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.55) 0 20%, transparent 22%),
        radial-gradient(circle at 34% 70%, #f8e798 0 7%, transparent 8%),
        radial-gradient(circle at 62% 64%, #f8e798 0 7%, transparent 8%),
        radial-gradient(circle at 52% 45%, #f8e798 0 6%, transparent 7%),
        linear-gradient(160deg, #ff8d7f 0%, #e53935 58%, #ad1f1b 100%);
}

.berry-icon-chernika,
.berry-icon-golubika {
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.62) 0 20%, transparent 22%),
        radial-gradient(circle at 52% 56%, #dbe4ff 0 9%, #9caad8 10%, transparent 16%),
        linear-gradient(155deg, #8cb0ff 0%, #4f63c9 58%, #2c2f7d 100%);
}

.berry-icon-vishnya {
    background:
        radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.56) 0 22%, transparent 24%),
        linear-gradient(160deg, #ff8585 0%, #e53935 56%, #8e1b1b 100%);
}

.berry-icon-ezhevika {
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.52) 0 18%, transparent 20%),
        radial-gradient(circle at 50% 46%, rgba(255, 199, 237, 0.48) 0 12%, transparent 16%),
        linear-gradient(160deg, #c584ef 0%, #8a45b7 58%, #4d1f67 100%);
}

.berry-name {
    align-self: center;
    width: 100%;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.18rem;
    color: var(--berry-accent);
}

.berry-month {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--berry-accent);
    opacity: 0.9;
}

.berry-desc {
    font-size: 0.89rem;
    margin-top: 0.2rem;
    line-height: 1.6;
    color: var(--berry-text);
}

@media (max-width: 1024px) {
    .berries-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.reviews-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 245, 157, 0.34), transparent 42%),
        radial-gradient(circle at 88% 82%, rgba(165, 214, 167, 0.38), transparent 40%),
        linear-gradient(180deg, #c8e6c9 0%, #e8f5e9 100%);
}

.reviews-video {
    max-width: 980px;
    margin: 0 auto 1.6rem;
    padding: 1.1rem;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 249, 230, 0.88));
    border: 1px solid rgba(124, 179, 66, 0.28);
    box-shadow: 0 12px 28px rgba(45, 90, 39, 0.12);
}

.reviews-video-title {
    font-family: 'Fredoka', sans-serif;
    color: var(--forest-green);
    margin-bottom: 0.4rem;
    text-align: center;
}

.reviews-video-text {
    margin-bottom: 0.9rem;
    text-align: center;
    color: rgba(44, 62, 80, 0.86);
}

.reviews-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.08);
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.25rem 0.25rem 0.5rem;
    overflow: visible;
    scroll-snap-type: none;
    cursor: default;
    touch-action: auto;
}

.reviews-grid::-webkit-scrollbar {
    height: 6px;
}

.reviews-grid.is-dragging {
    cursor: default;
}

.reviews-grid.is-dragging .review-card {
    user-select: auto;
}

.review-card {
    position: relative;
    background:
        linear-gradient(135deg, rgba(255, 245, 157, 0.64) 0%, rgba(165, 214, 167, 0.86) 100%);
    padding: 1.45rem 1.35rem;
    border-radius: 24px;
    border: 1px solid rgba(124, 179, 66, 0.3);
    box-shadow: 0 14px 30px rgba(45, 90, 39, 0.11);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    overflow: hidden;
    scroll-snap-align: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.review-card::after {
    content: '“';
    position: absolute;
    right: 0.9rem;
    top: 0.35rem;
    color: rgba(45, 90, 39, 0.2);
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.review-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--light-green), var(--forest-green));
}

.review-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 19px 36px rgba(45, 90, 39, 0.18);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.45rem;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 16px rgba(45, 90, 39, 0.2);
    flex-shrink: 0;
}

.review-name {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.16rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.review-gender {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.review-gender-female {
    color: #b0125b;
    background: rgba(255, 107, 157, 0.2);
    border: 1px solid rgba(176, 18, 91, 0.28);
}

.review-gender-male {
    color: #0e4e8f;
    background: rgba(70, 143, 219, 0.2);
    border: 1px solid rgba(14, 78, 143, 0.28);
}

.review-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.7rem;
}

.review-rating {
    letter-spacing: 0.06em;
    color: #f6b400;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.94rem;
    line-height: 1.62;
    color: var(--dark-text);
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Register Section */
.register {
    background: linear-gradient(180deg, #81c784 0%, #c8e6c9 100%);
}

.register-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.register-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--forest-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(124, 179, 66, 0.2);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--forest-green), var(--light-green));
    color: white;
    font-size: 1.2rem;
    padding: 1.2rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 90, 39, 0.4);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 20px;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: pulse 1s ease-in-out 3;
}

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

.success-message h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

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

/* Footer */
.footer {
    background: linear-gradient(160deg, #1f4a1a 0%, #2d5a27 45%, #3c7335 100%);
    color: #f4fff3;
    padding: 3rem 5% 1.4rem;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.06));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.footer-title {
    font-family: 'Lobster', cursive;
    font-size: 1.9rem;
    font-style: italic;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    max-width: 32ch;
    color: rgba(244, 255, 243, 0.9);
    line-height: 1.6;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-contact-link {
    display: inline-block;
    width: fit-content;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-bottom: 1px solid transparent;
    transition: color 0.25s, border-color 0.25s;
}

.footer-contact-link:hover {
    color: #d3f8b7;
    border-color: rgba(211, 248, 183, 0.75);
}

.footer-contact-text {
    color: rgba(244, 255, 243, 0.88);
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    width: fit-content;
    border-bottom: 1px solid transparent;
    transition: color 0.25s, border-color 0.25s;
}

.footer-nav a:hover {
    color: #d3f8b7;
    border-color: rgba(211, 248, 183, 0.75);
}

.footer-bottom {
    max-width: 1200px;
    margin: 1.8rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(244, 255, 243, 0.8);
    font-size: 0.92rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-nav {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem 1.4rem;
    }
}

@media (max-width: 680px) {
    .footer {
        padding: 2.4rem 1rem 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .footer-title {
        font-size: 1.6rem;
    }

    .footer-nav {
        grid-column: auto;
        flex-direction: column;
        gap: 0.6rem;
    }

    .footer-bottom {
        margin-top: 1.25rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .hero-eyebrow {
        margin-bottom: 0.8rem;
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .hero-illustration {
        margin-top: 2rem;
    }

    .home-refresh .hero-illustration {
        width: min(360px, 95vw);
        margin-top: 0;
        padding: 2rem 1rem 0.8rem;
    }

    .hero-note {
        min-width: 100px;
        padding: 0.5rem 0.65rem;
    }

    .hero-note-top {
        top: 0.55rem;
        right: 0.2rem;
    }

    .hero-note-bottom {
        left: 0.2rem;
        bottom: 0.4rem;
    }

    .hero-note-label {
        font-size: 0.64rem;
    }

    .hero-note-value {
        font-size: 0.9rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-highlight-item {
        font-size: 0.78rem;
    }
    
    .basket {
        width: 180px;
        height: 150px;
        overflow: hidden;
    }
    
    .basket::before {
        width: 140px;
        top: -20px;
    }

    .berries-basket-illustration {
        width: min(310px, 92vw);
        margin-bottom: 1.8rem;
    }

    .woven-basket {
        width: 210px;
        height: 130px;
    }

    .woven-basket::before {
        width: 136px;
        height: 136px;
        top: -68px;
        border-width: 8px;
    }

    .basket-weave {
        width: 17px;
    }

    .weave-1 { left: 18px; }
    .weave-2 { left: 51px; }
    .weave-3 { left: 84px; }
    .weave-4 { left: 117px; }
    .weave-5 { left: 150px; }
    .weave-6 { left: 183px; }

    .basket-fruit {
        width: 26px;
        height: 26px;
    }

    .fruit-1 {
        top: 30px;
        left: 76px;
    }

    .fruit-2 {
        top: 27px;
        left: 106px;
    }

    .fruit-3 {
        top: 38px;
        left: 132px;
    }

    .fruit-4 {
        top: 41px;
        left: 96px;
    }

    .fruit-5 {
        top: 22px;
        left: 90px;
    }

    .fruit-6 {
        top: 23px;
        left: 122px;
    }

    .fruit-7 {
        top: 32px;
        left: 62px;
    }

    .fruit-8 {
        top: 43px;
        left: 82px;
    }

    .fruit-9 {
        top: 47px;
        left: 108px;
    }

    .fruit-10 {
        top: 43px;
        left: 134px;
    }

    .fruit-11 {
        top: 56px;
        left: 70px;
    }

    .fruit-12 {
        top: 62px;
        left: 92px;
    }

    .fruit-13 {
        top: 62px;
        left: 116px;
    }

    .fruit-14 {
        top: 73px;
        left: 60px;
    }

    .fruit-15 {
        top: 76px;
        left: 85px;
    }

    .fruit-16 {
        top: 76px;
        left: 109px;
    }

    .fruit-17 {
        top: 18px;
        left: 64px;
    }

    .fruit-18 {
        top: 14px;
        left: 112px;
    }

    .fruit-19 {
        top: 24px;
        left: 144px;
    }

    .fruit-20 {
        top: 53px;
        left: 140px;
    }

    .fruit-21 {
        top: 84px;
        left: 68px;
    }

    .fruit-22 {
        top: 89px;
        left: 93px;
    }

    .fruit-23 {
        top: 89px;
        left: 118px;
    }

    .fruit-24 {
        top: 72px;
        left: 142px;
    }

    .fruit-25 {
        top: 52px;
        left: 46px;
    }

    .fruit-26 {
        top: 67px;
        left: 42px;
    }

    .fruit-27 {
        top: 81px;
        left: 48px;
    }

    .fruit-28 {
        top: 93px;
        left: 154px;
    }
    
    .basket-berry {
        font-size: 1.8rem;
    }

    .basket-berry:nth-child(1) { top: 12px; left: 35px; animation-delay: 0s; }
    .basket-berry:nth-child(2) { top: 5px; left: 75px; animation-delay: 0.3s; }
    .basket-berry:nth-child(3) { top: 18px; left: 115px; animation-delay: 0.6s; }
    
    section {
        padding: 4rem 5%;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .section-head {
        margin-bottom: 2rem;
    }

    .section-intro {
        font-size: 0.95rem;
    }

    .berry-item {
        width: min(320px, 100%);
        min-height: 228px;
        margin: 0 auto;
    }

    .berries-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .register-container {
        padding: 2rem 1.5rem;
    }

    .reviews-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        padding-bottom: 0.75rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab;
        touch-action: pan-x;
    }

    .reviews-video {
        padding: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .reviews-video-title {
        font-size: 1.12rem;
    }

    .reviews-video-text {
        font-size: 0.9rem;
    }

    .review-card {
        flex: 0 0 min(320px, 84vw);
        scroll-snap-align: start;
        padding: 1.15rem 1rem;
        border-radius: 20px;
    }

    .reviews-grid.is-dragging {
        cursor: grabbing;
        scroll-snap-type: none;
    }

    .reviews-grid.is-dragging .review-card {
        user-select: none;
    }

    .review-name {
        font-size: 1.05rem;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.45;
    }
    
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
}

.burger-line {
    width: 100%;
    height: 3px;
    background: var(--forest-green);
    border-radius: 2px;
    transition: all 0.3s;
}

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

.burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 105;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(236, 247, 241, 0.78));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mobile-menu-close-icon {
    position: relative;
    width: 0.95rem;
    height: 0.95rem;
}

.mobile-menu-close-icon::before,
.mobile-menu-close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--forest-green), #3e7f35);
    transform-origin: center;
}

.mobile-menu-close-icon::before {
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-close-icon::after {
    transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu-close:hover {
    transform: translateY(-2px) scale(1.03);
    background: radial-gradient(circle at 30% 30%, #ffffff, rgba(255, 236, 230, 0.88));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-menu-close:hover .mobile-menu-close-icon::before,
.mobile-menu-close:hover .mobile-menu-close-icon::after {
    background: linear-gradient(135deg, var(--berry-red), var(--warm-orange));
}

.mobile-menu-close:active {
    transform: translateY(0) scale(0.98);
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mobile-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    width: min(320px, 86vw);
    height: 100%;
    padding: 5.5rem 1.25rem 1.5rem;
    background: #ffffff;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-nav {
    transform: translateX(0);
}

.mobile-nav-item {
    color: var(--dark-text);
    text-decoration: none;
    font-family: 'Lobster', cursive;
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 0.9rem 1rem;
    width: 100%;
    background: none;
    border: 1px solid #e6ebea;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    text-align: left;
}

.mobile-nav-item.mobile-nav-about {
    background: linear-gradient(135deg, #d8f0dc, #c4e7c8);
    border-color: #b0dcb6;
}

.mobile-nav-item.mobile-nav-berries {
    background: linear-gradient(135deg, #b8e0b3, #9fd39a);
    border-color: #8fc78b;
}

.mobile-nav-item.mobile-nav-contacts {
    background: linear-gradient(135deg, #8fca87, #78b972);
    border-color: #6ead68;
    color: #163313;
}

.mobile-nav-item:hover {
    background: #f4f8f6;
    border-color: #d6e0dd;
}

.mobile-nav-item.mobile-nav-about:hover {
    background: linear-gradient(135deg, #c9eacb, #b1ddb6);
    border-color: #9fd0a5;
}

.mobile-nav-item.mobile-nav-berries:hover {
    background: linear-gradient(135deg, #a7d7a3, #8fca8c);
    border-color: #7fc07d;
}

.mobile-nav-item.mobile-nav-contacts:hover {
    background: linear-gradient(135deg, #7dbf76, #67ae61);
    border-color: #5ea55a;
    color: #10260e;
}

.mobile-register-btn {
    background: linear-gradient(135deg, var(--berry-red), var(--warm-orange));
    color: white;
    border: none;
    font-weight: 700;
}

.mobile-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
    background: linear-gradient(135deg, var(--berry-red), var(--warm-orange));
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
}

.modal-basket-illustration {
    width: min(210px, 64vw);
    margin: 0.6rem auto 0.9rem;
}

.modal-basket-illustration .woven-basket {
    width: 160px;
    height: 96px;
    border-radius: 26px 26px 48% 48%;
}

.modal-basket-illustration .woven-basket::before {
    width: 96px;
    height: 96px;
    top: -50px;
    border-width: 6px;
}

.modal-basket-illustration .basket-weave {
    width: 12px;
}

.modal-basket-illustration .weave-1 { left: 14px; }
.modal-basket-illustration .weave-2 { left: 39px; }
.modal-basket-illustration .weave-3 { left: 64px; }
.modal-basket-illustration .weave-4 { left: 89px; }
.modal-basket-illustration .weave-5 { left: 114px; }
.modal-basket-illustration .weave-6 { left: 139px; }

.modal-basket-illustration .basket-fruit {
    width: 22px;
    height: 22px;
}

.modal-basket-illustration .basket-fruit::before {
    top: -6px;
    right: 4px;
    width: 8px;
    height: 6px;
}

.modal-basket-illustration .basket-fruit::after {
    top: -5px;
    left: 10px;
    height: 7px;
}

.modal-basket-illustration .fruit-1 {
    top: 8px;
    left: 62px;
}

.modal-basket-illustration .fruit-2 {
    top: 5px;
    left: 84px;
}

.modal-basket-illustration .fruit-3 {
    top: 16px;
    left: 102px;
}

.modal-basket-illustration .fruit-4 {
    top: 18px;
    left: 74px;
}

.modal-basket-illustration .fruit-7 {
    top: 20px;
    left: 56px;
}

.modal-basket-illustration .fruit-8 {
    top: 25px;
    left: 92px;
}

.modal-basket-illustration .fruit-9 {
    top: 29px;
    left: 66px;
}

.modal-basket-illustration .fruit-10 {
    top: 30px;
    left: 84px;
}

.modal-basket-illustration .fruit-11 {
    top: 33px;
    left: 54px;
}

.modal-basket-illustration .fruit-12 {
    top: 37px;
    left: 98px;
}

.modal-basket-illustration .fruit-13 {
    top: 46px;
    left: 62px;
}

.modal-basket-illustration .fruit-14 {
    top: 47px;
    left: 80px;
}

.modal-basket-illustration .fruit-15 {
    top: 51px;
    left: 46px;
}

.modal-basket-illustration .fruit-16 {
    top: 52px;
    left: 96px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #888;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--berry-red);
}

.modal-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Small button for nav */
.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.nav .btn-small {
    background: linear-gradient(135deg, var(--berry-red), var(--warm-orange));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.nav .btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
    animation: blink 0.6s ease-in-out infinite;
}

/* Contacts Page */
.contacts-hero {
    min-height: 50vh;
}

.contacts-section {
    background: linear-gradient(180deg, #c8e6c9 0%, white 30%);
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
    padding-top: 80px;
}

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8fdf4, #e8f5e9);
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--forest-green);
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--berry-red);
}

.contact-details p {
    color: var(--dark-text);
    opacity: 0.9;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}
