:root {
    --primary: #0a0a0a;
    --secondary: #d8a441;
    --secondary-light: #f0c568;

    --background: #f4f4f5;
    --white: #ffffff;

    --text: #18181b;
    --gray: #71717a;
    --border: #e4e4e7;

    --danger: #dc2626;
    --success: #22c55e;

    --shadow: 0 8px 25px rgba(0, 0, 0, .08);
}


* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}

[hidden] {
    display: none !important;
}



body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        var(--background);

    color:
        var(--text);

}


/* =========================================
   HEADER — PRIME EXPRESS
========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    background: linear-gradient(135deg, #070707 0%, #111111 58%, #181818 100%);
    color: #fff;

    border-bottom: 1px solid rgba(216, 164, 65, .22);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .28);
}

.header-container {
    width: 95%;
    max-width: 1450px;
    min-height: 82px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 180px minmax(280px, 500px) 1fr;
    align-items: center;
    gap: 28px;
}

/* LOGO */

.brand-area {
    display: flex;
    align-items: center;
    min-width: 0;
}

.logo {
    display: block;
    width: 145px;
    height: 64px;
    object-fit: contain;
    object-position: left center;
}

/* ENDEREÇO */

.delivery-address {
    width: 100%;
    max-width: 500px;
    min-height: 54px;
    justify-self: center;

    padding: 8px 14px;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;

    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 14px;

    background: rgba(255, 255, 255, .055);
    color: #fff;

    text-align: left;
    cursor: pointer;

    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.delivery-address:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(216, 164, 65, .48);
}

.address-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    background: rgba(216, 164, 65, .12);

    font-size: 17px;
}

.address-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.address-info small {
    margin-bottom: 2px;
    color: #a3a3a3;
    font-size: 10px;
    font-weight: 600;
}

.address-info strong {
    display: block;
    overflow: hidden;

    color: #fff;
    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.address-arrow {
    color: var(--secondary);
    font-size: 24px;
    line-height: 1;
}

/* AÇÕES */

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.store-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 9px;
    height: 9px;
    flex-shrink: 0;

    border-radius: 50%;
    background: var(--success);

    box-shadow: 0 0 0 5px rgba(34, 197, 94, .10);
}

.store-status > div {
    display: flex;
    flex-direction: column;
}

.store-status strong {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.store-status small {
    margin-top: 2px;
    color: #8d8d8d;
    font-size: 9px;
}

/* CARRINHO */

.header-cart {
    position: relative;

    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 1px solid rgba(216, 164, 65, .30);
    border-radius: 14px;

    background: linear-gradient(135deg, #d6a33f, #f0c568);
    color: #111;

    cursor: pointer;
    box-shadow: 0 6px 18px rgba(216, 164, 65, .18);

    transition: transform .15s ease, box-shadow .15s ease;
}

.header-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(216, 164, 65, .27);
}

.cart-icon {
    font-size: 20px;
    line-height: 1;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;

    min-width: 21px;
    height: 21px;
    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #111;
    border-radius: 999px;

    background: var(--danger);
    color: #fff;

    font-size: 10px;
    font-weight: 800;
}

/* TABLET */

@media (max-width: 950px) {
    .header-container {
        grid-template-columns: 145px minmax(220px, 1fr) auto;
        gap: 16px;
    }

    .logo {
        width: 122px;
    }

    .store-status {
        display: none;
    }
}

/* MOBILE */

@media (max-width: 600px) {
    .header-container {
        width: 100%;
        min-height: 68px;
        padding: 7px 10px;

        grid-template-columns: 52px minmax(0, 1fr) 42px;
        gap: 8px;
    }

    .brand-area {
        width: 52px;
        min-width: 52px;
        height: 52px;
        overflow: hidden;
    }

    /*
       A logo completa é mantida sem distorção.
       Como o arquivo possui área preta ao redor, ela fica compacta no mobile.
    */
    .logo {
        width: 52px;
        height: 52px;
        object-fit: contain;
        object-position: center;
    }

    .delivery-address {
        max-width: none;
        min-height: 48px;
        padding: 6px 8px;
        gap: 7px;
        border-radius: 12px;
    }

    .address-icon {
        width: 29px;
        height: 29px;
        font-size: 14px;
        border-radius: 8px;
    }

    .address-info small {
        font-size: 9px;
    }

    .address-info strong {
        font-size: 11px;
    }

    .address-arrow {
        font-size: 19px;
    }

    .store-status {
        display: none;
    }

    .header-actions {
        gap: 0;
    }

    .header-cart {
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }

    .cart-icon {
        font-size: 18px;
    }

    .cart-count {
        top: -5px;
        right: -5px;
        min-width: 19px;
        height: 19px;
        font-size: 9px;
    }

    .categories-wrapper {
        top: 68px;
    }

    .product-category-grid {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}

    .product-card {
        padding: 10px;
    }

    .product-card img {
        height: 135px;
    }

    .product-card h3 {
        font-size: 12.5px;
    }

    .current-price {
        font-size: 18px;
    }
}

/* =========================
   CONTAINER
========================= */

.container {

    width: 95%;

    max-width: 1450px;

    margin:
        10px auto 100px;

}


/* =========================
   PRODUTOS
========================= */

/* =========================================
   PRODUTOS / SEÇÕES
========================================= */

.products {
    display: block;
    width: 100%;
}


/* cada categoria */

.product-category-section {
    width: 100%;

    scroll-margin-top: 155px;

    margin-bottom: 32px;
}


/* grid dos produtos dentro da categoria */

.product-category-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(180px, 1fr)
        );

    gap: 18px;
}

/* =========================
   CARD
========================= */

.product-card {

    position: relative;

    background:
        var(--white);

    border-radius:
        16px;

    padding:
        14px;

    box-shadow:
        var(--shadow);

    display: flex;

    flex-direction: column;

    min-width: 0;

}


.product-card img {

    width: 100%;

    height: 170px;

    object-fit: contain;

    background:
        var(--white);

}


.product-card h3 {

    margin-top:
        10px;

    font-size:
        14px;

    line-height:
        1.35;

    min-height:
        38px;

}


/* =========================
   BADGES
========================= */

.product-badges {

    position:
        absolute;

    top:
        20px;

    left:
        20px;

    right:
        20px;

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        4px;

    z-index:
        2;

}


.product-badge {

    padding:
        4px 7px;

    border-radius:
        7px;

    font-size:
        9px;

    font-weight:
        700;

    color:
        white;

}


.product-badge.promotion {

    background:
        #dc2626;

}


.product-badge.cold {

    background:
        #0284c7;

}


.product-badge.premium {

    background:
        #7c3aed;

}


.product-badge.returnable {

    background:
        #059669;

}


/* =========================
   PREÇO
========================= */

.price-box {

    margin-top:
        auto;

    padding-top:
        12px;

}


.old-price {

    color:
        #94a3b8;

    text-decoration:
        line-through;

    font-size:
        12px;

}


.current-price {

    display:
        block;

    margin-top:
        2px;

    font-size:
        21px;

    color:
        var(--primary);

}


/* =========================
   BOTÃO
========================= */

.product-card button {

    width:
        100%;

    margin-top:
        12px;

    padding:
        11px;

    border:
        none;

    border-radius:
        10px;

    background:
        var(--secondary);

    font-weight:
        700;

    cursor:
        pointer;

}


.product-card button:disabled {

    background:
        #e5e7eb;

    color:
        #94a3b8;

    cursor:
        not-allowed;

}


.product-card.unavailable {

    opacity:
        .65;

}


/* =========================
   SEM RESULTADOS
========================= */

.empty-products {

    text-align:
        center;

    padding:
        70px 20px;

    color:
        var(--gray);

}


.empty-products span {

    display:
        block;

    font-size:
        45px;

    margin-bottom:
        15px;

}
/* =========================================
   HEADER FUNCIONAL — PRIME EXPRESS
========================================= */


/* STATUS */

.store-status {
    min-width: 125px;

    display: flex;
    align-items: center;

    gap: 10px;
}


.status-dot {
    width: 10px;
    height: 10px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #94a3b8;

    box-shadow:
        0 0 0 5px
        rgba(148, 163, 184, .10);

    transition:
        background .25s ease,
        box-shadow .25s ease;
}


.store-status.aberto .status-dot {
    background: #22c55e;

    box-shadow:
        0 0 0 5px
        rgba(34, 197, 94, .12);
}


.store-status.fechado .status-dot {
    background: #ef4444;

    box-shadow:
        0 0 0 5px
        rgba(239, 68, 68, .12);
}


.store-status > div {
    display: flex;
    flex-direction: column;

    min-width: 0;
}


.store-status strong {
    color: #fff;

    font-size: 12px;
    font-weight: 800;
}


.store-status small {
    margin-top: 2px;

    color: #9ca3af;

    font-size: 9px;

    white-space: nowrap;
}


/* =========================================
   CARRINHO DO HEADER
========================================= */

.header-cart {
    position: relative;

    width: auto;
    min-width: 145px;
    height: 50px;

    padding:
        0 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border:
        1px solid
        rgba(216, 164, 65, .28);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #d6a33f,
            #f0c568
        );

    color: #111;

    cursor: pointer;

    box-shadow:
        0 6px 18px
        rgba(216, 164, 65, .18);

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}


.header-cart:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(216, 164, 65, .26);
}


.cart-icon {
    font-size: 20px;

    flex-shrink: 0;
}


.cart-info {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    line-height: 1.1;
}


.cart-info span {
    font-size: 9px;

    font-weight: 700;

    opacity: .7;
}


.cart-info strong {
    margin-top: 3px;

    font-size: 12px;

    font-weight: 900;
}


.cart-count {
    position: absolute;

    top: -7px;
    right: -7px;

    min-width: 21px;
    height: 21px;

    padding:
        0 5px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        2px solid #111;

    border-radius:
        999px;

    background:
        #ef4444;

    color: #fff;

    font-size:
        10px;

    font-weight:
        900;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .header-cart {
        min-width:
            48px;

        width:
            48px;

        padding:
            0;
    }


    .cart-info {
        display:
            none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .store-status {
        display:
            none;
    }


    .header-cart {
        width:
            42px;

        min-width:
            42px;

        height:
            42px;

        padding:
            0;

        border-radius:
            11px;
    }


    .cart-icon {
        font-size:
            18px;
    }


    .cart-info {
        display:
            none;
    }


    .cart-count {
        min-width:
            19px;

        height:
            19px;

        top:
            -5px;

        right:
            -5px;

        font-size:
            9px;
    }

}

/* =========================================
   MODAL ENTREGA — VISUAL CLEAN PREMIUM
========================================= */

.delivery-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(17, 24, 39, .52);

    backdrop-filter: blur(7px);
}

.delivery-modal.active {
    display: flex;
}


/* CAIXA PRINCIPAL */

.delivery-modal-box {
    position: relative;

    width: min(540px, 100%);
    max-height: 92vh;

    overflow-y: auto;

    padding: 30px;

    border: 1px solid #ece7df;
    border-radius: 26px;

    background:
        linear-gradient(
            180deg,
            #fffdf9 0%,
            #faf8f4 100%
        );

    color: #252525;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .20);
}


/* FECHAR */

.delivery-modal-close {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 40px;
    height: 40px;

    border: 1px solid #ececec;
    border-radius: 50%;

    background: #ffffff;

    color: #52525b;

    cursor: pointer;

    font-size: 16px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .06);

    transition: .2s ease;
}

.delivery-modal-close:hover {
    transform: scale(1.04);

    background: #f7f7f7;
}


/* CABEÇALHO */

.delivery-modal-header {
    display: flex;
    align-items: center;

    gap: 13px;

    padding-right: 48px;
}

.delivery-modal-header > span {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #fff3d8,
            #f9e2ac
        );

    font-size: 21px;
}

.delivery-modal-header small {
    display: block;

    margin-bottom: 3px;

    color: #9a6e22;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .9px;
}

.delivery-modal-header h2 {
    margin: 0;

    color: #222;

    font-size: 23px;
    line-height: 1.15;
}


/* TEXTO */

.delivery-description {
    margin-top: 16px;

    color: #737373;

    font-size: 13px;
    line-height: 1.5;
}


/* USAR LOCALIZAÇÃO */

.use-location {
    width: 100%;

    min-height: 52px;

    margin-top: 20px;

    padding: 12px 16px;

    border: 1px solid #ead3a4;
    border-radius: 14px;

    background: #fffaf0;

    color: #7b5518;

    cursor: pointer;

    font-size: 14px;
    font-weight: 800;

    transition: .2s ease;
}

.use-location:hover {
    background: #fff5df;
    border-color: #d9b56b;
}


/* CAMPOS */

.delivery-fields {
    display: grid;

    grid-template-columns: 1fr;

    gap: 15px;

    margin-top: 22px;
}

.delivery-fields label {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.delivery-fields span {
    color: #52525b;

    font-size: 11px;
    font-weight: 800;
}

.delivery-fields input {
    width: 100%;
    height: 52px;

    padding: 0 15px;

    border: 1px solid #dedede;
    border-radius: 14px;

    outline: none;

    background: #ffffff;

    color: #262626;

    font-size: 14px;

    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, .03);

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.delivery-fields input::placeholder {
    color: #a3a3a3;
}

.delivery-fields input:focus {
    border-color: #d7b26a;

    box-shadow:
        0 0 0 4px rgba(215, 178, 106, .12);
}


/* BOTÃO */

.calculate-delivery {
    width: 100%;

    min-height: 54px;

    margin-top: 20px;

    border: none;
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #e5ad43,
            #f1c767
        );

    color: #1f1f1f;

    cursor: pointer;

    font-size: 14px;
    font-weight: 900;

    box-shadow:
        0 10px 22px rgba(204, 155, 65, .20);

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.calculate-delivery:hover {
    transform: translateY(-1px);

    box-shadow:
        0 14px 28px rgba(204, 155, 65, .26);
}

.calculate-delivery:active {
    transform: scale(.99);
}


/* STATUS */

.delivery-status {
    margin-top: 15px;

    padding: 12px 14px;

    border: 1px solid #ececec;
    border-radius: 12px;

    background: #ffffff;

    color: #737373;

    text-align: center;

    font-size: 12px;
    font-weight: 700;
}

.delivery-status.calculando {
    background: #fff8ec;

    border-color: #f2dfb7;

    color: #a25f0c;
}

.delivery-status.sucesso {
    background: #f0fdf4;

    border-color: #bbf7d0;

    color: #15803d;
}

.delivery-status.erro {
    background: #fff1f2;

    border-color: #fecdd3;

    color: #be123c;
}


/* RESULTADOS */

.delivery-result {
    margin-top: 15px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;
}

.delivery-result > div {
    min-height: 82px;

    padding: 13px 8px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border: 1px solid #e9e9e9;
    border-radius: 14px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .035);
}

.delivery-result > div:nth-child(2) {
    background:
        linear-gradient(
            145deg,
            #fff8e9,
            #fffdf7
        );

    border-color: #ead3a4;
}

.delivery-result small {
    display: block;

    margin-bottom: 6px;

    color: #8a8a8a;

    font-size: 9px;
}

.delivery-result strong {
    color: #222;

    font-size: 13px;
    font-weight: 900;
}

.delivery-result > div:nth-child(2) strong {
    color: #9a6a16;
}


/* AUTOFILL */

.delivery-fields input:-webkit-autofill,
.delivery-fields input:-webkit-autofill:hover,
.delivery-fields input:-webkit-autofill:focus {
    -webkit-text-fill-color: #262626;

    -webkit-box-shadow:
        0 0 0 1000px #ffffff inset;

    transition:
        background-color 9999s ease-in-out 0s;
}


/* MOBILE */

@media (max-width: 600px) {

    .delivery-modal {
        padding: 8px;

        align-items: flex-end;
    }

    .delivery-modal-box {
        width: 100%;

        max-height: 94vh;

        padding:
            24px 17px 20px;

        border-radius:
            25px 25px 12px 12px;
    }

    .delivery-modal-header > span {
        width: 43px;
        height: 43px;
    }

    .delivery-modal-header h2 {
        font-size: 20px;
    }

    .delivery-description {
        font-size: 12px;
    }

    .delivery-result {
        gap: 6px;
    }

    .delivery-result > div {
        min-height: 76px;

        padding: 10px 5px;
    }

    .delivery-result strong {
        font-size: 11px;
    }

}
/* =========================================
   CARRINHO — PAINEL
========================================= */

.cart-overlay {
    position: fixed;
    inset: 0;

    z-index: 10000;

    display: none;

    background:
        rgba(15, 23, 42, .52);

    backdrop-filter:
        blur(5px);
}


.cart-overlay.active {
    display: flex;
    justify-content: flex-end;
}


/* PAINEL */

.cart-panel {
    width: min(460px, 100%);
    height: 100%;

    display: flex;
    flex-direction: column;

    background:
        #fbfaf8;

    box-shadow:
        -20px 0 60px
        rgba(0, 0, 0, .22);

    animation:
        abrirCarrinho .25s ease;
}


@keyframes abrirCarrinho {

    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }

}


/* TOPO */

.cart-panel-header {
    min-height: 82px;

    padding: 20px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom:
        1px solid #ece9e3;

    background:
        rgba(255, 255, 255, .86);
}


.cart-panel-header small {
    display: block;

    margin-bottom: 3px;

    color: #9a6e22;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;
}


.cart-panel-header h2 {
    margin: 0;

    color: #222;

    font-size: 23px;
}


.cart-close {
    width: 40px;
    height: 40px;

    border:
        1px solid #e6e6e6;

    border-radius: 50%;

    background: #fff;

    color: #52525b;

    cursor: pointer;

    font-size: 16px;

    box-shadow:
        0 4px 12px
        rgba(0, 0, 0, .05);
}


/* CONTEÚDO */

.cart-panel-content {
    flex: 1;

    min-height: 0;

    overflow-y: auto;

    padding: 18px;
}


/* VAZIO */

.cart-empty {
    min-height: 360px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 30px;
}

.cart-empty[hidden] {
    display: none !important;
}



.cart-empty-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background:
        #fff3d8;

    font-size: 30px;
}


.cart-empty h3 {
    margin-top: 18px;

    color: #252525;

    font-size: 18px;
}


.cart-empty p {
    max-width: 260px;

    margin-top: 7px;

    color: #777;

    font-size: 13px;
    line-height: 1.5;
}


/* ITENS */

.cart-items {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.cart-item {
    display: grid;

    grid-template-columns:
        64px minmax(0, 1fr) auto;

    align-items: center;

    gap: 12px;

    padding: 12px;

    border:
        1px solid #ebe8e1;

    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 5px 16px
        rgba(0, 0, 0, .035);
}


.cart-item img {
    width: 64px;
    height: 64px;

    object-fit: contain;

    border-radius: 12px;

    background: #fafafa;
}


.cart-item-info {
    min-width: 0;
}


.cart-item-info h3 {
    margin: 0;

    color: #27272a;

    font-size: 13px;
    line-height: 1.3;
}


.cart-item-price {
    display: block;

    margin-top: 4px;

    color: #9a6a16;

    font-size: 12px;
    font-weight: 800;
}


/* QUANTIDADE */

.cart-item-actions {
    display: flex;
    align-items: center;

    gap: 7px;
}


.cart-qty-button {
    width: 30px;
    height: 30px;

    border:
        1px solid #e4e4e4;

    border-radius: 50%;

    background: #f8f8f8;

    cursor: pointer;

    font-size: 16px;
    font-weight: 800;
}


.cart-qty {
    min-width: 18px;

    text-align: center;

    font-size: 13px;
    font-weight: 800;
}


/* RODAPÉ */

.cart-panel-footer {
    flex-shrink: 0;

    padding:
        18px 22px 22px;

    border-top:
        1px solid #eae7e0;

    background:
        rgba(255, 255, 255, .95);

    box-shadow:
        0 -10px 30px
        rgba(0, 0, 0, .04);
}


.cart-summary-line {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 9px;

    color: #737373;

    font-size: 13px;
}


.cart-summary-line strong {
    color: #333;
}


.cart-summary-line.total {
    margin-top: 12px;

    padding-top: 13px;

    border-top:
        1px dashed #ddd6ca;

    font-size: 15px;
    font-weight: 800;
}


.cart-summary-line.total strong {
    color: #9a6a16;

    font-size: 19px;
}


/* BOTÃO */

.cart-checkout-button {
    width: 100%;

    min-height: 54px;

    margin-top: 14px;

    border: none;
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #e5ad43,
            #f1c767
        );

    color: #1f1f1f;

    cursor: pointer;

    font-size: 14px;
    font-weight: 900;

    box-shadow:
        0 10px 22px
        rgba(204, 155, 65, .18);
}


.cart-checkout-button:disabled {
    background: #e5e5e5;

    color: #9a9a9a;

    cursor: not-allowed;

    box-shadow: none;
}


/* MOBILE */

@media (max-width: 600px) {

    .cart-panel {
        width: 100%;
    }


    .cart-panel-header {
        min-height: 72px;

        padding:
            15px 16px;
    }


    .cart-panel-header h2 {
        font-size: 20px;
    }


    .cart-panel-content {
        padding: 12px;
    }


    .cart-item {
        grid-template-columns:
            54px minmax(0, 1fr) auto;

        gap: 9px;

        padding: 10px;
    }


    .cart-item img {
        width: 54px;
        height: 54px;
    }


    .cart-panel-footer {
        padding:
            15px 16px
            calc(16px + env(safe-area-inset-bottom));
    }

}
.cart-item-subtotal {
    display: block;

    margin-top: 5px;

    color: #262626;

    font-size: 12px;
    font-weight: 900;
}


.cart-item-actions {
    display: flex;

    align-items: center;

    gap: 5px;
}


.cart-remove-button {
    width: 30px;
    height: 30px;

    margin-left: 3px;

    border: none;
    border-radius: 50%;

    background: #fff1f2;

    cursor: pointer;

    font-size: 13px;

    transition: .15s;
}


.cart-remove-button:hover {
    background: #ffe4e6;

    transform: scale(1.05);
}
/* =========================================================
   CATÁLOGO CONTÍNUO + SCROLL DE CATEGORIAS
========================================================= */

.categories-wrapper {
    width: 100%;
    max-width: 100%;

    position: sticky;
    top: 82px;
    z-index: 900;

    overflow: hidden;

    background: var(--white);

    border-bottom:
        1px solid var(--border);

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.08);
}


.categories {
    display: flex;
    align-items: center;

    gap: 8px;

    width: 100%;
    max-width: 100vw;
    min-width: 0;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 12px 20px;

    background: var(--white);

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    overscroll-behavior-x: contain;

    touch-action: pan-x;

    scrollbar-width: none;

    cursor: grab;
}


.categories.is-dragging {
    cursor: grabbing;
    user-select: none;
    scroll-behavior: auto;
}


.categories::-webkit-scrollbar {
    display: none;
}


.category-btn {
    flex: 0 0 auto;

    border: none;

    background: #f3f3f3;

    padding: 10px 15px;

    border-radius: 30px;

    white-space: nowrap;

    cursor: pointer;

    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.category-btn.active {
    background: var(--secondary);
}


/* =========================================================
   PRODUTOS POR CATEGORIA
========================================================= */

.products {
    display: block;
    width: 100%;
}


.product-category-section {
    width: 100%;

    margin: 0 0 34px;

    scroll-margin-top: 165px;
}


.product-category-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

    margin: 0 0 14px;

    padding: 4px 2px;
}


.product-category-header h2 {
    margin: 0;

    font-size: 22px;

    line-height: 1.2;
}


.product-category-header span {
    flex: 0 0 auto;

    font-size: 12px;

    font-weight: 600;

    opacity: 0.65;
}


.product-category-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(180px, 1fr)
        );

    gap: 18px;

    width: 100%;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .categories-wrapper {
        top: 68px;
    }


    .categories {
        padding:
            10px 12px;
    }


    .category-btn {
        padding:
            9px 13px;

        font-size: 13px;
    }


    .product-category-section {
        margin-bottom: 28px;

        scroll-margin-top: 140px;
    }


    .product-category-header {
        margin-bottom: 10px;
    }


    .product-category-header h2 {
        font-size: 18px;
    }


    .product-category-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 10px;
    }
    .search {
        top: 122px;

        padding:
            10px 12px 12px;
    }

}
/* =========================================================
   BARRA DE PESQUISA
========================================================= */

.search {
    position: sticky;
    top: 142px;
    z-index: 850;

    width: 100%;

    padding: 14px 32px;

    background: var(--background);
}


/* CAIXA */

.search-box {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    max-width: none;

    height: 52px;

    margin: 0;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.05);

    overflow: hidden;
}


/* LUPA */

.search-box .search-icon {
    flex: 0 0 auto;

    margin-left: 17px;
    margin-right: 10px;

    font-size: 18px;

    pointer-events: none;
}


/* INPUT */

.search-box input {
    flex: 1;

    width: 100%;
    height: 100%;

    padding: 0 12px 0 0;

    border: none;
    outline: none;

    background: transparent;

    font-family: inherit;
    font-size: 14px;

    color: var(--text);
}


.search-box input::placeholder {
    color: #8b8b8b;
}


/* REMOVE O X NATIVO DO CHROME/EDGE */

.search-box input[type="search"]::-webkit-search-cancel-button,
.search-box input[type="search"]::-webkit-search-decoration,
.search-box input[type="search"]::-webkit-search-results-button,
.search-box input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}


/* BOTÃO X DO SITE */

#limpar-busca {
    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    margin-right: 9px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #f1f1f1;

    color: #555;

    font-size: 15px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}


#limpar-busca:hover {
    background: #e5e5e5;
}


#limpar-busca[hidden] {
    display: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .search {
        top: 122px;

        padding: 10px 12px;
    }


    .search-box {
        height: 46px;

        border-radius: 12px;
    }


    .search-box .search-icon {
        margin-left: 14px;

        font-size: 16px;
    }

}
/* =========================================================
   CORREÇÃO FINAL — CHECKOUT
========================================================= */

.checkout-overlay {
    position: fixed !important;

    inset: 0 !important;

    z-index: 11000 !important;

    display: none !important;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    padding: 20px;

    background:
        rgba(15, 23, 42, 0.55);

    backdrop-filter:
        blur(6px);
}


/* SÓ APARECE QUANDO ABERTO */

.checkout-overlay.active {
    display: flex !important;
}


/* PAINEL */

.checkout-panel {
    width:
        min(620px, 100%);

    max-height:
        92vh;

    display: flex;

    flex-direction:
        column;

    background:
        #f7f6f3;

    border-radius:
        24px;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.25);

    overflow:
        hidden;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.checkout-header {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    padding:
        20px 22px;

    background:
        #ffffff;

    border-bottom:
        1px solid #e8e4dc;
}


.checkout-header small {
    color:
        #9a6e22;

    font-size:
        10px;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        0.8px;
}


.checkout-header h2 {
    margin:
        3px 0 0;

    color:
        #222;

    font-size:
        22px;
}


.checkout-close {
    flex:
        0 0 auto;

    width:
        40px;

    height:
        40px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        0;

    border:
        1px solid #e5e5e5;

    border-radius:
        50%;

    background:
        #ffffff;

    cursor:
        pointer;

    font-size:
        16px;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.checkout-content {
    flex:
        1;

    min-height:
        0;

    overflow-y:
        auto;

    padding:
        16px;

    display:
        flex;

    flex-direction:
        column;

    gap:
        12px;
}


/* =========================================================
   CARDS
========================================================= */

.checkout-card {
    padding:
        16px;

    background:
        #ffffff;

    border:
        1px solid #e8e4dc;

    border-radius:
        16px;

    box-shadow:
        0 4px 14px
        rgba(0, 0, 0, 0.035);
}


.checkout-card-title {
    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    margin-bottom:
        12px;
}


.checkout-card-title > span {
    width:
        38px;

    height:
        38px;

    flex:
        0 0 38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        11px;

    background:
        #fff4dd;
}


.checkout-card-title div {
    display:
        flex;

    flex-direction:
        column;
}


.checkout-card-title small {
    color:
        #9a6a16;

    font-size:
        9px;

    font-weight:
        800;

    text-transform:
        uppercase;
}


.checkout-card-title strong {
    margin-top:
        2px;

    color:
        #27272a;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .checkout-overlay {
        padding:
            8px;
    }


    .checkout-panel {
        width:
            100%;

        max-height:
            96vh;

        border-radius:
            20px;
    }


    .checkout-header {
        padding:
            16px 18px;
    }


    .checkout-header h2 {
        font-size:
            21px;
    }


    .checkout-content {
        padding:
            12px;
    }

}
/* =========================================================
   COMPLEMENTO DO CHECKOUT
========================================================= */


/* ENDEREÇO */

.checkout-address {
    margin: 0;

    color: #52525b;

    font-size: 13px;
    line-height: 1.5;
}


.checkout-edit-address {
    margin-top: 10px;

    padding: 0;

    border: none;

    background: transparent;

    color: #9a6a16;

    cursor: pointer;

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   PAGAMENTO
========================================================= */

.payment-options {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    width: 100%;
}


.payment-option {
    width: 100%;
    min-height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 10px;

    border: 1px solid #e5e5e5;
    border-radius: 12px;

    cursor: pointer;

    background: #fafafa;

    font-size: 12px;
    font-weight: 800;
}


.payment-option:has(input:checked) {
    border-color: #d9b56b;

    background: #fff6e3;
}


.payment-option input {
    accent-color: #d8a441;
}


/* =========================================================
   OBSERVAÇÕES
========================================================= */

#observacoes-pedido {
    width: 100%;

    min-height: 85px;

    padding: 12px;

    resize: vertical;

    border: 1px solid #dedede;
    border-radius: 12px;

    outline: none;

    background: #ffffff;

    font-family: inherit;

    font-size: 13px;
}


#observacoes-pedido:focus {
    border-color: #d8a441;

    box-shadow:
        0 0 0 3px
        rgba(216, 164, 65, 0.12);
}


/* =========================================================
   RESUMO
========================================================= */

.checkout-summary-line {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 9px;

    color: #666;

    font-size: 13px;
}


.checkout-summary-line strong {
    color: #333;

    text-align: right;
}


.checkout-total {
    margin-top: 13px;

    padding-top: 13px;

    border-top:
        1px dashed #d8d2c8;

    font-size: 15px;

    font-weight: 900;
}


.checkout-total strong {
    color: #9a6a16;

    font-size: 19px;
}


/* =========================================================
   RODAPÉ CHECKOUT
========================================================= */

.checkout-footer {
    flex: 0 0 auto;

    padding: 15px 20px 20px;

    border-top:
        1px solid #e8e4dc;

    background: #ffffff;
}


/* BOTÃO FINALIZAR */

.checkout-finish {
    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border: none;
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #e5ad43,
            #f1c767
        );

    color: #1f1f1f;

    cursor: pointer;

    font-family: inherit;

    font-size: 14px;

    font-weight: 900;

    transition:
        transform 0.15s ease,
        filter 0.15s ease;
}


.checkout-finish:hover {
    filter: brightness(1.03);
}


.checkout-finish:active {
    transform: scale(0.99);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .checkout-overlay {
        padding: 0 !important;

        align-items: flex-end;
    }


    .checkout-panel {
        width: 100%;

        max-height: 96vh;

        border-radius:
            24px 24px 0 0;
    }


    .checkout-header {
        padding: 16px;
    }


    .checkout-content {
        padding: 12px;
    }


    .checkout-footer {
        padding:
            12px 14px
            calc(
                14px +
                env(safe-area-inset-bottom)
            );
    }


    .payment-options {
        grid-template-columns:
            1fr;
    }

}
/* =========================================================
   CHECKOUT — PIX CORRIGIDO
========================================================= */

.pix-payment-box {
    margin-top: 12px;

    width: 100%;

    padding: 16px;

    border: 1px solid #cfe8d8;
    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            #f7fffa,
            #ffffff
        );
}


/* CABEÇALHO */

.pix-payment-header {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}


.pix-payment-header > span {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #e8fff0;

    font-size: 19px;
}


.pix-payment-header > div {
    display: flex;

    flex-direction: column;
}


.pix-payment-header small {
    color: #168447;

    font-size: 9px;

    font-weight: 900;

    text-transform: uppercase;
}


.pix-payment-header strong {
    margin-top: 2px;

    color: #252525;

    font-size: 14px;
}


/* =========================================================
   VALOR DO PIX
========================================================= */

.pix-total {
    margin:
        8px 0 14px;

    text-align: center;
}


.pix-total small {
    display: block;

    margin-bottom: 5px;

    color: #777;

    font-size: 10px;
}


.pix-total strong {
    display: block;

    color: #181818;

    font-size: 27px;

    font-weight: 900;

    letter-spacing: -0.4px;
}


/* =========================================================
   QR CODE
========================================================= */

.pix-qrcode {
    width: fit-content;

    max-width: 100%;

    margin:
        0 auto 13px;

    padding: 10px;

    border:
        1px solid #e4e4e4;

    border-radius: 14px;

    background: #ffffff;

    overflow: hidden;
}


/* MOSTRA SÓ UM QR CODE */

.pix-qrcode canvas {
    display: block !important;

    width: 190px !important;
    height: 190px !important;

    max-width: 100% !important;

    margin: 0 auto;
}


.pix-qrcode img {
    display: none !important;
}


/* =========================================================
   INSTRUÇÃO
========================================================= */

.pix-help {
    max-width: 330px;

    margin:
        0 auto 14px;

    color: #737373;

    text-align: center;

    font-size: 11px;

    line-height: 1.45;
}


/* =========================================================
   BOTÃO COPIAR
========================================================= */

.pix-copy-button {
    width: 100%;

    min-height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        0 16px;

    border: none;

    border-radius: 12px;

    background: #191919;

    color: #ffffff;

    cursor: pointer;

    font-family: inherit;

    font-size: 12px;

    font-weight: 900;

    transition:
        background .15s ease,
        transform .15s ease;
}


.pix-copy-button:hover {
    background: #2b2b2b;
}


.pix-copy-button:active {
    transform: scale(.985);
}


/* FEEDBACK AO COPIAR */

.pix-copy-feedback {
    display: block;

    min-height: 16px;

    margin-top: 7px;

    color: #168447;

    text-align: center;

    font-size: 10px;

    font-weight: 800;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .pix-payment-box {
        padding: 14px;
    }


    .pix-payment-header > span {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }


    .pix-total strong {
        font-size: 24px;
    }


    .pix-qrcode canvas {
    width: 180px !important;
    height: 180px !important;
}

.pix-qrcode img {
    display: none !important;
}

}
/* =========================================================
   CARDS DE PRODUTOS — VISUAL NOVO
========================================================= */

.product-category-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(190px, 1fr)
        );

    gap: 18px;

    align-items: stretch;
}


/* CARD */

.product-card {
    position: relative;

    min-width: 0;

    height: 100%;

    padding: 14px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border:
        1px solid #ececec;

    border-radius:
        18px;

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, 0.06);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}


.product-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(216, 164, 65, .35);

    box-shadow:
        0 10px 26px
        rgba(0, 0, 0, 0.10);
}


/* =========================================================
   ÁREA DA IMAGEM
========================================================= */

.product-card img {
    display: block;

    width: 100%;
    height: 170px;

    object-fit: contain;

    object-position: center;

    padding: 6px;

    background: #ffffff;

    border-radius: 12px;
}


/* =========================================================
   BADGES
========================================================= */

.product-badges {
    position: absolute;

    top: 12px;
    left: 12px;
    right: 12px;

    z-index: 2;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 4px;

    pointer-events: none;
}


.product-badge {
    padding:
        4px 7px;

    border-radius:
        7px;

    color: #ffffff;

    font-size:
        9px;

    font-weight:
        800;

    line-height: 1.1;

    box-shadow:
        0 2px 6px
        rgba(0, 0, 0, .12);
}


/* =========================================================
   ÁREA DO CARRINHO
========================================================= */

.product-cart-control {
    margin-top:
        12px;

    width:
        100%;
}


/* BOTÃO ADICIONAR */

.product-cart-control .add-cart {
    width:
        100%;

    min-height:
        44px;

    margin:
        0;

    padding:
        0 12px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        none;

    border-radius:
        12px;

    background:
        linear-gradient(
            135deg,
            #d6a33f,
            #f0c568
        );

    color:
        #181818;

    cursor:
        pointer;

    font-family:
        inherit;

    font-size:
        12px;

    font-weight:
        900;

    transition:
        transform .15s ease,
        filter .15s ease;
}


.product-cart-control
.add-cart:hover {
    filter:
        brightness(1.03);
}


.product-cart-control
.add-cart:active {
    transform:
        scale(.985);
}


/* =========================================================
   CONTROLE - 1 +
========================================================= */

.product-quantity-control {
    width:
        100%;

    height:
        44px;

    display:
        grid;

    grid-template-columns:
        44px 1fr 44px;

    align-items:
        center;

    overflow:
        hidden;

    border:
        1px solid #eadbb8;

    border-radius:
        12px;

    background:
        #fffaf0;
}


.product-card
.product-quantity-control
button {
    width:
        100%;

    height:
        44px;

    margin:
        0;

    padding:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        none;

    border-radius:
        0;

    background:
        transparent;

    color:
        #9a6a16;

    cursor:
        pointer;

    font-size:
        19px;

    font-weight:
        900;

    box-shadow:
        none;

    transition:
        background .15s ease;
}


.product-card
.product-quantity-control
button:hover {
    background:
        rgba(
            216,
            164,
            65,
            .14
        );

    transform:
        none;

    box-shadow:
        none;
}


.product-qty-minus {
    border-right:
        1px solid #eadbb8 !important;
}


.product-qty-plus {
    border-left:
        1px solid #eadbb8 !important;
}


.product-qty-value {
    height:
        44px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        #202020;

    font-size:
        14px;

    font-weight:
        900;

    user-select:
        none;
}


/* =========================================================
   PRODUTO INDISPONÍVEL
========================================================= */

.product-card.unavailable {
    opacity:
        .62;
}


.product-card.unavailable:hover {
    transform:
        none;

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, .06);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .product-category-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap:
            10px;
    }


    .product-card {
        padding:
            10px;

        border-radius:
            14px;
    }


    .product-card:hover {
        transform:
            none;
    }


    .product-card img {
        height:
            135px;

        padding:
            3px;
    }


    .product-badges {
        top:
            8px;

        left:
            8px;

        right:
            8px;

        gap:
            3px;
    }


    .product-badge {
        padding:
            3px 5px;

        font-size:
            8px;
    }


    .product-card h3 {
        margin-top:
            8px;

        min-height:
            34px;

        font-size:
            12px;

        line-height:
            1.35;
    }


    .price-box {
        min-height:
            58px;

        padding-top:
            8px;
    }


    .old-price {
        font-size:
            10px;
    }


    .current-price {
        font-size:
            18px;
    }


    .product-cart-control {
        margin-top:
            9px;
    }


    .product-cart-control
    .add-cart {
        min-height:
            40px;

        border-radius:
            10px;

        font-size:
            11px;
    }


    .product-quantity-control {
        height:
            40px;

        grid-template-columns:
            40px 1fr 40px;

        border-radius:
            10px;
    }


    .product-card
    .product-quantity-control
    button {
        height:
            40px;

        font-size:
            18px;
    }


    .product-qty-value {
        height:
            40px;

        font-size:
            13px;
    }

}
/* =========================================================
   NOME DO PRODUTO
========================================================= */

.product-card h3 {
    margin: 10px 0 6px;

    min-height: 0;

    color: #252525;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   PREÇOS
========================================================= */

.price-box {
    margin-top: auto;

    min-height: 0;

    padding-top: 6px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;

    gap: 2px;
}


/* PREÇO ANTIGO */

.old-price {
    min-height: 0;

    margin: 0;

    color: #999;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;

    text-decoration: line-through;
}


/* PREÇO ATUAL */

.current-price {
    display: block;

    margin: 0;

    color: #1f1f1f;

    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;

    letter-spacing: -0.3px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .product-card h3 {
        margin: 8px 0 5px;

        min-height: 31px;

        font-size: 12px;
        line-height: 1.3;
    }


    .price-box {
        padding-top: 4px;

        gap: 1px;
    }


    .old-price {
        font-size: 10px;
    }


    .current-price {
        font-size: 18px;
    }

}

/* =========================================
   BOTÃO PROSSEGUIR — MODAL DE ENTREGA
========================================= */

.delivery-continue {
    width: 100%;
    min-height: 54px;

    margin-top: 14px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: none;
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #e5ad43,
            #f1c767
        );

    color: #1f1f1f;

    font-family: inherit;
    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 10px 22px
        rgba(204, 155, 65, .20);

    transition:
        transform .15s ease,
        box-shadow .15s ease,
        filter .15s ease;
}


/* SETA */

.delivery-continue span {
    font-size: 19px;
    line-height: 1;

    transition:
        transform .15s ease;
}


/* HOVER */

.delivery-continue:hover {
    transform: translateY(-1px);

    box-shadow:
        0 14px 28px
        rgba(204, 155, 65, .27);

    filter: brightness(1.02);
}

.delivery-continue:hover span {
    transform: translateX(4px);
}


/* CLIQUE */

.delivery-continue:active {
    transform: scale(.99);
}


/* GARANTE QUE O HIDDEN FUNCIONE */

.delivery-continue[hidden] {
    display: none !important;
}


/* MOBILE */

@media (max-width: 600px) {

    .delivery-continue {
        min-height: 52px;

        margin-top: 12px;

        border-radius: 13px;

        font-size: 13px;
    }

}
/* =========================================
   TÍTULO DAS CATEGORIAS DO CATÁLOGO
========================================= */

.product-category-header {
    position: relative;

    display: flex;
    align-items: center;

    margin: 8px 0 20px;
    padding: 0 0 12px;

    border-bottom: 1.5px solid #e5e5e5;
}


.product-category-header h2 {
    position: relative;

    margin: 0;

    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;

    color: #18181b;
}


/* DETALHE DOURADO */

.product-category-header h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -14px;

    width: 44px;
    height: 3px;

    border-radius: 999px;

    background: var(--secondary);
}


/* ESPAÇO ENTRE AS CATEGORIAS */

.product-category-section {
    margin-bottom: 42px;
}


/* MOBILE */

@media (max-width: 768px) {

    .product-category-header {
        margin-top: 5px;
        margin-bottom: 16px;

        padding-bottom: 10px;
    }

    .product-category-header h2 {
        font-size: 19px;
    }

    .product-category-header h2::after {
        bottom: -12px;

        width: 36px;
    }

    .product-category-section {
        margin-bottom: 34px;
    }

}

/* =========================================
   NOME + PREÇO DOS CARDS
========================================= */

.product-card h3 {
    width: 100%;

    margin: 10px 0 8px;

    color: #18181b;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;

    text-align: center;
}


/* ÁREA DO PREÇO */

.price-box {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 12px;
}


/* PREÇO ANTIGO */

.old-price {
    color: #9ca3af;

    font-size: 12px;
    font-weight: 600;

    text-decoration: line-through;
}


/* PREÇO ATUAL */

.current-price {
    color: #111827;

    font-size: 20px;
    font-weight: 900;
    line-height: 1;

    letter-spacing: -0.4px;
}


/* QUANDO TEM PROMOÇÃO */

.product-card:has(.old-price) .current-price {
    color: #d39b2f;
}


/* MOBILE */

@media (max-width: 768px) {

    .product-card h3 {
        margin-top: 8px;

        font-size: 13px;
    }

    .price-box {
        margin-bottom: 10px;
    }

    .current-price {
        font-size: 18px;
    }

    .old-price {
        font-size: 11px;
    }

}
/* =========================================
   QUANTIDADE — BOTÕES CIRCULARES
========================================= */

.product-cart-control {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 10px;
}


/* REMOVE A CAIXA EXTERNA */

.product-quantity-control {
    width: auto;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0;

    background: transparent;
    border: none;
    box-shadow: none;
}


/* BOTÕES */

.product-quantity-control button {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: none;
    border-radius: 50%;

    font-size: 20px;
    font-weight: 900;
    line-height: 1;

    cursor: pointer;

    transition:
        transform .15s ease,
        filter .15s ease;
}


/* MENOS */

.product-qty-minus {
    background: #f3ead8 !important;
    color: #9a6810 !important;
}


/* MAIS */

.product-qty-plus {
    background: var(--secondary) !important;
    color: #18181b !important;
}


/* QUANTIDADE */

.product-qty-value {
    width: 30px;
    height: 38px;

    min-width: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e5e7eb;
    border-radius: 12px;

    background: #ffffff;

    color: #18181b;

    font-size: 14px;
    font-weight: 800;

    line-height: 1;
}


/* HOVER */

.product-quantity-control button:hover {
    transform: scale(1.06);
    filter: brightness(.97);
}

.product-quantity-control button:active {
    transform: scale(.94);
}
/* =========================================
   STATUS DA LOJA — DESKTOP
========================================= */

@media (min-width: 769px) {

    .store-status {
        min-width: 150px;
        min-height: 52px;

        display: flex;
        align-items: center;

        padding: 9px 16px;

        background: #181818;

        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 14px;

        box-shadow:
            0 8px 22px rgba(0, 0, 0, .18);
    }


    /* CONTAINER DOS TEXTOS */

    .store-status-info {
        display: flex;
        flex-direction: column;

        gap: 2px;
    }


    /* LOJA ABERTA */

    .store-status-title {
        color: #ffffff;

        font-size: 13px;
        font-weight: 800;

        line-height: 1.1;
    }


    /* ATÉ 23:59 */

    .store-status-time {
        color: #9ca3af;

        font-size: 10px;
        font-weight: 600;

        line-height: 1.1;
    }

}
/* =========================================
   RODAPÉ
========================================= */

.site-footer {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 50px;
    padding: 28px 20px;

    background: #090909;

    border-top: 1px solid rgba(255, 255, 255, .06);

    color: #8b8b8b;

    font-size: 12px;
    font-weight: 500;

    text-align: center;
}


/* INSTAGRAM */

.footer-developer {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #d4a84f;

    font-weight: 700;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.footer-developer i {
    font-size: 15px;
}


.footer-developer:hover {
    color: #efc96e;

    transform: translateY(-1px);
}


/* MOBILE */

@media (max-width: 600px) {

    .site-footer {
        padding: 24px 15px;

        font-size: 11px;

        gap: 5px;
    }

}


/* MOBILE */

@media (max-width: 768px) {

    .seo-intro {
        margin-top: 12px;

        padding: 0 14px;
    }

    .seo-intro h1 {
        font-size: 15px;
    }

    .seo-intro p {
        font-size: 11px;
    }

}
/* =========================================
   SEO LOCAL — RODAPÉ DO CATÁLOGO
========================================= */

.seo-local {
    width: 100%;

    margin-top: 40px;

    padding: 42px 20px;

    background: #f5f5f5;

    border-top: 1px solid #e5e5e5;
}


.seo-local-inner {
    max-width: 1000px;

    margin: 0 auto;
}


.seo-local h1 {
    margin: 0 0 14px;

    color: #18181b;

    font-size: 20px;
    font-weight: 900;
}


.seo-local p {
    max-width: 850px;

    margin: 0 0 10px;

    color: #71717a;

    font-size: 13px;
    line-height: 1.7;
}


.seo-local strong {
    color: #3f3f46;
    font-weight: 700;
}


@media (max-width: 768px) {

    .seo-local {
        margin-top: 25px;

        padding: 30px 16px;
    }

    .seo-local h1 {
        font-size: 17px;
    }

    .seo-local p {
        font-size: 12px;
        line-height: 1.6;
    }

}