@media (max-width: 768px) {

    /* ===================== */
    /* ✅ TOPO INSTAGRAM */
    /* ===================== */
    .menu-topbar {
        background: linear-gradient(45deg, #888, #555, #e9b9a1);
        padding: 10px 15px;

        display: flex;
        align-items: center;   /* ✅ ALINHA NA MESMA ALTURA */
        gap: 12px;             /* ✅ espaço correto entre ícones */
}


/* Facebook container */
.menu-topbar span:last-child {
    width: 28px;
    height: 28px;

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

    background: #1877f2;
    border-radius: 6px;

    position: relative;
    top: -1px;   /* 🔥 SOBE LEVEMENTE (ajuste fino) */
}

/* Ícone Facebook */
.menu-topbar span:last-child i {
    font-size: 15px;
    color: #fff;
}


    /* ===================== */
    /* ✅ ESCONDE DESKTOP */
    /* ===================== */
    header {
        display: none;
    }

    .menu {
        display: none;
    }

    .mobile-only {
        display: block;
        padding-top: 120px; /* ✅ resolve o corte */
    }

        .header-mobile .logo,
    .header-mobile .menu-toggle,
    .header-mobile .header-right {
        z-index: 1001;   /* ✅ acima do header */
    }
    /* ===================== */
    /* ✅ HEADER MOBILE */
    /* ===================== */
    .header-mobile {
        position: fixed;

        top: 0;
        left: 0;
        right: 0;

        height: 70px;
        display: flex;
        align-items: center;

        background: #fff;      /* ✅ ESSENCIAL */
        z-index: 1000;         /* ✅ ESSENCIAL */
    }


    .menu-toggle {
        font-size: 22px;
        cursor: pointer;
        position: absolute;
        left: 10px;
    }

    .header-mobile .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-45%); /* 🔥 ajuste fino */
        top: -15px; /* 🔥 desce um pouco */
    }

    .header-mobile .logo img {
        height: 125px;
    }

    .header-mobile .header-right {
        position: absolute;
        right: 10px;
        display: flex;
        align-items: center;
    }

@media (max-width: 768px) {

    .header-mobile .menu-item {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .header-mobile .menu-item i {
        font-size: 22px;
        color: #333;
    }

    .header-mobile .menu-item.cart {
        position: relative;
    }

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

        background: #e63946;
        color: #fff;

        font-size: 10px;
        padding: 2px 5px;
        border-radius: 50%;
    }

}

    /* ===================== */
    /* ✅ MENU LATERAL */
    /* ===================== */
    .menu-mobile {
        position: fixed;
        top: 0;
        left: 0;

        transform: translateX(-100%);
        width: 85%;
        max-width: 320px;
        height: 100%;

        color: white;

        display: flex;              /* ✅ IMPORTANTE */
        flex-direction: column;     /* ✅ IMPORTANTE */

        overflow-y: auto;
        transition: transform 0.25s ease;
        z-index: 9999;
    }

    /* ===================== */
    /* ✅ MENU PRINCIPAL */
    /* ===================== */
    #menu-main {
        margin-top: 10px;
    }

    /* ===================== */
    /* ✅ LINKS MENU (CORRIGIDO FINAL) */
    /* ===================== */

.menu-mobile.active {
    transform: translateX(0);
}

/* LINKS */
.menu-mobile a,
.menu-link {
    display: block;
    width: 100%;

    padding: 18px 20px;

    font-size: 15px;
    font-weight: 500;

    color: white;
    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-sizing: border-box;

    position: relative;
}

/* SETA */
.menu-link::after {
    content: "›";
    position: absolute;
    right: 15px
    }

    /* ===================== */
    /* ✅ SUBMENU */
    /* ===================== */
    .menu-mobile,
    .submenu-page {
        background: #444;
    }

    .submenu-header {
        display: flex;
        align-items: center;
        padding: 14px 20px;
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .submenu-header::before {
        content: "‹";
        margin-right: 10px;
    }

    .submenu-page a {
        display: block;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        font-size: 13px;
    }

    /* ===================== */
    /* ✅ FOOTER FIXO CORRETO */
    /* ===================== */
    .menu-footer {
        margin-top: auto;   /* ✅ ESSENCIAL */

        padding: 6px;
        display: flex;
        gap: 10px;
    }

    .menu-footer .btn-conta {
        flex: 1;
        text-align: center;
        padding: 10px;

        border-radius: 10px;
        background: #ffffff;
        color: #1f2a33;
        font-size: 12px;
    }

    .menu-header {
    display: flex;
    justify-content: flex-end;  /* ✅ joga o X pra direita */
    align-items: center;
    padding: 10px 15px;
    font-size: 22px;
    }

    /* ===================== */
    /* ✅ OVERLAY */
    /* ===================== */
    .overlay {
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        display: none;
        z-index: 998;
    }

    .overlay.active {
        display: block;
    }

    /* ===================== */
    /* ✅ GRID MOBILE */
    /* ===================== */
    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;

        padding: 2px;
        margin: 0;   /* ✅ ESSENCIAL */

        box-sizing: border-box;
    }

    .grid > * {
    min-width: 0;   /* ✅ ESSENCIAL (resolve o bug) */
}

    .card-actions {
        margin-top: auto;   /* ✅ empurra para o final */
        display: flex;
        gap: 3px;

        opacity: 1;         /* ✅ SEMPRE visível */
        transform: none;    /* ✅ remove animação */
    }

    .card {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        background: #fff;
        border-radius: 14px;

        padding: 10px;

        height: auto;        /* ✅ remove travamento */
        min-height: unset;   /* ✅ remove corte */
    }

    .img-box {
        position: relative;

        height: 180px; /* ✅ aumenta destaque */
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 6px; /* ✅ reduz espaço abaixo */
        overflow: hidden;
    }

    .img-box img {
        position: absolute;

        top: 50%;
        left: 50%;

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

        max-height: 100%;     /* ✅ NÃO usar height 100% */
        width: auto;
        object-fit: contain;
    }

    /* ✅ FONTE DOS PRODUTOS TExTOS */
    .card h3 {
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
        font-family: "Montserrat", sans-serif !important;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        overflow: hidden;
        text-overflow: ellipsis;

        height: 32px;
        margin-bottom: 6px;
    }


/* =============================== */
/* ✅ PARCELAMENTO LIMPO */
/* =============================== */
.parcelado {
    font-size: 12px;
    font-family: "Montserrat", sans-serif;

    font-weight: 400;
    color: #666;

    line-height: 16px;
    margin-bottom: 6px;

    text-align: center;   /* ✅ centralizado */

    display: block;       /* ✅ evita esticar */
}

/* ✅ 3x leve */
.parcelado strong:first-child {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

/* ✅ VALOR EM DESTAQUE (SEM FUNDO) */
.parcelado strong:last-child {
    font-size: 13px;
    font-weight: 700;

    color: #000;     /* ✅ verde sem fundo */

    background: none;     /* 🔥 remove fundo */
    padding: 0;
}

/* =============================== */
/* ✅ MOBILE (QUEBRA DE LINHA) */
/* =============================== */
@media (max-width: 768px) {

    .parcelado {
        font-size: 11px;
        line-height: 14px;
    }

    /* quebra linha depois do "de" */
    .parcelado br {
        display: block;
    }

}

    /* =============================== */
    /* ✅ PARCELAMENTO GRANDE (DETALHE) */
    /* =============================== */
    .parcelamento {
        font-weight: 700;
        font-size: 15px;

        display: inline-flex;
        align-items: center;

        background: #444;
        color: #fff;

        padding: 6px 10px;
        border-radius: 6px;
    }


    .pix {
        font-weight: bold;
        font-size: 12px;
    }

    .ver-detalhes {
    font-weight: bold;
    font-size: 12px;
    }

    .btn-acao.comprar,
    .btn-acao.ver {
        padding: 8px 11px;
        font-size: 10px;
    }

/* ===================== */
/* ✅ HOME BANNERS */
/* ===================== */
.categorias-banner {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;        /* 🔥 menos “buraco” */
    padding: 10px 12px; /* 🔥 menos padding lateral */
}

@media (max-width: 768px) {

    .categorias-banner img {
        width: 100%;

        object-fit: cover;

        border-radius: 12px;  /* 🔥 mais moderno (15→12) */
        display: block;

        box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* 🔥 leve profundidade */
    }

}
/* ===================== */
/* ✅ BOTÃO BUSCA MOBILE */
/* ===================== */
.search-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center; /* ✅ centraliza o input */

    padding: 10px 0;
    margin: 0;

    background: #eee;

    z-index: 999;
    border-bottom: 1px solid #eee; /* ✅ acabamento */
}

/* ✅ INPUT AJUSTADO */
.search-mobile input {
    width: 97%;
    max-width: 500px;

    background: #fff;
    border-radius: 25px;

    padding: 10px 95px 10px 15px;

    border: 1px solid #888;

    font-size: 14px;
}

/* ✅ ÍCONE DENTRO DO INPUT */
.search-mobile form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.search-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);

    background: none;
    border: none;

    cursor: pointer;

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

    z-index: 10;
}


/* ===================== */
/* ✅ DETALHE PRODUTO MOBILE */
/* ===================== */

.produto-container {
    display: flex;              /* ✅ vira layout controlado */
    flex-direction: column;     /* ✅ empilhamento vertical */

    gap: 4px;                   /* ✅ controla TODOS espaçamentos */

    padding: 10px;
    background: #fdffff;
}

.produto-container > * {
    min-width: 0;   /* ✅ ESSENCIAL */
}

@media (max-width: 768px) {

    .produto-imagem {
        position: relative;
        height: 420px;

        display: flex;
        flex-direction: column; /* ✅ mobile empilha */

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

        background: #fdffff;
    }

}

/* ✅ separador AQUI */
.produto-info {
    border-top: 1px solid #d0bcbc;
    padding-top: 8px;
    padding-bottom: 2px;
}


@media (max-width: 768px) {

    .image-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .product-slider-image {
        max-height: 80vh;   /* ✅ cresce baseado na tela */
        max-width: 100%;

        width: auto;
        height: auto;

        object-fit: contain;
        position: relative; /* ✅ importante */
        transform: none;    /* ✅ remove centralização artificial */
    }

}


.img-absolute-centered {
    left: 52%;
}

.indicador {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 8px;
}

.breadcrumb {
    font-size: 12px;
    color: #888;
    margin: 10px 5px;
}

.produto-titulo {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 5px;
}

.produto-preco {
    font-size: 28px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #333;
    margin: 10px 5px;
}

.box-tamanho {
    margin: 15px 5px;
}

.box-tamanho label {
    font-size: 13px;
    color: #555;
}

.select-tamanho {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    background: white;
}

.produto-descricao {
    margin: 10px 5px; /* ✅ menor */
}

.garantias {
    margin-top: 8px; /* ✅ ajustado */
}

.descricao-imagem {
    margin-top: -95px;
}

.produto-avaliacao {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 5px 10px 5px;
}

/* nota */
.nota {
    font-size: 13px;
    color: #777;
}

.qtd-avaliacao {
    font-size: 12px;
    color: #777;
}

/* link */
.link-avaliacao {
    font-size: 13px;
    color: #f5a623;
    cursor: pointer;
}

.link-cep {
    font-size: 13px;

    color: #777;                /* ✅ mais suave */
    margin-top: 6px;

    display: inline-block;      /* ✅ respeita espaço */
    text-decoration: underline; /* ✅ deixa claro que é link */

    cursor: pointer;            /* ✅ feedback de clique */
}

@media (max-width: 768px) {

    .compra-box {
        display: flex;               /* ✅ adiciona alinhamento */
        align-items: center;

        gap: 20px;                  /* ✅ melhor proporção */
        margin-top: 10px;
        width: 100%;

        padding: 10px;              /* ✅ leve respiro */
        background: #f5f5f5;        /* ✅ melhora visual */
        border-radius: 12px;
    }

}

/* ✅ evita overflow */
@media (max-width: 768px) {

    .compra-box {
        display: flex;
        align-items: center;

        gap: 10px;
        margin-top: 10px;
        width: 100%;

        padding: 10px;
        background: #f5f5f5;
        border-radius: 12px;
    }

    /* ✅ evita overflow */
    .compra-box > * {
        min-width: 0;
    }

    /* ✅ QTD BOX HARMONIZADO */
    .qtd-box {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 0 10px;

        width: 90px;
        height: 35px;                 /* ✅ IGUAL AO BOTÃO */

        border: 1px solid #dcdcdc;    /* ✅ mais leve */
        border-radius: 25px;          /* ✅ igual botão */

        background: #fff;
    }

    .qtd-box button {
        flex: 1;

        border: none;
        background: none;
        outline: none;
        box-shadow: none;

        font-size: 18px;
        font-weight: 600;             /* ✅ mais elegante */

        cursor: pointer;
        color: #333;

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

    .qtd-box span {
        flex: 1;

        text-align: center;
        font-size: 14px;
        font-weight: 600;
        color: #000;
    }

    /* ✅ BOTÃO COMPRAR HARMONIZADO */
    .btn-comprar-principal {
        flex: 1;

        height: 35px;

        background: #090a0a;
        color: #fff;

        border: none;
        border-radius: 25px;

        font-size: 11px;
        font-weight: 600;

        cursor: pointer;

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

        transition: 0.2s;
    }

    .btn-comprar-principal:hover {
        background: #0d2d4a;
    }

    .btn-comprar-principal:active {
        transform: scale(0.97);
    }

}

.frete-texto {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
}

.frete-texto strong {
    color: #16a34a;   /* ✅ verde mais moderno */
    font-weight: 600;
}

.cep-box {
    display: flex;
    margin-top: 10px;
}


.cep-box > * {
    min-width: 0;       /* ✅ ESSENCIAL */
}


.cep-box input {
    flex: 1;

    padding: 12px;
    font-size: 14px;

    border: 1px solid #7a8275;
    border-right: none;             /* ✅ conecta com botão */

    border-radius: 10px 0 0 10px;

    outline: none;
}

.cep-box button {
    padding: 12px 16px;

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

    border: 1px solid #7a8275;

    border-radius: 0 10px 10px 0;

    background: #fff;
}


.garantias p {
    display: flex;
    align-items: center;

    font-weight: 700 !important;
    font-size: 12px;

    gap: 8px;

    margin: 2px 0;        /* ✅ reduz espaço */
    line-height: 14px;    /* ✅ controla altura da linha */
}

.garantias strong {
    font-weight: 600;
}

.garantias span {
    display: block;

    font-size: 12px;
    color: #777;

    margin-left: 22px;  /* ✅ alinha com texto (indentado) */
}


.descricao-imagem img {
    width: 100%;
    display: block;
    border: 1px solid #e5e5e5;
    border-radius: 10px; 
    cursor: zoom-in;            /* ✅ indica zoom */
    transition: transform 0.2s ease; /* ✅ suave */
}


.produto-img {
    width: 100%;
    display: none;
}

.produto-img.ativa {
    display: block;
}


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

    .banner-carousel {
        position: relative;
        overflow: hidden;
        margin: 10px;
        border-radius: 12px;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.4s ease;
    }

    .slide {
        min-width: 100%;
    }

    .slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

}

/* ✅ BOLINHAS */
.carousel-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.carousel-dots span {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.6;
    border-radius: 50%;
}

.carousel-dots span.active {
    background: #888; /* ✅ igual seu amarelo */
    opacity: 1;
}

@media (max-width: 768px) {

    .banner,
    .banner picture,
    .banner img {
        display: none !important;
    }

}

/* ✅ CONTAINER */
.banner-info {
    background: #dcdcdc;
    padding: 12px 15px;
    position: relative;
}

/* ✅ ITEM */
.info-item {
    display: none;
}

.info-item.active {
    display: block;
}

/* ✅ LAYOUT IGUAL AO EXEMPLO */

.info-content {
    display: flex;
    flex-direction: column; /* ✅ empilha */
    align-items: center;
    justify-content: center;

    gap: 10px;
}


/* ✅ ÍCONE */
.icon-box {
    width: 50px;
    height: 50px;

    border-radius: 50%;
    background: #ddd;

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

    font-size: 40px;

    flex-shrink: 0; /* ✅ NÃO deixa o ícone esmagar */
}

/* ✅ TEXTO */
.info-text {
    text-align: center;
}

.info-destaque {
    font-weight: bold;
    font-size: 16px;
    font-weight: 700;
    font-family: "Montserrat", Sans-serif;
    display: block;
    transform: translateX(-10px); /* 🔥 ajusta pra esquerda */
}

.info-text p {
    font-size: 13px;
    margin: 3px 0 0;
    font-family: "Montserrat", Sans-serif;
    transform: translateX(-10px); /* 🔥 ajusta pra esquerda */
}

/* ✅ BOLINHAS */
.info-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.info-dots span {
    width: 6px;
    height: 6px;
    background: #aaa;
    border-radius: 50%;
    opacity: 0.5;
}

.info-dots span.active {
    background: #000; /* ✅ no exemplo é escuro */
    opacity: 1;
}

.modal-zoom-desc {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);

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

    z-index: 999999; /* 🔥 CRÍTICO (estava baixo) */
}

.modal-zoom-desc.active {
    display: flex;
}

#imgZoomDescricao {
    max-width: 100%;
    max-height: 90%;

    display: block;              /* ✅ ESSENCIAL */
    margin: auto;                /* ✅ centraliza */
}

.fechar-zoom {
    position: absolute;
    top: 20px;
    right: 20px;

    font-size: 22px;
    color: #fff;

    z-index: 1000000;
}

body.modal-aberto {
    overflow: hidden;
}

} /* ✅ ADICIONA ISSO AQUI */

/* ===== BARRA MOBILE ===== */
.barra-mobile-filtros {
    display: none;
    gap: 10px;
    padding: 10px;
}

/* só mobile */
@media (max-width: 768px) {
    .barra-mobile-filtros {
        display: flex;
    }
}

/* ===== BOTÃO FILTRAR ===== */
.btn-mobile {
    flex: 1;
    height: 45px;

    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;

    font-size: 14px;
    font-weight: 600;

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

    cursor: pointer;
}

/* ===== SELECT ORDENAR ===== */
.select-mobile {
    flex: 1;
    height: 45px;

    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;

    font-size: 14px;
    font-weight: 600;

    padding: 0 12px;

    display: block; /* ✅ IMPORTANTE */
    line-height: 45px; /* ✅ ALINHA TEXTO */

    cursor: pointer;

    /* ✅ remove estilo feio padrão */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* ===== DRAWER FILTROS ===== */
.drawer-filtros {
    position: fixed;
    top: 0;
    left: -100%;

    width: 85%;
    height: 100%;

    background: #fff;

    z-index: 10001;

    transition: left 0.3s ease;
    overflow-y: auto;
}

/* abre drawer */
.drawer-filtros.ativo {
    left: 0;
}

/* ===== HEADER ===== */
.drawer-header {
    background: #546e7a; /* azul acinzentado */

    color: #fff;

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

    padding: 14px;

    font-size: 16px;
    font-weight: 500;
}

/* botão X */
.drawer-header button {
    background: none;
    border: none;
    color: #fff;

    font-size: 18px;
    cursor: pointer;
}

/* ===== BODY ===== */
.drawer-body {
    padding: 20px;
    background: #f5f5f5;
}

/* ===== BLOCO PREÇO ===== */
.filtro-preco-mobile h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== LINHA ===== */
.preco-linha {
    display: flex;
    gap: 4px;
    align-items: flex-end;
}

/* ===== BLOCO CAMPO ===== */
.campo-mini {
    display: flex;
    flex-direction: column;
}

/* label */
.campo-mini label {
    font-size: 11px;
    color: #555;
    margin-bottom: 4px;
}

/* ===== INPUT MENOR ===== */
.campo-mini input {
    width: 70px;
    padding: 8px;

    border-radius: 10px;
    border: 1px solid #ccc;

    background: #eee;
    font-size: 8px;
}

/* ===== BOTÃO ===== */
.btn-aplicar-preco {
    height: 25px;

    padding: 0 12px;

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

    border-radius: 20px;
    border: 1px solid #b0bec5;

    background: #e0e0e0;
    color: #546e7a;

    font-size: 8px;
    font-weight: 600;

    cursor: pointer;
}

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

    * {
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
    }

    .contato-container {
        display: flex;
        flex-direction: column;
        gap: 20px;

        padding: 15px;
        margin-top: 5px;

        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* info */
    .contato-info {
        width: 100%;
    }

    .contato-info h2 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    /* form */
    .contato-form {
        width: 100%;
    }

    .contato-form input,
    .contato-form textarea {
        width: 100%;
        max-width: 100%;
    }

    /* botão */
    .btn-enviar {
        width: 100%;
    }

    /* =============================== */
    /* ✅ CAPTCHA MOBILE AJUSTADO */
    /* =============================== */
/* container geral */
.g-recaptcha {
    display: flex;
    justify-content: flex-start; /* ✅ deixa você controlar */
}


/* 🔥 MOVE O BLOCO TODO */
.g-recaptcha > div {
    transform: scale(0.75) translateX(50px);
    transform-origin: 0 0;
}

    /* ✅ mensagens */
    .msg-success,
    .msg-error {
        font-size: 13px;
        padding: 10px;
        text-align: center;
        max-width: 100%;
        border-radius: 6px;
        margin-bottom: 10px;
    }
}

.usuario-logado-mobile {
    padding: 15px;
}
 
.usuario-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
 
.usuario-info i {
    font-size: 28px;
    color: #fff;
    margin-top: 2px;
}
 
.usuario-dados {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 
.usuario-dados strong {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}
 
.usuario-links {
    align-items: center;
    gap: 16px;
    margin-top: 6px;
}

/* LINKS */
.usuario-links a {
    position: relative;

    color: #fff;
    text-decoration: none;

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

    padding: 4px 0;
}

/* SEPARADOR (linha vertical sutil) */
.usuario-links a + a::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 2px;

    width: 1px;
    height: 14px;

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

/* HOVER elegante */
.usuario-links a:hover {
    opacity: 0.8;
}

.marcas-conteudo {
    padding-top: 10px;
}
 
.marcas-conteudo label {
    display: block;
    margin-bottom: 8px;
}

/* ===================================== */
/* ✅ OVERRIDE SÓ MOBILE + DRAWER */
/* ===================================== */

.drawer-body .accordion {
    margin-bottom: 20px;
    border-bottom: none; /* remove linha antiga */
}

/* HEADER estilo desktop */
.drawer-body .accordion-header {

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

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

    padding: 20px 0;

    cursor: pointer;

    border-bottom: 1px solid #ddd;
}

/* ícone */
.drawer-body .accordion-header .icon {
    font-size: 16px;
    font-weight: bold;
}

/* conteúdo */
.drawer-body .accordion-body {
    display: none;

    padding-top: 10px;

    max-height: 260px;
    overflow-y: auto;
}

/* aberto */


#drawer-filtros .accordion-body {
    display: none !important;
}

#drawer-filtros .accordion-body.ativo {
    display: block !important;
}


/* labels (marcas) */
.drawer-body .accordion-body label {

    display: flex;

    align-items: center;

    gap: 8px;

    width: 100%;

    margin-bottom: 10px;

    font-size: 15px;

    cursor: pointer;
}

/* ===================================== */
/* ✅ FIX CONFLITO COM CARRINHO */
/* ===================================== */

#drawer-filtros .drawer-body {

    padding: 20px !important;   /* 🔥 sobrescreve carrinho */
    background: #f5f5f5;

    overflow-y: auto !important;

    flex: unset !important;

}

.drawer-body .accordion-header {
    user-select: none;
}

/* ✅ IGUALA ESTILO DO ACCORDION AO FILTRO */
.drawer-filtros .accordion-body label {
    display: block !important;
    font-size: 14px;
    margin-bottom: 6px;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
}

/* ===================================== */
/* ✅ FIX FINAL DRAWER FILTROS MOBILE */
/* ===================================== */

#drawer-filtros label {
    display: flex !important;
    align-items: center;
    gap: 8px;

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

    cursor: pointer;
}

/* inputs alinhados corretamente */
#drawer-filtros input[type="radio"],
#drawer-filtros input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;

    flex-shrink: 0;
}

/* espaçamento entre blocos */
#drawer-filtros .filtro-bloco-mobile {
    margin-bottom: 18px;
}

/* títulos */
#drawer-filtros h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* =============================== */
/* ✅ BOTÃO FILTRAR MOBILE */
/* =============================== */

.btn-filtrar-mobile {
    width: 100%;
    height: 45px;

    margin-top: 20px;

    border: none;
    border-radius: 12px;

    background: #111;
    color: #fff;

    font-size: 14px;
    font-weight: 600;

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

    cursor: pointer;

    transition: 0.2s;

    appearance: none;          /* 🔥 REMOVE estilo browser */
    -webkit-appearance: none;  /* 🔥 SAFARI */
}

/* hover */
.btn-filtrar-mobile:hover {
    background: #000;
}

/* clique */
.btn-filtrar-mobile:active {
    transform: scale(0.97);
}

/* =============================== */
/* ✅ PREÇO MOBILE CENTRALIZADO */
/* =============================== */
@media (max-width: 768px) {

    .preco {
        font-size: 16px;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        color: #000;

        display: flex;
        flex-direction: column;   /* ✅ empilhado */
        align-items: center;      /* 🔥 CENTRALIZA */
        justify-content: center;  /* 🔥 GARANTE */

        gap: 4px;
        margin-top: 6px;

        text-align: center;       /* ✅ reforço visual */
        width: 100%;              /* ✅ ocupa todo espaço do card */
    }

    .desconto {
        background: #00a650;
        color: #fff;

        font-size: 10px;
        font-weight: 700;

        padding: 2px 5px;
        border-radius: 4px;

        white-space: nowrap;

        align-self: center;       /* ✅ garante alinhamento */
    }

}

/* =============================== */
/* ✅ DESKTOP - PARCELAMENTO MENOR */
/* =============================== */
@media (min-width: 769px) {

    .parcelado {
        font-size: 11px;       /* 🔥 reduz geral */
        margin-top: 4px;
        margin-bottom: 6px;

        line-height: 14px;
    }

    /* ✅ 3x menor */
    .parcelado strong:first-child {
        font-size: 11px;
        font-weight: 600;
        color: #444;
    }

    /* ✅ valor menos destacado */
    .parcelado strong:last-child {
        font-size: 12px;
        font-weight: 600;
        color: #00a650;

        background: none;
        padding: 0;
    }

}

/* ✅ destaque no "3x" */
.parcelado strong:first-child {
    color: #000;

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

    padding: 2px 5px;
    border-radius: 3px;

    display: inline-block;
}

/* =============================== */
/* ✅ DESKTOP SEM QUEBRA */
/* =============================== */
@media (min-width: 769px) {

    .parcelado br {
        display: none;   /* 🔥 remove quebra */
    }

    .parcelado {
        white-space: normal; /* garante fluxo */
    }

}