/* =========================================================
   SAVORA — RESTAURANT WEBSITE TEMPLATE
   Main Stylesheet
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
    --primary: #c8954d;
    --primary-dark: #a97535;

    --dark: #171512;
    --dark-soft: #24201b;

    --cream: #f8f5ef;
    --white: #ffffff;

    --text: #292621;
    --text-light: #716b63;

    --border: #e8e1d7;

    --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 15px 45px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;

    --transition: 0.3s ease;

    --container: 1200px;
}


/* =========================================================
   2. RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

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

button,
input {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}


/* =========================================================
   3. GLOBAL
========================================================= */

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

.section {
    padding: 110px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;

    margin-bottom: 18px;
}

.section-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--primary);
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.12;
    font-weight: 600;
}

h2 span,
h1 span {
    color: var(--primary);
}

p {
    color: var(--text-light);
}


/* =========================================================
   4. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 15px 25px;

    border-radius: 50px;

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

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn i {
    transition: transform var(--transition);
}

.btn:hover i {
    transform: translateX(4px);
}

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

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(200, 149, 77, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 15px 35px rgba(200, 149, 77, 0.35);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

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


/* =========================================================
   5. HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    padding: 22px 0;

    transition:
        background var(--transition),
        box-shadow var(--transition),
        padding var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);

    padding: 14px 0;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: "Playfair Display", serif;

    font-size: 28px;
    font-weight: 700;

    letter-spacing: 2px;
}

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

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

.nav-link {
    position: relative;

    font-size: 13px;
    font-weight: 600;

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

.nav-order-btn {
    background: var(--dark);
    color: var(--white);

    padding: 11px 20px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.nav-order-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: var(--dark);
    color: var(--white);

    font-size: 18px;
}


/* =========================================================
   6. HERO
========================================================= */

.hero {
    min-height: 100vh;

    padding: 150px 0 100px;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(200, 149, 77, 0.12),
            transparent 30%
        ),
        var(--cream);

    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;

    gap: 70px;
}

.hero-content {
    max-width: 620px;
}

.hero h1 {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.98;

    margin-bottom: 28px;

    letter-spacing: -2px;
}

.hero-content > p {
    max-width: 530px;

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 45px;
}

.hero-info {
    display: flex;
    align-items: center;
    gap: 35px;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-info-item > i {
    display: grid;
    place-items: center;

    width: 43px;
    height: 43px;

    border-radius: 50%;

    background: rgba(200, 149, 77, 0.12);
    color: var(--primary);
}

.hero-info-item div {
    display: flex;
    flex-direction: column;
}

.hero-info-item strong {
    font-size: 15px;
}

.hero-info-item span {
    color: var(--text-light);
    font-size: 12px;
}


/* HERO IMAGE */

.hero-image {
    position: relative;
}

.hero-image-card {
    position: relative;

    height: 620px;

    border-radius: 250px 250px 25px 25px;

    overflow: hidden;

    box-shadow: var(--shadow-lg);
}

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

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.25),
        transparent 50%
    );
}

.hero-image-card img {
    height: 100%;

    transition: transform 0.8s ease;
}

.hero-image:hover .hero-image-card img {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;

    left: -35px;
    bottom: 40px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 17px 22px;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);

    border-radius: 14px;

    box-shadow: var(--shadow-md);
}

.floating-card > i {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(200, 149, 77, 0.13);
    color: var(--primary);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 13px;
}

.floating-card span {
    color: var(--text-light);
    font-size: 11px;
}


/* =========================================================
   7. ABOUT
========================================================= */

.about {
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;

    gap: 100px;

    align-items: center;
}

.about-images {
    position: relative;

    min-height: 570px;
}

.about-image-main {
    position: absolute;

    top: 0;
    left: 0;

    width: 78%;
    height: 480px;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: var(--shadow-md);
}

.about-image-main img {
    height: 100%;
}

.about-image-small {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48%;
    height: 270px;

    border: 10px solid var(--white);

    border-radius: 20px;

    overflow: hidden;

    box-shadow: var(--shadow-md);
}

.about-image-small img {
    height: 100%;
}

.experience-card {
    position: absolute;

    left: 25px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 20px;

    background: var(--dark);
    color: var(--white);

    border-radius: 12px;

    box-shadow: var(--shadow-md);
}

.experience-card strong {
    color: var(--primary);

    font-family: "Playfair Display", serif;

    font-size: 34px;
}

.experience-card span {
    font-size: 11px;
    line-height: 1.4;
}

.about-content {
    max-width: 530px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 17px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 15px;

    color: var(--dark);

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

    border-bottom: 1px solid var(--primary);

    padding-bottom: 5px;

    transition: var(--transition);
}

.text-link i {
    color: var(--primary);
    transition: transform var(--transition);
}

.text-link:hover {
    color: var(--primary);
}

.text-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   8. MENU
========================================================= */

.menu {
    background: var(--cream);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 40px;

    margin-bottom: 45px;
}

.section-heading > p {
    max-width: 420px;

    font-size: 14px;
    line-height: 1.8;
}

.section-heading.centered {
    display: block;

    text-align: center;

    max-width: 650px;

    margin: 0 auto 50px;
}

.section-heading.centered > p {
    margin: 20px auto 0;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 50px;

    color: var(--text-light);

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

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

    gap: 25px;
}

.menu-card {
    background: var(--white);

    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.menu-image {
    position: relative;

    height: 250px;

    overflow: hidden;
}

.menu-image img {
    height: 100%;

    transition: transform 0.6s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.08);
}

.menu-tag {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 12px;

    background: var(--dark);
    color: var(--white);

    border-radius: 50px;

    font-size: 10px;
    font-weight: 700;
}

.menu-card-content {
    padding: 22px;
}

.menu-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 10px;
}

.menu-title h3 {
    font-size: 20px;
    line-height: 1.2;
}

.menu-title strong {
    color: var(--primary);

    font-size: 15px;

    white-space: nowrap;
}

.menu-card-content > p {
    min-height: 70px;

    font-size: 13px;
    line-height: 1.7;

    margin-bottom: 17px;
}

.add-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    background: transparent;

    color: var(--dark);

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}

.add-btn i {
    display: grid;
    place-items: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: var(--dark);
    color: var(--white);

    transition: var(--transition);
}

.add-btn:hover {
    color: var(--primary);
}

.add-btn:hover i {
    background: var(--primary);
    transform: rotate(90deg);
}

.menu-more {
    text-align: center;

    margin-top: 50px;
}


/* =========================================================
   9. SPECIAL
========================================================= */

.special {
    background: var(--dark);
    color: var(--white);

    overflow: hidden;
}

.special-container {
    min-height: 650px;

    display: grid;
    grid-template-columns: 0.9fr 1fr;

    align-items: center;

    gap: 80px;
}

.special-content {
    max-width: 500px;
}

.special-content h2 {
    margin-bottom: 25px;
}

.special-content > p {
    color: #b9b3aa;

    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 25px;
}

.special-price {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 30px;
}

.special-price span {
    color: #aaa49c;
    font-size: 12px;
}

.special-price strong {
    color: var(--primary);

    font-family: "Playfair Display", serif;

    font-size: 32px;
}

.special-image {
    height: 560px;

    border-radius: 50% 0 0 50%;

    overflow: hidden;
}

.special-image img {
    height: 100%;

    transition: transform 0.8s ease;
}

.special-image:hover img {
    transform: scale(1.05);
}


/* =========================================================
   10. GALLERY
========================================================= */

.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr 0.8fr;

    grid-template-rows: 250px 250px;

    gap: 15px;
}

.gallery-item {
    overflow: hidden;

    border-radius: 14px;
}

.gallery-item img {
    height: 100%;

    transition: transform 0.7s ease;
}

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

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

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


/* =========================================================
   11. REVIEWS
========================================================= */

.reviews {
    background: var(--cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.review-card {
    background: var(--white);

    padding: 30px;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--primary);

    font-size: 15px;
    letter-spacing: 3px;

    margin-bottom: 20px;
}

.review-card > p {
    font-family: "Playfair Display", serif;

    font-size: 17px;
    line-height: 1.7;

    color: var(--text);

    margin-bottom: 28px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    overflow: hidden;
}

.author-avatar img {
    height: 100%;
}

.review-author div:last-child {
    display: flex;
    flex-direction: column;
}

.review-author strong {
    font-size: 13px;
}

.review-author span {
    color: var(--text-light);

    font-size: 11px;
}


/* =========================================================
   12. CTA
========================================================= */

.cta {
    background: var(--primary);

    padding: 75px 0;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cta .section-label {
    color: var(--white);
}

.cta .section-label::before {
    background: var(--white);
}

.cta h2 {
    color: var(--white);

    margin-bottom: 12px;
}

.cta h2 span {
    color: var(--dark);
}

.cta p {
    max-width: 520px;

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

    font-size: 14px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
}


/* =========================================================
   13. CONTACT
========================================================= */

.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.contact-card {
    text-align: center;

    padding: 35px 20px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);

    transform: translateY(-5px);

    box-shadow: var(--shadow-sm);
}

.contact-card > i {
    display: grid;
    place-items: center;

    width: 50px;
    height: 50px;

    margin: 0 auto 17px;

    border-radius: 50%;

    background: rgba(200, 149, 77, 0.12);

    color: var(--primary);

    font-size: 17px;
}

.contact-card h3 {
    font-size: 18px;

    margin-bottom: 8px;
}

.contact-card p {
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   14. FOOTER
========================================================= */

.footer {
    background: var(--dark);

    color: var(--white);

    padding: 75px 0 25px;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.4fr 0.7fr 0.7fr 1.2fr;

    gap: 50px;

    padding-bottom: 55px;

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

.footer-brand .logo {
    display: inline-block;

    margin-bottom: 15px;
}

.footer-brand > p {
    max-width: 280px;

    color: #aaa49c;

    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 9px;
}

.social-links a {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    color: #c0bbb4;

    font-size: 13px;

    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--white);

    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer h3 {
    font-size: 17px;

    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa49c;

    font-size: 12px;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);

    transform: translateX(3px);
}

.footer-newsletter > p {
    color: #aaa49c;

    font-size: 12px;

    margin-bottom: 17px;
}

.newsletter-form {
    display: flex;

    padding: 5px;

    background: var(--white);

    border-radius: 50px;
}

.newsletter-form input {
    min-width: 0;
    flex: 1;

    border: none;
    outline: none;

    padding: 10px 14px;

    background: transparent;

    color: var(--text);

    font-size: 12px;
}

.newsletter-form button {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);

    transform: rotate(-10deg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;
}

.footer-bottom p {
    color: #77716a;

    font-size: 11px;
}


/* =========================================================
   15. BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--dark);
    color: var(--white);

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: var(--transition);

    z-index: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);

    transform: translateY(-4px);
}


/* =========================================================
   16. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .section {
        padding: 85px 0;
    }

    .nav {
        gap: 18px;
    }

    .hero-container {
        grid-template-columns: 1fr 0.8fr;

        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(3rem, 7vw, 5rem);
    }

    .hero-image-card {
        height: 520px;
    }

    .about-container {
        gap: 60px;
    }

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

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

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

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


/* =========================================================
   17. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 750px) {

    .section {
        padding: 70px 0;
    }

    .header {
        padding: 17px 0;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .nav {
        position: fixed;

        top: 78px;
        left: 4%;

        width: 92%;

        padding: 25px;

        background: var(--white);

        border-radius: 18px;

        box-shadow: var(--shadow-lg);

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition: var(--transition);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .nav-link {
        padding: 13px 0;

        border-bottom: 1px solid var(--border);
    }

    .nav-link::after {
        display: none;
    }

    .nav-order-btn {
        text-align: center;

        margin-top: 18px;
    }


    /* HERO */

    .hero {
        padding: 125px 0 70px;
    }

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

        gap: 55px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 16vw, 5rem);

        letter-spacing: -1px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-wrap: wrap;

        margin-bottom: 35px;
    }

    .hero-info {
        gap: 20px;
    }

    .hero-image-card {
        height: 450px;

        border-radius: 180px 180px 20px 20px;
    }

    .floating-card {
        left: 15px;
        bottom: 25px;
    }


    /* ABOUT */

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

        gap: 65px;
    }

    .about-images {
        min-height: 500px;
    }

    .about-image-main {
        height: 410px;
    }

    .about-image-small {
        height: 220px;
    }


    /* SECTION HEADING */

    .section-heading {
        display: block;

        margin-bottom: 35px;
    }

    .section-heading > p {
        margin-top: 20px;
    }


    /* MENU */

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

    .menu-image {
        height: 280px;
    }


    /* SPECIAL */

    .special-container {
        grid-template-columns: 1fr;

        gap: 50px;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .special-image {
        height: 430px;

        border-radius: 220px 220px 20px 20px;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 220px 220px 220px;
    }

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

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


    /* REVIEWS */

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


    /* CTA */

    .cta-container {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta-buttons {
        width: 100%;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 5px;
    }
}


/* =========================================================
   18. SMALL PHONES
========================================================= */

@media (max-width: 450px) {

    .logo {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 3.3rem;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-info {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-image-card {
        height: 390px;
    }

    .about-images {
        min-height: 420px;
    }

    .about-image-main {
        height: 350px;
        width: 82%;
    }

    .about-image-small {
        width: 52%;
        height: 190px;
    }

    .experience-card {
        left: 10px;
        bottom: 20px;
    }

    .menu-categories {
        justify-content: flex-start;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-template-rows: repeat(5, 240px);
    }

    .gallery-large,
    .gallery-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .cta-buttons {
        flex-direction: column;

        align-items: stretch;
    }

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


/* =========================================================
   19. ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 3px solid rgba(200, 149, 77, 0.45);
    outline-offset: 4px;
}


/* =========================================================
   20. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =========================================================
   MENU PAGE EXTRA STYLES
   ========================================================= */


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

.page-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(20, 18, 15, 0.95) 0%,
            rgba(20, 18, 15, 0.75) 45%,
            rgba(20, 18, 15, 0.35) 100%
        ),
        url("../images/menu-hero.jpg") center/cover no-repeat;
}

.page-hero-content {
    max-width: 760px;
    padding-top: 80px;
}

.page-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    color: #fff;
    margin: 15px 0 25px;
}

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

.page-hero p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}


/* ================= MENU INTRO ================= */

.menu-intro {
    padding-bottom: 35px;
}

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

.section-heading.center p {
    margin-left: auto;
    margin-right: auto;
}


/* ================= FULL MENU ================= */

.full-menu {
    padding-top: 40px;
}


/* ================= MENU FILTER ================= */

.menu-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 55px;
}

.menu-filter-btn {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.menu-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}


/* ================= MENU GRID ================= */

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


/* ================= MENU CARD ================= */

.full-menu .menu-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.full-menu .menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}


/* ================= MENU IMAGE ================= */

.full-menu .menu-card-image {
    height: 270px;
    position: relative;
    overflow: hidden;
    background: #eee;
}

.full-menu .menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.full-menu .menu-card:hover .menu-card-image img {
    transform: scale(1.06);
}


/* ================= MENU TAG ================= */

.full-menu .menu-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--gold);
    color: #fff;
    padding: 7px 13px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ================= MENU CONTENT ================= */

.full-menu .menu-card-content {
    padding: 25px;
}

.full-menu .menu-card-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.full-menu .menu-card-title h3 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--dark);
}

.full-menu .price {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.full-menu .menu-card-content p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}


/* ================= ADD TO ORDER ================= */

.full-menu .add-order {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--dark);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
}

.full-menu .add-order i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.full-menu .add-order:hover {
    color: var(--gold);
}

.full-menu .add-order:hover i {
    transform: translateX(5px);
}


/* ================= HIDDEN MENU ITEMS ================= */

.full-menu .menu-card.hidden {
    display: none;
}


/* ================= SPECIAL SECTION ================= */

.special-section {
    position: relative;
    padding: 110px 0;
    margin-top: 90px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(20, 18, 15, 0.92),
            rgba(20, 18, 15, 0.72)
        ),
        url("../images/special-food.jpg") center/cover no-repeat;
}

.special-content {
    max-width: 650px;
    color: #fff;
}

.special-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin: 15px 0 20px;
}

.special-content h2 span {
    color: var(--gold);
}

.special-content p {
    max-width: 550px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin-bottom: 30px;
}


/* ================= MENU PAGE CTA ================= */

.menu-page .cta-section {
    padding-top: 100px;
}


/* ================= TABLET ================= */

@media (max-width: 992px) {

    .page-hero {
        min-height: 480px;
    }

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

    .full-menu .menu-card-image {
        height: 250px;
    }

    .special-section {
        padding: 90px 0;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .page-hero {
        min-height: 430px;
    }

    .page-hero-content {
        padding-top: 70px;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    .breadcrumb {
        margin-top: 22px;
    }

    .menu-intro {
        padding-bottom: 20px;
    }

    .menu-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        margin-bottom: 40px;
        scrollbar-width: none;
    }

    .menu-filter::-webkit-scrollbar {
        display: none;
    }

    .menu-filter-btn {
        flex: 0 0 auto;
        padding: 11px 20px;
    }

    .full-menu .menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .full-menu .menu-card-image {
        height: 260px;
    }

    .special-section {
        padding: 75px 0;
        margin-top: 60px;
    }

    .special-content h2 {
        font-size: 2.8rem;
    }
}


/* ================= SMALL PHONES ================= */

@media (max-width: 480px) {

    .page-hero {
        min-height: 400px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    .full-menu .menu-card-image {
        height: 230px;
    }

    .full-menu .menu-card-content {
        padding: 20px;
    }

    .full-menu .menu-card-title h3 {
        font-size: 1.1rem;
    }

    .full-menu .price {
        font-size: 0.85rem;
    }

    .special-section {
        padding: 65px 0;
    }

    .special-content h2 {
        font-size: 2.35rem;
    }
}
/* =========================================================
   ABOUT PAGE EXTRA STYLES
   ========================================================= */


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

.about-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(20, 18, 15, 0.95) 0%,
            rgba(20, 18, 15, 0.72) 50%,
            rgba(20, 18, 15, 0.35) 100%
        ),
        url("../images/about-hero.jpg") center/cover no-repeat;
}


/* ================= STORY SECTION ================= */

.about-story {
    overflow: hidden;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-story-images {
    position: relative;
    min-height: 600px;
}

.about-image-main {
    width: 82%;
    height: 520px;
    overflow: hidden;
    border-radius: 20px;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 270px;
    overflow: hidden;
    border: 10px solid #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-card {
    position: absolute;
    left: 25px;
    bottom: 55px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: var(--gold);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.experience-card strong {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    line-height: 1;
}

.experience-card span {
    font-size: 0.78rem;
    line-height: 1.4;
    font-weight: 600;
}

.about-story-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin: 15px 0 25px;
}

.about-story-content h2 span {
    color: var(--gold);
}

.about-story-content p {
    color: #777;
    line-height: 1.9;
    margin-bottom: 18px;
    max-width: 570px;
}


/* ================= VALUES ================= */

.values-section {
    background: #f8f6f2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 55px;
}

.value-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

.value-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(201, 162, 78, 0.12);
    color: var(--gold);
    font-size: 1.35rem;
}

.value-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.value-card p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.8;
}


/* ================= CHEF SECTION ================= */

.chef-section {
    overflow: hidden;
}

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

.chef-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin: 15px 0 25px;
}

.chef-content h2 span {
    color: var(--gold);
}

.chef-content p {
    color: #777;
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 18px;
}

.chef-content blockquote {
    margin: 35px 0 20px;
    padding-left: 22px;
    border-left: 3px solid var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--dark);
}

.chef-signature {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    color: var(--gold);
    font-style: italic;
}

.chef-image {
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ================= STATS ================= */

.stats-section {
    padding: 75px 0;
    background: var(--dark);
}

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

.stat-item {
    text-align: center;
    color: #fff;
    padding: 10px;
}

.stat-item strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-item span {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
}


/* ================= TABLET ================= */

@media (max-width: 992px) {

    .about-story-grid {
        gap: 50px;
    }

    .about-story-images {
        min-height: 500px;
    }

    .about-image-main {
        height: 440px;
    }

    .about-image-small {
        height: 220px;
    }

    .chef-grid {
        gap: 50px;
    }

    .chef-image {
        height: 500px;
    }

    .values-grid {
        gap: 20px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-story-images {
        min-height: 500px;
    }

    .about-image-main {
        width: 88%;
        height: 430px;
    }

    .about-image-small {
        width: 48%;
        height: 220px;
    }

    .experience-card {
        left: 15px;
        bottom: 40px;
        padding: 15px 18px;
    }

    .experience-card strong {
        font-size: 1.7rem;
    }

    .about-story-content h2 {
        font-size: 2.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .value-card {
        padding: 35px 25px;
    }

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

    .chef-grid .chef-content {
        order: 1;
    }

    .chef-grid .chef-image {
        order: 2;
    }

    .chef-image {
        height: 450px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }

    .stat-item strong {
        font-size: 2.4rem;
    }
}


/* ================= SMALL PHONES ================= */

@media (max-width: 480px) {

    .about-story-images {
        min-height: 400px;
    }

    .about-image-main {
        height: 350px;
    }

    .about-image-small {
        height: 170px;
        border-width: 7px;
    }

    .experience-card {
        left: 8px;
        bottom: 25px;
        padding: 12px 15px;
    }

    .experience-card strong {
        font-size: 1.5rem;
    }

    .experience-card span {
        font-size: 0.7rem;
    }

    .about-story-content h2 {
        font-size: 2.35rem;
    }

    .chef-content h2 {
        font-size: 2.5rem;
    }

    .chef-image {
        height: 360px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        gap: 25px 10px;
    }

    .stat-item strong {
        font-size: 2rem;
    }

    .stat-item span {
        font-size: 0.75rem;
    }
}
/* =========================================================
   GALLERY PAGE EXTRA STYLES
   ========================================================= */


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

.gallery-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(20, 18, 15, 0.95) 0%,
            rgba(20, 18, 15, 0.72) 50%,
            rgba(20, 18, 15, 0.35) 100%
        ),
        url("../images/gallery-hero.jpg") center/cover no-repeat;
}


/* ================= GALLERY INTRO ================= */

.gallery-intro {
    padding-bottom: 100px;
}


/* ================= GALLERY FILTER ================= */

.gallery-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 55px 0 45px;
}

.gallery-filter-btn {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-filter-btn.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}


/* ================= GALLERY GRID ================= */

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.78);
}


/* ================= GALLERY SIZES ================= */

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

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


/* ================= GALLERY VIEW BUTTON ================= */

.gallery-view {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transform: translate(-50%, -40%);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background 0.3s ease,
        color 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-view {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.gallery-view:hover {
    background: var(--gold);
    color: #fff;
}


/* ================= HIDDEN GALLERY ITEMS ================= */

.gallery-item.hidden {
    display: none;
}


/* ================= LIGHTBOX ================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(12, 11, 9, 0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content {
    width: min(1000px, 90vw);
    height: min(720px, 82vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}


/* ================= LIGHTBOX BUTTONS ================= */

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.lightbox-close {
    top: 25px;
    right: 25px;
    font-size: 1.1rem;
}

.lightbox-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}


/* ================= LIGHTBOX OPEN BODY ================= */

body.lightbox-open {
    overflow: hidden;
}


/* ================= TABLET ================= */

@media (max-width: 992px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

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

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

    .gallery-lightbox {
        padding: 30px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .gallery-intro {
        padding-bottom: 70px;
    }

    .gallery-filter {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        margin: 40px 0 30px;
        scrollbar-width: none;
    }

    .gallery-filter::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter-btn {
        flex: 0 0 auto;
        padding: 11px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
        gap: 15px;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-large {
        height: 420px;
    }

    .gallery-wide {
        height: 280px;
    }

    .gallery-view {
        width: 50px;
        height: 50px;
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    .gallery-lightbox {
        padding: 20px;
    }

    .lightbox-content {
        width: 94vw;
        height: 75vh;
    }

    .lightbox-close {
        top: 18px;
        right: 18px;
        width: 46px;
        height: 46px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }
}


/* ================= SMALL PHONES ================= */

@media (max-width: 480px) {

    .gallery-grid {
        grid-auto-rows: 240px;
    }

    .gallery-large {
        height: 330px;
    }

    .gallery-wide {
        height: 240px;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-view {
        width: 46px;
        height: 46px;
    }

    .lightbox-content {
        height: 65vh;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-hero {
    background:
        linear-gradient(rgba(20, 18, 15, 0.68), rgba(20, 18, 15, 0.68)),
        url("../images/contact-hero.jpg") center/cover no-repeat;
}

.contact-intro {
    background: var(--cream);
}

.section-heading.centered {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading.centered p {
    margin: 18px auto 0;
    max-width: 650px;
}


/* Contact Information Cards */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.contact-info-card {
    background: #fff;
    padding: 35px 28px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 78, 0.12);
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 22px;
}

.contact-info-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-info-card p {
    color: #777;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-info-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--gold);
}


/* Contact Main */

.contact-main {
    background: #fff;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.contact-image {
    position: relative;
}

.contact-image > img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.contact-image-card {
    position: absolute;
    left: 30px;
    bottom: 30px;
    max-width: 300px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.96);
}

.contact-image-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    line-height: 1.35;
    margin-top: 10px;
}


/* Contact Form */

.contact-form-wrapper {
    max-width: 650px;
}

.contact-form-wrapper h2 {
    margin: 12px 0 15px;
}

.contact-form-wrapper > p {
    color: #777;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.form-group label span {
    color: #999;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    background: #fafafa;
    padding: 15px 16px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: 0.3s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 162, 78, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.contact-form .btn {
    align-self: flex-start;
}


/* Opening Hours */

.contact-hours {
    background: var(--cream);
}

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

.hours-content h2 {
    margin: 12px 0 20px;
}

.hours-content p {
    max-width: 500px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hours-card {
    background: #fff;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hours-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.hours-card-header i {
    color: var(--gold);
    font-size: 22px;
}

.hours-card-header h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.hours-row span {
    color: #777;
}

.hours-row strong {
    color: var(--dark);
    font-weight: 600;
    text-align: right;
}

.hours-note {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding: 15px;
    background: rgba(201, 162, 78, 0.08);
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.hours-note i {
    color: var(--gold);
    margin-top: 3px;
}


/* Location */

.location-section {
    background: #fff;
}

.location-map {
    min-height: 430px;
    background:
        linear-gradient(
            rgba(25, 23, 20, 0.72),
            rgba(25, 23, 20, 0.72)
        ),
        url("../images/contact.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: min(500px, 90%);
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    padding: 45px 35px;
}

.map-placeholder > i {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 15px;
}

.map-placeholder h3 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: #777;
    line-height: 1.7;
    margin-bottom: 25px;
}


/* FAQ */

.contact-faq {
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin-bottom: 12px;
}

.faq-item p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   RESERVATION PAGE
========================================================= */

.reservation-page-hero {
    background:
        linear-gradient(rgba(20, 18, 15, 0.68), rgba(20, 18, 15, 0.68)),
        url("../images/reservation-hero.jpg") center/cover no-repeat;
}

.reservation-section {
    background: #fff;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: start;
}


/* Reservation Form */

.reservation-form-wrapper {
    padding: 10px 0;
}

.reservation-form-wrapper .section-heading {
    margin-bottom: 35px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.reservation-form .form-row {
    grid-template-columns: repeat(2, 1fr);
}

.input-icon {
    position: relative;
}

.input-icon > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    pointer-events: none;
    z-index: 2;
}

.input-icon input,
.input-icon select {
    padding-left: 45px;
}

.reservation-form textarea {
    min-height: 130px;
}


/* Checkbox */

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-label input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.reservation-submit {
    align-self: flex-start;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #999;
    font-size: 12px;
    margin-top: -5px;
}

.form-note i {
    color: var(--gold);
}


/* Reservation Sidebar */

.reservation-sidebar {
    position: sticky;
    top: 120px;
}

.reservation-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.reservation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reservation-info {
    background: var(--dark);
    color: #fff;
    padding: 38px;
}

.reservation-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 29px;
    line-height: 1.3;
    margin: 10px 0 15px;
}

.reservation-info > p {
    color: #bbb;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 30px;
}

.reservation-detail {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reservation-detail > i {
    color: var(--gold);
    font-size: 18px;
    width: 22px;
    padding-top: 3px;
}

.reservation-detail > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reservation-detail strong {
    font-size: 14px;
}

.reservation-detail span,
.reservation-detail a {
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
}

.reservation-detail a:hover {
    color: var(--gold);
}


/* Reservation Policy */

.reservation-policy {
    background: var(--cream);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1050px;
    margin: 0 auto;
}

.policy-card {
    background: #fff;
    padding: 35px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.policy-number {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.policy-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 21px;
    margin-bottom: 12px;
}

.policy-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT + RESERVATION RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

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

    .contact-main-grid {
        gap: 45px;
    }

    .hours-grid {
        gap: 45px;
    }

    .reservation-grid {
        gap: 45px;
    }

}


@media (max-width: 900px) {

    .contact-main-grid,
    .hours-grid,
    .reservation-grid {
        grid-template-columns: 1fr;
    }

    .contact-image {
        max-width: 650px;
    }

    .contact-form-wrapper {
        max-width: none;
    }

    .reservation-sidebar {
        position: static;
        max-width: 650px;
    }

    .reservation-image {
        height: 450px;
    }

    .policy-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

}


@media (max-width: 700px) {

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row,
    .reservation-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-image > img {
        height: 500px;
    }

    .contact-image-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }

    .hours-card {
        padding: 28px 22px;
    }

    .hours-row {
        flex-direction: column;
        gap: 6px;
    }

    .hours-row strong {
        text-align: left;
    }

    .location-map {
        min-height: 380px;
    }

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

    .reservation-image {
        height: 380px;
    }

    .reservation-info {
        padding: 30px 25px;
    }

}


@media (max-width: 480px) {

    .contact-info-card {
        padding: 28px 22px;
    }

    .contact-image > img {
        height: 420px;
    }

    .contact-image-card {
        padding: 22px;
    }

    .contact-image-card h3 {
        font-size: 21px;
    }

    .hours-card {
        padding: 25px 18px;
    }

    .map-placeholder {
        padding: 35px 22px;
    }

    .map-placeholder h3 {
        font-size: 22px;
    }

    .reservation-image {
        height: 320px;
    }

    .reservation-info {
        padding: 27px 20px;
    }

    .reservation-info h3 {
        font-size: 25px;
    }

    .policy-card {
        padding: 28px 22px;
    }

}
/* =========================================================
   ORDER PAGE
========================================================= */

.order-page-hero {
    min-height: 55vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
        url("../images/order-hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.order-page-hero .page-hero-content {
    width: 100%;
}

.order-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.order-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 40px;
    align-items: start;
}


/* ORDER INTRO */

.order-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.order-intro p {
    margin-top: 15px;
    color: var(--text-light);
    line-height: 1.8;
}


/* ORDER FILTER */

.order-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.order-filter-btn {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
    padding: 11px 22px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-filter-btn:hover,
.order-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}


/* ORDER ITEMS GRID */

.order-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.order-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.order-item.hidden {
    display: none;
}

.order-item-image {
    height: 220px;
    overflow: hidden;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.order-item:hover .order-item-image img {
    transform: scale(1.05);
}

.order-item-content {
    padding: 22px;
}

.order-item-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 21px;
    margin-bottom: 8px;
    color: var(--dark);
}

.order-item-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.order-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.order-item-price {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
}

.order-add-btn {
    border: none;
    background: var(--dark);
    color: var(--white);
    padding: 11px 17px;
    border-radius: 5px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-add-btn:hover {
    background: var(--gold);
}

.order-add-btn.added {
    background: #2f7d32;
}


/* CART */

.order-cart {
    position: sticky;
    top: 100px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.cart-header {
    background: var(--dark);
    color: var(--white);
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin: 0;
}

.cart-count {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.cart-body {
    padding: 25px;
}


/* EMPTY CART */

.cart-empty {
    text-align: center;
    padding: 35px 10px;
    color: var(--text-light);
}

.cart-empty i {
    display: block;
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 15px;
}

.cart-empty p {
    margin: 0;
    line-height: 1.6;
}


/* CART ITEMS */

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 65px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 65px;
    height: 65px;
    border-radius: 7px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h4 {
    font-size: 14px;
    margin: 0 0 6px;
    color: var(--dark);
}

.cart-item-price {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--light-bg);
    color: var(--dark);
    cursor: pointer;
    transition: background 0.2s ease;
}

.quantity-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.remove-item {
    border: none;
    background: transparent;
    color: #b33a3a;
    font-size: 12px;
    cursor: pointer;
    padding: 4px;
}

.remove-item:hover {
    text-decoration: underline;
}


/* CART SUMMARY */

.cart-summary {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 13px;
    color: var(--text-light);
    font-size: 14px;
}

.cart-summary-row strong {
    color: var(--dark);
}

.cart-total {
    display: block;
}

.cart-grand-total {
    margin-top: 15px;
    padding-top: 17px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-grand-total span {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.cart-grand-total strong {
    font-size: 20px;
    color: var(--gold);
}


/* CHECKOUT BUTTON */

.checkout-btn {
    width: 100%;
    margin-top: 22px;
    border: none;
    background: var(--gold);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}


/* ORDER STEPS */

.order-steps {
    padding: 100px 0;
    background: var(--white);
}

.order-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.order-step {
    text-align: center;
    padding: 35px 25px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.order-step-number {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.order-step h3 {
    font-family: "Playfair Display", serif;
    margin-bottom: 10px;
}

.order-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   404 PAGE
========================================================= */

.error-page {
    min-height: 78vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/hero-food.jpg") center/cover no-repeat;
}

.error-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.error-container {
    position: relative;
    z-index: 1;
}

.error-content {
    max-width: 750px;
    margin: 0 auto;
}

.error-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.error-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(100px, 18vw, 190px);
    line-height: 0.9;
    margin: 0;
    color: var(--gold);
}

.error-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.2;
    margin: 20px 0;
}

.error-content p {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
}

.error-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}


/* 404 QUICK LINKS */

.error-links {
    padding: 100px 0;
    background: var(--light-bg);
}

.error-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.error-link-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.error-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.error-link-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: rgba(201, 162, 78, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.error-link-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    margin: 0 0 5px;
    color: var(--dark);
}

.error-link-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
}

.error-link-card > i {
    margin-left: auto;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.error-link-card:hover > i {
    transform: translateX(5px);
}


/* =========================================================
   ORDER + 404 RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .order-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 25px;
    }

    .order-items {
        gap: 20px;
    }

    .error-link-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 900px) {

    .order-section,
    .order-steps,
    .error-links {
        padding: 80px 0;
    }

    .order-layout {
        grid-template-columns: 1fr;
    }

    .order-cart {
        position: static;
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
        order: -1;
    }

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

    .order-steps-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .error-page {
        min-height: 70vh;
    }
}


@media (max-width: 700px) {

    .order-items {
        grid-template-columns: 1fr;
    }

    .order-item-image {
        height: 240px;
    }

    .order-filter {
        gap: 8px;
    }

    .order-filter-btn {
        padding: 9px 16px;
        font-size: 13px;
    }

    .error-content h2 {
        font-size: 30px;
    }

    .error-content p {
        font-size: 14px;
    }

    .error-buttons {
        flex-direction: column;
        align-items: center;
    }

    .error-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .error-links {
        padding: 70px 0;
    }
}


@media (max-width: 480px) {

    .order-section {
        padding: 60px 0;
    }

    .order-item-content {
        padding: 18px;
    }

    .order-item-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-add-btn {
        width: 100%;
    }

    .cart-body {
        padding: 20px;
    }

    .cart-item {
        grid-template-columns: 55px minmax(0, 1fr);
    }

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

    .error-content h1 {
        font-size: 110px;
    }

    .error-content h2 {
        font-size: 27px;
    }

    .error-link-card {
        padding: 20px;
    }
}