/* =========================================================
   THE LAST EXIT CAFE
   ONLINE ORDERING WEBSITE
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #ffc000;
    --yellow-light: #ffd033;
    --black: #050505;
    --dark: #0b0b0b;
    --dark-2: #121212;
    --dark-3: #1b1b1b;
    --white: #ffffff;
    --grey: #aaaaaa;
    --grey-dark: #666666;
    --border: #292929;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    width: 100%;
    display: block;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    min-height: 92px;

    background: rgba(0, 0, 0, 0.98);

    border-bottom: 1px solid #222;

    position: sticky;
    top: 0;

    z-index: 1000;
}

.header-inner {
    width: min(1500px, 92%);

    min-height: 92px;

    margin: auto;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 35px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    position: relative;

    width: 185px;
    min-width: 185px;

    padding: 7px 14px 8px;

    border: 3px solid var(--yellow);

    border-radius: 13px 4px 13px 4px;

    color: var(--yellow);

    display: flex;
    flex-direction: column;

    transform: rotate(-1deg);
}

.brand::after {
    content: "";

    position: absolute;

    right: -18px;
    top: 40%;

    width: 30px;
    height: 18px;

    background: var(--yellow);

    clip-path: polygon(
        0 25%,
        65% 25%,
        65% 0,
        100% 50%,
        65% 100%,
        65% 75%,
        0 75%
    );
}

.brand-the {
    position: absolute;

    top: -10px;
    left: 25px;

    padding: 0 6px;

    background: #000;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.brand strong {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: 28px;

    line-height: 0.95;

    letter-spacing: 1px;
}

.brand-cafe {
    margin-top: 3px;

    text-align: center;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 5px;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 35px;

    flex: 1;
}

.desktop-nav a {
    position: relative;

    color: #ddd;

    font-size: 14px;

    font-weight: 800;

    transition: 0.25s;
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--yellow);

    transition: 0.25s;
}

.desktop-nav a:hover {
    color: var(--yellow);
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}

.icon-button {
    width: 46px;
    height: 46px;

    border: 1px solid #333;

    background: #101010;

    color: #fff;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 17px;

    transition: 0.25s;
}

.icon-button:hover {
    border-color: var(--yellow);

    color: var(--yellow);
}

.cart-button {
    min-height: 46px;

    padding: 0 16px;

    border: 2px solid var(--yellow);

    background: var(--yellow);

    color: #000;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 13px;

    font-weight: 900;

    transition: 0.25s;
}

.cart-button:hover {
    background: #fff;

    border-color: #fff;
}

.cart-button strong {
    min-width: 24px;
    height: 24px;

    padding: 0 6px;

    border-radius: 20px;

    background: #000;

    color: var(--yellow);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 11px;
}


/* =========================================================
   HAMBURGER
========================================================= */

.menu-toggle {
    width: 46px;
    height: 46px;

    padding: 8px;

    border: 1px solid #333;

    background: #101010;

    display: none;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 6px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;

    background: var(--yellow);

    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.ordering-hero {
    width: 100%;

    min-height: 680px;

    padding: 65px 6%;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(255, 192, 0, 0.11),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #030303 0%,
            #0a0a0a 60%,
            #111 100%
        );

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 65px;

    position: relative;

    overflow: hidden;
}

.ordering-hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 210px;

    top: -100px;
    right: -120px;

    background: var(--yellow);

    transform: rotate(-10deg);

    clip-path: polygon(
        0 20%,
        100% 0,
        91% 30%,
        100% 49%,
        90% 68%,
        97% 85%,
        10% 100%
    );
}


/* =========================================================
   HERO COPY
========================================================= */

.hero-copy {
    position: relative;

    z-index: 3;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--yellow);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.hero-copy h1 {
    margin-bottom: 25px;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: clamp(72px, 8vw, 130px);

    line-height: 0.78;

    letter-spacing: 1px;
}

.hero-copy h1 span {
    color: transparent;

    -webkit-text-stroke: 2px var(--yellow);
}

.hero-copy > p {
    max-width: 630px;

    margin-bottom: 32px;

    color: #aaa;

    font-size: 18px;

    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.primary-button,
.secondary-button {
    min-height: 52px;

    padding: 15px 24px;

    display: inline-flex;

    justify-content: center;
    align-items: center;

    border: 2px solid transparent;

    font-size: 13px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    transition: 0.25s;
}

.primary-button {
    background: var(--yellow);

    border-color: var(--yellow);

    color: #000;
}

.primary-button:hover {
    background: #fff;

    border-color: #fff;

    transform: translateY(-3px);
}

.secondary-button {
    border-color: #4a4a4a;

    background: transparent;

    color: #fff;
}

.secondary-button:hover {
    border-color: var(--yellow);

    color: var(--yellow);

    transform: translateY(-3px);
}


/* =========================================================
   HERO META
========================================================= */

.hero-meta {
    max-width: 570px;

    margin-top: 42px;

    padding-top: 22px;

    border-top: 1px solid #292929;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.hero-meta div {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.hero-meta small {
    color: #666;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.hero-meta strong {
    font-size: 17px;
}


/* =========================================================
   HERO FOOD IMAGE
========================================================= */

.hero-food {
    position: relative;

    z-index: 3;

    min-width: 0;

    padding-right: 10px;
}

.hero-food > img {
    width: 100%;

    height: 560px;

    object-fit: cover;

    object-position: center;

    border: 1px solid #282828;

    box-shadow: 20px 20px 0 var(--yellow);
}

.hero-food-label {
    position: absolute;

    bottom: 35px;
    left: -30px;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: var(--yellow);

    color: #000;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    transform: rotate(-10deg);

    box-shadow: 7px 7px 0 #000;
}

.hero-food-label span {
    margin-bottom: 5px;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.hero-food-label strong {
    font-family: Impact, sans-serif;

    font-size: 24px;

    line-height: 0.92;
}


/* =========================================================
   FOOD MARQUEE
========================================================= */

.food-marquee {
    width: 100%;

    overflow: hidden;

    padding: 16px 0;

    background: var(--yellow);

    color: #000;

    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
}

.food-marquee div {
    width: max-content;

    white-space: nowrap;

    font-family: Impact, Haettenschweiler, sans-serif;

    font-size: 22px;

    letter-spacing: 2px;

    animation: marqueeMove 25s linear infinite;
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-35%);
    }
}


/* =========================================================
   ORDERING AREA
========================================================= */

.ordering-area {
    min-height: 700px;

    padding: 95px 6% 120px;

    background: #090909;
}

.ordering-heading {
    width: min(1450px, 100%);

    margin: 0 auto 50px;

    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;
}

.ordering-heading h2 {
    max-width: 800px;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: clamp(52px, 6vw, 92px);

    line-height: 0.9;
}

.ordering-heading h2 span {
    color: transparent;

    -webkit-text-stroke: 2px var(--yellow);
}

.ordering-heading > p {
    max-width: 480px;

    color: #888;

    line-height: 1.7;

    font-size: 15px;
}


/* =========================================================
   CATEGORY TABS
========================================================= */

.category-tabs {
    width: min(1450px, 100%);

    margin: 0 auto 25px;

    padding-bottom: 8px;

    display: flex;

    gap: 8px;

    overflow-x: auto;

    scrollbar-width: thin;

    scrollbar-color: var(--yellow) #111;
}

.category-tab {
    flex: 0 0 auto;

    min-height: 44px;

    padding: 10px 17px;

    border: 1px solid #333;

    background: #101010;

    color: #aaa;

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    transition: 0.2s;
}

.category-tab:hover {
    border-color: var(--yellow);

    color: var(--yellow);
}

.category-tab.active {
    background: var(--yellow);

    border-color: var(--yellow);

    color: #000;
}


/* =========================================================
   SEARCH
========================================================= */

.search-panel {
    width: min(1450px, 100%);

    max-height: 0;

    margin: 0 auto;

    overflow: hidden;

    opacity: 0;

    transition: 0.3s;
}

.search-panel.open {
    max-height: 100px;

    margin-bottom: 28px;

    opacity: 1;
}

.search-panel input {
    width: 100%;

    min-height: 54px;

    padding: 0 18px;

    border: 1px solid #333;

    outline: none;

    background: #111;

    color: #fff;

    font-size: 15px;
}

.search-panel input:focus {
    border-color: var(--yellow);
}

.search-panel input::placeholder {
    color: #666;
}


/* =========================================================
   PRODUCTS GRID
========================================================= */

.products-grid {
    width: min(1450px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    overflow: hidden;

    background: #111;

    border: 1px solid #292929;

    display: flex;

    flex-direction: column;

    transition: 0.25s;
}

.product-card:hover {
    border-color: var(--yellow);

    transform: translateY(-5px);
}

.product-image {
    position: relative;

    height: 260px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #141414,
            #050505
        );
}

.product-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.4s;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    color: #3c3c3c;

    font-family: Impact, sans-serif;

    font-size: 40px;

    letter-spacing: 2px;
}


/* CATEGORY LABEL */

.product-category {
    position: absolute;

    left: 14px;
    top: 14px;

    padding: 7px 10px;

    background: #000;

    color: var(--yellow);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* PRODUCT DETAILS */

.product-content {
    padding: 21px;

    flex: 1;

    display: flex;

    flex-direction: column;
}

.product-content h3 {
    margin-bottom: 8px;

    color: #fff;

    font-size: 21px;

    line-height: 1.2;
}

.product-description {
    margin-bottom: 24px;

    color: #777;

    font-size: 13px;

    line-height: 1.6;
}

.product-bottom {
    margin-top: auto;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 15px;
}

.product-price {
    color: var(--yellow);

    font-size: 18px;

    font-weight: 900;
}

.add-to-cart {
    min-height: 42px;

    padding: 10px 15px;

    border: 2px solid var(--yellow);

    background: var(--yellow);

    color: #000;

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    transition: 0.2s;
}

.add-to-cart:hover {
    background: transparent;

    color: var(--yellow);
}


/* =========================================================
   EMPTY SEARCH RESULT
========================================================= */

.no-products {
    grid-column: 1 / -1;

    min-height: 250px;

    border: 1px solid #222;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 10px;

    color: #777;

    text-align: center;
}

.no-products strong {
    color: var(--yellow);

    font-family: Impact, sans-serif;

    font-size: 35px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-strip {
    padding: 100px 6%;

    background: var(--yellow);

    color: #000;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;
}

.about-strip .eyebrow {
    color: #000;
}

.about-strip h2 {
    font-family: Impact, Haettenschweiler, sans-serif;

    font-size: clamp(55px, 7vw, 100px);

    line-height: 0.88;
}

.about-strip h2 span {
    color: transparent;

    -webkit-text-stroke: 2px #000;
}

.about-text {
    align-self: center;

    max-width: 650px;
}

.about-text p {
    margin-bottom: 22px;

    font-size: 18px;

    line-height: 1.75;

    font-weight: 600;
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    padding: 100px 6%;

    background: #0c0c0c;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.location-copy h2 {
    margin-bottom: 28px;

    font-family: Impact, Haettenschweiler, sans-serif;

    font-size: clamp(60px, 7vw, 100px);

    line-height: 0.85;
}

.location-copy h2 span {
    color: transparent;

    -webkit-text-stroke: 2px var(--yellow);
}

.location-copy > p {
    margin-bottom: 30px;

    color: #aaa;

    font-size: 19px;

    line-height: 1.7;
}


/* =========================================================
   LOCATION DETAILS
========================================================= */

.location-info {
    border-top: 1px solid #333;
}

.location-info > div {
    min-height: 125px;

    padding: 27px 0;

    border-bottom: 1px solid #333;

    display: grid;

    grid-template-columns: 55px 1fr;

    align-items: start;
}

.location-info > div > span {
    color: var(--yellow);

    font-size: 11px;

    font-weight: 900;
}

.location-info small {
    grid-column: 2;

    margin-bottom: 8px;

    color: #666;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.location-info strong,
.location-info a {
    grid-column: 2;

    color: #fff;

    font-size: 21px;

    font-weight: 800;
}

.location-info a:hover {
    color: var(--yellow);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 55px 6% 25px;

    background: #000;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    align-items: center;
}

.footer-brand strong {
    display: block;

    color: var(--yellow);

    font-family: Impact, sans-serif;

    font-size: 32px;
}

.footer-brand span {
    display: block;

    margin-top: 6px;

    color: #777;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}

.footer-links {
    display: flex;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 20px;
}

.footer-links a {
    color: #999;

    font-size: 13px;

    font-weight: 700;
}

.footer-links a:hover {
    color: var(--yellow);
}

footer > p {
    grid-column: 1 / -1;

    padding-top: 24px;

    border-top: 1px solid #222;

    color: #555;

    font-size: 12px;
}


/* =========================================================
   PRODUCT MODAL OVERLAY
========================================================= */

.modal-overlay {
    position: fixed;

    inset: 0;

    padding: 30px;

    background: rgba(0, 0, 0, 0.86);

    z-index: 2000;

    display: flex;

    justify-content: center;
    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: 0.25s;
}

.modal-overlay.open {
    opacity: 1;

    visibility: visible;
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.product-modal {
    width: min(900px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    background: #111;

    border: 1px solid #333;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    position: relative;

    transform: translateY(25px);

    transition: 0.25s;
}

.modal-overlay.open .product-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 42px;
    height: 42px;

    z-index: 5;

    border: 1px solid #333;

    background: #000;

    color: #fff;

    font-size: 27px;

    display: flex;

    justify-content: center;
    align-items: center;
}

.modal-close:hover {
    color: var(--yellow);

    border-color: var(--yellow);
}

.modal-image {
    min-height: 520px;

    background: #050505;
}

.modal-image img {
    width: 100%;

    height: 100%;

    min-height: 520px;

    object-fit: cover;
}

.modal-content {
    padding: 55px 38px 38px;

    display: flex;

    flex-direction: column;
}

.modal-category {
    margin-bottom: 12px;

    color: var(--yellow);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.modal-content h2 {
    margin-bottom: 14px;

    font-size: 36px;

    line-height: 1.05;
}

.modal-content > p {
    margin-bottom: 30px;

    color: #777;

    line-height: 1.7;

    font-size: 14px;
}


/* =========================================================
   VARIANT OPTIONS
========================================================= */

.variant-options {
    margin-bottom: 28px;

    display: flex;

    flex-direction: column;

    gap: 9px;
}

.variant-option {
    min-height: 52px;

    padding: 12px 15px;

    border: 1px solid #333;

    background: #171717;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 15px;

    transition: 0.2s;
}

.variant-option:hover {
    border-color: #666;
}

.variant-option.selected {
    border-color: var(--yellow);

    background: #211b06;
}

.variant-option span {
    font-size: 14px;

    font-weight: 700;
}

.variant-option strong {
    color: var(--yellow);

    font-size: 14px;
}


/* =========================================================
   QUANTITY SELECTOR
========================================================= */

.quantity-selector {
    margin-top: auto;

    padding-top: 20px;

    border-top: 1px solid #292929;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.quantity-selector > span {
    color: #aaa;

    font-size: 13px;

    font-weight: 700;
}

.quantity-selector > div {
    display: flex;

    align-items: center;

    border: 1px solid #333;
}

.quantity-selector button {
    width: 42px;
    height: 42px;

    border: none;

    background: #191919;

    color: #fff;

    font-size: 21px;
}

.quantity-selector button:hover {
    color: var(--yellow);
}

.quantity-selector strong {
    min-width: 45px;

    text-align: center;
}


/* =========================================================
   MODAL ADD BUTTON
========================================================= */

.modal-add-button {
    width: 100%;

    min-height: 55px;

    margin-top: 22px;

    border: 2px solid var(--yellow);

    background: var(--yellow);

    color: #000;

    font-weight: 900;

    text-transform: uppercase;

    transition: 0.2s;
}

.modal-add-button:hover {
    background: #fff;

    border-color: #fff;
}


/* =========================================================
   CART OVERLAY
========================================================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    z-index: 2490;

    opacity: 0;

    visibility: hidden;

    transition: 0.25s;
}

.cart-overlay.open {
    opacity: 1;

    visibility: visible;
}


/* =========================================================
   CART DRAWER
========================================================= */

.cart-drawer {
    position: fixed;

    right: -470px;
    top: 0;

    width: min(460px, 100%);

    height: 100vh;

    background: #0c0c0c;

    border-left: 1px solid #333;

    z-index: 2500;

    display: flex;

    flex-direction: column;

    transition: right 0.3s ease;
}

.cart-drawer.open {
    right: 0;
}


/* =========================================================
   CART HEADER
========================================================= */

.cart-header {
    min-height: 100px;

    padding: 22px 25px;

    border-bottom: 1px solid #292929;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.cart-header span {
    display: block;

    margin-bottom: 4px;

    color: var(--yellow);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.cart-header h2 {
    font-family: Impact, sans-serif;

    font-size: 35px;
}

.cart-header button {
    width: 42px;
    height: 42px;

    border: 1px solid #333;

    background: #151515;

    color: #fff;

    font-size: 25px;
}

.cart-header button:hover {
    color: var(--yellow);
}


/* =========================================================
   CART ITEMS
========================================================= */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px 24px;
}

.empty-cart {
    min-height: 250px;

    color: #666;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.cart-item {
    padding: 17px 0;

    border-bottom: 1px solid #292929;
}

.cart-item-top {
    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.cart-item-name {
    font-size: 15px;

    font-weight: 800;

    line-height: 1.4;
}

.cart-item-price {
    white-space: nowrap;

    color: var(--yellow);

    font-size: 14px;

    font-weight: 900;
}

.cart-item-variant {
    margin-top: 5px;

    color: #666;

    font-size: 11px;
}

.cart-item-controls {
    margin-top: 14px;

    display: flex;

    justify-content: space-between;
    align-items: center;
}

.cart-qty {
    display: flex;

    align-items: center;

    border: 1px solid #333;
}

.cart-qty button {
    width: 34px;
    height: 34px;

    border: none;

    background: #151515;

    color: #fff;
}

.cart-qty button:hover {
    color: var(--yellow);
}

.cart-qty span {
    min-width: 36px;

    text-align: center;

    font-size: 12px;
}

.remove-cart-item {
    border: none;

    background: none;

    color: #777;

    font-size: 11px;

    text-decoration: underline;
}

.remove-cart-item:hover {
    color: var(--yellow);
}


/* =========================================================
   CART SUMMARY
========================================================= */

.cart-summary {
    padding: 22px 24px 28px;

    border-top: 1px solid #333;

    background: #090909;
}

.cart-total-row {
    margin-bottom: 18px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.cart-total-row span {
    color: #999;

    font-size: 14px;
}

.cart-total-row strong {
    color: var(--yellow);

    font-size: 23px;
}

.checkout-button {
    width: 100%;

    min-height: 55px;

    border: 2px solid var(--yellow);

    background: var(--yellow);

    color: #000;

    font-size: 13px;

    font-weight: 900;

    text-transform: uppercase;

    transition: 0.2s;
}

.checkout-button:hover {
    background: #fff;

    border-color: #fff;
}

.checkout-button:disabled {
    opacity: 0.35;

    cursor: not-allowed;
}

.cart-summary small {
    display: block;

    margin-top: 12px;

    color: #555;

    font-size: 10px;

    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   FLOATING MOBILE CART
========================================================= */

.floating-cart {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 20px;
    }

    .ordering-hero {
        gap: 35px;

        padding-left: 4%;
        padding-right: 4%;
    }

    .hero-food > img {
        height: 490px;
    }

    .ordering-area {
        padding-left: 4%;
        padding-right: 4%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-strip,
    .location-section {
        gap: 55px;

        padding-left: 4%;
        padding-right: 4%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {

    /* HEADER */

    .site-header {
        min-height: 82px;

        position: sticky;
    }

    .header-inner {
        min-height: 82px;

        width: calc(100% - 32px);
    }

    .brand {
        width: 148px;

        min-width: 148px;
    }

    .brand strong {
        font-size: 22px;
    }

    .desktop-nav {
        display: none;
    }

    .icon-button {
        display: none;
    }

    .cart-button {
        padding: 0 10px;
    }

    .cart-button > span {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAV */

    .mobile-nav {
        width: 100%;

        max-height: 0;

        padding: 0 20px;

        overflow: hidden;

        opacity: 0;

        visibility: hidden;

        display: flex;

        flex-direction: column;

        background: #000;

        border-top: 1px solid #222;

        transition:
            max-height 0.35s ease,
            padding 0.35s ease,
            opacity 0.2s ease;
    }

    .mobile-nav.open {
        max-height: 450px;

        padding: 10px 20px 20px;

        opacity: 1;

        visibility: visible;
    }

    .mobile-nav a {
        padding: 15px 0;

        border-bottom: 1px solid #222;

        color: #ddd;

        font-size: 15px;

        font-weight: 800;
    }

    .mobile-nav a:hover {
        color: var(--yellow);
    }


    /* HERO */

    .ordering-hero {
        min-height: auto;

        padding: 60px 24px 85px;

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .ordering-hero::before {
        width: 450px;
        height: 150px;

        right: -150px;
        top: -70px;
    }

    .hero-copy h1 {
        font-size: clamp(68px, 19vw, 100px);
    }

    .hero-copy > p {
        font-size: 16px;
    }

    .hero-food {
        max-width: 620px;
    }

    .hero-food > img {
        height: 480px;

        box-shadow: 12px 12px 0 var(--yellow);
    }

    .hero-food-label {
        width: 105px;
        height: 105px;

        left: 10px;

        bottom: 25px;
    }

    .hero-food-label strong {
        font-size: 20px;
    }


    /* ORDER */

    .ordering-area {
        padding: 75px 24px 105px;
    }

    .ordering-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .ordering-heading h2 {
        font-size: 58px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 380px;
    }


    /* ABOUT */

    .about-strip {
        padding: 80px 24px;

        grid-template-columns: 1fr;

        gap: 40px;
    }


    /* LOCATION */

    .location-section {
        padding: 80px 24px;

        grid-template-columns: 1fr;

        gap: 55px;
    }


    /* FOOTER */

    footer {
        padding: 45px 24px 85px;

        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }

    footer > p {
        grid-column: auto;
    }


    /* MODAL */

    .modal-overlay {
        padding: 15px;
    }

    .product-modal {
        grid-template-columns: 1fr;

        max-height: 94vh;
    }

    .modal-image {
        min-height: 300px;
        height: 300px;
    }

    .modal-image img {
        min-height: 300px;
        height: 300px;
    }

    .modal-content {
        padding: 30px 22px;
    }


    /* FLOATING CART */

    .floating-cart {
        position: fixed;

        left: 15px;
        right: 15px;
        bottom: 15px;

        width: calc(100% - 30px);

        min-height: 58px;

        padding: 0 18px;

        z-index: 1500;

        border: 3px solid #000;

        background: var(--yellow);

        color: #000;

        display: none;

        grid-template-columns: 1fr auto auto;

        align-items: center;

        gap: 12px;

        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);

        font-size: 13px;

        font-weight: 900;
    }

    .floating-cart.visible {
        display: grid;
    }

    .floating-cart strong {
        min-width: 28px;
        height: 28px;

        border-radius: 50%;

        background: #000;

        color: var(--yellow);

        display: flex;

        justify-content: center;
        align-items: center;

        font-size: 11px;
    }

    .floating-cart b {
        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .brand {
        width: 135px;

        min-width: 135px;
    }

    .brand strong {
        font-size: 20px;
    }

    .cart-button {
        min-height: 43px;
    }

    .menu-toggle {
        width: 43px;
        height: 43px;
    }


    /* HERO */

    .ordering-hero {
        padding-top: 50px;
    }

    .hero-copy h1 {
        font-size: 63px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-meta {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .hero-food > img {
        height: 370px;
    }


    /* ORDER */

    .ordering-heading h2 {
        font-size: 50px;
    }

    .product-image {
        height: 300px;
    }

    .product-content h3 {
        font-size: 19px;
    }

    .product-bottom {
        align-items: flex-end;
    }


    /* ABOUT */

    .about-strip h2 {
        font-size: 57px;
    }

    .about-text p {
        font-size: 16px;
    }


    /* LOCATION */

    .location-copy h2 {
        font-size: 60px;
    }

    .location-info > div {
        grid-template-columns: 42px 1fr;
    }

    .location-info strong,
    .location-info a {
        font-size: 18px;
    }


    /* MODAL */

    .modal-content h2 {
        font-size: 29px;
    }

    .modal-image {
        height: 245px;
        min-height: 245px;
    }

    .modal-image img {
        height: 245px;
        min-height: 245px;
    }


    /* CART */

    .cart-drawer {
        width: 100%;
    }

}