* {
    box-sizing: border-box;
}

:root {
    --red: #c61f2b;
    --red-dark: #9f1721;
    --black: #171717;
    --white: #ffffff;
    --cream: #fff8ee;
    --paper: #ffffff;
    --soft-red: #fff0f1;
    --muted: #645f5a;
    --line: rgba(198,31,43,0.18);
    --shadow: 0 16px 38px rgba(198,31,43,0.12);
}


html {
    scroll-behavior: smooth;
}

#menu {
    scroll-margin-top: 165px;
}

.food-body p {
    white-space: normal;
}

.food-body .food-description {
    color: var(--muted);
    line-height: 1.55;
    font-size: 14px;
    margin: 0 0 14px;
}

.food-body .food-description br {
    display: block;
    content: "";
    margin: 7px 0;
}


body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        linear-gradient(45deg, rgba(198,31,43,0.055) 25%, transparent 25%) 0 0 / 34px 34px,
        linear-gradient(-45deg, rgba(198,31,43,0.055) 25%, transparent 25%) 0 17px / 34px 34px,
        linear-gradient(180deg, #ffffff, #fff7ee);
    color: var(--black);
}

a {
    color: inherit;
}

.site-header {
    background: var(--white);
    color: var(--black);
    padding: 18px 20px;
    border-bottom: 5px solid var(--red);
    box-shadow: 0 8px 26px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 10;
}

.site-header::before {
    content: "";
    display: block;
    height: 10px;
    margin: -18px -20px 14px;
    background:
        linear-gradient(45deg, var(--red) 25%, transparent 25%) 0 0 / 24px 24px,
        linear-gradient(-45deg, var(--red) 25%, transparent 25%) 0 12px / 24px 24px,
        linear-gradient(45deg, transparent 75%, var(--red) 75%) 12px -12px / 24px 24px,
        linear-gradient(-45deg, transparent 75%, var(--red) 75%) 12px 0 / 24px 24px,
        #fff;
}


.site-header .nav-wrap {
    min-height: 108px;
}

.logo-only {
    line-height: 0;
}

.nav-wrap {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.brand {
    text-decoration: none;
    display: block;
}

.brand-with-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-with-logo img {
    width: 120px;
    height: 82px;
    object-fit: contain;
    border-radius: 14px;
}


.logo-only img {
    width: 170px;
    height: 105px;
    object-fit: contain;
}

.brand-text {
    display: block;
}

.brand-text em {
    display: block;
    color: var(--muted);
    font-style: normal;
    font-size: 14px;
    font-weight: bold;
}


.brand strong {
    display: block;
    font-size: 30px;
    letter-spacing: -0.05em;
    color: var(--red);
    text-transform: uppercase;
}

.brand span {
    color: var(--muted);
    font-size: 14px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--red);
    text-decoration: none;
    background: var(--soft-red);
    border: 1px solid rgba(198,31,43,0.18);
    padding: 10px 15px;
    border-radius: 999px;
    font-weight: bold;
}

.nav-links a:hover {
    background: var(--red);
    color: var(--white);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 20px;
}

.hero {
    background:
        linear-gradient(135deg, rgba(198,31,43,0.96), rgba(159,23,33,0.96)),
        linear-gradient(45deg, rgba(255,255,255,0.18) 25%, transparent 25%) 0 0 / 32px 32px;
    color: #fff;
    border-radius: 34px;
    padding: 48px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    border: 8px solid #fff;
}

.hero::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
}

.hero small {
    color: #ffe5e7;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: bold;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.95;
    margin: 12px 0 14px;
    letter-spacing: -0.06em;
    max-width: 820px;
}

.hero p {
    max-width: 700px;
    color: #fff8f8;
    font-size: 18px;
    line-height: 1.55;
}

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

.btn {
    display: inline-block;
    border-radius: 999px;
    padding: 14px 18px;
    text-decoration: none;
    font-weight: bold;
    background: #fff;
    color: var(--red);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.btn.dark {
    background: var(--black);
    color: #fff;
}

.section-title {
    margin: 34px 0 16px;
}

.section-title small {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-weight: bold;
}

.section-title h2 {
    margin: 6px 0;
    font-size: 36px;
    letter-spacing: -0.05em;
}

.category-block {
    margin-top: 30px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(198,31,43,0.12);
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.category-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: end;
    margin-bottom: 16px;
    border-bottom: 3px dashed rgba(198,31,43,0.25);
    padding-bottom: 12px;
}

.category-header h2 {
    margin: 0;
    font-size: 30px;
    color: var(--red);
    letter-spacing: -0.04em;
}

.category-header span {
    color: var(--muted);
    font-weight: bold;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.food-card {
    background: var(--paper);
    border: 1px solid rgba(198,31,43,0.16);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(198,31,43,0.10);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
}

.food-card::before {
    content: "";
    display: block;
    height: 8px;
    background:
        linear-gradient(45deg, var(--red) 25%, transparent 25%) 0 0 / 18px 18px,
        linear-gradient(-45deg, var(--red) 25%, transparent 25%) 0 9px / 18px 18px,
        #fff;
}

.food-img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    background: #f2e7dd;
}

.food-placeholder {
    height: 215px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, #fff, #fff0f1),
        linear-gradient(45deg, rgba(198,31,43,0.16) 25%, transparent 25%) 0 0 / 28px 28px;
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    padding: 16px;
}

.food-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.food-body h3 {
    margin: 0 0 8px;
    font-size: 22px;
    letter-spacing: -0.04em;
}

.food-body p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.45;
    font-size: 14px;
}

.food-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.price-pill {
    background: var(--red);
    color: #fff;
    border-radius: 999px;
    padding: 10px 12px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 8px 16px rgba(198,31,43,0.20);
}


.item-panel .price-pill {
    display: inline-block;
    margin: 8px 0 16px;
}

.details-link {
    color: var(--red);
    font-weight: bold;
    text-decoration: none;
}

.details-link:hover {
    text-decoration: underline;
}

.item-layout {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 24px;
    align-items: start;
}

.item-panel {
    background: var(--paper);
    border-radius: 28px;
    padding: 26px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(198,31,43,0.16);
}

.item-panel h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: -0.06em;
    color: var(--red);
}

.item-meta {
    color: var(--red);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.item-description {
    color: #2e2b28;
    line-height: 1.6;
    font-size: 17px;
}

.option-box {
    background: #fff8f8;
    border: 1px solid rgba(198,31,43,0.16);
    border-radius: 18px;
    padding: 16px;
    margin-top: 14px;
}

.option-box h3 {
    margin: 0 0 10px;
    color: var(--red);
}

.option-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(198,31,43,0.22);
}

.option-row:last-child {
    border-bottom: none;
}


.option-row-no-price {
    justify-content: flex-start;
}




.product-media {
    display: grid;
    gap: 14px;
}

.main-image-zoom {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(198,31,43,0.16);
    background: #fff;
    cursor: zoom-in;
}

.main-image-zoom img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    display: block;
    transition: transform 0.18s ease;
    transform-origin: center center;
}

.main-image-zoom:hover img {
    transform: scale(1.75);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumb-btn {
    border: 2px solid transparent;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(198,31,43,0.10);
}

.gallery-thumb-btn.active {
    border-color: var(--red);
}

.gallery-thumb-btn img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    display: block;
}

.food-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.food-card-link .food-img,
.food-card-link .food-placeholder {
    transition: transform 0.22s ease, filter 0.22s ease;
}

.food-card-link:hover .food-img,
.food-card-link:hover .food-placeholder {
    transform: scale(1.03);
    filter: brightness(1.03);
}

@media (max-width: 900px) {
    .main-image-zoom img {
        height: 310px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-thumb-btn img {
        height: 78px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.gallery-grid img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(198,31,43,0.16);
    background: #fff;
}

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

.video-box {
    margin-top: 22px;
}

.video-box iframe {
    width: 100%;
    min-height: 420px;
    border-radius: 22px;
}

.footer {
    background:
        linear-gradient(45deg, rgba(198,31,43,0.16) 25%, transparent 25%) 0 0 / 24px 24px,
        var(--red);
    color: #fff;
    margin-top: 50px;
    padding: 28px 20px;
    text-align: center;
}

.footer p {
    margin: 4px 0;
    color: #fff3f4;
}

@media (max-width: 900px) {
    .nav-wrap,
    .category-header {
        align-items: stretch;
        flex-direction: column;
    }

    .menu-grid,
    .item-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 32px 22px;
    }

    .brand-with-logo img,
    .logo-only img {
        width: 120px;
        height: 78px;
    }

    .brand strong {
        font-size: 23px;
    }

    .site-header {
        position: static;
    }
}