.carrinho-page {
    background: #f4f7f9;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}


/* ===== CONTAINER ===== */
.carrinho-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px 5px;
    padding-bottom: 10px;
}

/* ===== TITULO ===== */
.titulo {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #3a5565;
}

/* ===== GRID ===== */
.carrinho-grid {
    display: flex;
    gap: 1px;
    flex-direction: column;
}

/* ===== LISTA ===== */
.carrinho-itens {
    flex: 2;
}

/* ===== ITEM ===== */
.item {
    position: relative; /* ✅ necessário pro botão remover */
    display: flex;
    align-items: flex-start; /* ✅ começa do topo */
    gap: 12px;

    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 10px;

    transition: 0.15s;
}

.item:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.03);
}

/* ===== IMG ===== */
.item-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* ===== INFO ===== */
.item-dados h2 {
    font-size: 14px;
    font-weight: 500;
    color: #2f3e46;
}

.item-variacao {
    font-size: 13px;
    color: #7a8a94;
}

.item-preco {
    font-size: 16px;
    font-weight: 650;
    color: #23282b;
    margin-top: 5px;
}

/* ===== QUANTIDADE ===== */
.qtd {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    background: #f2f5f7;
    border-radius: 10px;
    padding: 4px 8px;
}

.qtd button {
    width: 26px;
    height: 26px;
    border: none;
    background: transparent;
    font-size: 18px;
    color: #3a5565;
    cursor: pointer;
}

.qtd span {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

/* ===== SUBTOTAL ===== */

.item-dados {
    flex: 1;
}

/* ✅ bloco da direita (qtd + subtotal) */
/* 🔥 SOMENTE DESKTOP */
@media (min-width: 769px) {

    .item-final {
        display: flex;
        flex-direction: row;        /* ✅ lado a lado */
        align-items: center;        /* ✅ alinhados */
        justify-content: flex-end;  /* ✅ direita */
        gap: 12px;

        margin-left: auto;
        margin-top: 70px;           /* 🔥 DESCE O BLOCO (só desktop) */
    }

}

/* ✅ SUBTOTAL DESCE */
.subtotal {
    margin-top: 0;        /* ✅ remove bug */
    padding-top: 0;       /* ✅ remove espaçamento errado */

    font-size: 16px;
    font-weight: 700;
    color: #2f3e46;
}
/* ========================= */
/* ✅ RESUMO DESKTOP */
/* ========================= */

.resumo {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #e6ebef;
}

.resumo h2 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: "Montserrat", Sans-serif;
    color: #3a5565;
}

/* LINHAS */
.linha {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: "Montserrat", Sans-serif;
    font-size: 25px;
    color: #00a650;
}

.total {
    font-weight: bold;
    color: #3a5565;
    font-family: "Montserrat", Sans-serif;
}

/* ===== FRETE ===== */
.frete-box {
    margin-top: 20px;
}

.frete-titulo {
    font-size: 13px;
    color: #444;
    margin-bottom: 10px;
}

/* CEP */
.cep-bloco {
    display: flex;
    width: 100%;          /* ✅ não passa do container */
    max-width: 100%;      /* ✅ segurança extra */

    border: 1px solid #dbe3e8;
    border-radius: 10px;
    overflow: hidden;
}

.cep-bloco input {
    flex: 1;
    min-width: 0;         /* 🔥 CORREÇÃO PRINCIPAL do overflow */

    padding: 12px;
    border: none;
    outline: none;
    background: #f7fafc;
}

.cep-bloco button {
    flex-shrink: 0;       /* ✅ evita quebrar o layout */

    padding: 0 18px;
    border: none;
    background: #e9eff3;

    font-weight: 600;
    letter-spacing: 1px;
    color: #444;
    cursor: pointer;
}

.cep-bloco input {
    height: 42px;       /* 🔥 aumenta altura */
    padding: 0 10px;
    font-size: 13px;
}

.cep-bloco button {
    height: 42px;       /* 🔥 iguala com input */
    padding: 0 14px;
    font-size: 13px;
}

/* LINK */
.link-cep {
    font-size: 12px;
    color: #6b7f8a;
    margin-top: 5px;
    display: inline-block;
}

/* BOTÃO PRINCIPAL */
.btn-finalizar {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: #1c1e1f;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.2s;
}

.btn-finalizar:hover {
    background: #1c2022;
}

/* ========================= */
/* ✅ FOOTER MOBILE */
/* ========================= */

.carrinho-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e6ebef;
    padding: 12px;
}

/* layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* total mobile */
.footer-total {
    font-size: 14px;
}

.footer-total strong {
    display: block;
    font-size: 18px;
    color: #3a5565;
}

/* botão mobile */
.btn-checkout {
    background: #4f6d7a;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}

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

@media (max-width: 768px) {

    .carrinho-grid {
        flex-direction: column; /* ✅ empilhado correto */
    }

    .resumo {
        display: block; /* 🔥 MOSTRA o resumo */
        width: 100%;
        margin-top: 20px;
    }
}


/* ========================= */
/* ✅ DESKTOP */
/* ========================= */

@media (min-width: 769px) {

    .carrinho-footer {
        display: none;
    }
}

/* ===================== */
/* ✅ MODAL OVERLAY */
/* ===================== */
.modal-compra {
    position: fixed;
    inset: 0;

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

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

    opacity: 0;
    visibility: hidden;

    z-index: 100000;
    transition: 0.25s ease;
}

.modal-compra.active {
    opacity: 1;
    visibility: visible;
}


/* ===================== */
/* ✅ BOTÃO */
/* ===================== */

.cart-badge {
    animation: pulsar 0.3s ease;
}


@keyframes pulsar {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.drawer-carrinho {
    position: fixed;
    top: 0;
    right: 0;

    transform: translateX(100%);

    width: 70%;
    min-width: 320px;
    height: 100vh;

    background: #fff;
    z-index: 100000;

    transition: transform 0.3s ease;

    display: flex;
    flex-direction: column;
}

.drawer-carrinho.ativo {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .drawer-carrinho {
        width: 100%;
        min-width: 100%;
    }
}


/* ativo */
.drawer-carrinho.ativo {
    right: 0;
}

/* header */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    padding: 25px;
    background: #333;
    color: white;
}

/* botão fechar */
.btn-close-drawer {
    background: none;
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    padding-bottom: 30px; /* ✅ AJUSTE CORRETO */
}

/* overlay */
.overlay-carrinho {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

    z-index: 99999;
}

.overlay-carrinho.ativo {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {

    .drawer-carrinho {
        width: 100%;   /* 🔥 ocupa tela toda */
        right: -100%;
    }


}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;

    min-width: 18px;
    height: 18px;

    background: red;
    color: white;
    font-size: 11px;

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

    border-radius: 50%;
}

@media (min-width: 769px) {
    .drawer-carrinho {
        width: 90%;        /* ✅ AUMENTA ~30% (70 → 90) */
        max-width: 550px;  /* ✅ aumenta limite real */
    }
}

#totalValor {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;   /* ajuste como quiser */
    font-weight: 700;
    color: #333;
}

.resumo .linha span {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;   /* 👈 aumenta aqui */
    font-weight: 600;
    color: #1f2224;
}

.remover {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 26px;
    height: 26px;

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

    border: 1px solid #4a5057;
    border-radius: 6px;
    background: #fff;

    cursor: pointer;
}

@media (max-width: 768px) {

    /* ✅ ITEM MAIS VERTICAL */
    .item {
        flex-direction: row; /* mantém imagem + infos lado a lado */
        align-items: flex-start;
    }

    /* ✅ BLOCO DE TEXTO */
    .item-dados {
        flex: 1;
    }

    /* ✅ QTD + SUBTOTAL EMBAIXO */
    .item-final {
        width: 70%;
        margin-top: 10px;

        display: flex;
        justify-content: space-between;  /* ✅ separa */
        align-items: center;
    }

    /* ✅ DEIXA MAIS RESPIRADO */
    .qtd {
        scale: 0.95;
    }

    /* ✅ SUBTOTAL MAIS VISÍVEL */
    .subtotal {
        font-size: 17px;
    }

    /* ✅ CARD MAIS COMPACTO */
    .item {
        padding: 16px;
    }

}

@media (max-width: 768px) {
    .drawer-carrinho {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 768px) {

    /* ✅ container sem espaço lateral estranho */
    .drawer-body {
        padding: 10px;
    }

    .carrinho-container {
        padding: 10px;
    }

    /* ✅ CARD BASE */
    .item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        flex-direction: column;
        padding: 12px;
        border-radius: 12px;
    }

    /* ✅ IMAGEM */
    .item-img {
        width: 55px;
        height: 55px;
        flex-shrink: 0;
    }

    /* ✅ BLOCO CENTRAL (NOME + QTD) */
    .item-dados {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        gap: 2px;
    }

    .item-dados h2 {
        font-size: 13px;
        line-height: 1.3;
    }

    .item-variacao {
        font-size: 12px;
    }

    /* ✅ QTD ABAIXO DO NOME */
    .item-final {
        order: 2;

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

        margin: 0;
    }

    .qtd {
        background: #f2f5f7;
        padding: 2px 6px;
        border-radius: 8px;
    }

    .qtd button {
        width: 22px;
        height: 22px;
        font-size: 16px;
    }

    .qtd span {
        font-size: 14px;
    }

    /* ✅ PREÇO/LADO DIREITO */
    .subtotal {
        margin-left: auto;
        font-size: 15px;
        font-weight: 700;
        white-space: nowrap;
    }

    /* ✅ REMOVER (X) */
    .remover {
        top: 5px;
        right: 5px;
        width: 20px;
        height: 25px;
        font-size: 15px;
    }

    /* ✅ RESUMO */
    .resumo {
        margin-top: 15px;
        padding: 15px;
    }

    .linha span {
        font-size: 13px;
    }

    #totalValor {
        font-size: 15px;
    }
}

/* botão */
.btn-ver-carrinho {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 20px;

    background: #080808;
    color: white;

    cursor: pointer;
}

@media (max-width: 768px) {

    .toast-carrinho {
        left: 50%;
        right: unset;
        transform: translate(-50%, 20px);
        bottom: 80px; /* evita sobrepor footer */
    }

    .toast-carrinho.ativo {
        transform: translate(-50%, 0);
    }

}

/* ===================== */
/* ✅ MODAL BASE */
/* ===================== */
.modal-compra .modal-content {

    background: #fff;
    padding: 20px 15px;
    border-radius: 16px;

    width: 300px;
    max-width: 92%;

    text-align: center;
    position: relative;

    /* sombra mais premium */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);

    transition: transform 0.2s ease;
}

/* efeito suave */
.modal-compra.active .modal-content {
    transform: scale(1);
}

/* ===================== */
/* ✅ IMAGEM */
/* ===================== */
.modal-img-product {
    width: 90px;
    margin-bottom: 12px;
}

/* ===================== */
/* ✅ NOME */
/* ===================== */
#modalNome {
    font-size: 15px;
    font-weight: 600;
    color: #2f3e46;

    margin-bottom: 12px;
    line-height: 1.4;
}

/* ===================== */
/* ✅ LABEL */
/* ===================== */
.modal-select-box label {
    font-size: 13px;
    color: #6b7f8a;
    display: block;
    margin-bottom: 4px;
}

/* ===================== */
/* ✅ SELECT */
/* ===================== */
.modal-select-box select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #dbe3e8;

    font-size: 14px;
    outline: none;
}

/* ===================== */
/* ✅ QTD */
/* ===================== */
.modal-qtd {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    margin: 14px 0;
}

.modal-qtd button {
    width: 30px;
    height: 30px;

    border-radius: 50%;
    border: none;

    background: #f2f5f7;
    font-size: 18px;

    cursor: pointer;
    transition: 0.2s;
}

.modal-qtd button:hover {
    background: #e1e8ed;
}

/* ===================== */
/* ✅ BOTÃO PRINCIPAL */
/* ===================== */
.btn-modal-comprar {
    width: 100%;
    padding: 12px;
    border-radius: 30px;

    background: linear-gradient(135deg, #4d5052, #101213);
    color: #fff;

    border: none;
    font-weight: 600;
    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.25s;
}

.btn-modal-comprar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* ===================== */
/* ✅ BOTÃO FECHAR */
/* ===================== */
.btn-close-modal {
    position: absolute;
    top: 10px;
    right: 12px;

    font-size: 14px;
    width: 28px;
    height: 28px;

    border-radius: 50%;
    border: none;

    background: #f2f5f7;
    cursor: pointer;
}

/* ===================== */
/* ✅ MOBILE (ESTILO APP) */
/* ===================== */
/* ===================== */
/* ✅ MOBILE (ESTILO APP) */
/* ===================== */
@media (max-width: 768px) {

    .modal-compra {
        align-items: flex-end;
    }

    .modal-compra .modal-content {

        width: 95%;
        max-width: 100%;

        border-radius: 14px 14px 0 0;

        /* ✅ REDUÇÃO DE ALTURA */
        padding: 16px 14px;

        /* ✅ CONTROLE DE ALTURA */
        max-height: 40vh;
        overflow-y: auto;

        /* ✅ VISUAL PREMIUM */
        box-shadow: 0 -12px 30px rgba(0,0,0,0.25);

        animation: subirModal 0.25s ease;
    }

    /* ✅ IMAGEM MENOR */
    .modal-img-product {
        width: 70px;
        margin-bottom: 8px;
    }

    /* ✅ NOME MAIS COMPACTO */
    #modalNome {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    /* ✅ SELECT */
    .modal-select-box {
        margin-bottom: 8px;
    }

    .modal-select-box select {
        padding: 8px;
        font-size: 13px;
    }

    /* ✅ QUANTIDADE */
    .modal-qtd {
        margin: 10px 0;
        gap: 10px;
    }

    .modal-qtd button {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }

    /* ✅ BOTÃO PRINCIPAL */
    .btn-modal-comprar {
        padding: 12px;
        font-size: 14px;
    }

    /* ✅ BOTÃO FECHAR */
    .btn-close-modal {
        top: 8px;
        right: 10px;
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
}

/* ✅ ANIMAÇÃO */
@keyframes subirModal {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}


/* ========================= */
/* ✅ MINI CART TOAST */
/* ========================= */

.mini-cart-toast {
    position: fixed;

    top: 70px;        /* ✅ ajusta altura (mais colado no header) */
    right: 40px;      /* ✅ aproxima do carrinho */


    z-index: 999999;

    opacity: 0;
    transform: translateY(-20px);

    transition: 0.3s ease;

    pointer-events: none;
}

.mini-cart-toast.ativo {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* CAIXA */
.toast-content {
    background: #fff;
    width: 340px;

    border-radius: 14px;
    padding: 15px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* TOPO */
.toast-top {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* IMAGEM */
.toast-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* INFO */
.toast-info {
    flex: 1;
}

.toast-nome {
    font-size: 14px;
    font-weight: 600;
    color: #2f3e46;
}

.toast-variacao {
    font-size: 13px;
    color: #7a8a94;
    margin-bottom: 4px;
}

.toast-status {
    font-size: 13px;
    color: #000;
}

/* BOTÃO FECHAR */
.toast-close {
    border: none;
    background: none;
    font-size: 16px;
    cursor: pointer;
}

/* TOTAL */
.toast-total {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #eee;

    display: flex;
    justify-content: space-between;

    font-size: 14px;
}

/* BOTÃO */
.btn-ver-carrinho {
    width: 100%;
    margin-top: 10px;

    padding: 10px;
    border-radius: 25px;

    background: #333;
    color: #fff;

    border: none;
    font-weight: 600;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .mini-cart-toast {
        top: 70px;
        left: 50%;
        right: unset;

        transform: translate(-50%, -20px);
        width: 95%;
    }

    .mini-cart-toast.ativo {
        transform: translate(-50%, 0);
    }

    .toast-content {
        width: 100%;
        padding: 12px;
        border-radius: 14px;
    }

    /* ✅ TOPO HORIZONTAL */
    .toast-top {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* ✅ IMAGEM */
    .toast-img {
        width: 45px;
        height: 45px;
        object-fit: contain;
        flex-shrink: 0;
    }

    /* ✅ TEXTO */
    .toast-info {
        flex: 1;
        min-width: 0; /* 🔥 resolve quebra */
    }

    .toast-nome {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;

        display: -webkit-box;
        -webkit-line-clamp: 2; /* ✅ limita 2 linhas */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .toast-variacao {
        font-size: 12px;
        color: #6b7f8a;
    }

    .toast-status {
        font-size: 12px;
        font-weight: 600;
    }

    /* ✅ BOTÃO FECHAR */
    .toast-close {
        font-size: 14px;
        margin-left: 5px;
    }

    /* ✅ TOTAL */
    .toast-total {
        margin-top: 10px;

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

        font-size: 13px;
    }

    /* ✅ BOTÃO */
    .btn-ver-carrinho {
        width: 100%;
        margin-top: 10px;

        padding: 10px;
        font-size: 13px;

        border-radius: 20px;

        background: #333;
        color: #fff;
    }

}

/* ✅ Carrinho e Usuario carrinho */

.drawer-header {
    display: flex;
    justify-content: left;   /* ✅ centraliza o bloco */
    align-items: center;
    position: relative;
    padding: 15px;
    flex-direction: row;
}

/* BLOCO ESQUERDA (vira coluna no mobile) */
.header-esquerda {
    display: flex;
    flex-direction: column;    /* ✅ UMA LINHA EMBAIXO DA OUTRA */
    align-items: center;       /* ✅ centralizado */
    justify-content: center;
    gap: 4px;

    width: 100%;
}

/* ✅ LINHA 1 - TÍTULO */
.header-esquerda h2 {
    margin: 0;

    font-size: 16px;
    font-weight: 600;
    color: #fff;

    text-align: center;
}

/* ✅ LINHA 2 - USUÁRIO */
.usuario-inline {
    display: flex;
    align-items: center;
    gap: 5px;

    font-size: 13px;
    color: rgba(255,255,255,0.85);

    white-space: nowrap; /* ✅ não quebra */
}

/* NOME */
.usuario-inline strong {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

/* ÍCONE */
.icon-usuario {
    font-size: 13px;
    color: #bb86fc;
}

/* ✅ BOTÃO X FIXO NO CANTO */
.btn-close-drawer {
    position: absolute;
    right: 12px;
    top: 12px;
}


/* BLOCO USUÁRIO */
.usuario-inline {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 12px;
    color: rgba(255,255,255,0.75);

    font-family: Arial, sans-serif;

    white-space: nowrap; /* ✅ impede quebra */
}

/* NOME */
.usuario-inline strong {
    font-weight: 600;
    color: #fff;

    max-width: 130px;           /* ✅ evita estourar layout */
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: bottom;
}

/* ÍCONE */
.icon-usuario {
    font-size: 13px;
    color: #bb86fc;   /* ✅ mantém seu roxo */
}

/* =============================== */
/* ✅ LISTA DE FRETES */
/* =============================== */
.lista-fretes {
    margin-top: 10px;
}

/* =============================== */
/* ✅ ITEM FRETE */
/* =============================== */
.frete-option {
    display: flex;
    align-items: center;
    justify-content: space-between;

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

    padding: 8px 10px;
    margin-top: 6px;

    background: #fafafa;
    cursor: pointer;

    transition: 0.2s;
}

/* 🔥 HOVER SUAVE */
.frete-option:hover {
    background: #f0f0f0;
}

/* =============================== */
/* ✅ FRETE SELECIONADO */
/* =============================== */
.frete-option.melhor {
    border: 2px solid #00a650;
    background: #f4fbf7;
}

/* =============================== */
/* ✅ LADO ESQUERDO */
/* =============================== */
.frete-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* RADIO */
.frete-left input {
    cursor: pointer;
}

/* LOGO */
.frete-left img {
    height: 16px;
    width: auto;
}

/* NOME */
.frete-left span {
    font-size: 13px;
    font-weight: 500;
}

/* =============================== */
/* ✅ LADO DIREITO */
/* =============================== */
.frete-info {
    text-align: right;
    font-size: 12px;
}

/* PREÇO (DESTAQUE) */
.frete-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* PRAZO */
.frete-info {
    color: #666;
}

/* =============================== */
/* ✅ BOX DO FRETE (AJUSTE FINO) */
/* =============================== */
.frete-box {
    margin-top: 10px;
}

.frete-titulo {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* CEP */
.cep-bloco {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.cep-bloco input {
    flex: 1;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 12px;
}

.cep-bloco button {
    padding: 6px 35px;
    border-radius: 6px;
    border: none;
    background: #444; /* roxo padrão que você usa */
    color: white;
    font-size: 12px;
    cursor: pointer;
}

/* LINK CEP */
.link-cep {
    font-size: 11px;
    color: #666;
    text-decoration: none;
}

.link-cep:hover {
    text-decoration: underline;
}

/* =============================== */
/* ✅ LINHAS RESUMO */
/* =============================== */
.linha {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
}

.total-final {
    font-weight: 700;
    font-size: 22px;
}

.parcelamento-texto {
    font-size: 10px;
    color:#00a650;
    margin-top: 4px;
}
