/* =========================================================
   САМОЛЁТ — MAIN DESIGN
========================================================= */


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    background: #10100f;
    color: #f7f3eb;

    line-height: 1.6;

    overflow-x: hidden;
}

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

button {
    font: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(16, 16, 15, 0.88);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    min-height: 76px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 19px;

    font-weight: 800;

    letter-spacing: 0.04em;
}

.logo-plane {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffb52e,
            #f59e0b 45%,
            #d97706 75%,
            #8a4b05
        );

    color: #fff;

    font-size: 18px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

    box-shadow:
        0 8px 25px rgba(245, 158, 11, 0.22),
        0 0 25px rgba(245, 158, 11, 0.10),
        inset 0 1px 6px rgba(255, 255, 255, 0.18);
}

.logo-text {
    white-space: nowrap;

    font-weight: 850;

    letter-spacing: 0.06em;
}

.logo {
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

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

/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;

    align-items: center;

    gap: 32px;
}

.navigation a {
    color: #aaa69e;

    font-size: 14px;

    transition:
        color 0.25s ease;
}

.navigation a {
    color: #aaa69e;

    font-size: 14px;

    display: inline-block;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.navigation a:hover {
    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   CART
========================================================= */

.cart-button {
    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(255, 255, 255, 0.05);

    color: #fff;

    border-radius: 12px;

    padding: 10px 14px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.cart-button:hover {
    background: rgba(255, 255, 255, 0.09);

    border-color: rgba(255, 255, 255, 0.2);

    transform:
        translateY(-2px)
        scale(1.02);
}

.cart-count {
    min-width: 23px;
    height: 23px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f59e0b;

    color: #111;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -300px;
    right: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245, 158, 11, 0.13),
            transparent 70%
        );

    pointer-events: none;
}

.hero-inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.85fr);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-label,
.section-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #f59e0b;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.15em;
}

.hero-content h1 {
    margin-top: 20px;

    max-width: 700px;

    font-size:
        clamp(52px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 850;
}

.hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #f59e0b,
            #ef4444
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-description {
    max-width: 560px;

    margin-top: 28px;

    color: #aaa69e;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 34px;
}

.button {
    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    font-size: 14px;

    font-weight: 750;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.button-primary {
    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #ef4444
        );

    color: #fff;

    box-shadow:
        0 14px 35px rgba(245, 158, 11, 0.2);
}

.button-primary:hover {
    transform:
        translateY(-2px)
        scale(1.02);

    box-shadow:
        0 18px 42px rgba(245, 158, 11, 0.28);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.13);

    background: rgba(255, 255, 255, 0.04);

    color: #eee;
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.08);

    transform:
        translateY(-2px)
        scale(1.02);
}


/* =========================================================
   HERO DETAILS
========================================================= */

.hero-details {
    display: flex;

    align-items: center;

    gap: 28px;

    margin-top: 46px;
}

.hero-detail {
    display: flex;

    align-items: center;

    gap: 11px;
}

.hero-detail-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.06);

    color: #f59e0b;

    padding: 0;
    margin: 0;
}

.hero-detail-icon svg {
    width: 19px;
    height: 19px;

    display: block;

    margin: 0;
    padding: 0;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-detail strong {
    display: block;
}

.hero-detail strong {
    font-size: 13px;
}

.hero-detail div span {
    display: block;

    margin-top: 2px;

    color: #77736d;

    font-size: 12px;
}

.hero-divider {
    width: 1px;
    height: 35px;

    background: rgba(255, 255, 255, 0.1);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245, 158, 11, 0.28),
            rgba(239, 68, 68, 0.08),
            transparent 70%
        );

    filter: blur(18px);

    animation:
        heroGlow 5s ease-in-out infinite;
}

@keyframes heroGlow {

    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


/* =========================================================
   HERO MAIN CARD — PREMIUM
========================================================= */

.hero-main-card {
    position: relative;
    z-index: 2;

    width: 350px;
    height: 420px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 38px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(245, 158, 11, 0.18),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #29261f,
            #121210 75%
        );

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(245, 158, 11, 0.08);

    transform: rotate(0deg);

    overflow: hidden;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.hero-main-card:hover {
    transform:
        translateY(-8px)
        scale(1.015);

    box-shadow:
        0 50px 110px rgba(0, 0, 0, 0.6),
        0 0 90px rgba(245, 158, 11, 0.12);
}


/* Световая рамка */

.hero-main-card::before {
    content: "";

    position: absolute;

    inset: 1px;

    border-radius: 37px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08),
            transparent 35%,
            rgba(245, 158, 11, 0.08)
        );

    pointer-events: none;
}


/* Большое свечение */

.hero-main-card::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: 55px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245, 158, 11, 0.25),
            rgba(239, 68, 68, 0.08),
            transparent 70%
        );

    filter: blur(10px);

    animation:
        heroFire 4s ease-in-out infinite;

    pointer-events: none;
}


/* Самолёт */

.hero-plane {
    position: relative;
    z-index: 2;

    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffb52e,
            #f59e0b 45%,
            #d97706 75%,
            #8a4b05
        );

    color: #fff;

    font-size: 72px;

    transform: rotate(0deg);

    box-shadow:
        0 25px 60px rgba(245, 158, 11, 0.28),
        inset 0 2px 15px rgba(255, 255, 255, 0.2);

    animation:
        planeFloat 4s ease-in-out infinite;
}


/* Название */

.hero-card-title {
    position: relative;
    z-index: 2;

    margin-top: 28px;

    font-size: 30px;

    font-weight: 900;

    letter-spacing: 0.12em;

    text-shadow:
        0 6px 20px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(245, 158, 11, 0.12);
}


/* Подзаголовок */

.hero-card-subtitle {
    position: relative;
    z-index: 2;

    margin-top: 12px;

    color: #a39d92;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.18em;
}


/* =========================================================
   HERO ANIMATIONS
========================================================= */

@keyframes heroFire {

    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}


@keyframes planeFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-10px)
            rotate(0deg);
    }
}


/* =========================================================
   FLOATING CARDS — PREMIUM
========================================================= */

.floating-card {
    position: absolute;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 13px;

    min-width: 205px;

    padding: 14px 16px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(39, 37, 32, 0.94),
            rgba(20, 19, 17, 0.94)
        );

    border: 1px solid rgba(255, 255, 255, 0.11);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Иконка */

.floating-card > span {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(245, 158, 11, 0.18),
            rgba(239, 68, 68, 0.08)
        );

    border: 1px solid rgba(245, 158, 11, 0.12);

    font-size: 19px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


/* Текст */

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: #f5f1e8;

    font-size: 12px;

    font-weight: 750;

    line-height: 1.3;
}

.floating-card small {
    margin-top: 4px;

    color: #77736d;

    font-size: 10px;

    line-height: 1.3;
}


/* Верхняя карточка */

.floating-card-top {
    top: 55px;
    right: -15px;

    animation:
        floatingTop 5s ease-in-out infinite;
}


/* Нижняя карточка */

.floating-card-bottom {
    bottom: 55px;
    left: -20px;

    animation:
        floatingBottom 5.5s ease-in-out infinite;
}


/* =========================================================
   FLOATING CARD HOVER
========================================================= */

.floating-card:hover {
    border-color:
        rgba(245, 158, 11, 0.3);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(245, 158, 11, 0.06);
}


/* =========================================================
   FLOATING ANIMATIONS
========================================================= */

@keyframes floatingTop {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(1deg);
    }

    50% {
        transform:
            translateY(-9px)
            translateX(4px)
            rotate(-1deg);
    }
}


@keyframes floatingBottom {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-1deg);
    }

    50% {
        transform:
            translateY(8px)
            translateX(-3px)
            rotate(1deg);
    }
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    border-top: 1px solid rgba(255, 255, 255, 0.06);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    background: #151513;
}

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);
}

.feature {
    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 120px;

    padding: 24px 30px;

    border-right:
        1px solid rgba(255, 255, 255, 0.06);
}

.feature:last-child {
    border-right: none;
}

.feature-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            rgba(245, 158, 11, 0.18),
            rgba(239, 68, 68, 0.08)
        );

    font-size: 20px;
}

.feature h3 {
    font-size: 15px;

    font-weight: 750;

    letter-spacing: -0.01em;
}

.feature p {
    margin-top: 5px;

    color: #858078;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   MENU SECTION
========================================================= */

.menu-section {
    padding: 100px 0;
}

.section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}

.section-heading h2 {
    margin-top: 12px;

    font-size:
        clamp(36px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.section-heading h2 span {
    color: #f59e0b;
}

.section-heading p {
    max-width: 330px;

    color: #77736d;

    font-size: 14px;
}


/* =========================================================
   MENU CATEGORIES
========================================================= */

.menu-categories {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;

    margin-top: 45px;
}

.menu-category {
    min-height: 155px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-radius: 22px;

    background: #181816;

    border: 1px solid rgba(255, 255, 255, 0.07);

    box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.menu-category:hover {
    transform:
        translateY(-7px)
        scale(1.02);

    border-color:
        rgba(245, 158, 11, 0.35);

    background: #1e1d19;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(245, 158, 11, 0.07);
}

.menu-category span {
    font-size: 30px;

    filter:
        drop-shadow(
            0 6px 12px
            rgba(245, 158, 11, 0.18)
        );
}

.menu-category strong {
    font-size: 16px;

    font-weight: 750;

    letter-spacing: -0.01em;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 100px 0;

    background: #151513;
}

.about-inner {
    display: grid;

    grid-template-columns:
        0.9fr 1fr;

    align-items: center;

    gap: 90px;
}

.about-visual {
    min-height: 450px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            rgba(245, 158, 11, 0.16),
            transparent 65%
        ),
        #1b1a17;

    border: 1px solid rgba(255, 255, 255, 0.08);
    
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28);
}

.about-circle {
    width: 230px;
    height: 230px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffb52e,
            #f59e0b 45%,
            #d97706 75%,
            #8a4b05
        );

    color: #fff;

    font-size: 78px;

   box-shadow:
    0 30px 70px rgba(245, 158, 11, 0.22),
    0 0 50px rgba(245, 158, 11, 0.12),
    inset 0 2px 12px rgba(255, 255, 255, 0.18);
}

.about-content h2 {
    margin-top: 15px;

    max-width: 550px;

    font-size:
        clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -0.045em;
}

.about-content h2 span {
    color: #f59e0b;
}

.about-content p {
    max-width: 570px;

    margin-top: 20px;

    color: #a39d92;

    font-size: 16px;

    line-height: 1.8;
}

.about-content .button {
    margin-top: 34px;
}


/* =========================================================
   CONTACTS
========================================================= */

.contacts-section {
    padding: 80px 0;
}

.contacts-card {
    padding: 46px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #1f1e1a,
            #171614
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.3);
}

.contacts-card h2 {
    margin-top: 10px;

    font-size: 38px;

    font-weight: 850;

    letter-spacing: -0.03em;
}

.contacts-card p {
    margin-top: 7px;

    color: #a39d92;

    font-size: 15px;
}

.contacts-card .button {
    min-width: 190px;

    box-shadow:
        0 14px 35px rgba(245, 158, 11, 0.18);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: #0c0c0b;
}

.footer-inner {
    min-height: 110px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer p {
    color: #77736d;

    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .navigation {
        display: none;
    }

    .hero {
        min-height: auto;

        padding: 80px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        min-height: 450px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        border-right: none;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.06);
    }

    .feature:last-child {
        border-bottom: none;
    }

    .menu-categories {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-content {
        text-align: center;
    }

    .about-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .section-heading {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(92%, 500px);
    }

    .header-inner {
        min-height: 68px;
    }

    .logo {
        font-size: 16px;
    }

    .cart-button {
        padding: 9px 11px;
    }

    .cart-button > span:first-child {
        display: none;
    }

    .hero {
        padding: 65px 0;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-details {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 35px;
    }

    .hero-divider {
        display: none;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-main-card {
        width: 260px;
        height: 320px;
    }

    .hero-plane {
        font-size: 65px;
    }

    .hero-card-title {
        font-size: 20px;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .floating-card-top {
        right: -20px;
        top: 45px;
    }

    .floating-card-bottom {
        left: -20px;
        bottom: 9px;
    }

    .menu-section,
    .about-section {
        padding: 80px 0;
    }

    .menu-categories {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 300px;
    }

    .about-circle {
        width: 160px;
        height: 160px;

        font-size: 55px;
    }

    .contacts-card {
        padding: 30px;

        flex-direction: column;

        align-items: flex-start;
    }

    .contacts-card .button {
        width: 100%;
    }

    .footer-inner {
        padding: 25px 0;

        flex-direction: column;

        align-items: flex-start;
    }

}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   MENU CARDS REVEAL DELAY
========================================================= */

.menu-category:nth-child(1) {
    transition-delay: 0.05s;
}

.menu-category:nth-child(2) {
    transition-delay: 0.12s;
}

.menu-category:nth-child(3) {
    transition-delay: 0.19s;
}

.menu-category:nth-child(4) {
    transition-delay: 0.26s;
}

.menu-category:nth-child(5) {
    transition-delay: 0.33s;
}

.menu-category:nth-child(6) {
    transition-delay: 0.40s;
}

.menu-category span {
    transition:
        transform 0.25s ease;
}

.menu-category:hover span {
    transform: scale(1.12) rotate(-4deg);
}

.logo:hover .logo-plane {
    transform: scale(1.08) rotate(-3deg);

    box-shadow:
        0 10px 30px rgba(245, 158, 11, 0.28),
        0 0 30px rgba(245, 158, 11, 0.14),
        inset 0 1px 6px rgba(255, 255, 255, 0.18);
}

.cart-button:hover .cart-count {
    transform: scale(1.08);

    box-shadow:
        0 0 15px rgba(245, 158, 11, 0.35);
}

.product-image {
    width: 100%;
    height: 220px;

    display: block;

    object-fit: cover;
    object-position: center 55%;

    border-radius: 16px;

    background: #222;

    transition:
        transform 0.4s ease;
}

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

.drink-card .product-image {
    aspect-ratio: 9 / 16;
    object-fit: contain;
}

/* =========================================================
   CART MODAL
========================================================= */

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}


.cart-modal {
    width: 100%;
    max-width: 600px;
    max-height: 85vh;

    display: flex;
    flex-direction: column;

    padding: 28px;

    background: #151513;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6);

    transform: translateY(20px) scale(0.97);

    transition: transform 0.25s ease;
}


.cart-overlay.active .cart-modal {
    transform: translateY(0) scale(1);
}


/* HEADER */

.cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 24px;
}


.cart-header h2 {
    margin-top: 6px;
}


.cart-close {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    color: #fff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition: 0.2s ease;
}


.cart-close:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: rotate(90deg);
}


/* ITEMS */

.cart-items {
    display: flex;
    flex-direction: column;

    gap: 12px;

    overflow-y: auto;

    padding-right: 4px;
}


.cart-item {
    display: grid;

    grid-template-columns: 64px 1fr auto auto;

    align-items: center;

    gap: 14px;

    padding: 12px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 16px;
}


.cart-item-image {
    width: 64px;
    height: 64px;

    overflow: hidden;

    border-radius: 12px;

    background: #222;
}


.cart-item-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.cart-item-info {
    min-width: 0;
}


.cart-item-info h4 {
    margin: 0 0 5px;

    font-size: 15px;
}


.cart-item-info span {
    color: #f59e0b;

    font-weight: 700;
}


/* QUANTITY */

.cart-item-controls {
    display: flex;
    align-items: center;

    gap: 10px;
}


.quantity-button {
    width: 30px;
    height: 30px;

    border: none;
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.08);
    color: #fff;

    font-size: 18px;

    cursor: pointer;
}


.quantity-button:hover {
    background: rgba(245, 158, 11, 0.2);
}


.cart-remove {
    width: 30px;
    height: 30px;

    border: none;
    border-radius: 8px;

    background: transparent;

    color: rgba(255, 255, 255, 0.5);

    font-size: 20px;

    cursor: pointer;
}


.cart-remove:hover {
    color: #ef4444;
}


/* EMPTY */

.cart-empty {
    min-height: 180px;

    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


.cart-empty-icon {
    font-size: 42px;

    margin-bottom: 10px;
}


.cart-empty h3 {
    margin-bottom: 6px;
}


.cart-empty p {
    color: rgba(255, 255, 255, 0.55);
}


/* FOOTER */

.cart-footer {
    margin-top: 24px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;

    font-size: 18px;
}


.cart-total strong {
    color: #f59e0b;

    font-size: 24px;
}


.cart-order-button {
    width: 100%;
}


/* BODY LOCK */

body.cart-open {
    overflow: hidden;
}


/* MOBILE */

@media (max-width: 600px) {

    .cart-overlay {
        padding: 10px;
    }


    .cart-modal {
        padding: 20px;

        max-height: 90vh;

        border-radius: 20px;
    }


    .cart-item {
        grid-template-columns: 54px 1fr auto;

        gap: 10px;
    }


    .cart-item-image {
        width: 54px;
        height: 54px;
    }


    .cart-item-controls {
        grid-column: 2;
    }


    .cart-remove {
        grid-column: 3;
        grid-row: 1;
    }

}

/* =========================================================
   ADD TO CART BUTTON
========================================================= */

.product-card .add-to-cart {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 125px;
    height: 42px;

    padding: 0 18px;

    border: 1px solid rgba(245, 158, 11, 0.45);
    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #f59e0b,
        #ef4444
    );

    color: #fff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 6px 18px rgba(239, 68, 68, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}


/* Наведение */

.product-card .add-to-cart:hover {
    transform: translateY(-2px);

    filter: brightness(1.08);

    box-shadow:
        0 10px 25px rgba(239, 68, 68, 0.3);
}


/* Нажатие */

.product-card .add-to-cart:active {
    transform: translateY(1px);

    box-shadow:
        0 4px 10px rgba(239, 68, 68, 0.2);
}


/* Лёгкое свечение */

.product-card .add-to-cart::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255, 255, 255, 0.18),
        transparent 80%
    );

    opacity: 0;

    transition: opacity 0.25s ease;

    pointer-events: none;
}


.product-card .add-to-cart:hover::after {
    opacity: 1;
}

/* =========================================================
   PRODUCT CARDS — SPACING
========================================================= */

.products-grid {
    row-gap: 28px;
}


.product-card {
    min-width: 0;
    overflow: hidden;

    padding: 14px;

    display: flex !important;
    flex-direction: column;

    background: #181816;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color: rgba(245, 158, 11, 0.3);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(245, 158, 11, 0.06);
}

.product-bottom {
    margin-top: 16px;
}


.product-card .add-to-cart {
    flex-shrink: 0;
}

/* =========================================================
   ORDER MODAL
========================================================= */

.order-overlay {
    position: fixed;
    inset: 0;

    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.order-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.order-modal {
    width: 100%;
    max-width: 560px;
    max-height: 90vh;

    overflow-y: auto;

    padding: 30px;

    background: #151513;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.65);

    transform: translateY(20px) scale(0.97);

    transition: transform 0.25s ease;
}


.order-overlay.active .order-modal {
    transform: translateY(0) scale(1);
}


/* HEADER */

.order-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 26px;
}


.order-header h2 {
    margin-top: 6px;
}


.order-close {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition: 0.2s ease;
}


.order-close:hover {
    background: rgba(239, 68, 68, 0.2);

    transform: rotate(90deg);
}


/* FORM */

.order-field {
    margin-bottom: 18px;
}


.order-field label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
    font-weight: 600;
}


.order-field input,
.order-field textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    outline: none;

    background: rgba(255, 255, 255, 0.05);

    color: #fff;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}


.order-field input:focus,
.order-field textarea:focus {
    border-color: rgba(245, 158, 11, 0.55);

    background: rgba(255, 255, 255, 0.07);
}


.order-field input::placeholder,
.order-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}


.order-field textarea {
    resize: vertical;

    min-height: 90px;
}


/* DELIVERY */

.delivery-options {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}


.delivery-option {
    display: flex !important;

    align-items: center;

    gap: 10px;

    margin: 0 !important;

    padding: 14px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.04);

    cursor: pointer;

    transition: 0.2s ease;
}


.delivery-option:hover {
    border-color: rgba(245, 158, 11, 0.35);
}


.delivery-option input {
    width: auto !important;

    accent-color: #f59e0b;
}


.delivery-option span {
    color: #fff;

    font-size: 14px;
}


/* ADDRESS */

#address-field {
    display: none;
}


/* TOTAL */

.order-summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 24px;
    margin-bottom: 18px;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 17px;
}


.order-summary strong {
    color: #f59e0b;

    font-size: 24px;
}


/* BUTTON */

.order-submit {
    width: 100%;
}


/* MOBILE */

@media (max-width: 600px) {

    .order-overlay {
        padding: 10px;
    }


    .order-modal {
        padding: 20px;

        max-height: 92vh;

        border-radius: 20px;
    }


    .delivery-options {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   PRODUCT CARDS — FIX LONG DESCRIPTIONS
========================================================= */

.product-card {
    min-width: 0;
    overflow: hidden;
}

.product-card h4 {
    margin: 14px 0 6px;
    line-height: 1.25;
}

.product-card p {
    margin: 0;
    color: #858078;
    font-size: 13px;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;

    overflow: hidden;

    min-height: 58.5px;
    max-height: 58.5px;
}

.product-info {
    margin-top: 10px;
}

/* Чтобы карточки не разъезжались */
.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================================================
   MOBILE PRODUCT CARDS
========================================================= */

@media (max-width: 600px) {

    .product-card {
        min-width: 0;
    }

    .product-card p {
        font-size: 12px;
        line-height: 1.45;

        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .product-bottom {
        gap: 10px;
    }

    .product-card .add-to-cart {
        min-width: 115px;
        height: 40px;
        padding: 0 14px;
        font-size: 13px;
    }

}

@media (max-width: 600px) {

    .product-card p {
        -webkit-line-clamp: 3;
        line-clamp: 3;

        min-height: 58.5px;
        max-height: 58.5px;

        overflow: hidden;
    }

}

/* =========================================
   FIX — MENU PRODUCTS
========================================= */

.menu-products {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.products-grid {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.product-card {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* =========================================================
   MENU PRODUCTS — FINAL FIX
========================================================= */

.menu-products {
    margin-top: 40px;
}

.menu-products-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.menu-products-title h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

#category-icon {
    font-size: 28px;
}

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

.product-card {
    display: flex !important;
    flex-direction: column;
    min-width: 0;
    padding: 16px;
    border-radius: 20px;
    background: #181816;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.product-card h4 {
    color: #fff;
}

.product-card p {
    color: #858078;
}

.product-card .product-bottom {
    margin-top: auto;
}

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

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

    .product-card img {
        height: 220px;
    }
}

/* =========================================================
   TEMP MENU VISIBILITY FIX
========================================================= */

#menu-products,
#products-container,
#products-container .product-card {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* =========================================================
   FIX — MENU VISIBILITY
========================================================= */

.menu-section {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.menu-products {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.products-grid {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.product-card {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

/* =========================================================
   MENU PRODUCTS — PREMIUM CATEGORY
========================================================= */

.menu-products {
    margin-top: 55px;
}

.menu-products-title {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#category-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(245, 158, 11, 0.18),
            rgba(239, 68, 68, 0.08)
        );

    border: 1px solid rgba(245, 158, 11, 0.12);

    font-size: 22px;

    box-shadow:
        0 8px 25px rgba(245, 158, 11, 0.08);
}

#category-title {
    margin: 0;

    font-size: 26px;
    font-weight: 800;

    letter-spacing: -0.025em;
}

.products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
}

@media (max-width: 900px) {

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .menu-products {
        margin-top: 40px;
    }

    .menu-products-title {
        margin-bottom: 22px;
    }

    #category-title {
        font-size: 22px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}

/* =========================================================
   ACTIVE MENU CATEGORY
========================================================= */

.menu-category.active {
    border-color: rgba(245, 158, 11, 0.55);

    background:
        linear-gradient(
            145deg,
            rgba(245, 158, 11, 0.12),
            rgba(239, 68, 68, 0.05)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(245, 158, 11, 0.08);

    transform: translateY(-4px);
}

.menu-category.active span {
    transform: scale(1.12);
}

.menu-category.active strong {
    color: #f59e0b;
}

/* =========================================================
   MENU PRODUCTS — SMOOTH APPEARANCE
========================================================= */

.product-card {
    animation: productAppear 0.45s ease both;
}

@keyframes productAppear {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   ЗАКАЗЫ ВНЕ РАБОЧЕГО ВРЕМЕНИ
========================================================= */

.cart-order-button.order-closed {
    opacity: 0.55;
    cursor: not-allowed;
    filter: grayscale(0.25);
}

.cart-order-button:disabled {
    pointer-events: none;
}