:root {
    --red: #b3261e;
    --red-dark: #7a1a15;
    --red-light: #e8453b;
    --orange: #f5a300;
    --orange-light: #ffd166;
    --cream: #fff8ef;
    --cream-alt: #fbeee0;
    --brown: #3e2723;
    --text-muted: #7a6a61;
    --shadow: 0 10px 30px rgba(59, 20, 12, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--brown);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: 'Fredoka', sans-serif;
}

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

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

ul {
    list-style: none;
}

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

.section-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--red-dark);
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-desc {
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

.section-head {
    text-align: center;
    margin: 0 auto 48px auto;
    max-width: 640px;
}

.section-head .section-desc {
    max-width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 24px rgba(179, 38, 30, 0.35);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(179, 38, 30, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--brown);
    border-color: var(--brown);
}

.btn-outline:hover {
    background: var(--brown);
    color: #fff;
    transform: translateY(-3px);
}
/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    background: rgba(255, 248, 239, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(179, 38, 30, 0.08);
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 6px 24px rgba(59, 20, 12, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

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

.logo-emoji {
    font-size: 1.9rem;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--red-dark);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--brown);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--red);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--red-dark);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}
/* HERO */

.hero {
    position: relative;
    padding: 168px 0 110px 0;
    overflow: hidden;
    background: radial-gradient(circle at 85% 20%, rgba(245, 163, 0, 0.18), transparent 55%), radial-gradient(circle at 10% 90%, rgba(179, 38, 30, 0.12), transparent 50%), var(--cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(179, 38, 30, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--red-dark);
    box-shadow: var(--shadow);
    margin-bottom: 22px;
}

.hero h1 {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--red-dark);
    margin-bottom: 20px;
}

.hero h1 .accent {
    color: var(--orange);
    position: relative;
    white-space: nowrap;
}

.hero p.lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 34px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 34px;
}

.hero-stats div strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: var(--red);
}

.hero-stats div span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-media {
    position: relative;
}

.hero-media .main-photo {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(59, 20, 12, 0.22);
    border: 6px solid #fff;
}

.hero-media .main-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatY 4s ease-in-out infinite;
}

.floating-card.spicy {
    top: 22px;
    left: -30px;
}

.floating-card.rating {
    bottom: 30px;
    right: -20px;
    animation-delay: 1.2s;
}

.floating-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: var(--cream-alt);
}

.floating-card strong {
    display: block;
    font-size: 0.85rem;
    font-family: 'Fredoka', sans-serif;
    color: var(--brown);
}

.floating-card span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
/* INTERIOR PAGE HERO (Menu / Kontak) */

.page-hero {
    position: relative;
    padding: 150px 0 70px 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #111111 0%, #262019 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(245, 163, 0, 0.2), transparent 50%), radial-gradient(circle at 80% 75%, rgba(179, 38, 30, 0.3), transparent 55%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .section-tag {
    background: var(--orange);
    color: var(--brown);
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 14px;
}

.page-hero h1 span {
    color: var(--orange-light);
}

.page-hero p {
    color: rgba(255, 248, 239, 0.7);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}
/* FEATURE STRIP */

.features {
    padding: 60px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 26px 18px;
    border-radius: 20px;
    background: var(--cream);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.feature-card h4 {
    font-size: 1.02rem;
    margin-bottom: 6px;
    color: var(--red-dark);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
/* ABOUT */

.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-photos {
    position: relative;
}

.about-photos img {
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.about-photos .photo-big {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.about-photos .photo-small {
    position: absolute;
    width: 46%;
    border: 6px solid #fff;
    bottom: -34px;
    right: -30px;
    box-shadow: 0 20px 40px rgba(59, 20, 12, 0.25);
}

.about-photos .photo-small img {
    height: 150px;
    object-fit: cover;
}

.about-text .section-desc {
    margin-bottom: 22px;
}

.about-list {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.94rem;
    color: var(--brown);
}

.about-list li .check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}
/* MENU (teaser on homepage) */

.menu {
    padding: 100px 0;
    background: var(--brown);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(245, 163, 0, 0.12), transparent 45%), radial-gradient(circle at 85% 80%, rgba(179, 38, 30, 0.25), transparent 50%);
    pointer-events: none;
}

.menu .section-tag {
    background: var(--orange);
    color: var(--brown);
}

.menu .section-title {
    color: #fff;
}

.menu .section-desc {
    color: rgba(255, 248, 239, 0.7);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 42px;
    position: relative;
    z-index: 2;
}

.menu-tab {
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
}

.menu-tab.active,
.menu-tab:hover {
    background: var(--orange);
    color: var(--brown);
    border-color: var(--orange);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
}

.menu-category {
    display: none;
}

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

.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 18px;
    transition: all 0.25s ease;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.menu-item .emoji-badge {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.menu-item-info {
    flex: 1;
}

.menu-item-info .row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.menu-item-info h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    color: #fff;
}

.menu-item-info .price {
    font-weight: 700;
    color: var(--orange-light);
    font-size: 0.95rem;
    white-space: nowrap;
}

.menu-item-info p {
    font-size: 0.8rem;
    color: rgba(255, 248, 239, 0.6);
    margin-top: 4px;
    line-height: 1.5;
}

.menu-note {
    text-align: center;
    color: rgba(255, 248, 239, 0.55);
    font-size: 0.8rem;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.menu-note-btn {
    margin-top: 26px;
}
/* FULL MENU PAGE (menu.php) */

.menu-full {
    padding: 70px 0 100px 0;
    background: var(--cream);
}

.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.menu-block {
    margin-bottom: 42px;
}

.menu-block:last-child {
    margin-bottom: 0;
}

.menu-block-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    color: var(--red-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px dashed rgba(179, 38, 30, 0.2);
}

.menu-block-title .icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dotted rgba(62, 39, 35, 0.15);
    transition: background 0.2s ease;
}

.menu-list-item:last-child {
    border-bottom: none;
}

.menu-list-item.in-cart {
    background: rgba(245, 163, 0, 0.08);
    border-radius: 12px;
    padding-left: 10px;
    padding-right: 10px;
}

.menu-list-item .name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.96rem;
    color: var(--brown);
}

.menu-list-item .name small {
    display: block;
    font-weight: 400;
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.menu-item-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.menu-list-item .price {
    font-weight: 700;
    color: var(--red);
    font-size: 0.96rem;
    white-space: nowrap;
}

.qty-stepper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cream-alt);
    border-radius: 50px;
    padding: 4px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--red);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.15s ease;
}

.qty-btn:hover {
    background: var(--red);
    color: #fff;
}

.qty-stepper span {
    min-width: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--brown);
}

.badge-star,
.badge-hot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
}

.badge-star {
    color: var(--orange);
}

.badge-hot {
    color: var(--red);
}

.menu-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 46px;
    padding-top: 26px;
    border-top: 1px dashed rgba(179, 38, 30, 0.2);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.menu-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
/* GALLERY */

.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 14px;
}

.gallery-grid a {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-grid a::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(59, 20, 12, 0);
    color: transparent;
    transition: all 0.25s ease;
}

.gallery-grid a:hover::after {
    background: rgba(59, 20, 12, 0.45);
    color: #fff;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.08);
}

.gallery-grid .tall {
    grid-row: span 2;
}

.gallery-grid .wide {
    grid-column: span 2;
}
/* TESTIMONIALS */

.testimonials {
    padding: 100px 0;
    background: var(--cream-alt);
}

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

.testi-card {
    background: #fff;
    padding: 30px 26px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.testi-stars {
    color: var(--orange);
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.testi-card p {
    color: var(--brown);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.testi-person strong {
    display: block;
    font-size: 0.88rem;
}

.testi-person span {
    font-size: 0.75rem;
    color: var(--text-muted);
}
/* CTA BANNER */

.cta-banner {
    margin: 0 auto;
    max-width: 1120px;
    padding: 50px 40px;
    border-radius: 28px;
    background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    transform: translateY(60px);
}

.cta-banner::before {
    content: '🌶️';
    position: absolute;
    font-size: 8rem;
    opacity: 0.12;
    right: -10px;
    top: -30px;
    transform: rotate(15deg);
}

.cta-banner h3 {
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 8px;
    position: relative;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    position: relative;
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--red-dark);
    position: relative;
}

.cta-banner .btn-primary:hover {
    background: var(--orange-light);
    color: var(--brown);
}

.delivery-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-basis: 100%;
    margin-top: 4px;
    position: relative;
}

.delivery-row a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.delivery-row a:hover {
    background: #fff;
    color: var(--red-dark);
    transform: translateY(-2px);
}
/* LOCATION / CONTACT */

.location {
    padding: 70px 0 100px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.location-info {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.info-row {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(179, 38, 30, 0.15);
}

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

.info-row .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--cream-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-row h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--red-dark);
}

.info-row p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.info-row a:hover {
    color: var(--red);
}

.map-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 320px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.contact-cta-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.contact-cta-row .btn {
    width: 100%;
    justify-content: center;
}
/* FOOTER */

footer {
    background: var(--brown);
    color: rgba(255, 248, 239, 0.75);
    padding: 70px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: #fff;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: var(--orange-light);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--brown);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 22px 0;
    font-size: 0.8rem;
    color: rgba(255, 248, 239, 0.5);
}
/* FLOATING BUTTONS */

.whatsapp-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
    z-index: 400;
    animation: pulseWA 2.4s ease-in-out infinite;
}

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

.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 96px;
    width: 46px;
    height: 46px;
    background: #fff;
    border: 1px solid rgba(179, 38, 30, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--red);
    box-shadow: var(--shadow);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}
/* CART */

.cart-float {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 58px;
    height: 58px;
    background: var(--red);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 26px rgba(179, 38, 30, 0.5);
    z-index: 400;
    color: #fff;
    cursor: pointer;
}

.cart-float.show {
    display: flex;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--orange);
    color: var(--brown);
    font-size: 0.72rem;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.cart-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 8, 0.55);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 900;
}

.cart-panel-overlay.show {
    display: flex;
}

.cart-panel {
    background: #fff;
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    padding: 26px 24px 30px 24px;
    overflow-y: auto;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
    animation: slideUpCart 0.3s ease;
}

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

.cart-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.cart-panel-head h3 {
    color: var(--red-dark);
    font-size: 1.2rem;
}

.icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    border: 1px solid rgba(62, 39, 35, 0.12);
    background: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.icon-btn:hover {
    background: var(--cream-alt);
}

.cart-empty-state {
    text-align: center;
    padding: 30px 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.cart-empty-state a {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
}

.cart-empty-state.hide {
    display: none;
}

.cart-summary {
    display: none;
}

.cart-summary.show {
    display: block;
}

.cart-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(62, 39, 35, 0.12);
}

.cart-line-info strong {
    display: block;
    font-size: 0.92rem;
    color: var(--brown);
}

.cart-line-info span {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.cart-line-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-line-subtotal {
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--red);
    white-space: nowrap;
    min-width: 72px;
    text-align: right;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--red-dark);
    padding: 14px 0;
    border-top: 2px solid rgba(179, 38, 30, 0.12);
    margin-top: 4px;
    margin-bottom: 16px;
}

.cart-summary .form-group {
    margin-bottom: 14px;
}

.cart-summary .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 6px;
}

.cart-summary .form-group input,
.cart-summary .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1.5px solid rgba(62, 39, 35, 0.15);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--brown);
}

.cart-summary .form-group input:focus,
.cart-summary .form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.cart-summary .form-group textarea {
    min-height: 60px;
    resize: vertical;
}

.cart-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.cart-actions .btn {
    flex: 1;
    justify-content: center;
}
/* SCROLL REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.cta-banner.in-view {
    transform: translateY(0);
}
/* RESPONSIVE */

@media (max-width: 980px) {
    .hero-grid,
    .about-grid,
    .location-grid,
    .menu-columns {
        grid-template-columns: 1fr;
    }
    .hero-media {
        order: -1;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 18px;
        box-shadow: 0 14px 24px rgba(59, 20, 12, 0.1);
        transform: translateY(-130%);
        transition: transform 0.3s ease;
    }
    .nav-links.open {
        transform: translateY(0);
    }
    .hamburger {
        display: flex;
    }
    .nav-cta .btn-outline {
        display: none;
    }
    .hero {
        padding: 130px 0 80px 0;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 22px;
    }
    .features-grid,
    .menu-category.active,
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .about-photos .photo-small {
        right: 0;
    }
    .cta-banner {
        text-align: center;
        justify-content: center;
        padding: 40px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
    }
    .contact-cta-row {
        grid-template-columns: 1fr;
    }
    .page-hero h1 {
        font-size: 1.9rem;
    }
}
