* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #f56618;
    --orange-dark: #db4c08;

    --black: #171717;

    --gray: #707070;
    --light-gray: #f7f7f5;

    --white: #ffffff;

    --border: #ececea;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;

    background: var(--light-gray);
    color: var(--black);
}

a {
    color: inherit;

    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: sticky;

    top: 0;

    z-index: 50;

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0,0,0,.05);
}

.navbar-content {
    min-height: 76px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;

    align-items: center;

    gap: 11px;
}

.brand-logo {
    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background: var(--orange);

    color: white;

    font-size: 21px;
    font-weight: 800;

    transform: rotate(-5deg);
}

.brand-text strong {
    display: block;

    font-size: 18px;
}

.brand-text span {
    display: block;

    margin-top: 1px;

    font-size: 10px;

    color: var(--gray);
}

.navigation {
    display: flex;

    gap: 34px;
}

.navigation a {
    font-size: 13px;

    font-weight: 600;

    transition: .2s;
}

.navigation a:hover {
    color: var(--orange);
}

.cart-btn {
    display: flex;

    align-items: center;

    gap: 8px;

    border: none;

    padding: 11px 14px;

    border-radius: 14px;

    background: var(--black);

    color: white;
}

.cart-btn b {
    width: 22px;
    height: 22px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--orange);

    font-size: 10px;
}


/* =========================
   HERO
========================= */

.hero {
    padding: 70px 0 80px;
}

.hero-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

.hero-label {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.hero h1 {
    margin-top: 18px;

    font-size: clamp(56px, 6vw, 86px);

    line-height: .98;

    letter-spacing: -4px;
}

.hero h1 span {
    color: var(--orange);
}

.hero-content > p {
    max-width: 540px;

    margin-top: 24px;

    color: var(--gray);

    font-size: 15px;

    line-height: 1.8;
}

.hero-actions {
    margin-top: 30px;

    display: flex;

    align-items: center;

    gap: 25px;
}

.btn-primary {
    display: inline-flex;

    align-items: center;

    gap: 30px;

    padding: 15px 22px;

    border-radius: 14px;

    background: var(--orange);

    color: white;

    font-size: 13px;

    font-weight: 700;

    box-shadow: 0 12px 30px rgba(245, 102, 24, .25);

    transition: .2s;
}

.btn-primary:hover {
    background: var(--orange-dark);

    transform: translateY(-2px);
}

.fresh-info {
    display: flex;

    flex-direction: column;
}

.fresh-info strong {
    font-size: 17px;
}

.fresh-info small {
    color: var(--gray);
}


/* =========================
   HERO CARD
========================= */

.food-card {
    min-height: 500px;

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 24px;

    border-radius: 34px;

    background:
        radial-gradient(
            circle at center,
            #ff9f58,
            #f56618 45%,
            #d74704
        );

    box-shadow:
        0 35px 70px rgba(135, 58, 7, .25);
}

.best-seller {
    width: max-content;

    padding: 8px 12px;

    border-radius: 30px;

    background: white;

    font-size: 10px;

    font-weight: 800;
}

.chicken-placeholder {
    text-align: center;

    font-size: 180px;

    filter:
        drop-shadow(
            0 25px 25px rgba(70, 25, 0, .3)
        );

    transform: rotate(-6deg);
}

.food-card-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px 18px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .94);
}

.food-card-footer small {
    display: block;

    margin-bottom: 4px;

    color: var(--gray);
}

.food-card-footer strong {
    font-size: 13px;
}

.fire {
    font-size: 25px;
}


/* =========================
   MENU
========================= */

.menu-section {
    padding: 80px 0 100px;

    background: white;
}

.section-title {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;
}

.section-title > div > span {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.section-title h2 {
    margin-top: 7px;

    font-size: 37px;

    letter-spacing: -1.5px;
}

.section-title p {
    margin-top: 7px;

    color: var(--gray);

    font-size: 13px;
}

.search-box {
    width: 280px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 15px;

    border-radius: 14px;

    background: var(--light-gray);
}

.search-box input {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    font-size: 12px;
}


/* =========================
   CATEGORY
========================= */

.categories {
    margin-top: 32px;

    display: flex;

    gap: 9px;
}

.categories button {
    padding: 10px 16px;

    border: 1px solid var(--border);

    border-radius: 30px;

    background: white;

    font-size: 12px;

    font-weight: 600;
}

.categories button.active {
    border-color: var(--black);

    background: var(--black);

    color: white;
}


/* =========================
   PRODUCT
========================= */

.product-grid {
    margin-top: 32px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 23px;
}

.product-card {
    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 24px;

    background: white;

    transition: .25s;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);
}

.product-image {
    height: 240px;

    position: relative;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #fff1e6,
            #ffddc2
        );
}

.product-image.spicy-bg {
    background:
        linear-gradient(
            145deg,
            #fff0eb,
            #ffd2c7
        );
}

.product-placeholder {
    font-size: 110px;

    transition: .3s;
}

.product-card:hover .product-placeholder {
    transform: scale(1.08) rotate(-4deg);
}

.product-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 9px;

    border-radius: 30px;

    background: var(--orange);

    color: white;

    font-size: 8px;

    font-weight: 800;
}

.product-badge.spicy {
    background: #c93228;
}

.product-badge.dark {
    background: var(--black);
}

.product-info {
    padding: 19px;
}

.product-info h3 {
    font-size: 16px;
}

.product-info > p {
    min-height: 42px;

    margin-top: 8px;

    color: var(--gray);

    font-size: 11px;

    line-height: 1.6;
}

.product-footer {
    margin-top: 18px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;
}

.price small {
    display: block;

    margin-bottom: 3px;

    color: var(--gray);

    font-size: 9px;
}

.price strong {
    font-size: 16px;
}

.add-btn {
    width: 41px;
    height: 41px;

    border: none;

    border-radius: 12px;

    background: var(--orange);

    color: white;

    font-size: 22px;

    transition: .2s;
}

.add-btn:hover {
    background: var(--orange-dark);

    transform: scale(1.06);
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 35px 0;

    background: var(--black);

    color: white;
}

.footer-content {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

footer p,
footer small {
    margin-top: 4px;

    color: #999;

    font-size: 10px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .navigation {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;

        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .food-card {
        max-width: 600px;

        margin: auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }


    /* navbar */

    .navbar-content {
        min-height: 66px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;

        border-radius: 11px;

        font-size: 18px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text span {
        font-size: 9px;
    }

    .cart-btn > span {
        display: none;
    }


    /* hero */

    .hero {
        padding: 22px 0 50px;
    }

    .hero-grid {
        display: flex;

        flex-direction: column-reverse;

        gap: 28px;
    }

    .food-card {
        min-height: 330px;

        padding: 16px;

        border-radius: 25px;
    }

    .chicken-placeholder {
        font-size: 115px;
    }

    .hero-content {
        text-align: left;
    }

    .hero h1 {
        margin-top: 11px;

        font-size: 47px;

        letter-spacing: -2.5px;
    }

    .hero-content > p {
        margin-top: 16px;

        font-size: 12px;

        line-height: 1.7;
    }

    .hero-actions {
        margin-top: 21px;

        justify-content: flex-start;
    }

    .btn-primary {
        width: 100%;

        justify-content: space-between;
    }

    .fresh-info {
        display: none;
    }


    /* menu */

    .menu-section {
        padding: 50px 0 80px;
    }

    .section-title {
        display: block;
    }

    .section-title h2 {
        font-size: 27px;
    }

    .search-box {
        width: 100%;

        margin-top: 18px;
    }


    /* category */

    .categories {
        overflow-x: auto;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .categories::-webkit-scrollbar {
        display: none;
    }

    .categories button {
        flex: 0 0 auto;
    }


    /* products */

    .product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 11px;
    }

    .product-card {
        border-radius: 18px;
    }

    .product-image {
        height: 150px;
    }

    .product-placeholder {
        font-size: 70px;
    }

    .product-badge {
        top: 9px;
        left: 9px;

        padding: 5px 7px;

        font-size: 6px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 12px;

        line-height: 1.45;
    }

    .product-info > p {
        display: none;
    }

    .product-footer {
        margin-top: 12px;
    }

    .price small {
        font-size: 7px;
    }

    .price strong {
        font-size: 11px;
    }

    .add-btn {
        width: 33px;
        height: 33px;

        border-radius: 9px;

        font-size: 18px;
    }


    /* footer */

    .footer-content {
        display: block;
    }

    footer small {
        display: block;

        margin-top: 16px;
    }

}

/* =========================================
   DATABASE PRODUCT IMAGE
========================================= */

.real-product-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .35s ease;
}

.product-card:hover .real-product-image {
    transform: scale(1.05);
}


/* =========================================
   EMPTY PRODUCTS
========================================= */

.empty-products {
    grid-column: 1 / -1;

    padding: 60px 20px;

    text-align: center;

    border-radius: 24px;

    background: var(--light-gray);
}

.empty-icon {
    margin-bottom: 12px;

    font-size: 42px;
}

.empty-products h3 {
    font-size: 20px;
}

.empty-products p {
    margin-top: 7px;

    color: var(--gray);

    font-size: 13px;
}

/* =========================================================
   PRODUCT MODAL
========================================================= */

body.modal-open {
    overflow: hidden;
}


.product-modal {
    position: fixed;

    inset: 0;

    z-index: 200;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.product-modal.show {
    visibility: visible;
    opacity: 1;
}


.product-modal-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(15, 15, 15, .60);

    backdrop-filter:
        blur(5px);
}



/* PANEL */

.product-modal-panel {
    width: min(
        100%,
        570px
    );

    max-height:
        calc(100vh - 40px);

    position: relative;

    z-index: 1;

    overflow-y: auto;

    padding: 25px;

    border-radius: 28px;

    background: white;

    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, .25);

    transform:
        translateY(20px)
        scale(.98);

    transition:
        transform .3s ease;
}


.product-modal.show
.product-modal-panel {

    transform:
        translateY(0)
        scale(1);
}



/* CLOSE */

.modal-close {
    width: 38px;
    height: 38px;

    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 5;

    display: grid;

    place-items: center;

    border: none;

    border-radius: 50%;

    background: #f4f4f2;

    color: var(--black);

    font-size: 25px;

    line-height: 1;

    cursor: pointer;
}


.modal-close:hover {
    background: #ececea;
}



/* HANDLE */

.modal-handle {
    display: none;
}



/* PRODUCT HEADER */

.modal-product-header {
    display: grid;

    grid-template-columns:
        135px 1fr;

    gap: 20px;

    align-items: center;

    padding-right: 35px;
}


.modal-product-image {
    width: 135px;
    height: 135px;

    display: grid;

    place-items: center;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #fff1e5,
            #ffdbc0
        );

    font-size: 70px;
}


.modal-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.modal-product-image span {
    filter:
        drop-shadow(
            0 12px 10px
            rgba(80, 30, 0, .15)
        );
}


.modal-product-info h3 {
    margin-top: 8px;

    font-size: 21px;

    line-height: 1.3;

    letter-spacing: -.6px;
}


.modal-product-info p {
    margin-top: 7px;

    color: var(--gray);

    font-size: 12px;

    line-height: 1.6;
}


.modal-badge {
    display: inline-flex;

    padding: 6px 9px;

    border-radius: 30px;

    background:
        rgba(245, 102, 24, .12);

    color: var(--orange);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .5px;
}



/* SECTIONS */

.modal-section {
    margin-top: 28px;
}


.modal-section-title {
    font-size: 13px;

    font-weight: 800;
}


.modal-section small {
    display: block;

    margin-top: 4px;

    color: var(--gray);

    font-size: 10px;
}



/* VARIANT */

.variant-grid {
    margin-top: 13px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}


.variant-option {
    min-height: 72px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 5px;

    padding: 13px 15px;

    border:
        1.5px solid
        var(--border);

    border-radius: 15px;

    background: white;

    color: var(--black);

    text-align: left;

    transition: .2s;
}


.variant-option:hover {
    border-color:
        #ffc39e;
}


.variant-option span {
    font-size: 12px;

    font-weight: 700;
}


.variant-option strong {
    color: var(--gray);

    font-size: 11px;

    font-weight: 600;
}


.variant-option.selected {
    border-color:
        var(--orange);

    background:
        #fff6f0;
}


.variant-option.selected span,
.variant-option.selected strong {

    color:
        var(--orange);
}


.variant-empty {
    grid-column: 1 / -1;

    padding: 25px;

    border-radius: 15px;

    background:
        var(--light-gray);

    color:
        var(--gray);

    text-align: center;

    font-size: 12px;
}



/* QUANTITY */

.quantity-row {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    padding:
        15px 0 3px;
}


.quantity-control {
    display: flex;

    align-items: center;

    gap: 17px;

    padding: 5px;

    border-radius: 14px;

    background:
        var(--light-gray);
}


.quantity-control button {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border: none;

    border-radius: 11px;

    background: white;

    color: var(--black);

    font-size: 20px;

    font-weight: 500;

    box-shadow:
        0 2px 8px
        rgba(0,0,0,.06);
}


.quantity-control strong {
    min-width: 20px;

    text-align: center;

    font-size: 14px;
}



/* ADD BUTTON */

.modal-add-button {
    width: 100%;

    min-height: 56px;

    margin-top: 28px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    padding: 0 20px;

    border: none;

    border-radius: 16px;

    background:
        var(--orange);

    color: white;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 15px 30px
        rgba(245, 102, 24, .22);

    transition: .2s;
}


.modal-add-button:hover {
    background:
        var(--orange-dark);
}


.modal-add-button strong {
    font-size: 13px;
}


.modal-add-button:disabled {
    cursor: not-allowed;

    opacity: .5;

    box-shadow: none;
}



/* =========================================================
   MOBILE PRODUCT BOTTOM SHEET
========================================================= */

@media (max-width: 600px) {

    .product-modal {
        align-items: flex-end;

        padding: 0;
    }


    .product-modal-panel {
        width: 100%;

        max-height: 88vh;

        padding:
            12px 17px
            calc(
                17px
                + env(
                    safe-area-inset-bottom
                )
            );

        border-radius:
            26px 26px 0 0;

        transform:
            translateY(100%);
    }


    .product-modal.show
    .product-modal-panel {

        transform:
            translateY(0);
    }


    .modal-handle {
        width: 42px;
        height: 5px;

        display: block;

        margin:
            0 auto 15px;

        border-radius: 20px;

        background:
            #d7d7d3;
    }


    .modal-close {
        top: 16px;
        right: 16px;

        width: 34px;
        height: 34px;

        font-size: 21px;
    }


    .modal-product-header {
        grid-template-columns:
            92px 1fr;

        gap: 14px;

        padding-right: 32px;
    }


    .modal-product-image {
        width: 92px;
        height: 92px;

        border-radius: 16px;

        font-size: 48px;
    }


    .modal-product-info h3 {
        margin-top: 6px;

        font-size: 16px;
    }


    .modal-product-info p {
        font-size: 10px;

        line-height: 1.5;
    }


    .modal-section {
        margin-top: 22px;
    }


    .variant-grid {
        gap: 8px;
    }


    .variant-option {
        min-height: 66px;

        padding: 11px 12px;

        border-radius: 13px;
    }


    .variant-option span {
        font-size: 11px;
    }


    .variant-option strong {
        font-size: 10px;
    }


    .modal-add-button {
        position: sticky;

        bottom: 0;

        margin-top: 20px;
    }

}

/* =========================================================
   CART DRAWER
========================================================= */

body.cart-open {
    overflow: hidden;
}


.cart-drawer {
    position: fixed;

    inset: 0;

    z-index: 300;

    visibility: hidden;

    pointer-events: none;
}


.cart-drawer.show {
    visibility: visible;

    pointer-events: auto;
}



.cart-drawer-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(15, 15, 15, .58);

    backdrop-filter:
        blur(5px);

    opacity: 0;

    transition:
        opacity .3s ease;
}


.cart-drawer.show
.cart-drawer-backdrop {

    opacity: 1;
}



/* =========================
   CART PANEL
========================= */

.cart-panel {
    width: min(440px, 100%);

    height: 100%;

    position: absolute;

    top: 0;
    right: 0;

    display: flex;

    flex-direction: column;

    padding: 24px;

    background: white;

    box-shadow:
        -30px 0 80px
        rgba(0,0,0,.16);

    transform:
        translateX(100%);

    transition:
        transform .35s ease;
}


.cart-drawer.show
.cart-panel {

    transform:
        translateX(0);
}



.cart-handle {
    display: none;
}



/* =========================
   CART HEADER
========================= */

.cart-header {
    display: flex;

    justify-content:
        space-between;

    align-items: center;

    padding-bottom: 20px;

    border-bottom:
        1px solid var(--border);
}


.cart-header small {
    color: var(--orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.cart-header h3 {
    margin-top: 4px;

    font-size: 25px;

    letter-spacing: -1px;
}


.cart-close {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border: none;

    border-radius: 50%;

    background:
        var(--light-gray);

    color:
        var(--black);

    font-size: 25px;

    line-height: 1;
}



/* =========================
   CART ITEMS
========================= */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding:
        18px 2px 18px 0;
}


.cart-item {
    display: grid;

    grid-template-columns:
        78px 1fr;

    gap: 13px;

    padding:
        14px 0;

    border-bottom:
        1px solid var(--border);
}



.cart-item-image {
    width: 78px;
    height: 78px;

    display: grid;

    place-items: center;

    overflow: hidden;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #fff1e5,
            #ffddc3
        );

    font-size: 39px;
}


.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}



.cart-item-content {
    min-width: 0;
}



.cart-item-name {
    padding-right: 5px;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.4;
}



.cart-item-variant {
    display: block;

    margin-top: 4px;

    color:
        var(--gray);

    font-size: 10px;
}



.cart-item-price {
    margin-top: 7px;

    color:
        var(--orange);

    font-size: 12px;

    font-weight: 800;
}



.cart-item-bottom {
    margin-top: 11px;

    display: flex;

    justify-content:
        space-between;

    align-items: center;

    gap: 10px;
}



.cart-item-quantity {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 4px;

    border-radius: 11px;

    background:
        var(--light-gray);
}



.cart-item-quantity button {
    width: 29px;
    height: 29px;

    display: grid;

    place-items: center;

    border: none;

    border-radius: 8px;

    background: white;

    font-size: 15px;

    box-shadow:
        0 2px 7px
        rgba(0,0,0,.05);
}



.cart-item-quantity strong {
    min-width: 16px;

    text-align: center;

    font-size: 11px;
}



.cart-remove {
    border: none;

    background: transparent;

    color:
        #c63f36;

    font-size: 10px;

    font-weight: 700;
}



/* =========================
   EMPTY CART
========================= */

.cart-empty {
    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    padding: 40px 20px;

    text-align: center;
}


.cart-empty-icon {
    width: 75px;
    height: 75px;

    display: grid;

    place-items: center;

    margin-bottom: 17px;

    border-radius: 24px;

    background:
        #fff3ea;

    font-size: 33px;
}


.cart-empty h4 {
    font-size: 17px;
}


.cart-empty p {
    margin-top: 6px;

    color:
        var(--gray);

    font-size: 11px;
}


.cart-shopping-button {
    margin-top: 18px;

    padding:
        11px 18px;

    border: none;

    border-radius: 12px;

    background:
        var(--black);

    color: white;

    font-size: 11px;

    font-weight: 700;
}



/* =========================
   CART SUMMARY
========================= */

.cart-summary {
    padding-top: 18px;

    border-top:
        1px solid var(--border);
}


.cart-summary-row {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    margin-bottom: 10px;

    color:
        var(--gray);

    font-size: 11px;
}


.cart-summary-row strong {
    color:
        var(--black);
}


.cart-summary-row.total {
    margin-top: 13px;

    font-size: 15px;

    font-weight: 700;
}


.cart-summary-row.total strong {
    color:
        var(--orange);

    font-size: 19px;
}



.checkout-button {
    width: 100%;

    min-height: 55px;

    margin-top: 18px;

    display: flex;

    justify-content:
        space-between;

    align-items: center;

    padding:
        0 19px;

    border: none;

    border-radius: 15px;

    background:
        var(--orange);

    color: white;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 13px 28px
        rgba(245, 102, 24, .22);
}


.checkout-button:hover {
    background:
        var(--orange-dark);
}



/* =========================================================
   FLOATING CART
========================================================= */

.floating-cart {
    min-width: 340px;

    position: fixed;

    z-index: 150;

    left: 50%;
    bottom: 22px;

    display: none;

    align-items: center;

    justify-content:
        space-between;

    gap: 25px;

    padding:
        11px 13px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 19px;

    background:
        rgba(23,23,23,.96);

    color: white;

    box-shadow:
        0 20px 55px
        rgba(0,0,0,.25);

    backdrop-filter:
        blur(15px);

    transform:
        translateX(-50%);
}


.floating-cart.show {
    display: flex;
}



.floating-cart-left {
    display: flex;

    align-items: center;

    gap: 11px;
}



.floating-cart-icon {
    width: 42px;
    height: 42px;

    position: relative;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        var(--orange);
}



.floating-cart-icon span {
    min-width: 18px;
    height: 18px;

    position: absolute;

    top: -6px;
    right: -6px;

    display: grid;

    place-items: center;

    padding: 0 4px;

    border-radius: 20px;

    background: white;

    color:
        var(--black);

    font-size: 8px;

    font-weight: 800;
}



.floating-cart-left small {
    display: block;

    margin-bottom: 2px;

    color:
        #aaa;

    font-size: 8px;
}


.floating-cart-left strong {
    font-size: 12px;
}



.floating-cart-action {
    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 10px;

    font-weight: 700;
}



/* =========================================================
   MOBILE CART
========================================================= */

@media (max-width: 600px) {

    .cart-panel {
        width: 100%;
        height: auto;

        max-height: 88vh;

        top: auto;

        right: 0;
        bottom: 0;

        padding:
            12px 16px
            calc(
                17px +
                env(
                    safe-area-inset-bottom
                )
            );

        border-radius:
            27px 27px 0 0;

        transform:
            translateY(100%);
    }


    .cart-drawer.show
    .cart-panel {

        transform:
            translateY(0);
    }


    .cart-handle {
        width: 42px;
        height: 5px;

        display: block;

        margin:
            0 auto 13px;

        border-radius: 30px;

        background:
            #d8d8d5;
    }


    .cart-header {
        padding-bottom: 14px;
    }


    .cart-header h3 {
        font-size: 20px;
    }


    .cart-close {
        width: 35px;
        height: 35px;

        font-size: 21px;
    }


    .cart-items {
        max-height: 49vh;
    }


    .cart-item {
        grid-template-columns:
            69px 1fr;
    }


    .cart-item-image {
        width: 69px;
        height: 69px;

        border-radius: 13px;

        font-size: 34px;
    }


    .floating-cart {
        width:
            calc(100% - 28px);

        min-width: 0;

        bottom:
            calc(
                13px +
                env(
                    safe-area-inset-bottom
                )
            );

        padding: 10px;

        border-radius: 17px;
    }


    .floating-cart-action {
        font-size: 9px;
    }

}

/* =========================================================
   CHECKOUT MODAL
========================================================= */

body.checkout-open {
    overflow: hidden;
}


.checkout-modal {
    position: fixed;

    inset: 0;

    z-index: 400;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.checkout-modal.show {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}



.checkout-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(15,15,15,.62);

    backdrop-filter:
        blur(6px);
}



/* PANEL */

.checkout-panel {
    width: min(
        100%,
        560px
    );

    max-height:
        calc(100vh - 40px);

    position: relative;

    z-index: 1;

    overflow-y: auto;

    padding: 26px;

    border-radius: 28px;

    background:
        white;

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.25);

    transform:
        translateY(20px)
        scale(.98);

    transition:
        transform .3s ease;
}


.checkout-modal.show
.checkout-panel {

    transform:
        translateY(0)
        scale(1);
}



/* HANDLE */

.checkout-handle {
    display: none;
}



/* HEADER */

.checkout-header {
    position: relative;

    padding-right: 45px;

    padding-bottom: 21px;

    border-bottom:
        1px solid var(--border);
}


.checkout-header > div > small {
    color:
        var(--orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.checkout-header h3 {
    margin-top: 5px;

    font-size: 25px;

    letter-spacing: -1px;
}


.checkout-header p {
    max-width: 410px;

    margin-top: 7px;

    color:
        var(--gray);

    font-size: 11px;

    line-height: 1.6;
}



.checkout-close {
    width: 38px;
    height: 38px;

    position: absolute;

    top: 0;
    right: 0;

    display: grid;

    place-items: center;

    border: none;

    border-radius: 50%;

    background:
        var(--light-gray);

    color:
        var(--black);

    font-size: 24px;
}



/* FORM */

.checkout-form {
    padding-top: 22px;
}


.form-group {
    margin-bottom: 19px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color:
        var(--black);

    font-size: 11px;

    font-weight: 700;
}


.form-group label span {
    color:
        #d33b32;
}


.form-group input,
.form-group textarea {
    width: 100%;

    border:
        1.5px solid
        var(--border);

    outline: none;

    padding:
        13px 14px;

    border-radius: 13px;

    background:
        #fbfbfa;

    color:
        var(--black);

    font-size: 12px;

    transition: .2s;
}


.form-group textarea {
    resize: vertical;

    min-height: 85px;
}


.form-group input:focus,
.form-group textarea:focus {

    border-color:
        var(--orange);

    background:
        white;

    box-shadow:
        0 0 0 4px
        rgba(245,102,24,.08);
}


.form-helper {
    margin-top: 5px;

    color:
        #a0a0a0;

    font-size: 8px;
}


.form-error {
    min-height: 13px;

    display: block;

    margin-top: 5px;

    color:
        #d33b32;

    font-size: 9px;
}



/* ORDER PREVIEW */

.checkout-order {
    margin-top: 25px;

    padding:
        16px;

    border-radius: 17px;

    background:
        var(--light-gray);
}


.checkout-order-title {
    margin-bottom: 10px;

    font-size: 11px;

    font-weight: 800;
}


.checkout-order-item {
    display: flex;

    justify-content:
        space-between;

    gap: 15px;

    padding:
        10px 0;

    border-bottom:
        1px solid
        rgba(0,0,0,.06);
}


.checkout-order-item:last-child {
    border-bottom: none;
}


.checkout-order-item-info {
    min-width: 0;
}


.checkout-order-item-info strong {
    display: block;

    font-size: 10px;

    line-height: 1.4;
}


.checkout-order-item-info span {
    display: block;

    margin-top: 3px;

    color:
        var(--gray);

    font-size: 8px;
}


.checkout-order-item-price {
    flex: 0 0 auto;

    font-size: 10px;

    font-weight: 700;
}



/* TOTAL */

.checkout-total {
    display: flex;

    justify-content:
        space-between;

    align-items: center;

    margin-top: 19px;

    padding-top: 18px;

    border-top:
        1px solid var(--border);
}


.checkout-total span {
    font-size: 13px;

    font-weight: 700;
}


.checkout-total strong {
    color:
        var(--orange);

    font-size: 21px;
}



/* WHATSAPP */

.whatsapp-button {
    width: 100%;

    min-height: 61px;

    margin-top: 20px;

    display: grid;

    grid-template-columns:
        42px 1fr auto;

    align-items: center;

    gap: 12px;

    padding:
        9px 14px;

    border: none;

    border-radius: 16px;

    background:
        #25d366;

    color:
        white;

    text-align: left;

    box-shadow:
        0 15px 30px
        rgba(37,211,102,.22);

    transition:
        .2s;
}


.whatsapp-button:hover {
    background:
        #1ebd59;

    transform:
        translateY(-2px);
}


.whatsapp-icon {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        rgba(255,255,255,.17);

    font-size: 21px;
}


.whatsapp-button small {
    display: block;

    margin-bottom: 2px;

    color:
        rgba(255,255,255,.82);

    font-size: 8px;
}


.whatsapp-button strong {
    font-size: 12px;
}


.whatsapp-arrow {
    font-size: 18px;
}


.checkout-info {
    margin-top: 10px;

    color:
        var(--gray);

    text-align: center;

    font-size: 8px;

    line-height: 1.5;
}



/* =========================================================
   MOBILE CHECKOUT
========================================================= */

@media (max-width: 600px) {

    .checkout-modal {
        align-items:
            flex-end;

        padding: 0;
    }


    .checkout-panel {
        width: 100%;

        max-height:
            92vh;

        padding:
            12px 16px
            calc(
                18px
                +
                env(
                    safe-area-inset-bottom
                )
            );

        border-radius:
            27px 27px 0 0;

        transform:
            translateY(100%);
    }


    .checkout-modal.show
    .checkout-panel {

        transform:
            translateY(0);
    }


    .checkout-handle {
        width: 42px;
        height: 5px;

        display: block;

        margin:
            0 auto 15px;

        border-radius: 30px;

        background:
            #d7d7d4;
    }


    .checkout-header {
        padding-bottom: 15px;
    }


    .checkout-header h3 {
        font-size: 20px;
    }


    .checkout-header p {
        font-size: 9px;
    }


    .checkout-form {
        padding-top: 17px;
    }


    .form-group input,
    .form-group textarea {

        font-size: 12px;
    }


    .checkout-order {
        margin-top: 18px;
    }


    .whatsapp-button {
        position: sticky;

        bottom: 0;
    }

}

.form-group input.input-error {
    border-color:
        #d33b32;

    background:
        #fff8f7;
}

/* =========================================================
   SOCIAL MEDIA SECTION
========================================================= */

.social-media-section {
    padding:
        85px 0;

    background:
        #ffffff;
}


.social-section-header {
    display: flex;

    align-items: flex-end;

    justify-content:
        space-between;

    gap: 30px;

    margin-bottom:
        28px;
}


.social-section-label {
    color:
        #f56618;

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        1.5px;
}


.social-section-header h2 {
    margin-top: 8px;

    font-size:
        clamp(
            29px,
            4vw,
            43px
        );

    letter-spacing:
        -1.8px;

    line-height:
        1.1;
}


.social-section-header p {
    max-width:
        470px;

    margin-top:
        10px;

    color:
        #777;

    font-size:
        10px;

    line-height:
        1.7;
}


/* =========================================================
   SOCIAL GRID
========================================================= */

.social-media-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 13px;
}


/* =========================================================
   SOCIAL CARD
========================================================= */

.social-media-card {
    position:
        relative;

    min-height:
        150px;

    display: flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    padding:
        18px;

    overflow:
        hidden;

    border:
        1px solid
        #ecece8;

    border-radius:
        19px;

    background:
        #fafaf9;

    color:
        #171717;

    transition:
        transform .25s,
        box-shadow .25s,
        border-color .25s;
}


.social-media-card:hover {
    transform:
        translateY(-5px);

    border-color:
        transparent;

    box-shadow:
        0 18px 45px
        rgba(
            0,
            0,
            0,
            .08
        );
}


/* LOGO */

.social-media-logo {
    width: 48px;
    height: 48px;

    display: grid;

    place-items:
        center;

    border-radius:
        14px;

    background:
        white;

    font-size:
        22px;

    box-shadow:
        0 7px 20px
        rgba(
            0,
            0,
            0,
            .05
        );
}


/* INFORMATION */

.social-media-info small {
    display: block;

    margin-bottom:
        4px;

    color:
        #999;

    font-size:
        6.5px;

    font-weight:
        800;

    letter-spacing:
        .9px;
}


.social-media-info strong {
    font-size:
        13px;
}


/* ARROW */

.social-media-arrow {
    position:
        absolute;

    top: 19px;
    right: 19px;

    color:
        #aaa;

    font-size:
        15px;
}


/* =========================================================
   PLATFORM COLORS
========================================================= */

.social-media-card.instagram
.social-media-logo {
    color:
        #e1306c;
}


.social-media-card.tiktok
.social-media-logo {
    color:
        #111;
}


.social-media-card.facebook
.social-media-logo {
    color:
        #1877f2;
}


.social-media-card.youtube
.social-media-logo {
    color:
        #ff0000;
}


/* HOVER INSTAGRAM */

.social-media-card.instagram:hover {
    background:
        linear-gradient(
            145deg,
            #fff5fa,
            #fff
        );
}


/* HOVER TIKTOK */

.social-media-card.tiktok:hover {
    background:
        linear-gradient(
            145deg,
            #f5f5f5,
            #fff
        );
}


/* HOVER FACEBOOK */

.social-media-card.facebook:hover {
    background:
        linear-gradient(
            145deg,
            #f3f7ff,
            #fff
        );
}


/* HOVER YOUTUBE */

.social-media-card.youtube:hover {
    background:
        linear-gradient(
            145deg,
            #fff4f4,
            #fff
        );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .social-media-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .social-media-section {
        padding:
            58px 0;
    }


    .social-section-header {
        margin-bottom:
            20px;
    }


    .social-section-header h2 {
        font-size:
            29px;
    }


    .social-media-grid {
        gap:
            9px;
    }


    .social-media-card {
        min-height:
            130px;

        padding:
            14px;

        border-radius:
            16px;
    }


    .social-media-logo {
        width:
            42px;

        height:
            42px;

        border-radius:
            12px;

        font-size:
            19px;
    }


    .social-media-info strong {
        font-size:
            11px;
    }


    .social-media-arrow {
        top:
            15px;

        right:
            15px;
    }

}


/* SMALL PHONE */

@media (max-width: 375px) {

    .social-media-grid {
        grid-template-columns:
            1fr;
    }

}