:root {
    --primary-color: #d62828;
    --secondary-color: #ffffff;
    --restaurant-font: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--restaurant-font), sans-serif;
}

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

    padding: 25px 60px;
}

#restaurant-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 30px;
    position: absolute;
    padding: 8px;
    background-color: #2f0968;
}

ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #d62828;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 60px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.primary-button {
    display: inline-block;
    margin-top: 30px;
    background: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: bold;

    transition: 0.3s;
}

.primary-button:hover {
    background: var(--primary-color);
    filter: brightness(0.85);
    transform: translateY(-3px);
}

.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);

    display: flex;
    align-items: center;

    padding: 0 60px;
}

.hero-content {
    max-width: 600px;
    color: white;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.featured {
    padding: 100px 60px;
}

.featured h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.dish-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: 0.3s;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.dish-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.dish-image-placeholder {
    width: 100%;
    height: 220px;
    background: #eeeeee;

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

    color: #777;
    font-size: 16px;
}

.dish-card h3 {
    font-size: 24px;
    margin: 20px 20px 10px;
}

.dish-card p {
    margin: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.dish-card span {
    display: block;
    margin: 0 20px 20px;
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
}

.dish-card .primary-button {
    margin-left: 20px;
}

@media (max-width: 992px) {
    .dish-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu {
    padding: 100px 60px;
    background: var(--secondary-color);
}

.menu h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}

.menu-list {
    max-width: 900px;
    margin: 0 auto;
}

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

    padding: 25px 0;

    border-bottom: 1px solid #ddd;
}

.menu-image-container {
    width: 220px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #eeeeee;

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

.menu-food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 16px;
}

.menu-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.menu-info p {
    color: #666;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.menu-tabs button {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    background: #e5e5e5;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.menu-tabs button:hover {
    background: var(--primary-color);
    color: white;
}

.menu-tabs button.active {
    background: var(--primary-color);
    color: white;
}

.reservation {
    padding: 100px 60px;
    background: var(--secondary-color);
}

.reservation h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

#reservation-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#reservation-form label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}

#reservation-form input,
#reservation-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

#reservation-form input:focus,
#reservation-form textarea:focus {
    outline: none;
    background: var(--primary-color);
    box-shadow: 0 0 8px rgba(214, 40, 40, 0.3);
}

.contact {
    padding: 100px 60px;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.footer {
    color: rgb(6, 6, 6);
    text-align: center;
    padding: 40px 0;
}

/* =========================
   MOBILE RESPONSIVE DESIGN
   ========================= */

@media (max-width: 600px) {

    /* Navigation */
    nav {
        padding: 15px 20px;
    }

    nav ul {
        gap: 12px;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 14px;
    }

    .logo {
        font-size: 22px;
    }

    #restaurant-logo {
        width: 65px;
        height: 65px;
        margin: 0 10px;
        padding: 5px;
    }


    /* Hero */
    .hero {
        height: 75vh;
        padding: 0 20px;
    }

    .overlay {
        padding: 0 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.15;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .primary-button {
        padding: 12px 22px;
        font-size: 14px;
    }


    /* Featured dishes */
    .featured {
        padding: 60px 20px;
    }

    .featured h2,
    .menu h2,
    .reservation h2,
    .contact h2 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .dish-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dish-card {
        padding: 15px;
    }

    .dish-card img,
    .dish-image-placeholder {
        height: 200px;
    }


    /* Menu */
    .menu {
        padding: 60px 20px;
    }

    .menu-tabs {
        gap: 10px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .menu-tabs button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .menu-item {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 15px;
        padding: 20px 0;
    }

    .menu-image-container {
        width: 100px;
        height: 100px;
    }

    .menu-info h3 {
        font-size: 19px;
    }

    .menu-info p {
        font-size: 14px;
        line-height: 1.4;
    }

    .menu-item .add-to-cart-button {
        grid-column: 2;
        justify-self: start;
        margin-top: 8px;
        padding: 9px 14px;
        border: none;
        border-radius: 20px;
        background: var(--primary-color);
        color: white;
        font-weight: bold;
        cursor: pointer;
    }

    .menu-item .add-to-cart-button:hover {
        filter: brightness(0.9);
    }

    .price {
        grid-column: 2;
        font-size: 20px;
    }


    /* Reservation */
    .reservation {
        padding: 60px 20px;
    }

    #reservation-form {
        padding: 25px 20px;
    }


    /* Contact */
    .contact {
        padding: 60px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 20px;
    }


    /* Footer */
    .footer {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {

    /* Navigation */
    nav {
        padding: 10px 8px;
        min-height: 55px;
    }

    nav ul {
        gap: 8px;
        justify-content: flex-end;
    }

    nav a {
        font-size: 11px;
    }

    #restaurant-logo {
        width: 45px;
        height: 45px;
        margin: 0;
        padding: 3px;
        left: 8px;
    }


    /* Hero */
    .hero {
        height: 65vh;
        min-height: 480px;
    }

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

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

    .branch-selector {
        padding: 50px 12px;
    }

    .branch-selector h2 {
        font-size: 28px;
    }

    .branch-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .branch-card {
        padding: 20px;
    }

    .branch-card {
        cursor: pointer;
        transition: 0.2s ease;
    }

    .branch-card:hover {
        transform: translateY(-4px);
    }

    .branch-card.selected {
        outline: 3px solid var(--primary-color);
        transform: translateY(-4px);
    }


    /* Featured dishes */
    .featured {
        padding: 50px 12px;
    }

    .featured h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .dish-card {
        padding: 10px;
    }

    .dish-card img,
    .dish-image-placeholder {
        height: 180px;
    }

    .dish-card h3 {
        font-size: 20px;
        margin: 12px 10px 6px;
    }

    .dish-card p {
        font-size: 13px;
        margin: 0 10px 10px;
    }

    .dish-card span {
        font-size: 18px;
        margin: 0 10px 10px;
    }

    .dish-card .primary-button {
        margin-left: 10px;
        margin-top: 10px;
        padding: 9px 16px;
        font-size: 12px;
    }


    /* Menu */
    .menu {
        padding: 50px 12px;
    }

    .menu h2 {
        font-size: 28px;
    }

    .menu-tabs {
        gap: 7px;
    }

    .menu-tabs button {
        padding: 8px 13px;
        font-size: 12px;
    }

    .menu-item {
        grid-template-columns: 85px 1fr;
        gap: 12px;
    }

    .menu-image-container {
        width: 85px;
        height: 85px;
    }

    .menu-info h3 {
        font-size: 16px;
    }

    .menu-info p {
        font-size: 12px;
    }

    .cart-section {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }

    .price {
        font-size: 17px;
    }


    /* Reservation */
    .reservation {
        padding: 50px 12px;
    }

    .reservation h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    #reservation-form {
        padding: 20px 15px;
    }

    #reservation-form label {
        font-size: 13px;
    }

    #reservation-form input,
    #reservation-form textarea {
        padding: 11px;
        font-size: 14px;
    }


    /* Contact */
    .contact {
        padding: 50px 12px;
    }

    .contact h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .contact-card {
        padding: 16px;
    }

    .testimonials {
        padding: 50px 12px;
    }

    .testimonials h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-card {
        padding: 20px;
    }
}



.testimonials {
    padding: 100px 60px;
    background: #f5f5f5;
}

.testimonials h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;

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

    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card h3 {
    font-size: 16px;
}

.branch-selector {
    padding: 80px 60px;
    text-align: center;
}

.branch-selector h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.branch-container {
    max-width: 1100px;
    margin: 40px auto 0;

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

    gap: 25px;
}

.branch-card {
    padding: 30px;
    border-radius: 12px;
    background: white;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.branch-card h3 {
    margin-bottom: 15px;
}

.branch-card p {
    margin-bottom: 10px;
}

.cart-bar {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.cart-button {
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

#cart-count {
    margin-left: 6px;
}

.cart-section {
    position: fixed;
    top: 0;
    right: -420px;

    width: 400px;
    max-width: 90%;

    height: 100vh;

    background: white;

    z-index: 2000;

    box-shadow:
        -5px 0 20px rgba(0, 0, 0, 0.2);

    transition: right 0.3s ease;

    overflow-y: auto;
}

.cart-section.open {
    right: 0;
}

.cart-container {
    padding: 30px;
}

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

    margin-bottom: 30px;
}

.cart-header h2 {
    margin: 0;
}

.close-cart {
    border: none;
    background: none;

    font-size: 24px;

    cursor: pointer;
}

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

    padding: 15px 0;

    border-bottom: 1px solid #ddd;
}

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

.cart-item-info h3 {
    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: bold;
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 8px;
}

.cart-controls button {
    width: 28px;
    height: 28px;

    border: none;
    border-radius: 50%;

    cursor: pointer;
}

.cart-footer {
    margin-top: 30px;
}

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

    font-size: 20px;

    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
}

.checkout-form {
    margin-top: 25px;
}

.checkout-form h3 {
    margin-bottom: 15px;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 12px;
    margin-bottom: 12px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-family: inherit;
    font-size: 15px;
}

.checkout-form textarea {
    resize: vertical;
}

.order-type {
    margin: 20px 0;
}

.order-type h4 {
    margin-bottom: 12px;
}

.order-type label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

.delivery-details {
    margin-bottom: 12px;
}

/* =========================================================
   BARQ RESTAURANT V1
   Stitch-inspired editorial / brutalist visual system
   ========================================================= */

:root {
    --primary-color: #b90014;
    --secondary-color: #ffffff;
    --restaurant-font: "Inter", sans-serif;

    --barq-black: #1a1c1c;
    --barq-white: #ffffff;
    --barq-background: #f9f9f9;
    --barq-grey: #5e5e5e;
    --barq-light: #eeeeee;
}

/* ---------- Base ---------- */

html {
    scroll-behavior: smooth;
}

body {
    background: var(--barq-background);
    color: var(--barq-black);
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ---------- Header ---------- */

header {
    background: var(--barq-background);
    border-bottom: 2px solid var(--barq-black);
}

nav {
    min-height: 64px;
    padding: 12px 24px;
}

nav a {
    color: var(--barq-black);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

nav a:hover {
    color: var(--primary-color);
}

.logo {
    color: var(--barq-black);
    text-transform: uppercase;
    font-style: italic;
    font-weight: 900;
}

/* ---------- Logo ---------- */

#restaurant-logo {
    background: var(--barq-white);
    border: 2px solid var(--barq-black);
    padding: 6px;
}

/* ---------- Hero ---------- */

.hero {
    min-height: 78vh;
    height: auto;
    padding: 0;
    background-position: center;
}

.overlay {
    min-height: 78vh;
    padding: 40px 60px;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.15));
}

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

.hero-content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    text-transform: uppercase;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.04em;
}

.hero-content p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.5;
}

/* ---------- Buttons ---------- */

.primary-button {
    border-radius: 2px;
    border: 2px solid var(--barq-black);
    background: var(--primary-color);
    color: white;
    box-shadow: 4px 4px 0 var(--barq-black);
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.primary-button:hover {
    transform: translate(2px, 2px);
    filter: none;
    box-shadow: 2px 2px 0 var(--barq-black);
}

/* ---------- Sections ---------- */

.featured,
.menu,
.branch-selector,
.testimonials,
.reservation,
.contact {
    background: var(--barq-background);
}

.featured,
.menu,
.branch-selector,
.testimonials,
.reservation,
.contact {
    padding-top: 80px;
    padding-bottom: 80px;
}

.featured h2,
.menu h2,
.branch-selector h2,
.testimonials h2,
.reservation h2,
.contact h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

/* ---------- Featured Cards ---------- */

.dish-container {
    max-width: 1100px;
    margin: 0 auto;
}

.dish-card {
    border-radius: 2px;
    border: 2px solid var(--barq-black);
    background: var(--barq-white);
    padding: 0 0 20px;
    box-shadow: 4px 4px 0 var(--barq-black);
    overflow: hidden;
}

.dish-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--primary-color);
}

.dish-card img,
.dish-image-placeholder {
    height: 240px;
    border-radius: 0;
}

.dish-card h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 18px;
}

.dish-card p {
    color: var(--barq-grey);
}

.dish-card span {
    color: var(--primary-color);
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}

/* ---------- Menu ---------- */

.menu {
    border-top: 2px solid var(--barq-black);
}

.menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 8px;
}

.menu-tabs button {
    flex: 0 0 auto;
    border-radius: 2px;
    border: 2px solid var(--barq-black);
    background: var(--barq-white);
    color: var(--barq-black);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.menu-tabs button:hover,
.menu-tabs button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--barq-black);
}

/* ---------- Menu Items ---------- */

.menu-list {
    max-width: 1100px;
}

.menu-item {
    border-bottom: 2px solid var(--barq-black);
    padding: 20px 0;
}

.menu-image-container {
    border-radius: 2px;
    border: 2px solid var(--barq-black);
}

.menu-info h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.menu-info p {
    color: var(--barq-grey);
}

.price {
    color: var(--primary-color);
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}

/* ---------- Branches ---------- */

.branch-card {
    border-radius: 2px;
    border: 2px solid var(--barq-black);
    box-shadow: 4px 4px 0 var(--barq-black);
}

.branch-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--primary-color);
}

.branch-card.selected {
    outline: 3px solid var(--primary-color);
}

/* ---------- Testimonials ---------- */

.testimonials {
    background: var(--barq-black);
    color: white;
}

.testimonials h2 {
    color: white;
}

.testimonial-card {
    border-radius: 2px;
    border: 2px solid white;
    box-shadow: 4px 4px 0 var(--primary-color);
}

.testimonial-rating {
    color: var(--primary-color);
}

/* ---------- Reservation ---------- */

.reservation {
    border-top: 2px solid var(--barq-black);
}

#reservation-form {
    border-radius: 2px;
    border: 2px solid var(--barq-black);
    box-shadow: 4px 4px 0 var(--barq-black);
}

#reservation-form input,
#reservation-form textarea {
    border-radius: 2px;
    border: 2px solid var(--barq-black);
}

#reservation-form input:focus,
#reservation-form textarea:focus {
    outline: none;
    background: white;
    border-color: var(--primary-color);
    box-shadow: 3px 3px 0 var(--primary-color);
}

/* ---------- Contact ---------- */

.contact-card {
    border-radius: 2px;
    border: 2px solid var(--barq-black);
    box-shadow: 4px 4px 0 var(--barq-black);
}

.contact-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--primary-color);
}

/* ---------- Cart ---------- */

.cart-section {
    border-left: 3px solid var(--barq-black);
}

.cart-container {
    background: var(--barq-background);
}

.cart-item {
    border-bottom: 2px solid var(--barq-black);
}

.cart-controls button {
    border-radius: 2px;
    border: 2px solid var(--barq-black);
    background: var(--barq-white);
}

.cart-controls button:hover {
    background: var(--primary-color);
    color: white;
}

.cart-total {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

/* ---------- Footer ---------- */

.footer {
    background: var(--barq-black);
    color: white;
    border-top: 4px solid var(--primary-color);
}

/* ---------- Mobile ---------- */

@media (max-width: 600px) {

    nav {
        padding: 10px 12px;
    }

    .hero {
        min-height: 70vh;
    }

    .overlay {
        min-height: 70vh;
        padding: 30px 16px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 0.98;
    }

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

    .featured,
    .menu,
    .branch-selector,
    .testimonials,
    .reservation,
    .contact {
        padding: 55px 12px;
    }

    .featured h2,
    .menu h2,
    .branch-selector h2,
    .testimonials h2,
    .reservation h2,
    .contact h2 {
        font-size: 30px;
    }

    .dish-card {
        box-shadow: 3px 3px 0 var(--barq-black);
    }

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

    .menu-tabs button {
        padding: 9px 14px;
        font-size: 12px;
    }

    .branch-card {
        box-shadow: 3px 3px 0 var(--barq-black);
    }

    #reservation-form {
        box-shadow: 3px 3px 0 var(--barq-black);
    }
}

/* =========================================================
   BARQ V1 — HERO / GLOBAL POLISH
   ========================================================= */

:root {
    --barq-red: #b90014;
    --barq-black: #111111;
    --barq-white: #ffffff;
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 620px;
    height: 78vh;
    background-position: center;
    background-size: cover;
}

.overlay {
    min-height: 620px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 60px 6vw;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.58) 45%,
            rgba(0, 0, 0, 0.15) 100%);
}

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

.hero-content h1 {
    margin: 0 0 18px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.92;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.055em;
    color: #ffffff;
    text-shadow: 4px 4px 0 #000000;
}

.hero-content p {
    margin-bottom: 28px;
    max-width: 560px;
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
}

/* ---------- Primary actions ---------- */

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 12px 22px;

    border: 2px solid #000000;
    border-radius: 0;

    background: var(--barq-red);
    color: #ffffff;

    box-shadow: 5px 5px 0 #000000;

    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.02em;

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

.primary-button:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 #000000;
}

/* ---------- Section headings ---------- */

.featured h2,
.menu h2,
.branch-selector h2,
.reservation h2,
.contact h2 {
    position: relative;
    display: inline-block;

    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.035em;
}

.featured h2::after,
.menu h2::after,
.branch-selector h2::after,
.reservation h2::after,
.contact h2::after {
    content: "";
    display: block;

    width: 42px;
    height: 5px;

    margin-top: 10px;

    background: var(--barq-red);
}

/* ---------- Mobile hero ---------- */

@media (max-width: 600px) {

    .hero {
        min-height: 560px;
        height: 72vh;
    }

    .overlay {
        min-height: 560px;
        padding: 32px 18px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 13vw, 62px);
    }

    .hero-content p {
        font-size: 15px;
        max-width: 340px;
    }

    .primary-button {
        width: 100%;
        max-width: 220px;
    }
}

/* =========================================================
   BARQ V1 — FEATURED + MENU DENSITY
   ========================================================= */

.dish-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 35px auto 0;
}

.dish-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 430px;
}

.dish-card img,
.dish-image-placeholder {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.dish-card h3 {
    margin: 16px 18px 6px;
}

.dish-card p {
    margin: 0 18px 12px;
}

.dish-card span {
    margin: 0 18px 14px;
}

.dish-card .primary-button {
    align-self: flex-start;
    margin: auto 18px 4px;
    min-height: 40px;
    padding: 9px 16px;
}

/* ---------- Menu ---------- */

.menu-list {
    width: 100%;
    max-width: 1100px;
    margin: 35px auto 0;
}

.menu-item {
    display: grid;
    grid-template-columns: 140px 1fr auto auto;
    align-items: center;
    gap: 24px;

    min-height: 145px;
    padding: 18px 0;

    border-bottom: 2px solid var(--barq-black);
}

.menu-image-container {
    width: 140px;
    height: 105px;
    overflow: hidden;
}

.menu-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-info {
    min-width: 0;
}

.menu-info h3 {
    margin: 0 0 7px;
    font-size: 19px;
}

.menu-info p {
    margin: 0;
    font-size: 13px;
}

.menu-item .price {
    white-space: nowrap;
    font-size: 18px;
}

.menu-item button,
.menu-item .add-to-cart,
.menu-item .cart-button {
    border: 2px solid var(--barq-black);
    border-radius: 0;
    background: var(--barq-red);
    color: white;

    min-height: 40px;
    padding: 8px 14px;

    box-shadow: 3px 3px 0 var(--barq-black);

    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;

    cursor: pointer;
}

.menu-item button:hover,
.menu-item .add-to-cart:hover,
.menu-item .cart-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--barq-black);
}

/* ---------- Mobile ---------- */

@media (max-width: 700px) {

    .dish-container {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 12px;
    }

    .dish-card {
        min-height: auto;
    }

    .dish-card img,
    .dish-image-placeholder {
        height: 220px;
    }

    .menu-list {
        padding: 0 12px;
    }

    .menu-item {
        grid-template-columns: 90px 1fr;
        gap: 14px;
        min-height: 120px;
    }

    .menu-image-container {
        width: 90px;
        height: 90px;
        grid-row: span 2;
    }

    .menu-info h3 {
        font-size: 15px;
    }

    .menu-item .price {
        font-size: 15px;
    }

    .menu-item button,
    .menu-item .add-to-cart,
    .menu-item .cart-button {
        grid-column: 2;
        justify-self: start;
    }
}

/* =========================================================
   BARQ V1 — COMPACT CONTENT SECTIONS
   ========================================================= */

.featured {
    padding-top: 55px;
    padding-bottom: 55px;
}

.featured .dish-container {
    margin-top: 28px;
    justify-content: center;
}

.dish-container {
    align-items: stretch;
}

.dish-card {
    max-width: 340px;
}

/* When there are only 1–2 featured items,
   keep them visually centered instead of leaving
   a large empty grid area. */
@media (min-width: 701px) {
    .featured .dish-container {
        grid-template-columns: repeat(3, minmax(250px, 340px));
    }
}

/* ---------- Menu ---------- */

.menu {
    padding-top: 55px;
    padding-bottom: 55px;
}

.menu-list {
    margin-top: 28px;
}

/* ---------- Reservation ---------- */

.reservation {
    padding-top: 55px;
    padding-bottom: 65px;
}

/* ---------- Contact ---------- */

.contact {
    padding-top: 55px;
    padding-bottom: 55px;
}

/* =========================================================
   BARQ V1 — MENU FINAL POLISH
   ========================================================= */

.menu {
    background: #f9f9f9;
}

/* ---------- Menu Categories ---------- */

.menu-tabs {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 6px;

    width: 100%;
    max-width: 1100px;

    margin: 28px auto 32px;

    padding: 4px 2px 10px;

    overflow-x: auto;
    overflow-y: hidden;

    flex-wrap: nowrap;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

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

.menu-tabs button {
    flex: 0 0 auto;

    min-height: 40px;

    padding: 9px 11px;

    border: 2px solid #111111;
    border-radius: 0;

    background: #ffffff;
    color: #111111;

    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
    white-space: nowrap;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

.menu-tabs button:hover {
    background: #b90014;
    color: #ffffff;

    transform: translateY(-1px);
}

.menu-tabs button.active {
    background: #111111 !important;
    color: #ffffff !important;

    border-color: #111111;

    box-shadow: 3px 3px 0 #b90014;
}

/* ---------- Cart indicator ---------- */

#cart-button {
    border: 2px solid #111111;
    border-radius: 0;
    background: #ffffff;
    color: #111111;

    padding: 9px 16px;

    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    text-transform: uppercase;

    box-shadow: 3px 3px 0 #b90014;
}

#cart-button:hover {
    background: #b90014;
    color: #ffffff;
}

/* ---------- Menu rows ---------- */

.menu-list {
    max-width: 1050px;
}

.menu-item {
    grid-template-columns: 150px minmax(0, 1fr) 100px 110px;
    gap: 22px;

    min-height: 140px;
    padding: 18px 10px;

    background: #ffffff;
}

.menu-item:first-child {
    border-top: 2px solid #111111;
}

.menu-image-container {
    width: 150px;
    height: 105px;

    border: 2px solid #111111;
    border-radius: 0;
}

.menu-info h3 {
    font-size: 17px;
    font-weight: 900;
}

.menu-info p {
    font-size: 12px;
}

.menu-item .price {
    font-size: 17px;
    font-weight: 900;
    color: #111111;
}

.menu-item button,
.menu-item .add-to-cart,
.menu-item .cart-button {
    width: 100%;
    min-height: 42px;

    border: 2px solid #111111;
    border-radius: 0;

    background: #b90014;
    color: #ffffff;

    box-shadow: 3px 3px 0 #111111;

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.menu-item button:hover,
.menu-item .add-to-cart:hover,
.menu-item .cart-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #111111;
}

/* ---------- Mobile ---------- */

@media (max-width: 700px) {

    .menu-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 4px 2px 10px;
    }

    .menu-tabs button {
        flex: 0 0 auto;
        padding: 9px 13px;
        font-size: 11px;
    }

    .menu-item {
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 12px;
        padding: 16px 4px;
    }

    .menu-image-container {
        width: 90px;
        height: 90px;
    }

    .menu-info h3 {
        font-size: 14px;
    }

    .menu-item .price {
        margin-top: 6px;
        font-size: 15px;
    }

    .menu-item button,
    .menu-item .add-to-cart,
    .menu-item .cart-button {
        grid-column: 2;
        width: fit-content;
        min-width: 105px;
    }
}

/* =========================================================
   BARQ V1 — FOOD DETAIL MODAL
   ========================================================= */

.food-detail-modal {
    position: fixed;
    inset: 0;

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

    padding: 20px;

    background: rgba(0, 0, 0, 0.72);

    z-index: 3000;

    opacity: 0;
    visibility: hidden;

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

.food-detail-modal.open {
    opacity: 1;
    visibility: visible;
}

.food-detail-content {
    position: relative;

    width: min(900px, 100%);
    max-height: 90vh;

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

    overflow: auto;

    background: #ffffff;

    border: 3px solid #111111;

    box-shadow: 8px 8px 0 #b90014;
}

#food-detail-image {
    min-height: 420px;

    background: #eeeeee;

    border-right: 3px solid #111111;
}

#food-detail-image img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 420px;

    object-fit: cover;
}

.food-detail-no-image {
    height: 100%;
    min-height: 420px;

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

    color: #666666;

    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.food-detail-info {
    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 45px;
}

.food-detail-label {
    margin-bottom: 12px;

    color: #b90014;

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

#food-detail-name {
    margin: 0 0 18px;

    color: #111111;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 900;

    line-height: 0.95;

    text-transform: uppercase;
    font-style: italic;
}

#food-detail-description {
    margin: 0;

    color: #555555;

    font-size: 15px;
    line-height: 1.6;
}

.food-detail-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 35px;
    padding-top: 25px;

    border-top: 2px solid #111111;
}

#food-detail-price {
    color: #b90014;

    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 900;

    white-space: nowrap;
}

.food-detail-close {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 42px;
    height: 42px;

    border: 2px solid #111111;
    border-radius: 0;

    background: #ffffff;
    color: #111111;

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

    cursor: pointer;

    z-index: 2;
}

.food-detail-close:hover {
    background: #b90014;
    color: #ffffff;
}

/* ---------- Make menu content clickable ---------- */

.menu-image-container,
.menu-info {
    cursor: pointer;
}

.menu-image-container:hover {
    box-shadow: 3px 3px 0 #b90014;
}

.menu-info:hover h3 {
    color: #b90014;
}

/* ---------- Mobile ---------- */

@media (max-width: 700px) {

    .food-detail-modal {
        padding: 12px;
    }

    .food-detail-content {
        grid-template-columns: 1fr;

        width: 100%;
        max-height: 94vh;

        box-shadow: 5px 5px 0 #b90014;
    }

    #food-detail-image {
        min-height: 240px;

        height: 240px;

        border-right: none;
        border-bottom: 3px solid #111111;
    }

    #food-detail-image img {
        min-height: 240px;
        height: 240px;
    }

    .food-detail-no-image {
        min-height: 240px;
    }

    .food-detail-info {
        padding: 28px 20px 24px;
    }

    #food-detail-name {
        font-size: 32px;
    }

    #food-detail-description {
        font-size: 14px;
    }

    .food-detail-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    #food-detail-price {
        font-size: 22px;
    }

    .food-detail-bottom .primary-button {
        width: 100%;
        max-width: none;
    }
}

/* =========================================================
   BARQ V1 — CART / CHECKOUT
   ========================================================= */

.cart-section {
    background: #111111;
    color: #ffffff;
    border-top: 4px solid #b90014;
}

.cart-container {
    background: #ffffff;
    color: #111111;

    border: 3px solid #111111;
    box-shadow: 8px 8px 0 #b90014;

    border-radius: 0;
}

.cart-header {
    background: #111111;
    color: #ffffff;

    border-bottom: 3px solid #111111;
}

.cart-header h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}

.cart-branch {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

/* ---------- Close button ---------- */

.close-cart {
    border: 2px solid #ffffff;
    border-radius: 0;

    background: #111111;
    color: #ffffff;

    font-weight: 900;
}

.close-cart:hover {
    background: #b90014;
}

/* ---------- Cart items ---------- */

#cart-items {
    background: #ffffff;
}

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

    gap: 20px;

    padding: 20px 18px;

    border-bottom: 2px solid #111111;
}

.cart-item-info h3 {
    margin: 0 0 12px;

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 900;

    text-transform: uppercase;
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-controls button {
    width: 34px;
    height: 34px;

    border: 2px solid #111111;
    border-radius: 0;

    background: #ffffff;
    color: #111111;

    font-weight: 900;
    font-size: 18px;

    cursor: pointer;
}

.cart-controls button:hover {
    background: #b90014;
    color: #ffffff;
}

.cart-controls span {
    min-width: 30px;
    text-align: center;

    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}

.cart-item-price {
    align-self: center;

    color: #b90014;

    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 900;

    white-space: nowrap;
}

/* ---------- Cart footer ---------- */

.cart-footer {
    background: #f9f9f9;
    padding: 24px;
}

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

    padding: 18px 0;

    border-top: 2px solid #111111;
    border-bottom: 2px solid #111111;

    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}

.cart-total span {
    color: #b90014;
    font-size: 22px;
}

/* ---------- Checkout ---------- */

.checkout-form {
    padding-top: 24px;
}

.checkout-form h3 {
    margin-bottom: 18px;

    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 900;

    text-transform: uppercase;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;

    box-sizing: border-box;

    border: 2px solid #111111;
    border-radius: 0;

    background: #ffffff;
    color: #111111;

    padding: 12px;

    font-family: "Inter", sans-serif;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none;

    border-color: #b90014;

    box-shadow: 3px 3px 0 #b90014;
}

.checkout-form label {
    display: block;

    margin: 12px 0 6px;

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

    text-transform: uppercase;
}

/* ---------- Pickup / Delivery ---------- */

.order-type {
    margin: 22px 0;

    padding: 16px;

    border: 2px solid #111111;

    background: #ffffff;
}

.order-type h4 {
    margin: 0 0 14px;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 900;

    text-transform: uppercase;
}

.order-type label {
    display: inline-flex;
    align-items: center;

    margin: 0 14px 0 0;

    padding: 10px 14px;

    border: 2px solid #111111;

    cursor: pointer;
}

.order-type label:has(input:checked) {
    background: #b90014;
    color: #ffffff;
}

.order-type input {
    width: auto;
    margin-right: 8px;
    box-shadow: none;
}

/* ---------- Delivery ---------- */

.delivery-details {
    margin-bottom: 18px;
    padding: 18px;

    border: 2px solid #111111;
    background: #ffffff;
}

#delivery-address-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
}

#delivery-address-fields textarea {
    grid-column: 1 / -1;
}

/* ---------- Place order ---------- */

#checkout-button {
    width: 100%;

    margin-top: 20px;

    min-height: 52px;

    border: 2px solid #111111;
    border-radius: 0;

    background: #b90014;
    color: #ffffff;

    box-shadow: 4px 4px 0 #111111;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 900;

    text-transform: uppercase;

    cursor: pointer;
}

#checkout-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #111111;
}

/* ---------- Empty cart ---------- */

.empty-cart {
    padding: 40px 20px;

    text-align: center;

    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

/* ---------- Mobile ---------- */

@media (max-width: 600px) {

    .cart-container {
        width: calc(100% - 20px);
        box-shadow: 5px 5px 0 #b90014;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cart-item-price {
        justify-self: start;
    }

    #delivery-address-fields {
        grid-template-columns: 1fr;
    }

    #delivery-address-fields textarea {
        grid-column: auto;
    }

    .order-type {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .order-type label {
        margin: 0;
    }
}

/* =========================================================
   BARQ MATCHDAY HERO
   ========================================================= */

.matchday-hero {
    min-height: 620px;
    width: 100%;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    align-items: center;

    gap: 70px;

    padding: 90px 6vw 70px;

    background:
        radial-gradient(circle at 78% 45%,
            rgba(185, 0, 20, 0.18),
            transparent 32%),
        #111111;

    color: #ffffff;

    position: relative;
    overflow: hidden;
}


/* subtle tactical background */

.matchday-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px,
            transparent 1px);

    background-size: 60px 60px;

    mask-image: linear-gradient(90deg,
            transparent,
            black 55%,
            black);

    pointer-events: none;
}


/* red tactical accent */

.matchday-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(185, 0, 20, 0.35);
    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(185, 0, 20, 0.04),
        0 0 0 70px rgba(185, 0, 20, 0.025);

    pointer-events: none;
}


/* ---------- Left copy ---------- */

.matchday-copy {
    position: relative;
    z-index: 2;

    max-width: 680px;
}


.matchday-eyebrow {
    display: inline-flex;

    align-items: center;

    margin-bottom: 22px;

    padding: 7px 12px;

    border: 1px solid #b90014;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.matchday-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 9px;

    background: #b90014;

    border-radius: 50%;
}


.matchday-copy h1 {
    margin: 0 0 20px;

    font-family: "Montserrat", sans-serif;

    font-size: clamp(54px, 7vw, 96px);

    line-height: 0.88;

    font-weight: 900;
    font-style: italic;

    letter-spacing: -0.06em;

    text-transform: uppercase;

    color: #ffffff;

    text-shadow: 5px 5px 0 #000000;
}


.matchday-copy>p:not(.matchday-description) {
    max-width: 620px;

    margin: 0 0 14px;

    font-family: "Inter", sans-serif;

    font-size: clamp(18px, 2vw, 24px);

    line-height: 1.35;

    color: #ffffff;
}


.matchday-description {
    max-width: 540px;

    margin: 0 0 30px;

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

    font-size: 15px;

    line-height: 1.6;
}


.matchday-actions {
    display: flex;

    align-items: center;

    gap: 16px;

    flex-wrap: wrap;
}


.matchday-secondary-button {
    display: inline-flex;

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

    min-height: 48px;

    padding: 12px 22px;

    border: 2px solid #ffffff;

    background: transparent;

    color: #ffffff;

    text-decoration: none;

    font-family: "Montserrat", sans-serif;

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

    text-transform: uppercase;

    letter-spacing: 0.02em;

    transition: 0.15s ease;
}


.matchday-secondary-button:hover {
    background: #ffffff;
    color: #111111;

    transform: translateY(-2px);
}


/* ---------- Special card ---------- */

.matchday-special {
    position: relative;
    z-index: 3;

    border: 2px solid #ffffff;

    background: #ffffff;

    color: #111111;

    box-shadow: 9px 9px 0 #b90014;

    transform: rotate(1deg);

    transition: 0.2s ease;
}


.matchday-special:hover {
    transform: rotate(0deg) translateY(-4px);

    box-shadow: 12px 12px 0 #b90014;
}


.matchday-special-header {
    display: flex;

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

    padding: 15px 18px;

    border-bottom: 2px solid #111111;

    background: #ffffff;
}


.special-label {
    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.special-status {
    margin-left: 12px;

    color: #b90014;

    font-family: "Montserrat", sans-serif;

    font-size: 10px;

    font-weight: 900;
}


.special-number {
    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 900;
}


/* ---------- Food visual ---------- */

.matchday-food-visual {
    height: 260px;

    position: relative;

    overflow: hidden;

    display: flex;

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

    background:
        radial-gradient(circle at 50% 45%,
            #2b2b2b,
            #111111 70%);
}

.hero-food-image {
    position: absolute;

    inset: 0;

    z-index: 1;

    width: 100%;
    height: 100%;

    display: flex;

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

    background:
        radial-gradient(ellipse at center,
            rgba(185, 0, 20, 0.30),
            rgba(17, 17, 17, 0.85));

    background-size: cover;
    background-position: center;

    color: rgba(255, 255, 255, 0.55);
}

.hero-food-image span {
    position: absolute;

    bottom: 8px;

    padding: 5px 8px;

    border: 1px solid rgba(255, 255, 255, 0.3);
}


/* football */

.food-ball {
    position: absolute;

    z-index: 2;

    right: 45px;
    top: 28px;

    width: 68px;
    height: 68px;

    display: flex;

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

    border-radius: 50%;

    background: #171717;

    border: 2px solid #b90014;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.45);
}


.football-mark {
    font-size: 28px;

    filter: grayscale(1);
}


/* tactical lines */

.tactical-lines {
    position: absolute;

    inset: 20px;

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


.tactical-lines::before,
.tactical-lines::after {
    content: "";

    position: absolute;

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


.tactical-lines::before {
    width: 1px;
    height: 100%;

    left: 50%;
    top: 0;
}


.tactical-lines::after {
    height: 1px;
    width: 100%;

    left: 0;
    top: 50%;
}


/* ---------- Food information ---------- */

.matchday-food-info {
    padding: 18px 20px 20px;
}


.food-rating {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 12px;

    font-family: "Montserrat", sans-serif;
}


.food-rating span {
    color: #b90014;

    font-size: 18px;
}


.food-rating strong {
    font-size: 15px;
}


.food-rating small {
    margin-left: 5px;

    color: #777;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;
}


.matchday-food-row {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 20px;
}


.food-position {
    color: #777;

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.matchday-food-row h2 {
    margin: 5px 0 0;

    font-family: "Montserrat", sans-serif;

    font-size: 25px;

    line-height: 1;

    font-weight: 900;

    font-style: italic;

    text-transform: uppercase;
}


.matchday-price {
    text-align: right;
}


.matchday-price small {
    display: block;

    color: #777;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.08em;
}


.matchday-price strong {
    font-family: "Montserrat", sans-serif;

    font-size: 24px;

    font-weight: 900;
}


.matchday-price span {
    margin-left: 3px;

    font-size: 9px;

    font-weight: 900;
}


#hero-featured-description {
    margin: 14px 0;

    color: #666;

    font-size: 13px;

    line-height: 1.5;
}


/* ---------- Add button ---------- */

.matchday-add-button {
    width: 100%;

    min-height: 44px;

    display: flex;

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

    gap: 10px;

    border: 2px solid #111111;

    background: #b90014;

    color: #ffffff;

    cursor: pointer;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    box-shadow: 4px 4px 0 #111111;

    transition: 0.12s ease;
}


.matchday-add-button span {
    font-size: 20px;

    line-height: 1;
}


.matchday-add-button:hover {
    transform: translate(2px, 2px);

    box-shadow: 2px 2px 0 #111111;
}


/* =========================================================
   MATCHDAY HERO — MOBILE
   ========================================================= */

@media (max-width: 900px) {

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

        gap: 45px;

        padding: 85px 22px 55px;
    }

    .matchday-copy {
        max-width: 700px;
    }

    .matchday-special {
        width: min(100%, 520px);

        margin: 0 auto;
    }

}


@media (max-width: 600px) {

    .matchday-hero {
        min-height: auto;

        padding: 90px 16px 50px;

        gap: 35px;

        background:
            radial-gradient(circle at 80% 30%,
                rgba(185, 0, 20, 0.18),
                transparent 38%),
            #111111;
    }


    .matchday-copy h1 {
        font-size: clamp(48px, 15vw, 68px);
    }


    .matchday-copy>p:not(.matchday-description) {
        font-size: 17px;
    }


    .matchday-description {
        font-size: 14px;
    }


    .matchday-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .matchday-actions .primary-button,
    .matchday-secondary-button {
        width: 100%;
    }


    .matchday-special {
        transform: none;

        box-shadow: 6px 6px 0 #b90014;
    }


    .matchday-special:hover {
        transform: none;

        box-shadow: 6px 6px 0 #b90014;
    }


    .matchday-food-visual {
        height: 230px;
    }


    .matchday-food-row {
        align-items: center;
    }


    .matchday-food-row h2 {
        font-size: 21px;
    }


    .matchday-price strong {
        font-size: 21px;
    }

}

.hero-food-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(0 18px 20px rgba(0, 0, 0, 0.55));
}


.hero-food-no-image {
    width: 170px;
    height: 130px;

    display: flex;

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

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

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

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 0.08em;
}

/* =========================================================
   BARQ — STARTING LINEUP
   ========================================================= */

.featured {
    position: relative;
    padding: 70px 5%;
    background: #f7f7f7;
}

.lineup-heading {
    text-align: center;
    margin-bottom: 35px;
}

.lineup-heading>span {
    display: block;
    color: #c90016;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.lineup-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}

.lineup-heading h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    background: #c90016;
    margin: 10px auto 15px;
}

.lineup-heading p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 13px;
    color: #555;
}


/* =========================================================
   FOOTBALL PITCH
   ========================================================= */

#featured-dishes {
    position: relative;

    width: min(1000px, 92vw);
    height: 580px;

    margin: 0 auto;

    background:
        repeating-linear-gradient(90deg,
            #237d36 0px,
            #237d36 100px,
            #287f3b 100px,
            #287f3b 200px);

    border: 5px solid #111;

    box-shadow: 7px 7px 0 #111;

    overflow: hidden;
}


/* Pitch outer boundary + halfway line */

#featured-dishes::before {
    content: "";

    position: absolute;

    left: 22px;
    right: 22px;
    top: 22px;
    bottom: 22px;

    border: 2px solid rgba(255, 255, 255, .95);

    background:
        linear-gradient(to bottom,
            transparent 49.7%,
            rgba(255, 255, 255, .95) 49.7%,
            rgba(255, 255, 255, .95) 50.3%,
            transparent 50.3%);

    pointer-events: none;
}


/* Centre circle */

#featured-dishes::after {
    content: "";

    position: absolute;

    width: 145px;
    height: 145px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 2px solid rgba(255, 255, 255, .95);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   FOOD PLAYER
   ========================================================= */

.lineup-food {
    position: absolute;

    width: 150px;

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

    text-align: center;

    z-index: 5;
}


/* Food image */

.lineup-food-image {
    position: relative;

    width: 86px;
    height: 86px;

    border-radius: 50%;

    overflow: hidden;

    background: #fff;

    border: 4px solid #fff;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, .4),
        0 0 0 3px #111;

    transition: .2s ease;
}

.lineup-food:hover .lineup-food-image {
    transform: scale(1.07);

    box-shadow:
        0 6px 14px rgba(0, 0, 0, .45),
        0 0 0 3px #c90016;
}

.lineup-food-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.lineup-food-no-image {
    width: 100%;
    height: 100%;

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

    background: #eee;

    color: #111;

    font-size: 9px;
    font-weight: 900;
}


/* =========================================================
   FOOD INFORMATION
   ========================================================= */

.lineup-food-info {
    position: relative;

    margin-top: 7px;

    min-width: 125px;
    max-width: 155px;

    padding: 2px 4px;

    background: transparent;

    border: 0;

    box-shadow: none;

    color: #fff;

    text-shadow:
        0 1px 2px #000,
        1px 0 2px #000,
        -1px 0 2px #000;
}

.lineup-food-info strong {
    display: block;

    font-size: 11px;

    line-height: 1.15;

    font-weight: 900;

    text-transform: uppercase;
}

.lineup-food-info span {
    display: block;

    margin-top: 3px;

    font-size: 10px;

    font-weight: 800;
}


/* =========================================================
   + ADD TO CART
   ========================================================= */

.lineup-add-button {
    position: absolute;

    top: -4px;
    right: 3px;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    border: 2px solid #111;

    background: #c90016;

    color: #fff;

    font-size: 17px;
    font-weight: 900;

    line-height: 20px;

    cursor: pointer;

    z-index: 10;

    box-shadow: 2px 2px 0 #111;

    transition: .15s ease;
}

.lineup-add-button:hover {
    transform: scale(1.12);

    background: #111;
}


/* =========================================================
   RATING / FEATURED BADGE
   ========================================================= */

.lineup-rating {
    position: absolute;

    top: -25px;
    left: 50%;

    transform: translateX(-50%);

    padding: 3px 8px;

    background: #111;

    color: #fff;

    border: 2px solid #c90016;

    font-size: 9px;

    font-weight: 900;

    white-space: nowrap;

    box-shadow: 2px 2px 0 #c90016;

    z-index: 10;
}

.lineup-rating.featured-badge {
    background: #c90016;

    border-color: #111;

    box-shadow: 2px 2px 0 #111;
}


/* =========================================================
   POSITION LABEL
   ========================================================= */

.lineup-position-label {
    margin-top: 6px;

    padding: 2px 7px;

    background: #111;

    color: #fff;

    border-left: 3px solid #c90016;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   PLAYER POSITIONS
   ========================================================= */

/* Goalkeeper */

.lineup-position-center-bottom {
    left: 50%;
    bottom: 45px;

    transform: translateX(-50%);
}


/* Defence */

.lineup-position-far-left-defense {
    left: 7%;
    bottom: 160px;
}

.lineup-position-left-defense {
    left: 25%;
    bottom: 185px;
}

.lineup-position-center-defense {
    left: 50%;
    bottom: 195px;

    transform: translateX(-50%);
}

.lineup-position-right-defense {
    right: 25%;
    bottom: 185px;
}

.lineup-position-far-right-defense {
    right: 7%;
    bottom: 160px;
}


/* Midfield */

.lineup-position-left-mid {
    left: 20%;
    top: 285px;
}

.lineup-position-center-mid {
    left: 50%;
    top: 255px;

    transform: translateX(-50%);
}

.lineup-position-right-mid {
    right: 20%;
    top: 285px;
}


/* Attack */

.lineup-position-far-left-attack {
    left: 8%;
    top: 95px;
}

.lineup-position-left-attack {
    left: 25%;
    top: 80px;
}

.lineup-position-center-attack {
    left: 50%;
    top: 55px;

    transform: translateX(-50%);
}

.lineup-position-right-attack {
    right: 25%;
    top: 80px;
}

.lineup-position-far-right-attack {
    right: 8%;
    top: 95px;
}


/* Simple layouts */

.lineup-position-center {
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}

.lineup-position-left-middle {
    left: 20%;
    top: 50%;

    transform: translateY(-50%);
}

.lineup-position-right-middle {
    right: 20%;
    top: 50%;

    transform: translateY(-50%);
}


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

@media (max-width: 700px) {

    .featured {
        padding: 55px 12px;
    }

    .lineup-heading {
        margin-bottom: 25px;
    }

    #featured-dishes {
        width: 92vw;
        height: 520px;

        border-width: 4px;

        box-shadow: 5px 5px 0 #111;
    }

    #featured-dishes::before {
        left: 15px;
        right: 15px;
        top: 15px;
        bottom: 15px;
    }

    #featured-dishes::after {
        width: 100px;
        height: 100px;
    }

    .lineup-food {
        width: 105px;
    }

    .lineup-food-image {
        width: 62px;
        height: 62px;

        border-width: 3px;
    }

    .lineup-food-info {
        min-width: 88px;
        max-width: 108px;

        padding: 4px;
    }

    .lineup-food-info strong {
        font-size: 8px;
    }

    .lineup-food-info span {
        font-size: 8px;
    }

    .lineup-add-button {
        width: 22px;
        height: 22px;

        font-size: 14px;
    }

    .lineup-rating {
        top: -18px;

        padding: 2px 5px;

        font-size: 6px;
    }

    .lineup-position-label {
        font-size: 6px;
    }

    /* Mobile positions */

    .lineup-position-center-bottom {
        bottom: 35px;
    }

    .lineup-position-left-defense {
        left: 22%;
        bottom: 150px;
    }

    .lineup-position-right-defense {
        right: 22%;
        bottom: 150px;
    }

    .lineup-position-center-defense {
        bottom: 165px;
    }

    .lineup-position-left-mid {
        left: 15%;
        top: 255px;
    }

    .lineup-position-center-mid {
        top: 225px;
    }

    .lineup-position-right-mid {
        right: 15%;
        top: 255px;
    }

    .lineup-position-far-left-attack {
        left: 5%;
        top: 70px;
    }

    .lineup-position-left-attack {
        left: 20%;
        top: 60px;
    }

    .lineup-position-center-attack {
        top: 45px;
    }

    .lineup-position-right-attack {
        right: 20%;
        top: 60px;
    }

    .lineup-position-far-right-attack {
        right: 5%;
        top: 70px;
    }
}

/* =========================================================
   BARQ — FINAL STARTING LINEUP / TACTICAL PITCH
   ========================================================= */

.lineup-section {
    background: #f7f7f7;
    padding: 80px 4%;
}

.lineup-heading {
    text-align: center;
    margin-bottom: 35px;
}

.lineup-heading>span {
    display: block;
    color: #c90016;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.lineup-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}

.lineup-heading h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    background: #c90016;
    margin: 12px auto 16px;
}

.lineup-heading p {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
    font-size: 13px;
}


/* =========================================================
   PITCH
   ========================================================= */

.football-lineup {
    position: relative;

    /* Tactical-board proportions */
    width: min(620px, 88vw);
    height: min(930px, 132vw);

    margin: 0 auto;

    background:
        repeating-linear-gradient(90deg,
            #27833b 0,
            #27833b 9.09%,
            #2b8840 9.09%,
            #2b8840 18.18%);

    border: 5px solid #111;

    box-shadow: 7px 7px 0 #111;

    overflow: hidden;
}


/* Inner pitch boundary */

.football-lineup::before {
    content: "";
    position: absolute;

    inset: 2.5%;

    border: 2px solid rgba(255, 255, 255, 0.9);

    pointer-events: none;
}


/* Halfway line */

.football-lineup::after {
    content: "";

    position: absolute;

    left: 2.5%;
    right: 2.5%;

    top: 50%;

    height: 2px;

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

    pointer-events: none;
}


/* =========================================================
   CENTER CIRCLE
   ========================================================= */

.pitch-markings {
    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 1;
}

.center-circle {
    position: absolute;

    width: 18%;
    aspect-ratio: 1;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 2px solid rgba(255, 255, 255, 0.95);

    border-radius: 50%;
}

.center-circle::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: white;

    border-radius: 50%;
}


/* =========================================================
   PENALTY AREAS
   ========================================================= */

.penalty-box {
    position: absolute;

    left: 50%;

    width: 52%;

    height: 16%;

    transform: translateX(-50%);

    border: 2px solid rgba(255, 255, 255, 0.95);
}

.penalty-top {
    top: 2.5%;
}

.penalty-bottom {
    bottom: 2.5%;
}


/* Goal areas */

.goal-box {
    position: absolute;

    left: 50%;

    width: 24%;

    height: 7%;

    transform: translateX(-50%);

    border: 2px solid rgba(255, 255, 255, 0.95);
}

.goal-top {
    top: 2.5%;
}

.goal-bottom {
    bottom: 2.5%;
}


/* =========================================================
   REMOVE OLD GENERATED PITCH EFFECTS
   ========================================================= */

#featured-dishes {
    position: absolute !important;

    inset: 0 !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;

    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;

    box-shadow: none !important;

    overflow: visible !important;

    z-index: 10;
}

#featured-dishes::before,
#featured-dishes::after {
    display: none !important;
}


/* =========================================================
   FOOD / PLAYER
   ========================================================= */

.lineup-player {
    position: absolute;

    width: 92px;

    transform: translate(-50%, -50%);

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

    text-align: center;

    z-index: 20;

    transition:
        transform 0.2s ease,
        z-index 0.2s ease;
}

.lineup-player:hover {
    transform: translate(-50%, -50%) scale(1.08);

    z-index: 100;
}


/* Food image */

.lineup-player-image {
    position: relative;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #fff;

    border: 3px solid #fff;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.35);

    overflow: hidden;
}

.lineup-player-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.lineup-player-no-image {
    width: 100%;
    height: 100%;

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

    background: #eee;

    color: #777;

    font-size: 8px;
    font-weight: 900;
}


/* =========================================================
   + BUTTON
   ========================================================= */

.lineup-player-add {
    position: absolute;

    top: -4px;
    right: 8px;

    width: 21px;
    height: 21px;

    padding: 0;

    border-radius: 50%;

    border: 2px solid #111;

    background: #c90016;

    color: #fff;

    font-size: 16px;
    font-weight: 900;

    line-height: 17px;

    cursor: pointer;

    box-shadow: 2px 2px 0 #111;

    z-index: 5;
}

.lineup-player-add:hover {
    background: #111;
}


/* =========================================================
   FOOD NAME / PRICE
   ========================================================= */

.lineup-player-card {
    min-width: 82px;
    max-width: 105px;

    margin-top: 5px;

    padding: 5px 7px 4px;

    background: #fff;

    border: 2px solid #111;

    box-shadow: 2px 2px 0 #111;
}

.lineup-player-card strong {
    display: block;

    font-size: 9px;
    line-height: 11px;

    font-weight: 900;

    text-transform: uppercase;
}

.lineup-player-card span {
    display: block;

    margin-top: 2px;

    font-size: 8px;

    font-weight: 800;
}


/* =========================================================
   FEATURED / RATING BADGE
   ========================================================= */

.lineup-player-badge {
    display: inline-block;

    margin-bottom: 3px;

    padding: 2px 5px;

    background: #c90016;

    color: #fff;

    font-size: 6px;

    font-weight: 900;

    letter-spacing: .5px;

    text-transform: uppercase;
}

.lineup-player-rating {
    position: absolute;

    left: 50%;
    top: -13px;

    transform: translateX(-50%);

    background: #fff;

    border: 1px solid #111;

    padding: 2px 5px;

    font-size: 7px;

    font-weight: 900;

    white-space: nowrap;
}


/* =========================================================
   TEAM SIDE LABEL
   ========================================================= */

.lineup-team-label {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    padding: 5px 12px;

    background: #111;

    color: #fff;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

    z-index: 5;
}

.lineup-team-home {
    top: 3.5%;
}

.lineup-team-away {
    bottom: 3.5%;
}


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

.lineup-footer {
    width: min(1100px, 94vw);

    margin: 20px auto 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 11px;

    font-weight: 900;
}

.lineup-footer span {
    color: #c90016;
}

.lineup-footer a {
    color: #111;

    font-weight: 900;

    text-decoration: underline;
}


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

@media (max-width: 800px) {

    .football-lineup {
        width: 88vw;
        height: 132vw;
    }

    .lineup-player {
        width: 72px;
    }

    .lineup-player-image {
        width: 48px;
        height: 48px;
    }

    .lineup-player-card {
        min-width: 65px;
        max-width: 80px;

        padding: 4px;
    }

    .lineup-player-card strong {
        font-size: 7px;
        line-height: 8px;
    }

    .lineup-player-card span {
        font-size: 6px;
    }

    .lineup-player-add {
        width: 18px;
        height: 18px;

        font-size: 13px;

        line-height: 14px;
    }
}


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

@media (max-width: 500px) {

    .lineup-section {
        padding: 55px 8px;
    }

    .lineup-heading {
        margin-bottom: 25px;
    }

    .lineup-heading h2 {
        font-size: 28px;
    }

    .football-lineup {
        width: 92vw;
        height: 138vw;

        border-width: 3px;

        box-shadow: 5px 5px 0 #111;
    }

    .lineup-player {
        width: 55px;
    }

    .lineup-player-image {
        width: 36px;
        height: 36px;

        border-width: 2px;
    }

    .lineup-player-card {
        min-width: 52px;
        max-width: 65px;

        margin-top: 3px;

        padding: 3px;
    }

    .lineup-player-card strong {
        font-size: 5.5px;
        line-height: 6px;
    }

    .lineup-player-card span {
        font-size: 5px;
    }

    .lineup-player-add {
        width: 15px;
        height: 15px;

        font-size: 11px;

        line-height: 11px;
    }

    .lineup-player-badge {
        font-size: 5px;

        padding: 1px 3px;
    }

    .lineup-player-rating {
        font-size: 5px;

        padding: 1px 3px;
    }

    .lineup-footer {
        font-size: 8px;
    }
}

/* =========================
   MENU SEARCH
   ========================= */

.menu-search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(620px, 100%);
    margin: 0 auto 28px;
}

#menu-search {
    flex: 1;
    height: 48px;
    padding: 0 18px;
    border: 2px solid #111;
    border-radius: 0;
    background: #fff;
    color: #111;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    box-sizing: border-box;
}

#menu-search::placeholder {
    color: #777;
    font-weight: 500;
}

#menu-search:focus {
    border-color: #c8102e;
    box-shadow: 3px 3px 0 #c8102e;
}

#clear-menu-search {
    height: 48px;
    padding: 0 18px;
    border: 2px solid #111;
    border-radius: 0;
    background: #fff;
    color: #111;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

#clear-menu-search:hover {
    background: #111;
    color: #fff;
}

#clear-menu-search:active {
    transform: translate(2px, 2px);
}

@media (max-width: 700px) {

    .menu-search-container {
        width: 100%;
        margin-bottom: 22px;
    }

    #menu-search {
        height: 44px;
        font-size: 14px;
    }

    #clear-menu-search {
        height: 44px;
        padding: 0 14px;
    }

}

/* =========================================================
   BARQ V2 — CONTACT + FOOTER FINAL DESIGN
   ========================================================= */

/* ---------- Contact Section ---------- */

.contact {
    position: relative;
    padding: 90px 6vw 85px;
    background: #f5f5f5;
    border-top: 2px solid #111;
}

.contact h2 {
    max-width: 1100px;
    margin: 0 auto 45px;
    text-align: left;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1;
    color: #111;
}

.contact-container {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* Contact cards */

.contact-card {
    position: relative;
    min-height: 105px;
    padding: 24px 26px;
    box-sizing: border-box;

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

    background: #fff;
    border: 2px solid #111;
    border-radius: 0;

    box-shadow: 4px 4px 0 #111;

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

.contact-card:hover {
    transform: translate(3px, 3px);
    box-shadow: 1px 1px 0 #c90016;
}

/* Card heading */

.contact-card h3 {
    margin: 0 0 8px;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;

    color: #111;
}

/* Card content */

.contact-card p,
.contact-card a {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;

    color: #555;
}

.contact-card a {
    color: #111;
    text-decoration: none;
}

.contact-card a:hover {
    color: #c90016;
    text-decoration: underline;
}

/* Red accent on left */

.contact-card::before {
    content: "";
    position: absolute;

    left: -2px;
    top: 18px;
    bottom: 18px;

    width: 4px;

    background: #c90016;
}

/* WhatsApp */

.contact-card:nth-child(7) {
    background: #111;
    border-color: #111;
    color: white;
}

.contact-card:nth-child(7) h3,
.contact-card:nth-child(7) p,
.contact-card:nth-child(7) a {
    color: white;
}

.contact-card:nth-child(7)::before {
    background: #c90016;
}

.contact-card:nth-child(7) a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Google Maps */

.contact-card:nth-child(8) {
    background: #c90016;
    border-color: #111;
    color: white;
}

.contact-card:nth-child(8) h3,
.contact-card:nth-child(8) p,
.contact-card:nth-child(8) a {
    color: white;
}

.contact-card:nth-child(8)::before {
    background: #111;
}

.contact-card:nth-child(8) a:hover {
    color: white;
    text-decoration: underline;
}


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

.footer {
    position: relative;

    padding: 42px 20px;

    background: #111;
    color: white;

    border-top: 5px solid #c90016;

    text-align: center;
}

.footer p {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #aaa;
}

.footer p::before {
    content: "BARQ DEV  •  ";
    color: white;
    font-weight: 900;
}


/* =========================================================
   CONTACT + FOOTER MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .contact {
        padding: 65px 16px 60px;
    }

    .contact h2 {
        margin-bottom: 32px;
        font-size: 34px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-card {
        min-height: 95px;
        padding: 21px 22px;
    }

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

    .contact-card p,
    .contact-card a {
        font-size: 13px;
    }

    .footer {
        padding: 34px 18px;
    }

    .footer p {
        font-size: 9px;
        line-height: 1.6;
    }
}

/* =========================================================
   BARQ V2 — SWIPEABLE REVIEWS
   ========================================================= */

.testimonials {
    padding: 90px 0 100px;
    background: #111;
    color: #fff;
    overflow: hidden;
}

.testimonials h2 {
    width: min(1100px, 90vw);
    margin: 0 auto 45px;

    text-align: center;

    color: #fff;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    font-style: italic;

    text-transform: uppercase;
    letter-spacing: -0.035em;
}

.testimonials h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 5px;

    margin: 14px auto 0;

    background: #c90016;
}


/* =========================================================
   HORIZONTAL REVIEW TRACK
   ========================================================= */

.testimonials-container {

    display: flex;

    gap: 22px;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 10px 6vw 25px;

    box-sizing: border-box;

    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   REVIEW CARD
   ========================================================= */

.testimonial-card {

    flex: 0 0 min(420px, 78vw);

    min-height: 230px;

    padding: 30px;

    box-sizing: border-box;

    background: #fff;

    color: #111;

    border: 2px solid #111;

    border-radius: 0;

    box-shadow: 6px 6px 0 #c90016;

    scroll-snap-align: start;

    position: relative;

    display: flex;
    flex-direction: column;

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

.testimonial-card:hover {

    transform: translateY(-4px);

    box-shadow: 6px 10px 0 #c90016;
}


/* Big quote */

.testimonial-card::after {

    content: "”";

    position: absolute;

    right: 22px;
    top: 8px;

    font-family: Georgia, serif;

    font-size: 70px;

    line-height: 1;

    color: #c90016;
}


/* =========================================================
   STARS
   ========================================================= */

.testimonial-card .stars,
.testimonial-stars {

    margin-bottom: 20px;

    color: #c90016;

    font-size: 18px;

    letter-spacing: 2px;

    font-weight: 900;
}


/* =========================================================
   REVIEW TEXT
   ========================================================= */

.testimonial-card p {

    color: #333;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   CUSTOMER NAME
   ========================================================= */

.testimonial-card h3,
.testimonial-card h4 {

    margin-top: auto;

    padding-top: 20px;

    color: #111;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 0.06em;
}


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

@media (max-width: 600px) {

    .testimonials {

        padding: 65px 0 75px;

    }

    .testimonials h2 {

        width: 90vw;

        margin-bottom: 35px;

        font-size: 30px;

    }

    .testimonials-container {

        gap: 18px;

        padding-left: 8vw;
        padding-right: 8vw;

        scroll-snap-type: x mandatory;

    }

    .testimonial-card {

        flex: 0 0 84vw;

        min-height: 220px;

        padding: 25px;

        box-shadow: 5px 5px 0 #c90016;

    }

}

/* =========================================================
   TODAY'S SPECIAL
   ========================================================= */

.todays-special {
    padding: 90px 6%;
    background: #f5f5f5;
    border-top: 2px solid #111;
    border-bottom: 2px solid #111;
}

.todays-special-header {
    max-width: 1100px;
    margin: 0 auto 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.todays-special-eyebrow {
    display: inline-block;
    padding: 8px 12px;
    background: #c9001b;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.todays-special-header h2 {
    margin: 14px 0 8px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.95;
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
}

.todays-special-header p {
    margin: 0;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.5;
}

.todays-special-period {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 12px 18px;
    border: 2px solid #111;
    background: #fff;
    box-shadow: 5px 5px 0 #c9001b;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}


/* =========================================================
   SPECIAL SLIDER
   ========================================================= */

.todays-special-slider {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    gap: 24px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 0 0 18px;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    scrollbar-width: thin;
}

.todays-special-slider::-webkit-scrollbar {
    height: 8px;
}

.todays-special-slider::-webkit-scrollbar-track {
    background: #ddd;
}

.todays-special-slider::-webkit-scrollbar-thumb {
    background: #111;
}


/* =========================================================
   INDIVIDUAL SPECIAL CARD
   ========================================================= */

.todays-special-card {
    flex: 0 0 100%;

    min-height: 360px;

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

    background: #fff;
    border: 2px solid #111;

    box-shadow: 10px 10px 0 #c9001b;

    scroll-snap-align: start;
}


/* =========================================================
   SPECIAL IMAGE
   ========================================================= */

.todays-special-image {
    min-height: 360px;

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

    background: #111;

    border-right: 2px solid #111;

    overflow: hidden;
}

.todays-special-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;

    object-fit: cover;

    display: block;
}

.todays-special-image span {
    color: #fff;

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

    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   SPECIAL INFORMATION
   ========================================================= */

.todays-special-info {
    padding: 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.todays-special-label {
    color: #c9001b;

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

    letter-spacing: 1px;
    text-transform: uppercase;
}

.todays-special-card-period {
    display: inline-block;

    margin-top: 8px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;

    color: #111;
}

.todays-special-info h3 {
    margin: 12px 0;

    font-size: clamp(32px, 4vw, 52px);

    line-height: 0.95;

    font-style: italic;
    font-weight: 900;

    text-transform: uppercase;
}

.todays-special-info p {
    margin: 0 0 30px;

    color: #444;

    font-size: 16px;
    line-height: 1.5;
}

.todays-special-bottom {
    display: flex;

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

    gap: 20px;
}

.todays-special-price {
    font-size: 22px;
    font-weight: 900;

    white-space: nowrap;
}

.todays-special-bottom .primary-button {
    margin: 0;
}


/* =========================================================
   NO SPECIAL
   ========================================================= */

.todays-special-empty {
    max-width: 1100px;
    min-height: 360px;

    margin: 0 auto;

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

    background: #111;

    border: 2px solid #111;

    box-shadow: 10px 10px 0 #c9001b;
}

.todays-special-empty span {
    color: #fff;

    font-size: 20px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   TODAY'S SPECIAL — MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .todays-special {
        padding: 60px 20px;
    }

    .todays-special-header {
        display: block;
    }

    .todays-special-header h2 {
        font-size: 42px;
    }

    .todays-special-period {
        margin-top: 20px;
    }

    .todays-special-slider {
        gap: 20px;

        padding-bottom: 15px;

        margin-right: -5px;
    }

    .todays-special-card {
        flex-basis: 100%;

        grid-template-columns: 1fr;

        min-height: auto;
    }

    .todays-special-image {
        min-height: 260px;

        border-right: none;
        border-bottom: 2px solid #111;
    }

    .todays-special-image img {
        min-height: 260px;
    }

    .todays-special-info {
        padding: 30px 25px;
    }

    .todays-special-info h3 {
        font-size: 36px;
    }

    .todays-special-bottom {
        align-items: stretch;

        flex-direction: column;
    }

    .todays-special-bottom .primary-button {
        width: 100%;
    }

    .todays-special-empty {
        min-height: 260px;
    }
}

/* =========================================================
   LINEUP — REMOVE FOOD INFO CARD BACKGROUND
   ========================================================= */

.lineup-food-info {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    padding: 2px 4px !important;

    color: #fff !important;

    text-shadow:
        0 1px 3px #000,
        1px 0 3px #000,
        -1px 0 3px #000,
        0 -1px 3px #000 !important;
}

.lineup-food-info strong,
.lineup-food-info span {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    color: #fff !important;

    text-shadow:
        0 1px 3px #000,
        1px 0 3px #000,
        -1px 0 3px #000,
        0 -1px 3px #000 !important;
}

/* =========================================================
   STARTING LINEUP — CLEAN FOOD LABELS
   ========================================================= */

#featured-dishes .lineup-player-info {
    width: 112px;

    margin-top: 5px;

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

    text-align: center;

    pointer-events: none;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    padding: 0 !important;

    color: #fff;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 0 4px rgba(0, 0, 0, 0.85);
}

#featured-dishes .lineup-player-info strong {
    display: block;

    width: 112px;

    color: #fff;

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    font-weight: 900;

    line-height: 1.15;

    text-transform: uppercase;

    overflow-wrap: break-word;
}

#featured-dishes .lineup-player-info>span {
    display: block;

    margin-top: 3px;

    color: #fff;

    font-family: "Montserrat", sans-serif;

    font-size: 8px;

    font-weight: 800;

    line-height: 1;

    white-space: nowrap;
}

/* Completely disable the old card if any old markup remains */
#featured-dishes .lineup-player-card {
    display: none !important;
}

/* =========================================================
   STARTING LINEUP
   4-3-3 BOTH TEAMS
   FULL PITCH — NO COLLISIONS
   ========================================================= */

#featured-dishes .lineup-player {
    width: 105px;
    z-index: 5;

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

    text-align: center;

    pointer-events: none;
}

/* Keep food markers compact */
#featured-dishes .lineup-player-image {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
}

/* =========================================================
   FOOD INFORMATION
   ========================================================= */

#featured-dishes .lineup-player-info {
    width: 100px;
    max-width: 100px;

    margin-top: 4px;
    padding: 0;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

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

    color: #fff;

    text-align: center;

    text-shadow:
        0 1px 2px #000,
        1px 0 2px #000,
        -1px 0 2px #000,
        0 -1px 2px #000;
}

#featured-dishes .lineup-player-info strong {
    display: block;

    width: 100px;
    max-width: 100px;

    font-size: 8px;
    line-height: 9px;
    font-weight: 900;

    color: #fff;

    overflow-wrap: anywhere;
}

#featured-dishes .lineup-player-info span {
    display: block;

    margin-top: 2px;

    font-size: 7px;
    line-height: 8px;
    font-weight: 900;

    color: #fff;

    white-space: nowrap;
}

/* =========================================================
   IMPORTANT:
   REMOVE OLD WHITE PLAYER CARDS
   ========================================================= */

#featured-dishes .lineup-player-card {
    display: none !important;
}

/* =========================================================
   KEEP + BUTTON VISIBLE
   ========================================================= */

#featured-dishes .lineup-player-add {
    position: absolute;

    top: -2px;
    right: 4px;

    width: 21px;
    height: 21px;

    padding: 0;

    border-radius: 50%;

    border: 2px solid #111;

    background: #c90016;
    color: #fff;

    font-size: 16px;
    font-weight: 900;

    line-height: 17px;

    z-index: 10;

    pointer-events: auto;
}

/* =========================================================
   SMALLER PITCH MARKERS ON NARROW SCREENS
   ========================================================= */

@media (max-width: 800px) {

    #featured-dishes .lineup-player {
        width: 82px;
    }

    #featured-dishes .lineup-player-image {
        width: 48px;
        height: 48px;
    }

    #featured-dishes .lineup-player-info {
        width: 82px;
        max-width: 82px;
    }

    #featured-dishes .lineup-player-info strong {
        width: 82px;
        max-width: 82px;

        font-size: 7px;
        line-height: 8px;
    }

    #featured-dishes .lineup-player-info span {
        font-size: 6px;
        line-height: 7px;
    }

    /* =========================================================
   FOOD DETAIL MODAL — ENABLE STARTING LINEUP CLICKS
   ========================================================= */

    #featured-dishes .lineup-player {
        pointer-events: auto;
        cursor: pointer;
    }

    #featured-dishes .lineup-player-image {
        pointer-events: auto;
        cursor: pointer;
    }
}

/* ---------- Cart Added Feedback ---------- */

#cart-toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 20px);

    padding: 13px 20px;

    background: #111111;
    color: #ffffff;

    border: 2px solid #b90014;
    box-shadow: 4px 4px 0 #b90014;

    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 14px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    z-index: 99999;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

#cart-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

#cart-button.cart-added {
    animation: cartAddedPulse 0.5s ease;
}

@keyframes cartAddedPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 700px) {
    #cart-toast {
        bottom: 20px;
        max-width: 85%;
        text-align: center;
    }
}

/* =========================================================
   BARQ V1 — FINAL MOBILE LAYOUT OVERRIDES
   ========================================================= */

@media (max-width: 700px) {

    /* ---------- PAGE WIDTH ---------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* ---------- HEADER / NAV ---------- */

    header {
        height: auto;
    }

    nav {
        min-height: 58px;
        height: auto;
        padding: 8px 10px;
        gap: 8px;
    }

    nav ul {
        width: auto;
        max-width: 100%;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
        font-size: 11px;
    }

    nav ul li a {
        white-space: nowrap;
    }


    /* ---------- MAIN HERO ---------- */

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

    .matchday-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 24px;
        padding: 35px 16px 35px;
    }

    .matchday-copy {
        width: 100%;
        max-width: none;
        height: auto;
    }

    .matchday-special {
        width: 100%;
        height: auto;
    }

    .matchday-food-row {
        width: 100%;
        max-width: 100%;
    }


    /* ---------- MAN OF THE SERIES IMAGE ---------- */

    .matchday-food-visual {
        height: 230px;
    }

    .hero-food-image {
        width: 100%;
        height: 100%;
    }


    /* ---------- STARTING LINEUP ---------- */

    .lineup-section {
        height: auto;
        padding: 45px 10px 45px;
    }

    .lineup-heading {
        width: 100%;
        height: auto;
        padding: 0 0 20px;
        margin: 0;
    }

    .football-lineup {
        width: 100%;
        max-width: 396px;
        height: auto;
        min-height: 500px;
        margin: 0 auto;
    }


    /* ---------- MENU ---------- */

    .menu {
        height: auto;
        padding: 45px 10px 50px;
    }

    .menu-list {
        width: 100%;
        max-width: none;
        padding: 0;
        margin-top: 20px;
    }

    .menu-item {
        width: 100%;
        min-height: 125px;
        padding: 12px 4px;
        grid-template-columns: 95px minmax(0, 1fr) 82px 90px;
        gap: 8px;
    }

    .menu-item button,
    .menu-item .add-to-cart,
    .menu-item .cart-button {
        min-height: 40px;
        padding: 7px 8px;
        font-size: 11px;
    }


    /* ---------- RESERVATION ---------- */

    .reservation {
        height: auto;
        padding: 45px 10px 50px;
    }

    #reservation-form {
        width: 100%;
        max-width: none;
        height: auto;
        padding: 18px 12px;
    }


    /* ---------- TESTIMONIALS ---------- */

    .testimonials {
        height: auto;
        padding: 50px 10px 55px;
    }


    /* ---------- CONTACT ---------- */

    .contact {
        height: auto;
        padding: 50px 12px 50px;
    }

    .contact-container {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 10px;
    }

    .contact-card {
        width: 100%;
        min-height: 0;
        height: auto;
        padding: 14px 16px;
    }

}

/* =========================================================
   INITIAL BRANCH / LOCATION PROMPT
   ========================================================= */

.branch-location-prompt {
    position: fixed;
    inset: 0;
    z-index: 9999;

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

    padding: 20px;

    background: rgba(0, 0, 0, 0.72);
}

.branch-location-box {
    width: 100%;
    max-width: 420px;

    padding: 30px 24px;

    background: #ffffff;

    border: 3px solid #111111;

    box-shadow: 6px 6px 0 #b90014;

    text-align: center;
}

.branch-location-icon {
    font-size: 42px;
    margin-bottom: 8px;
}

.branch-location-box h2 {
    margin: 0 0 12px;

    font-family: "Montserrat", sans-serif;
    font-weight: 900;

    text-transform: uppercase;
}

.branch-location-box p {
    margin: 0 0 22px;

    line-height: 1.5;
}

.branch-location-primary,
.branch-location-secondary {
    width: 100%;

    min-height: 48px;

    border: 2px solid #111111;

    border-radius: 0;

    font-family: "Montserrat", sans-serif;
    font-weight: 900;

    text-transform: uppercase;

    cursor: pointer;
}

.branch-location-primary {
    background: #b90014;
    color: #ffffff;

    box-shadow: 3px 3px 0 #111111;

    margin-bottom: 12px;
}

.branch-location-secondary {
    background: #ffffff;
    color: #111111;

    box-shadow: 3px 3px 0 #b90014;
}

.branch-location-primary:hover,
.branch-location-secondary:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #111111;
}

.branch-location-status {
    margin-top: 16px !important;
    margin-bottom: 0 !important;

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

@media (max-width: 700px) {

    .branch-location-prompt {
        padding: 14px;
    }

    .branch-location-box {
        padding: 24px 18px;
    }

}