.landing-page {
    & {
        --cream: #f6f1df;
        --cream-2: #fffaf0;
        --dark: #102015;
        --text: #1f2a22;
        --muted: #687267;
        --green: #0b7442;
        --green-2: #0f8d53;
        --green-3: #12bb6c;
        --deep-green: #063820;
        --mint: #e8f6ee;
        --gold: #f3b43b;
        --orange: #ff9f1c;
        --red: #cf3030;
        --white: #ffffff;
        --line: rgba(19, 43, 28, 0.12);
        --glass: rgba(255, 255, 255, 0.76);
        --shadow-soft: 0 18px 55px rgba(9, 45, 27, 0.14);
        --shadow-card: 0 28px 80px rgba(7, 43, 26, 0.18);
        --radius-xl: 34px;
        --radius-lg: 26px;
        --radius-md: 18px;
        --font-main: "Manrope", Arial, Helvetica, sans-serif;
        --font-accent: "Unbounded", "Manrope", Arial, Helvetica, sans-serif;
    }

    * {
        box-sizing: border-box;
    }

    & {
        margin: 0;
        min-width: 320px;
        font-family: var(--font-main);
        color: var(--text);
        background:
            radial-gradient(circle at 14% 3%, rgba(243, 180, 59, 0.22), transparent 32%),
            radial-gradient(circle at 94% 8%, rgba(18, 187, 108, 0.16), transparent 30%),
            var(--cream);
        margin-top: -96px;
        position: relative;
        z-index: 1;
    }

    &.no-scroll {
        overflow: hidden;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    img {
        display: block;
        max-width: 100%;
    }

    button,
    input,
    textarea {
        font-family: inherit;
    }

    button {
        cursor: pointer;
    }

    .container {
        width: 100% !important;
        max-width: 1180px !important;
        margin: 0 auto !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .btn {
        min-height: 50px;
        padding: 14px 22px;
        border: 0;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: -0.01em;
        transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
    }

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

    .btn-primary {
        color: var(--white);
        background: linear-gradient(135deg, var(--green), var(--green-3));
        box-shadow: 0 18px 35px rgba(14, 144, 80, 0.26);
    }

    .btn-light {
        color: var(--deep-green);
        background: var(--white);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.09);
    }

    .btn-outline {
        color: var(--deep-green);
        background: rgba(255, 255, 255, 0.55);
        border: 1px solid rgba(11, 116, 66, 0.24);
    }

    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--green);
        font-size: 12px;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .section-label::before {
        content: "";
        width: 34px;
        height: 2px;
        border-radius: 999px;
        background: var(--gold);
    }

    .section-head {
        max-width: 740px;
        margin-bottom: 34px;
    }

    .section-head.centered {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-head.centered .section-label {
        justify-content: center;
    }

    .section-head h2 {
        margin: 14px 0 14px;
        font-family: var(--font-accent);
        font-size: clamp(32px, 4.5vw, 58px);
        font-weight: 800;
        line-height: 0.98;
        letter-spacing: -0.055em;
    }

    .section-head p {
        margin: 0;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.7;
    }

    /* Header */

    .site-header {
        position: fixed;
        top: 18px;
        left: 0;
        right: 0;
        z-index: 70;
        transition: transform 0.28s ease;
    }

    .site-header.is-hidden {
        transform: translateY(-120%);
    }

    .header-inner {
        width: min(1160px, calc(100% - 38px));
        min-height: 66px;
        margin: 0 auto;
        padding: 8px 10px 8px 22px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 18px;
        border: 1px solid rgba(255, 255, 255, 0.58);
        border-radius: 999px;
        background: rgba(247, 253, 249, 0.82);
        backdrop-filter: blur(22px);
        box-shadow: 0 14px 42px rgba(4, 39, 23, 0.13);
    }

    .logo {
        display: inline-flex;
        align-items: center;
        color: var(--deep-green);
        font-family: var(--font-main);
        font-size: 24px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.08em;
        white-space: nowrap;
    }

    .logo span {
        color: var(--orange);
        letter-spacing: -0.06em;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .desktop-nav > a,
    .nav-item > a {
        position: relative;
        display: inline-flex;
        align-items: center;
        min-height: 42px;
        padding: 0 13px;
        border-radius: 999px;
        color: rgba(19, 32, 24, 0.78);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: -0.01em;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .desktop-nav > a:hover,
    .nav-item:hover > a {
        color: var(--deep-green);
        background: rgba(11, 116, 66, 0.08);
    }

    .nav-item {
        position: relative;
    }

    .dropdown {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        min-width: 230px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: 0.22s ease;
    }

    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown a {
        display: block;
        padding: 11px 13px;
        border-radius: 14px;
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
    }

    .dropdown a:hover {
        color: var(--deep-green);
        background: rgba(11, 116, 66, 0.08);
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .lang {
        position: relative;
    }

    .lang-current {
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 50%;
        background: var(--white);
        color: var(--deep-green);
        font-size: 13px;
        font-weight: 800;
        box-shadow: 0 10px 28px rgba(4, 39, 23, 0.08);
    }

    .lang-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: 90px;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: var(--white);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: 0.22s ease;
    }

    .lang:hover .lang-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .lang-menu a {
        display: block;
        padding: 8px 10px;
        border-radius: 10px;
        color: var(--deep-green);
        font-size: 13px;
        font-weight: 800;
    }

    .lang-menu a:hover {
        background: rgba(11, 116, 66, 0.08);
    }

    .menu-toggle {
        position: relative;
        display: none;
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 50%;
        background: var(--deep-green);
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        margin: 4px auto;
        border-radius: 999px;
        background: var(--white);
        transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        top: 96px;
        left: 19px;
        right: 19px;
        z-index: 69;
        display: none;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-soft);
    }

    .mobile-menu.is-open {
        display: grid;
        gap: 8px;
    }

    .mobile-menu a,
    .mobile-request {
        min-height: 48px;
        padding: 13px 15px;
        border: 0;
        border-radius: 16px;
        background: rgba(11, 116, 66, 0.07);
        color: var(--deep-green);
        font-size: 14px;
        font-weight: 800;
        text-align: left;
    }

    /* Hero */

    .hero {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
        padding: 126px 0 72px;
        color: var(--white);
        background:
            radial-gradient(circle at 72% 41%, rgba(244, 190, 62, 0.82), transparent 22%),
            radial-gradient(circle at 88% 15%, rgba(41, 207, 129, 0.24), transparent 25%),
            linear-gradient(124deg, #0b5b38 0%, #14774d 46%, #127557 100%);
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(5, 43, 25, 0.42), transparent 54%),
            radial-gradient(circle at 20% 78%, rgba(255, 255, 255, 0.06), transparent 32%);
        pointer-events: none;
    }

    .hero::after {
        content: "";
        position: absolute;
        left: -10%;
        right: -10%;
        bottom: -190px;
        height: 300px;
        border-radius: 50% 50% 0 0;
        background: var(--cream);
    }

    .hero-decor {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.14);
        pointer-events: none;
    }

    .hero-decor.one {
        width: 560px;
        height: 560px;
        top: 100px;
        right: -160px;
    }

    .hero-decor.two {
        width: 320px;
        height: 320px;
        left: -120px;
        bottom: 80px;
    }

    .hero-inner {
        position: relative;
        z-index: 2;
        width: min(1160px, calc(100% - 38px));
        min-height: calc(100vh - 198px);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
        align-items: center;
        gap: 34px;
    }

    .hero-content {
        padding-top: 22px;
    }

    .hero-kicker {
        display: inline-flex;
        align-items: center;
        min-height: 36px;
        padding: 0 15px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.11);
        color: rgba(255, 255, 255, 0.92);
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.17em;
    }

    .hero h1 {
        max-width: 650px;
        margin: 22px 0 18px;
        font-family: var(--font-accent);
        font-size: clamp(48px, 7.6vw, 96px);
        font-weight: 800;
        line-height: 0.86;
        letter-spacing: -0.08em;
        text-transform: uppercase;
    }

    .hero h1 span {
        display: block;
        margin-top: 18px;
        font-family: var(--font-main);
        color: rgba(255, 255, 255, 0.78);
        font-size: clamp(24px, 3vw, 39px);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.055em;
        text-transform: none;
    }

    .hero p {
        max-width: 560px;
        margin: 0;
        color: rgba(255, 255, 255, 0.80);
        font-size: 17px;
        line-height: 1.75;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 13px;
        margin-top: 30px;
    }

    .hero-mini-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        max-width: 590px;
        margin-top: 36px;
    }

    .hero-mini-stats div {
        min-height: 78px;
        padding: 16px 17px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.10);
        backdrop-filter: blur(10px);
    }

    .hero-mini-stats strong {
        display: block;
        margin-bottom: 4px;
        color: var(--white);
        font-size: 22px;
        font-weight: 800;
        line-height: 1;
    }

    .hero-mini-stats span {
        color: rgba(255, 255, 255, 0.67);
        font-size: 12px;
        font-weight: 700;
    }

    .hero-showcase {
        position: relative;
        min-height: 620px;
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr) 54px;
        align-items: center;
        gap: 14px;
    }

    .hero-product-card {
        position: relative;
        min-height: 620px;
        display: grid;
        place-items: center;
        isolation: isolate;
    }

    .hero-product-glow {
        position: absolute;
        width: min(390px, 64vw);
        height: min(390px, 64vw);
        border-radius: 50%;
        background:
            radial-gradient(circle, rgba(247, 192, 61, 0.92), transparent 62%),
            radial-gradient(circle, rgba(255, 255, 255, 0.36), transparent 43%);
        filter: blur(3px);
        z-index: -2;
    }

    .hero-can-fallback {
        position: absolute;
        width: 160px;
        height: 440px;
        border-radius: 44px 44px 34px 34px;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 24%, rgba(0, 0, 0, 0.08) 72%, rgba(255, 255, 255, 0.16)),
            linear-gradient(180deg, #f5f9ef, #d5efe2);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.45),
            0 36px 42px rgba(0, 0, 0, 0.24);
        transform: rotate(-4deg);
        opacity: 0;
        z-index: -1;
    }

    .hero-product-card.is-image-missing .hero-can-fallback {
        opacity: 1;
    }

    .hero-can-fallback::before {
        content: "";
        position: absolute;
        left: 24px;
        right: 24px;
        top: -18px;
        height: 34px;
        border-radius: 50%;
        background: #f7fbf7;
        box-shadow: inset 0 0 0 8px rgba(11, 116, 66, 0.14);
    }

    .hero-can-fallback::after {
        content: attr(data-label);
        position: absolute;
        left: 50%;
        top: 52%;
        width: 128px;
        transform: translate(-50%, -50%) rotate(90deg);
        color: var(--deep-green);
        font-family: var(--font-accent);
        font-size: 24px;
        font-weight: 800;
        text-align: center;
        letter-spacing: -0.06em;
    }

    .hero-product-img {
        position: relative;
        z-index: 2;
        max-height: 585px;
        width: auto;
        object-fit: contain;
        background: transparent;
        filter: drop-shadow(0 34px 35px rgba(0, 0, 0, 0.32));
        transform: rotate(-2deg);
        transition: opacity 0.22s ease, transform 0.22s ease;
        animation: floatProduct 5.2s ease-in-out infinite;
    }

    .hero-product-img.is-hidden {
        display: none;
    }

    .hero-product-label {
        position: absolute;
        right: 20px;
        bottom: 68px;
        z-index: 4;
        min-width: 220px;
        padding: 17px 19px;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.16);
        backdrop-filter: blur(18px);
    }

    .hero-product-label span {
        display: block;
        margin-bottom: 6px;
        color: rgba(255, 255, 255, 0.70);
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.14em;
    }

    .hero-product-label strong {
        display: block;
        color: var(--white);
        font-size: 22px;
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .hero-arrow {
        position: relative;
        z-index: 5;
        width: 54px;
        height: 54px;
        border: 1px solid rgba(255, 255, 255, 0.23);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        color: var(--white);
        font-size: 34px;
        line-height: 1;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .hero-arrow:hover {
        background: rgba(255, 255, 255, 0.24);
        transform: scale(1.04);
    }

    .hero-slider-dots {
        position: absolute;
        left: 50%;
        bottom: 18px;
        z-index: 7;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 8px 11px;
        border-radius: 999px;
        background: rgba(6, 56, 32, 0.22);
        backdrop-filter: blur(10px);
        transform: translateX(-50%);
    }

    .hero-slider-dots button {
        width: 8px;
        height: 8px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.42);
        transition: width 0.22s ease, background 0.22s ease;
    }

    .hero-slider-dots button.active {
        width: 28px;
        background: var(--gold);
    }

    /* CEO */

    .ceo-section {
        position: relative;
        z-index: 3;
        padding: 92px 0;
    }

    .ceo-grid {
        display: grid;
        grid-template-columns: 0.78fr 1.22fr;
        gap: 42px;
        align-items: center;
    }

    .ceo-photo {
        min-height: 430px;
        padding: 16px;
        border-radius: var(--radius-xl);
        background:
            radial-gradient(circle at 10% 0%, rgba(243, 180, 59, 0.28), transparent 34%),
            linear-gradient(135deg, rgba(11, 116, 66, 0.16), rgba(255, 255, 255, 0.86));
        box-shadow: var(--shadow-soft);
    }

    .ceo-photo-placeholder {
        width: 100%;
        min-height: 398px;
        height: 100%;
        border-radius: 26px;
        display: grid;
        place-items: center;
        color: rgba(255, 255, 255, 0.90);
        background:
            radial-gradient(circle at 50% 31%, rgba(255, 255, 255, 0.30), transparent 18%),
            linear-gradient(150deg, #0f8d53, #062f1b);
    }

    .ceo-photo-placeholder span {
        font-family: var(--font-accent);
        font-size: 82px;
        font-weight: 800;
        letter-spacing: -0.08em;
    }

    .ceo-text h2 {
        margin: 13px 0 18px;
        max-width: 760px;
        font-family: var(--font-accent);
        font-size: clamp(34px, 5vw, 64px);
        line-height: 1;
        letter-spacing: -0.06em;
    }

    .ceo-text p {
        margin: 0 0 13px;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.82;
    }

    .signature {
        margin-top: 24px;
        padding-top: 22px;
        border-top: 1px solid var(--line);
    }

    .signature strong {
        display: block;
        font-size: 20px;
        font-weight: 800;
    }

    .signature span {
        display: block;
        margin-top: 5px;
        color: var(--green);
        font-weight: 800;
    }

    /* World */

    .world-section {
        padding: 96px 0;
        background: var(--cream-2);
    }

    .map-card {
        position: relative;
        min-height: 430px;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background:
            radial-gradient(circle at 50% 50%, rgba(18, 187, 108, 0.28), transparent 34%),
            linear-gradient(135deg, #10351f, #071b11);
        box-shadow: var(--shadow-card);
    }

    .map-grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
        background-size: 52px 52px;
        mask-image: radial-gradient(circle, black, transparent 78%);
    }

    .map-card::before {
        content: "";
        position: absolute;
        inset: 70px 90px;
        border: 2px dashed rgba(255, 255, 255, 0.16);
        border-radius: 55% 45% 48% 52%;
    }

    .map-point {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--white);
        font-weight: 800;
    }

    .map-point span {
        width: 18px;
        height: 18px;
        border: 4px solid var(--white);
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 0 10px rgba(243, 180, 59, 0.22);
    }

    .point-kg { left: 52%; top: 55%; }
    .point-kz { left: 47%; top: 42%; }
    .point-uz { left: 40%; top: 58%; }
    .point-ru { left: 26%; top: 30%; }
    .point-cn { left: 68%; top: 56%; }

    .brand-marquee {
        overflow: hidden;
        margin-top: 24px;
        border-radius: 999px;
        background: var(--white);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    }

    .brand-track {
        display: flex;
        width: max-content;
        gap: 42px;
        padding: 20px 32px;
        animation: marquee 23s linear infinite;
    }

    .brand-track span {
        color: var(--deep-green);
        font-family: var(--font-accent);
        font-size: 18px;
        font-weight: 800;
        letter-spacing: -0.05em;
    }

    /* Products */

    .products-section {
        padding: 98px 0;
    }

    .product-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 26px;
    }

    .product-tab {
        min-height: 50px;
        padding: 0 19px;
        border: 1px solid rgba(11, 116, 66, 0.14);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        color: var(--deep-green);
        font-size: 14px;
        font-weight: 800;
        transition: 0.22s ease;
    }

    .product-tab small {
        color: var(--red);
        font-weight: 800;
    }

    .product-tab.active,
    .product-tab:hover {
        color: var(--white);
        background: var(--green);
        border-color: var(--green);
        box-shadow: 0 16px 30px rgba(11, 116, 66, 0.18);
    }

    .product-tab.active small,
    .product-tab:hover small {
        color: var(--white);
    }

    .product-panel {
        display: none;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 24px;
        align-items: stretch;
        padding: 26px;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.86);
        box-shadow: var(--shadow-soft);
    }

    .product-panel.active {
        display: grid;
    }

    .product-info {
        min-height: 510px;
        padding: 34px;
        border-radius: 28px;
        background:
            radial-gradient(circle at 100% 0%, rgba(243, 180, 59, 0.24), transparent 35%),
            linear-gradient(160deg, rgba(11, 116, 66, 0.11), rgba(11, 116, 66, 0.03));
    }

    .product-type {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(11, 116, 66, 0.10);
        color: var(--green);
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.14em;
    }

    .product-info h3 {
        margin: 20px 0 16px;
        font-family: var(--font-accent);
        font-size: clamp(32px, 4vw, 58px);
        font-weight: 800;
        line-height: 0.98;
        letter-spacing: -0.06em;
    }

    .product-info > p {
        margin: 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.75;
    }

    .info-columns {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 32px;
    }

    .info-columns div {
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.70);
    }

    .info-columns h4 {
        margin: 0 0 9px;
        color: var(--deep-green);
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.10em;
    }

    .info-columns p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.62;
    }

    .product-gallery {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .drink-card {
        position: relative;
        min-height: 510px;
        overflow: hidden;
        padding: 26px;
        border-radius: 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        text-align: center;
        background:
            radial-gradient(circle at 50% 24%, rgba(243, 180, 59, 0.28), transparent 34%),
            linear-gradient(180deg, #eefdf5, #ffffff);
        transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .drink-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 26px 50px rgba(11, 116, 66, 0.16);
    }

    .drink-card::before {
        content: "";
        position: absolute;
        top: 68px;
        width: 112px;
        height: 300px;
        border-radius: 34px 34px 26px 26px;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 26%, rgba(0, 0, 0, 0.08) 72%, rgba(255, 255, 255, 0.18)),
            linear-gradient(180deg, #f8fff9, #dff4e7);
        box-shadow: 0 26px 34px rgba(0, 0, 0, 0.18);
        opacity: 0;
        transform: rotate(-4deg);
    }

    .drink-card.is-image-missing::before {
        opacity: 1;
    }

    .drink-card.is-image-missing::after {
        content: attr(data-fallback);
        position: absolute;
        top: 198px;
        width: 92px;
        color: var(--deep-green);
        font-family: var(--font-accent);
        font-size: 17px;
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.06em;
        text-transform: uppercase;
        transform: rotate(90deg);
    }

    .drink-card img {
        position: absolute;
        top: 24px;
        z-index: 2;
        max-height: 376px;
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 28px 26px rgba(0, 0, 0, 0.20));
    }

    .drink-card img.is-hidden {
        display: none;
    }

    .drink-card h4 {
        position: relative;
        z-index: 3;
        margin: 0 0 7px;
        font-family: var(--font-accent);
        font-size: 25px;
        line-height: 1.05;
        letter-spacing: -0.06em;
    }

    .drink-card p {
        position: relative;
        z-index: 3;
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        font-weight: 800;
    }

    .drink-card.featured {
        background:
            radial-gradient(circle at 50% 24%, rgba(11, 197, 171, 0.32), transparent 38%),
            linear-gradient(180deg, #e9fffb, #ffffff);
    }

    .drink-card.restricted {
        background:
            radial-gradient(circle at 50% 24%, rgba(243, 180, 59, 0.28), transparent 36%),
            linear-gradient(180deg, #fff6db, #ffffff);
    }

    .age-badge {
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 4;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--red);
        color: var(--white);
        font-size: 12px;
        font-weight: 800;
    }

    .placeholder-gallery .drink-card {
        min-height: 330px;
    }

    .text-card {
        justify-content: center;
        background:
            radial-gradient(circle at 100% 0%, rgba(243, 180, 59, 0.28), transparent 36%),
            linear-gradient(160deg, #ffffff, #edf8f0);
    }

    .text-card h4 {
        font-size: 36px;
    }

    .plant-card {
        background:
            radial-gradient(circle at 0% 0%, rgba(18, 187, 108, 0.16), transparent 40%),
            linear-gradient(160deg, #ffffff, #f5f1df);
    }

    .locked-note {
        margin-top: 24px;
        padding: 18px;
        border: 1px solid rgba(207, 48, 48, 0.18);
        border-radius: 20px;
        background: rgba(207, 48, 48, 0.06);
        color: #7c2525;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.55;
    }

    /* Production */

    .production-section {
        padding: 100px 0;
        color: var(--white);
        background: linear-gradient(180deg, #0b2f1b, #06140c);
    }

    .production-section .section-head p {
        color: rgba(255, 255, 255, 0.68);
    }

    .production-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .production-card {
        position: relative;
        min-height: 380px;
        overflow: hidden;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-xl);
        background:
            radial-gradient(circle at 100% 0%, rgba(243, 180, 59, 0.24), transparent 36%),
            rgba(255, 255, 255, 0.08);
        transition: transform 0.24s ease, background 0.24s ease;
    }

    .production-card:hover {
        transform: translateY(-7px);
        background:
            radial-gradient(circle at 100% 0%, rgba(243, 180, 59, 0.30), transparent 36%),
            rgba(255, 255, 255, 0.12);
    }

    .production-number {
        color: var(--gold);
        font-family: var(--font-accent);
        font-size: 68px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.08em;
    }

    .production-card h3 {
        margin: 34px 0 13px;
        font-family: var(--font-accent);
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -0.055em;
    }

    .production-card p {
        margin: 0;
        color: rgba(255, 255, 255, 0.70);
        line-height: 1.72;
    }

    .production-card a {
        position: absolute;
        left: 30px;
        bottom: 28px;
        color: var(--gold);
        font-weight: 800;
    }

    /* Awards */

    .awards-section {
        padding: 98px 0;
    }

    .awards-slider {
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr) 54px;
        gap: 15px;
        align-items: center;
    }

    .award-arrow {
        width: 54px;
        height: 54px;
        border: 0;
        border-radius: 50%;
        background: var(--green);
        color: var(--white);
        font-size: 34px;
        line-height: 1;
        transition: transform 0.2s ease, background 0.2s ease;
    }

    .award-arrow:hover {
        transform: scale(1.04);
        background: var(--green-2);
    }

    .awards-track {
        display: flex;
        gap: 18px;
        overflow: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding: 4px;
    }

    .awards-track::-webkit-scrollbar {
        display: none;
    }

    .award-card {
        flex: 0 0 280px;
        min-height: 220px;
        padding: 26px;
        border-radius: 28px;
        background:
            radial-gradient(circle at 100% 0%, rgba(243, 180, 59, 0.28), transparent 36%),
            var(--white);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
    }

    .award-card span {
        color: var(--green);
        font-family: var(--font-accent);
        font-size: 38px;
        font-weight: 800;
        letter-spacing: -0.08em;
    }

    .award-card h3 {
        margin: 26px 0 8px;
        font-family: var(--font-accent);
        font-size: 24px;
        line-height: 1.08;
        letter-spacing: -0.055em;
    }

    .award-card p {
        margin: 0;
        color: var(--muted);
        font-weight: 800;
    }

    /* CTA */

    .cta-section {
        padding: 98px 0;
        background: var(--cream-2);
    }

    .cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .cta-card {
        min-height: 350px;
        overflow: hidden;
        padding: 38px;
        border-radius: var(--radius-xl);
        color: var(--white);
    }

    .cta-card span {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0 13px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.16);
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.14em;
    }

    .cta-card h2 {
        margin: 26px 0 14px;
        font-family: var(--font-accent);
        font-size: clamp(30px, 4vw, 50px);
        line-height: 1;
        letter-spacing: -0.06em;
    }

    .cta-card p {
        margin: 0;
        color: rgba(255, 255, 255, 0.76);
        line-height: 1.72;
    }

    .cta-card a,
    .cta-card button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        margin-top: 20px;
        padding: 13px 19px;
        border: 0;
        border-radius: 999px;
        background: var(--white);
        color: var(--deep-green);
        font-size: 14px;
        font-weight: 800;
    }

    .cta-card.career {
        background:
            radial-gradient(circle at 100% 0%, rgba(243, 180, 59, 0.35), transparent 36%),
            linear-gradient(135deg, var(--green), var(--deep-green));
    }

    .cta-card.partner {
        background:
            radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.22), transparent 36%),
            linear-gradient(135deg, #c82828, #772323);
    }

    /* Footer */

    .site-footer {
        padding: 70px 0 28px;
        background: #06140c;
        color: var(--white);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 32px;
    }

    .footer-logo {
        color: var(--white);
    }

    .footer-brand p {
        max-width: 340px;
        margin: 18px 0 0;
        color: rgba(255, 255, 255, 0.64);
        line-height: 1.72;
    }

    .footer-col h4 {
        margin: 0 0 16px;
        color: var(--gold);
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

    .footer-col a {
        display: block;
        margin-bottom: 11px;
        color: rgba(255, 255, 255, 0.64);
        font-weight: 700;
    }

    .footer-col a:hover {
        color: var(--white);
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        margin-top: 48px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.56);
    }

    .footer-bottom p {
        margin: 0;
    }

    .footer-bottom div {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
    }

    /* Cookie */

    .cookie-banner {
        position: fixed;
        left: 24px;
        right: 24px;
        bottom: 24px;
        z-index: 80;
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        max-width: 980px;
        margin: 0 auto;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.56);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
        backdrop-filter: blur(18px);
    }

    .cookie-banner.is-visible {
        display: flex;
    }

    .cookie-banner p {
        margin: 4px 0 0;
        color: var(--muted);
    }

    .cookie-actions {
        display: flex;
        gap: 10px;
    }

    /* Modals */

    .age-overlay,
    .request-overlay {
        position: fixed;
        inset: 0;
        z-index: 120;
        display: none;
        place-items: center;
        padding: 20px;
        background: rgba(3, 18, 10, 0.76);
        backdrop-filter: blur(14px);
    }

    .age-overlay.is-visible,
    .request-overlay.is-visible {
        display: grid;
    }

    .age-modal,
    .request-modal {
        width: min(520px, 100%);
        padding: 32px;
        border-radius: 30px;
        background: var(--white);
        box-shadow: var(--shadow-card);
    }

    .age-logo {
        margin-bottom: 20px;
        color: var(--deep-green);
        font-size: 28px;
        font-weight: 800;
        letter-spacing: -0.08em;
    }

    .age-logo span {
        color: var(--orange);
    }

    .age-modal h2,
    .request-modal h2 {
        margin: 0 0 12px;
        font-family: var(--font-accent);
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -0.06em;
    }

    .age-modal p,
    .request-modal p {
        margin: 0;
        color: var(--muted);
        line-height: 1.72;
    }

    .age-actions {
        display: flex;
        gap: 12px;
        margin-top: 24px;
    }

    .request-modal {
        position: relative;
    }

    .request-close {
        position: absolute;
        top: 17px;
        right: 17px;
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 50%;
        background: rgba(11, 116, 66, 0.08);
        color: var(--deep-green);
        font-size: 27px;
        line-height: 1;
    }

    .request-form {
        display: grid;
        gap: 14px;
        margin-top: 22px;
    }

    .request-form label {
        display: grid;
        gap: 8px;
        color: var(--deep-green);
        font-weight: 800;
    }

    .request-form input,
    .request-form textarea {
        width: 100%;
        padding: 15px 16px;
        border: 1px solid var(--line);
        border-radius: 16px;
        outline: none;
        background: #fbfbf7;
        color: var(--text);
    }

    .request-form textarea {
        min-height: 110px;
        resize: vertical;
    }

    .request-form input:focus,
    .request-form textarea:focus {
        border-color: rgba(11, 116, 66, 0.5);
        box-shadow: 0 0 0 4px rgba(11, 116, 66, 0.08);
    }

    .form-success {
        display: none;
        margin-top: 18px;
        padding: 16px;
        border-radius: 16px;
        background: rgba(18, 187, 108, 0.10);
        color: var(--deep-green);
        font-weight: 800;
    }

    .form-success.is-visible {
        display: block;
    }

    .reveal-item {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.68s ease, transform 0.68s ease;
    }

    .reveal-item.is-revealed {
        opacity: 1;
        transform: translateY(0);
    }

    /* Adaptive */

    @media (max-width: 1080px) {
        .header-inner {
            grid-template-columns: auto auto;
            justify-content: space-between;
        }

        .desktop-nav {
            display: none;
        }

        .menu-toggle {
            display: block;
        }

        .hero-inner,
        .ceo-grid,
        .product-panel,
        .footer-grid {
            grid-template-columns: 1fr;
        }

        .hero {
            padding-top: 118px;
        }

        .hero-inner {
            min-height: auto;
        }

        .hero-showcase {
            min-height: 560px;
        }

        .hero-product-card {
            min-height: 560px;
        }

        .hero-product-img {
            max-height: 520px;
        }

        .production-grid,
        .cta-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 760px) {
        .container,
        .hero-inner,
        .header-inner {
            width: min(100% - 28px, 1180px);
        }

        .site-header {
            top: 12px;
        }

        .header-inner {
            min-height: 60px;
            padding: 7px 8px 7px 17px;
        }

        .logo {
            font-size: 21px;
        }

        .lang-current,
        .menu-toggle {
            width: 42px;
            height: 42px;
        }

        .mobile-menu {
            top: 82px;
            left: 14px;
            right: 14px;
        }

        .hero {
            min-height: auto;
            padding: 106px 0 82px;
        }

        .hero h1 {
            font-size: clamp(42px, 15vw, 70px);
        }

        .hero-mini-stats,
        .info-columns,
        .product-gallery,
        .awards-slider {
            grid-template-columns: 1fr;
        }

        .hero-showcase {
            grid-template-columns: 46px minmax(0, 1fr) 46px;
            min-height: 430px;
            gap: 8px;
        }

        .hero-product-card {
            min-height: 430px;
        }

        .hero-product-img {
            max-height: 388px;
        }

        .hero-can-fallback {
            height: 330px;
            width: 126px;
        }

        .hero-product-label {
            right: auto;
            left: 50%;
            bottom: 54px;
            width: min(282px, 92%);
            transform: translateX(-50%);
        }

        .hero-slider-dots {
            bottom: 7px;
        }

        .hero-arrow {
            width: 46px;
            height: 46px;
            font-size: 30px;
        }

        .ceo-section,
        .world-section,
        .products-section,
        .production-section,
        .awards-section,
        .cta-section {
            padding: 70px 0;
        }

        .product-panel,
        .product-info {
            padding: 18px;
        }

        .product-info {
            min-height: auto;
        }

        .drink-card {
            min-height: 450px;
        }

        .drink-card img {
            max-height: 325px;
        }

        .map-card {
            min-height: 360px;
        }

        .map-point b {
            display: none;
        }

        .footer-bottom,
        .cookie-banner {
            flex-direction: column;
        }

        .cookie-banner {
            align-items: stretch;
        }

        .cookie-actions,
        .age-actions {
            flex-direction: column;
        }
    }

/* ===== Шапка: каталог / корзина / профиль (Абдыш-Ата) ===== */
.catalog-btn {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--green), var(--green-3));
    box-shadow: 0 14px 28px rgba(14, 144, 80, 0.24);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-btn:hover {
    transform: translateY(-2px);
}

.login-btn {
    background: var(--white);
    color: var(--deep-green);
    box-shadow: 0 10px 28px rgba(4, 39, 23, 0.10);
}

.icon-btn {
    position: relative;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--deep-green);
    box-shadow: 0 10px 28px rgba(4, 39, 23, 0.08);
    transition: transform 0.2s ease, color 0.2s ease;
}

.icon-btn:hover {
    transform: translateY(-2px);
    color: var(--green);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--orange);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.user-menu {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 210px;
    padding: 10px;
    display: grid;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.22s ease;
    z-index: 80;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--deep-green);
    font-size: 13px;
    font-weight: 700;
}

.user-dropdown a:hover {
    background: rgba(11, 116, 66, 0.08);
}

.user-dropdown hr {
    margin: 6px 4px;
    border: 0;
    border-top: 1px solid var(--line);
}

.user-hello {
    display: block;
    padding: 6px 12px 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 1080px) {
    .catalog-btn,
    .login-btn,
    .user-menu {
        display: none;
    }
}
}

/* ===== Root-level rules (must live outside any selector) ===== */

html:has(.landing-page) {
    scroll-behavior: smooth;
}

@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-16px) rotate(2deg);
    }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

body {
    overflow-x: hidden;
}
