.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: .5;
}

/* ── Modal "Atenção" (alteração de preços no carrinho) ── */
.aviso-preco-modal {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
}
.aviso-preco-header {
    align-items: center;
    gap: 12px;
    background: #fff8e6;
    border-bottom: 1px solid #f5e6b8;
    padding: 20px 24px;
}
.aviso-preco-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5a623;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.aviso-preco-header .modal-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #333;
    margin: 0;
}
.aviso-preco-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0;
}
.aviso-preco-close:hover { color: #555; }
.aviso-preco-body {
    padding: 22px 24px;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.6;
}
.aviso-preco-footer {
    border-top: none;
    padding: 0 24px 22px;
    justify-content: flex-end;
}
.aviso-preco-btn {
    background: var(--cor-secundaria, #333);
    color: var(--cor-fonte, #fff);
    border: none;
    border-radius: 8px;
    padding: 10px 26px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: filter .15s ease;
}
.aviso-preco-btn:hover { filter: brightness(0.9); }

@media screen and (min-width: 426px) {
    .box-prod {
        position: relative;
        bottom: 40px;
    }
}
.box-lanc {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}
@media screen and (min-width: 426px) {
    .box-lanc{
        position: relative;
        bottom: 20px;
    }
}
@media screen and (max-width: 425px) {
    .box-lanc{
        position: relative;
        bottom: 40px;
    }
}
.card-box{
    box-shadow: 0 0 1em  var(--cor-barra_menu);
    width: 100%;
}
.transform-scale{
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
}
.page-header{
    font-family: 'Oswald', sans-serif; 
    letter-spacing: 3px; 
}

.banners{
    padding-top: 12px;
}

#lancamento_vertical {
    background-color: var(--cor-barra_menu);
    border-color: var(--cor-barra_menu);
}

#lancamento_vertical:hover {
    filter: brightness(1.12);
}

.menu-vert .list-group-item:not(#lancamento_vertical) {
    transition: background-color 0.2s, color 0.2s;
}

.menu-vert .list-group-item:not(#lancamento_vertical):hover {
    background-color: var(--cor-barra_menu);
}

.menu-vert .list-group-item:not(#lancamento_vertical):hover a {
    color: var(--cor-fonte) !important;
}
.card-img img {
    max-height:210px;
    width:  100%;
    height: 210px;
    object-fit: contain;
}
.card-img {
    clear: both;
}

/* ── Tipografia dos cards de produto ── */
/* ── Botão carrinho nos cards ── */
.btn-cart-add {
    background: var(--cor-barra_menu, #333);
    color: var(--cor-fonte, #fff);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: opacity 0.2s, transform 0.15s;
    padding: 0;
}
.btn-cart-add:hover { opacity: 0.82; transform: scale(1.08); }
.btn-cart-disabled { opacity: 0.3; cursor: default; }
.btn-cart-disabled:hover { transform: none; opacity: 0.3; }

/* ── Stepper de quantidade ── */
.cart-add-wrap {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 3px;
    margin-top: 6px;
}
.qty-btn {
    width: 22px;
    height: 22px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f5f5f5;
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    color: #444;
    transition: background 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover { background: #e0e0e0; }
.qty-input {
    width: 30px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.75rem;
    padding: 2px;
    height: 22px;
    -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ── Toast notificação carrinho ── */
#toast-carrinho {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 99999;
    background: #1e7e3e;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.22);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    pointer-events: none;
}
#toast-carrinho.toast-carrinho-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#toast-carrinho.toast-carrinho-erro { background: #c62828; }
.toast-carrinho-icon { font-size: 1.1rem; }

/* ── Badge de estoque ── */
.estoque-badge {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    width: fit-content;
}
.estoque-ok  { background: #e6f4ec; color: #1e7e3e; }
.estoque-low { background: #fff8e1; color: #856404; }
.estoque-off { background: #fdecea; color: #c62828; }

.card-box {
    font-family: 'Poppins', sans-serif;
}

/* ── Mini-cards laterais (Mais Vistos / Ofertas / Aleatórios) ── */
.card-produtos {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    border-radius: 8px;
    padding: 10px 14px !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s;
    margin-top: 12px !important;
}
.card-produtos:hover {
    box-shadow: 0 3px 14px rgba(0,0,0,0.12);
}
.card-produtos small {
    font-size: 1rem;
}
.card-produtos small a,
.card-produtos small a p {
    color: #1a1a1a !important;
    text-decoration: none !important;
}
.card-produtos small a strong,
.card-produtos small > a > strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a !important;
    line-height: 1.35;
}
.card-produtos small > strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-top: 6px;
}

.card-box .card-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 6px;
}

.card-box .card-body p.text-start {
    font-size: 0.85rem !important;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 0;
}

.card-box .card-body p.text-start strong {
    font-weight: 500;
}

.card-box .card-body p.text-start a {
    color: #1a1a1a !important;
    text-decoration: none !important;
}

.card-box .card-body p.text-start a:hover {
    color: var(--cor-barra_menu, #333) !important;
}

.card-box .card-footer {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 10px 14px;
}

.card-box .card-footer .price,
.card-box .card-footer b,
.card-box .card-footer strong {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}
.pagination.pg-blue .page-item.active .page-link {
    background-color: var(--cor-secundaria);
}
.card-img-vistos img {
    padding-left: 20px;
    padding-top: 20px;
    max-height:260px;
    width:  272px;
    height: 259px;
}
.card-img-vistos {
    clear: both;
}
img {
    vertical-align: top;
}
body::-webkit-scrollbar {
    width: 10px;
    background-color: #5b5b5b;
} 

body::-webkit-scrollbar-thumb {   
    background-color: #1d1d1d;
    width: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;   
}
body::-webkit-scrollbar-thumb{
    
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
::-webkit-scrollbar{
    background-color:#fff;
    width: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.box-cookies.hide {
    display: none !important;
}
.box-cookies {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 998;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: calc(100% - 48px);
    max-width: 420px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border-top: 4px solid var(--cor-barra_menu);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
}
.cookies-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cor-barra_menu);
    color: var(--cor-fonte);
    font-size: 20px;
}
.cookies-conteudo {
    flex: 1;
}
.msg-cookies-titulo {
    margin: 0 0 4px;
    color: #222;
    font-size: 15px;
    font-weight: 700;
}
.box-cookies .msg-cookies {
    margin: 0;
    padding: 0;
    color: #666;
    font-size: 13.5px;
    line-height: 1.5;
}
.box-cookies .btn-cookies {
    align-self: center;
    flex-shrink: 0;
    padding: 10px 22px;
    background: var(--cor-barra_menu);
    color: var(--cor-fonte);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: filter .15s ease, transform .15s ease;
}
.box-cookies .btn-cookies:hover {
    filter: brightness(0.9);
}
.box-cookies .btn-cookies:active {
    transform: scale(0.97);
}
@media screen and (max-width: 800px) {
    .box-cookies {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        width: auto;
        max-width: none;
    }
    .box-cookies .btn-cookies {
        align-self: stretch;
        width: 100%;
    }
}
@media screen and (max-width: 426px) {
    #banners{
        padding-top:58px;
    }
}
@media screen and (min-width: 1024px) {
    #img-banner-vertical{
        height:384px; 
    }
}
.banner-img{
    width:100%;
    height:100%;
}
@media screen and (min-width:  1440px) {
            
    .banner-img{
        width:1500px;
        height:600px;
    }
}
.btn-banner{
    background:var(--cor-barra_menu);
    color:#fff;

}
.btn-banner h2{
    color:#fff;
}
.carousel-alinhamento {
    bottom: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    padding: 0 15px !important;
}
.carousel-alinhamento h2{
    font-family: 'Russo One', sans-serif;
    text-shadow: black 0.1em 0.1em 0.2em;
}
.carousel-alinhamento h5{
    font-family: 'Russo One', sans-serif;
    text-shadow: black 0.1em 0.1em 0.2em;
}
.box-lanc .transform-scale {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}
.card-box a,
.card-box a:hover {
    color: #000;
    text-decoration: none;
}
.pag-lanc-wrap {
    gap: 6px;
}
.pag-lanc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    color: #444;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.pag-lanc-btn:hover {
    background: #333;
    color: #fff;
    border-color: #333;
    text-decoration: none;
}
.pag-lanc-btn.ativo {
    background: #333;
    color: #fff;
    border-color: #333;
    font-weight: bold;
}
.banners .carousel-control-prev,
.banners .carousel-control-next {
    opacity: 0;
    transition: opacity 0.3s;
}
.banners .carousel-control-prev:hover,
.banners .carousel-control-next:hover {
    opacity: 1;
}
.menu_vertical{
    position:relative;
}
.card-produtos{
    height:210px;
    box-shadow: 0 0 1em var(--cor-barra_menu);
}
.card-produtos a,
.card-produtos a:hover {
    color: #000;
    text-decoration: none;
}