/* ================= CONFIGURAÇÕES GERAIS ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#071b14;
    color:white;
}

/* ================= HEADER ================= */

.header{
    width:100%;
    height:95px;

    position:fixed;
    top:0;
    left:0;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 45px;

    background:rgba(7, 27, 20, 0.98);
    border-bottom:2px solid #c8a96b;

    z-index:999;
}

/* ================= LOGO / REDES / PESQUISA ================= */

.brand-area{
    display:flex;
    align-items:center;
    gap:18px;
}

.socials{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.socials a{
    width:26px;
    height:26px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #c8a96b;
    border-radius:50%;

    color:#c8a96b;
    text-decoration:none;
    font-weight:bold;

    transition:0.3s;
}

.socials a:hover{
    background:#c8a96b;
    color:#071b14;
}

.logo img{
    width:100px;
}

.search-box{
    width:380px;
    position:relative;
}

.search-box input{
    width:100%;
    height:50px;

    border:none;
    outline:none;

    border-radius:50px;

    padding:0 60px 0 25px;

    background:#b8935f;
    color:white;

    font-size:15px;
}

.search-box input::placeholder{
    color:#f5f5f5;
}

.search-icon{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);

    width:26px;
    height:26px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
}

.search-icon svg{
    width:22px;
    height:22px;

    fill:none;
    stroke:#071b14;
    stroke-width:2.4;
    stroke-linecap:round;
}

/* ================= MENU E DROPDOWNS ================= */

.nav-menu{
    display:flex;
    align-items:center;
    gap:22px;
}

.nav-menu a,
.dropdown span{
    color:#c8a96b;
    text-decoration:none;

    font-size:14px;
    font-weight:bold;

    cursor:pointer;
    transition:0.3s;
}

.nav-menu a:hover,
.dropdown:hover span{
    color:white;
}

.dropdown{
    position:relative;

    padding:12px 0;
}

.dropdown::after{
    content:"";

    position:absolute;

    left:0;
    right:0;

    top:100%;

    height:15px;
}

.dropdown-content{
    position:absolute;

    top:100%;
    right:0;

    width:260px;

    background:#10271f;

    border:1px solid #c8a96b;
    border-radius:14px;

    padding:18px;

    display:none;

    box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

@media (min-width: 769px){

    .dropdown:hover .dropdown-content{
        display:block;
    }

}

.dropdown-content p{
    color:white;

    margin-bottom:15px;

    line-height:24px;
    font-size:14px;
}

.dropdown-content a{
    display:block;

    color:white;
    text-decoration:none;

    margin-bottom:12px;

    font-size:14px;

    transition:0.3s;
}

.dropdown-content a:hover{
    color:#d4af37;
}

/* ================= CARRINHO DO HEADER ================= */

.cart{
    position:relative;

    font-size:28px;

    color:#c8a96b;

    cursor:pointer;

    transition:0.3s;
}

.cart:hover{
    transform:scale(1.1);
    color:white;
}

.cart-count{
    position:absolute;

    top:-8px;
    right:-10px;

    width:20px;
    height:20px;

    border-radius:50%;

    background:#c8a96b;
    color:#071b14;

    font-size:12px;
    font-weight:bold;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* ================= BANNER INICIAL ================= */

.home-banner{
    min-height:720px;
    margin-top:95px;

    display:flex;
    align-items:flex-start;

    padding:110px 80px 80px;

    background:
    linear-gradient(
        90deg,
        rgba(7,27,20,0.98) 0%,
        rgba(7,27,20,0.82) 35%,
        rgba(7,27,20,0.05) 100%
    ),
    url("imagens/background/bolo.png");

    background-size:cover;
    background-repeat:no-repeat;
    background-position:center right;
}

.banner-text{
    max-width:520px;
}

.banner-text span{
    color:#c8a96b;

    font-size:22px;
    letter-spacing:8px;
}

.banner-text h1{
    margin:0 0 14px;

    font-size:clamp(52px, 7.5vw, 110px);
    line-height:1.0;
    letter-spacing:2px;

    color:white;

    font-family:'Playfair Display', Georgia, serif;
    font-weight:700;

    animation:fadeUp .8s ease both;
    animation-delay:.1s;
}

.banner-text h1 strong{
    color:#c8a96b;
    font-weight:700;
}

.hero-accent-line{
    width:60px;
    height:3px;
    background:linear-gradient(90deg, transparent, #c8a96b, transparent);
    margin:0 0 18px;

    animation:fadeUp .8s ease both;
    animation-delay:.25s;
}

.divider{
    display:flex;
    align-items:center;

    gap:15px;

    margin-bottom:20px;

    color:#c8a96b;

    animation:fadeUp .8s ease both;
    animation-delay:.4s;
}

.divider span{
    flex:1;
    height:1px;

    background:#c8a96b;
}

.divider p{
    font-size:24px;
}

.banner-text > p{
    color:white;

    font-size:21px;
    line-height:34px;

    margin-bottom:35px;
}

.banner-text .hero-subtitle{
    color:#c8a96b;
    font-size:11px;
    letter-spacing:6px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:26px;
    line-height:1;

    animation:fadeUp .8s ease both;
    animation-delay:.55s;
}

.banner-text .hero-description{
    font-size:15px;
    line-height:28px;
    color:rgba(255,255,255,0.82);
    margin-bottom:35px;
    max-width:440px;

    animation:fadeUp .8s ease both;
    animation-delay:.7s;
}

.banner-btn{
    display:inline-block;

    padding:17px 40px;

    border:2px solid #c8a96b;
    border-radius:50px;

    background:#c8a96b;
    color:#071b14;

    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;

    font-weight:bold;

    transition:0.3s;
}

.banner-btn:hover{
    background:#e8d5a0;
    color:#071b14;
    transform:translateY(-3px);
    box-shadow:0 8px 24px rgba(200,169,107,0.4);
}

.hero-badge{
    margin-top:18px;
    color:#e8d5a0;
    font-size:14px;
    opacity:0.85;
}

.hero-badge span{
    font-size:13px;
    letter-spacing:0.5px;
}

/* ================= BENEFÍCIOS ================= */

.benefits-image{
    width:100%;

    background:#071b14;

    border-top:2px solid #c8a96b;
    border-bottom:2px solid #c8a96b;
}

.benefits-image img{
    width:100%;

    display:block;
}

/* ================= QUERIDINHOS ================= */

.best-sellers{
    padding:70px 60px;

    background:#071b14;

    text-align:center;
}

.best-sellers h2{
    color:#c8a96b;

    font-size:42px;

    margin-bottom:15px;
}

.best-sellers p{
    color:white;

    margin-bottom:50px;
}

.best-sellers-desc{
    font-weight:300;
    font-size:16px;
    line-height:1.85;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
    color:rgba(255,255,255,.82);
    letter-spacing:.1px;
}

.best-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.best-card{
    background:#10271f;
    border:1px solid rgba(200,169,107,.4);
    border-radius:20px;
    overflow:hidden;
    transition:.35s ease;
    position:relative;
    box-shadow:0 4px 20px rgba(0,0,0,.28);
    cursor:pointer;
}

.best-card:hover{
    transform:translateY(-12px);
    border-color:rgba(200,169,107,.75);
    box-shadow:0 22px 50px rgba(200,169,107,.22), 0 8px 20px rgba(0,0,0,.35);
}

.best-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:transform .4s ease;
}

.best-card:hover img{
    transform:scale(1.05);
}

.best-card h3{
    padding:16px 20px 8px;
    color:#e8d5a0;
    font-size:16px;
    text-align:center;
    line-height:24px;
}

.best-price{
    color:#c8a96b;
    font-size:15px;
    font-weight:700;
    text-align:center;
    padding:0 20px 18px;
    letter-spacing:0.5px;
}

.badge{
    position:absolute;
    top:14px;
    left:14px;
    background:linear-gradient(135deg,#c8a96b,#f0d080);
    color:#071b14;
    padding:6px 13px;
    border-radius:30px;
    font-size:12px;
    font-weight:bold;
    letter-spacing:.4px;
    box-shadow:0 3px 12px rgba(200,169,107,.45);
}

.badge::before{
    content:"★ ";
    font-size:11px;
}

/* ================= PRODUTOS ================= */

.products{
    padding:80px 60px;
    background:#071b14;
}

.products h2,
.feedbacks h2{
    text-align:center;

    font-size:38px;

    color:#c8a96b;

    margin-bottom:40px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.product-card{
    background:linear-gradient(180deg, #11291f 0%, #0c2018 100%);
    border:1px solid rgba(200,169,107,.35);
    border-radius:20px;
    padding:0;
    text-align:center;
    transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    box-shadow:0 6px 22px rgba(0,0,0,.25);
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:rgba(200,169,107,.8);
    box-shadow:0 20px 48px rgba(200,169,107,.28), 0 8px 20px rgba(0,0,0,.32);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    object-position:center;
    display:block;
    border-radius:0;
    margin-bottom:0;
    transition:transform .5s ease, filter .5s ease;
    box-shadow:inset 0 -36px 32px -22px rgba(7,27,20,.6);
    flex-shrink:0;
}

/* Fotos de lata em formato vertical (recorte de origem mais "fechado" que o
   padrão da Coca-Cola Zero): "contain" evita cortar ainda mais a lata ao
   encaixar no card horizontal, mantendo-a inteira e centralizada. */
.product-card img[src*="coca-cola-lata.png"],
.product-card img[src*="guarana-antarctica-lata.png"]{
    object-fit:contain;
}

.product-card:hover img{
    transform:scale(1.06);
    filter:brightness(1.05) saturate(1.08);
}

.product-card h3{
    padding:20px 20px 8px;
    font-size:17px;
    line-height:24px;
    font-weight:700;
    letter-spacing:.4px;
    color:#f0dfb8;
    min-height:58px;
    margin-bottom:0;
}

.product-card p{
    color:#d8bb7e;
    font-size:19px;
    font-weight:600;
    letter-spacing:.6px;
    margin:auto 20px 16px;
    padding-top:12px;
    border-top:1px solid transparent;
    border-image:linear-gradient(90deg, transparent, rgba(200,169,107,.4), transparent) 1;
    text-shadow:0 1px 3px rgba(0,0,0,.2);
}

.product-card button{
    margin:0 20px 20px;
    padding:13px;
    width:calc(100% - 40px);
    border:1.5px solid #c8a96b;
    border-radius:30px;
    background:linear-gradient(135deg,#c8a96b,#f0d080);
    color:#071b14;
    font-weight:700;
    font-size:13.5px;
    cursor:pointer;
    transition:.35s ease;
    letter-spacing:1px;
    text-transform:uppercase;
    box-shadow:0 6px 16px rgba(200,169,107,.28);
}

.product-card button:hover{
    background:transparent;
    color:#f0d080;
    border-color:#f0d080;
    box-shadow:0 6px 20px rgba(200,169,107,.4);
    transform:translateY(-2px);
}

.card-microcopy{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    line-clamp:2;
    overflow:hidden;
    padding:0 20px;
    margin-bottom:6px;
    font-size:12.5px;
    line-height:18px;
    color:rgba(255,255,255,.55);
    font-style:italic;
}

.card-microcopy:empty{
    display:none;
    margin-bottom:0;
}

.product-card[data-destaque="true"]{
    border-color:rgba(240,208,128,.5);
    box-shadow:0 8px 26px rgba(200,169,107,.16), 0 6px 20px rgba(0,0,0,.24);
}

.product-card[data-destaque="true"]:hover{
    border-color:rgba(240,208,128,.85);
    box-shadow:0 22px 52px rgba(240,208,128,.3), 0 8px 20px rgba(0,0,0,.3);
}

/* ================= FEEDBACKS ================= */

.feedbacks{
    padding:80px 60px;

    background:#10271f;

    text-align:center;

    border-top:2px solid #c8a96b;
}

/* ================= MODAL PRODUTO ================= */

.modal{
    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.8);

    z-index:999;
}

.modal-content{
    width:92%;
    max-width:580px;
    background:#06241c;
    margin:40px auto;
    padding:0;
    border:1px solid rgba(200,169,107,.5);
    border-radius:20px;
    text-align:left;
    color:white;
    position:relative;
    max-height:92vh;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

.modal-image-wrap{
    position:relative;
    width:100%;
    aspect-ratio:4/3;
    overflow:hidden;
    flex-shrink:0;
    border-radius:20px 20px 0 0;
}

.modal-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:transform .4s ease;
}

.modal-image-wrap img[src*="coca-cola-lata.png"],
.modal-image-wrap img[src*="guarana-antarctica-lata.png"]{
    object-fit:contain;
}

.modal-image-wrap img:hover{
    transform:scale(1.03);
}

.modal-details{
    padding:20px 24px 26px;
    overflow-y:auto;
    flex:1;
    min-height:0;
}

.modal-content h2{
    color:#e8d5a0;
    font-size:18px;
    line-height:26px;
    margin-bottom:6px;
}

.modal-price-block{
    display:flex;
    align-items:baseline;
    gap:8px;
    margin-bottom:14px;
}

.modal-price-label{
    font-size:11px;
    color:rgba(255,255,255,.35);
    text-transform:uppercase;
    letter-spacing:.6px;
}

.modal-content h3{
    font-size:28px;
    font-weight:800;
    color:#c8a96b;
    margin:0;
    letter-spacing:-.3px;
}

.modal-desc{
    font-size:13px;
    color:rgba(255,255,255,.55);
    line-height:20px;
    margin-bottom:0;
}

.modal-cta-group{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:16px;
}

.fechar{
    position:absolute;

    right:20px;
    top:15px;

    font-size:35px;

    cursor:pointer;
}
/* ================= PADRÃO FECHAR MODAIS ================= */

.fechar,
.close-login,
.close-orders,
.close-favorites,
.close-checkout,
.close-admin{

    position:absolute;

    top:15px;
    right:15px;

    width:42px;
    height:42px;

    display:flex;
    justify-content:center;
    align-items:center;

    border:1px solid #caa96a;
    border-radius:50%;

    background:rgba(255,255,255,0.05);

    color:#caa96a;

    font-size:22px;
    font-weight:bold;

    cursor:pointer;

    transition:.3s;

    z-index:100;
}

.fechar:hover,
.close-login:hover,
.close-orders:hover,
.close-favorites:hover,
.close-checkout:hover,
.close-admin:hover{

    background:#caa96a;

    color:#022c25;

    transform:rotate(90deg);
}
/* ================= INFORMAÇÕES DO PRODUTO ================= */

.info-produto{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin:14px 0;
}

.info-produto p{
    background:rgba(0,0,0,.2);
    border:1px solid rgba(200,169,107,.25);
    padding:10px 14px;
    border-radius:10px;
    font-size:13px;
    color:rgba(255,255,255,.8);
    margin:0;
}

.status-produto{
    color:#7CFF8A;
    border-color:rgba(124,255,138,.2);
}

.pontos-produto{
    color:#c8a96b;
    border-color:rgba(200,169,107,.3);
}

.product-card .card-pontos{
    font-size:13px;
    font-weight:600;
    color:#c8a96b;
    margin-bottom:12px;
    opacity:.8;
    letter-spacing:.2px;
}

.btn-add-cart{
    display:block;
    width:100%;
    padding:16px;
    background:linear-gradient(135deg,#c8a96b,#f0d080);
    color:#071b14;
    border:none;
    border-radius:12px;
    font-weight:bold;
    font-size:15px;
    cursor:pointer;
    transition:.3s ease;
    letter-spacing:.3px;
}

.btn-add-cart:hover{
    background:linear-gradient(135deg,#f0d080,#c8a96b);
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(200,169,107,.35);
}

/* ================= CARRINHO LATERAL ================= */

.cart-sidebar{
    position:fixed;
    top:0;
    right:-420px;
    width:400px;
    height:100vh;
    background:#071b14;
    border-left:2px solid rgba(200,169,107,.4);
    z-index:1000;
    padding:24px;
    transition:.4s ease;
    display:flex;
    flex-direction:column;
}

.cart-sidebar.active{
    right:0;
}

.cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid rgba(200,169,107,.25);
    padding-bottom:18px;
    margin-bottom:4px;
}

.cart-header h2{
    color:#c8a96b;
    font-size:18px;
}

.close-cart{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(200,169,107,.4);
    border-radius:50%;
    background:rgba(255,255,255,.04);
    color:#caa96a;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
    flex-shrink:0;
}

.close-cart:hover{
    background:#caa96a;
    color:#022c25;
    transform:rotate(90deg);
}

.cart-items{
    flex:1;
    margin-top:18px;
    overflow-y:auto;
}

.empty-cart{
    color:white;
    text-align:center;
    margin-top:40px;
}

.cart-item{
    display:flex;
    gap:14px;
    margin-bottom:18px;
    border-bottom:1px solid rgba(200,169,107,.2);
    padding-bottom:16px;
}

.cart-item img{
    width:84px;
    height:84px;
    object-fit:cover;
    border-radius:12px;
    flex-shrink:0;
    box-shadow:0 4px 12px rgba(0,0,0,.3);
}

.cart-item-info h4{
    color:white;
    font-size:14px;
    line-height:20px;
    margin-bottom:6px;
}

.cart-item-info p{
    color:#c8a96b;
    font-size:15px;
    font-weight:bold;
}

.cart-item-subtotal{
    color:rgba(255,255,255,.75) !important;
    font-size:12px !important;
    font-weight:600 !important;
    margin-top:6px;
    margin-bottom:0;
    letter-spacing:.2px;
}

.cart-footer{
    border-top:1px solid rgba(200,169,107,.25);
    padding-top:16px;
}

.cart-summary-block{
    background:rgba(200,169,107,.06);
    border:1px solid rgba(200,169,107,.2);
    border-radius:14px;
    padding:14px 16px;
    margin-bottom:14px;
}

.cart-summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    color:rgba(255,255,255,.5);
    margin-bottom:10px;
}

.cart-total-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:15px;
    color:white;
    border-top:1px solid rgba(200,169,107,.15);
    padding-top:10px;
}

.cart-total-row strong{
    font-size:20px;
    color:#c8a96b;
    font-weight:800;
}

.checkout-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#c8a96b,#f0d080);
    color:#071b14;
    font-weight:bold;
    font-size:15px;
    cursor:pointer;
    transition:.3s ease;
    letter-spacing:.4px;
    box-shadow:0 4px 20px rgba(200,169,107,.3);
}

.checkout-btn:hover{
    background:linear-gradient(135deg,#f0d080,#c8a96b);
    transform:translateY(-2px);
    box-shadow:0 8px 28px rgba(200,169,107,.4);
}

.continue-shopping-btn{
    width:100%;
    padding:14px;
    margin-top:10px;
    border:1px solid rgba(200,169,107,.5);
    border-radius:14px;
    background:transparent;
    color:#c8a96b;
    font-weight:bold;
    font-size:13px;
    cursor:pointer;
    transition:.3s ease;
    letter-spacing:.4px;
}

.continue-shopping-btn:hover{
    background:rgba(200,169,107,.12);
    border-color:#c8a96b;
}

/* ================= QUANTIDADE E REMOVER ITEM ================= */

.quantity-controls{
    display:flex;
    align-items:center;
    gap:10px;

    margin-top:10px;
}

.quantity-controls button{
    width:32px;
    height:32px;
    border:none;
    border-radius:50%;
    background:rgba(200,169,107,.2);
    border:1px solid rgba(200,169,107,.4);
    color:#c8a96b;
    font-weight:bold;
    font-size:16px;
    cursor:pointer;
    transition:.2s;
    display:flex;
    align-items:center;
    justify-content:center;
}

.quantity-controls button:hover{
    background:#c8a96b;
    color:#071b14;
}

.quantity-controls span{
    color:white;
    font-weight:bold;
}

.remove-item{
    margin-top:10px;

    background:transparent;

    border:none;

    color:#ff7777;

    cursor:pointer;

    font-size:13px;
}

.remove-item:hover{
    text-decoration:underline;
}

/* ================= CHECKOUT ================= */

.checkout-modal{
    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.8);

    z-index:1001;
}

.checkout-content{
    width:90%;
    max-width:520px;

    background:#06241c;

    margin:50px auto;

    padding:30px;

    border:2px solid #c8a96b;
    border-radius:20px;

    position:relative;

    color:white;

    max-height:92vh;
    overflow-y:auto;
}

.checkout-content h2{
    color:#c8a96b;

    text-align:center;

    margin-bottom:25px;
}

.close-checkout{
    position:absolute;

    right:20px;
    top:15px;

    font-size:35px;

    cursor:pointer;
}

.checkout-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea{
    width:100%;

    padding:14px;

    border:none;
    outline:none;

    border-radius:12px;

    background:#10271f;

    color:white;

    border:1px solid rgba(200,169,107,0.5);
}

.checkout-form textarea{
    min-height:100px;
    resize:none;
}

.checkout-form button{
    padding:15px;

    border:none;
    border-radius:30px;

    background:#c8a96b;
    color:#071b14;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

.checkout-form button:hover{
    background:white;
}

.btn-confirmar-pedido{
    background:linear-gradient(135deg, #c8a96b 0%, #b8935f 100%);
    width:100%;
    font-size:15px;
    font-weight:800;
    letter-spacing:1px;
    padding:17px;
    border-radius:30px;
}

.btn-confirmar-pedido:hover{
    background:linear-gradient(135deg, #e8d5a0 0%, #c8a96b 100%) !important;
}

.btn-confirmar-pedido:disabled,
.btn-confirmar-pedido.btn-bloqueado-pix{
    opacity:.45;
    cursor:not-allowed;
    filter:grayscale(20%);
    pointer-events:none;
}

.pix-comprova-msg{
    margin-top:12px;
    padding:10px 14px;
    background:rgba(39,174,96,.12);
    border:1px solid rgba(39,174,96,.4);
    border-radius:10px;
    color:#4cd97b;
    font-size:13px;
    font-weight:700;
    text-align:center;
    letter-spacing:.3px;
}

/* ================= RESUMO DO CHECKOUT ================= */

.checkout-summary{
    background:#10271f;

    border:1px solid rgba(200,169,107,0.5);

    border-radius:15px;

    padding:15px;

    margin-bottom:20px;
}

.checkout-summary h3{
    color:#c8a96b;

    margin-bottom:15px;
}

.checkout-product{
    display:flex;

    justify-content:space-between;

    margin-bottom:10px;

    color:white;

    font-size:14px;
}

.checkout-total{
    margin-top:15px;

    padding-top:15px;

    border-top:1px solid rgba(200,169,107,0.4);

    font-size:18px;
    font-weight:bold;

    color:#c8a96b;
}
.delivery-fields{
    display:none;
    flex-direction:column;
    gap:15px;
}

.pickup-info{
    display:none;

    background:#10271f;

    border:1px solid rgba(200,169,107,0.5);

    padding:15px;

    border-radius:12px;

    color:white;
}
/* ================= PAGAMENTO INTELIGENTE ================= */

.payment-info{
    display:none;

    background:#10271f;

    border:1px solid rgba(200,169,107,0.5);

    padding:15px;

    border-radius:12px;

    color:white;
}

.payment-info strong{
    display:block;

    color:#c8a96b;

    margin:8px 0 12px;
}

.payment-info button{
    padding:10px 18px;

    border:none;
    border-radius:25px;

    background:#c8a96b;
    color:#071b14;

    font-weight:bold;

    cursor:pointer;
}

.payment-info input{
    width:100%;

    padding:14px;

    border:none;
    outline:none;

    border-radius:12px;

    background:#071b14;

    color:white;

    border:1px solid rgba(200,169,107,0.5);
}
/* ================= TAXA DE ENTREGA ================= */

.checkout-fee{
    margin-top:15px;

    color:white;

    display:flex;
    justify-content:space-between;
}
/* ================= LOGIN / CADASTRO ================= */

.login-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    z-index:1002;
}

#loginModal{
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    background:rgba(0,0,0,.75);
}

.login-content{
    width:90%;
    max-width:420px;

    background:#06241c;
    border:2px solid #c8a96b;
    border-radius:20px;

    margin:80px auto;
    padding:30px;

    position:relative;
    text-align:center;
}

.login-content h2{
    color:#c8a96b;
    margin-bottom:25px;
}

.close-login{
    position:absolute;
    top:16px;
    right:18px;
    font-size:24px;
    cursor:pointer;
    color:rgba(255,255,255,.35);
    line-height:1;
    transition:color .2s ease;
}

.close-login:hover{
    color:rgba(200,169,107,.8);
}

.login-content input{
    width:100%;
    padding:14px;
    margin-bottom:15px;

    border-radius:12px;
    border:1px solid rgba(200,169,107,.5);

    background:#10271f;
    color:white;
    outline:none;
}

#loginModal input{
    width:100%;
    padding:16px;
    margin-bottom:12px;
    border-radius:12px;
    border:1px solid rgba(200,169,107,.28);
    background:rgba(0,0,0,.3);
    color:white;
    font-size:15px;
    outline:none;
    transition:border-color .2s ease, box-shadow .2s ease;
}

#loginModal input:focus{
    border-color:rgba(200,169,107,.7);
    box-shadow:0 0 0 3px rgba(200,169,107,.08);
}

#loginModal input::placeholder{
    color:rgba(255,255,255,.28);
}

.login-content button{
    width:100%;
    padding:14px;

    border:none;
    border-radius:30px;

    background:#c8a96b;
    color:#071b14;

    font-weight:bold;
    cursor:pointer;
}

#saveLogin{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#c8a96b,#f0d080);
    color:#071b14;
    font-weight:bold;
    font-size:15px;
    letter-spacing:.5px;
    cursor:pointer;
    box-shadow:0 4px 16px rgba(200,169,107,.28);
    transition:transform .2s ease, box-shadow .2s ease;
}

#saveLogin:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(200,169,107,.4);
}

#saveLogin:active{
    transform:scale(.98);
}
/* ================= RESGATAR PONTOS ================= */

.redeem-btn{
    width:100%;

    margin-top:12px;

    padding:10px;

    border:none;
    border-radius:25px;

    background:#c8a96b;
    color:#071b14;

    font-weight:bold;

    cursor:pointer;

    display:none;
}

.redeem-btn:hover{
    background:white;
}
/* ================= DESCONTO FIDELIDADE ================= */

.checkout-discount{
    margin-top:10px;

    display:flex;
    justify-content:space-between;

    color:#7CFF8A;
    font-weight:bold;
}
/* ================= FIDELIDADE NO CHECKOUT ================= */

.loyalty-checkout{
    margin-top:12px;
    padding:12px;

    background:#071b14;
    border:1px solid rgba(200,169,107,0.5);
    border-radius:12px;

    color:white;
    font-size:14px;
}

.loyalty-checkout p{
    margin-bottom:10px;
    color:#c8a96b;
    font-weight:bold;
}

.loyalty-checkout label{
    display:none;
    align-items:center;
    gap:8px;

    cursor:pointer;
}

.loyalty-checkout input{
    width:auto;
}

/* ================= MEUS PEDIDOS ================= */

#ordersList{
    text-align:left;
}

.order-item{
    background:linear-gradient(160deg,#0f2318,#071b14);
    border:1px solid rgba(200,169,107,.4);
    border-radius:16px;
    padding:16px;
    margin-bottom:14px;
    box-shadow:0 4px 20px rgba(0,0,0,.35);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.order-item:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 28px rgba(200,169,107,.15);
    border-color:rgba(200,169,107,.7);
}

.order-item > strong{
    display:block;
    font-size:12px;
    font-weight:bold;
    color:#c8a96b;
    letter-spacing:1px;
    text-transform:uppercase;
    padding-bottom:12px;
    margin-bottom:12px;
    border-bottom:1px solid rgba(200,169,107,.2);
}

.order-item > p{
    font-size:13px;
    color:rgba(255,255,255,.7);
    padding:3px 0;
    line-height:20px;
}

.order-item > p:last-of-type{
    color:#c8a96b;
    font-size:15px;
    font-weight:bold;
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid rgba(200,169,107,.15);
}

.review-toggle button{
    margin-top:10px;
    width:100%;
    padding:10px;
    border:1px solid rgba(200,169,107,.5);
    border-radius:12px;
    background:#10271f;
    color:#c8a96b;
    font-weight:bold;
    cursor:pointer;
    transition:background .2s ease, border-color .2s ease;
}

.review-toggle button:hover{
    background:#0f2318;
    border-color:rgba(200,169,107,.9);
}

.review-form{
    margin-top:12px;
    padding-top:12px;
    border-top:1px solid rgba(200,169,107,.15);
}

.review-form label{
    display:block;
    font-size:13px;
    color:rgba(255,255,255,.7);
}

.review-form select,
.review-form textarea{
    width:100%;
    margin-top:6px;
    padding:12px;
    border-radius:12px;
    background:#071b14;
    color:white;
    border:1px solid rgba(200,169,107,.5);
}

.review-form textarea{
    min-height:80px;
    resize:none;
    margin-top:12px;
}

.review-form button{
    margin-top:10px;
    width:100%;
    padding:12px;
    border:none;
    border-radius:12px;
    background:#c8a96b;
    color:#071b14;
    font-weight:bold;
    cursor:pointer;
}

.review-feito{
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid rgba(200,169,107,.15);
    color:#7CFF8A;
    font-size:13px;
    font-weight:bold;
}
/* ================= PEDIDO CONFIRMADO ================= */

.success-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    z-index:1003;
    overflow-y:auto;
}

.success-content{
    width:90%;
    max-width:560px;

    background:#06241c;
    border:2px solid #c8a96b;
    border-radius:20px;

    margin:20px auto;
    padding:30px;

    text-align:left;
    color:white;
}

.success-content h2{
    color:#c8a96b;
    margin-bottom:20px;
    text-align:center;
}

#successDetails{
    line-height:28px;
    margin-bottom:25px;
}

#successDetails strong{
    color:#c8a96b;
}

.success-order-num{
    font-size:22px;
    font-weight:bold;
    color:#c8a96b;
    text-align:center;
    margin-bottom:4px;
}

.success-divider{
    border:none;
    border-top:1px solid rgba(200,169,107,.2);
    margin:14px 0;
}

.success-info-row{
    text-align:left;
    margin-bottom:14px;
}

.success-block-label{
    display:block;
    font-size:11px;
    font-weight:bold;
    letter-spacing:1px;
    color:#c8a96b;
    opacity:.8;
    margin-bottom:3px;
    text-transform:uppercase;
}

#closeSuccess{
    width:100%;
    padding:14px;

    border:none;
    border-radius:30px;

    background:#c8a96b;
    color:#071b14;

    font-weight:bold;
    cursor:pointer;
}

/* ================= BLOCO A — COMPROVANTE ================= */

#comprovanteConteudo{
    background:#fff;
    color:#111;
    border-radius:12px;
    padding:22px 20px 18px;
    margin-bottom:18px;
    font-size:13px;
    line-height:1.5;
}

.cpv-header{
    text-align:center;
    margin-bottom:14px;
}

.cpv-brand{
    font-size:20px;
    font-weight:800;
    letter-spacing:2px;
    color:#071b14;
}

.cpv-brand-sub{
    font-size:11px;
    color:#666;
    margin-bottom:8px;
}

.cpv-status-badge{
    display:inline-block;
    background:#e8f5e9;
    color:#2e7d32;
    font-size:11px;
    font-weight:700;
    letter-spacing:.5px;
    padding:4px 12px;
    border-radius:20px;
}

.cpv-order-block{
    text-align:center;
    margin:10px 0 6px;
}

.cpv-order-num{
    font-size:22px;
    font-weight:800;
    color:#c8a96b;
    letter-spacing:1px;
}

.cpv-order-date{
    font-size:12px;
    color:#777;
}

.cpv-divider{
    border:none;
    border-top:1px solid #e0e0e0;
    margin:12px 0;
}

.cpv-section{
    margin-bottom:4px;
}

.cpv-section-title{
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
    color:#c8a96b;
    text-transform:uppercase;
    margin-bottom:8px;
}

.cpv-data-row{
    display:flex;
    justify-content:space-between;
    gap:10px;
    margin-bottom:5px;
}

.cpv-data-label{
    font-size:10px;
    font-weight:700;
    letter-spacing:.8px;
    color:#888;
    text-transform:uppercase;
    white-space:nowrap;
    padding-top:1px;
    min-width:80px;
}

.cpv-data-value{
    font-size:13px;
    color:#1a1a1a;
    text-align:right;
    flex:1;
}

.cpv-items-list{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.cpv-item-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:8px;
}

.cpv-item-info{
    display:flex;
    align-items:baseline;
    gap:6px;
    flex:1;
}

.cpv-item-nome{
    font-size:13px;
    color:#1a1a1a;
}

.cpv-item-qty{
    font-size:11px;
    color:#888;
    white-space:nowrap;
}

.cpv-item-sub{
    font-size:13px;
    font-weight:600;
    color:#1a1a1a;
    white-space:nowrap;
}

.cpv-totals{
    margin-bottom:4px;
}

.cpv-total-row{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:#444;
    margin-bottom:5px;
}

.cpv-desconto-row{
    color:#2e7d32;
    font-weight:600;
}

.cpv-total-final-row{
    display:flex;
    justify-content:space-between;
    font-size:16px;
    font-weight:800;
    color:#071b14;
    padding-top:8px;
    border-top:2px solid #c8a96b;
    margin-top:6px;
}

.cpv-obs-text{
    font-size:13px;
    color:#444;
    font-style:italic;
    margin:0;
}

.cpv-footer{
    text-align:center;
    margin-top:14px;
    font-size:12px;
    color:#888;
}

.cpv-footer p{ margin:2px 0; }

/* Botões de ação do modal de sucesso */

.success-modal-actions{
    margin-top:4px;
}

.modal-info-bloco{
    background:rgba(200,169,107,.07);
    border:1px solid rgba(200,169,107,.2);
    border-radius:12px;
    padding:14px 16px;
    margin-bottom:14px;
}

.modal-info-titulo{
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
    color:#c8a96b;
    text-transform:uppercase;
    margin-bottom:10px;
    opacity:.85;
}

.modal-info-item{
    font-size:13px;
    color:rgba(255,255,255,.82);
    line-height:1.55;
    margin-bottom:7px;
}

.modal-info-item:last-child{ margin-bottom:0; }

.modal-info-item strong{ color:#fff; }

/* Título da seção de ações e do bloco PIX */

.success-action-titulo{
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
    color:#c8a96b;
    text-transform:uppercase;
    margin-bottom:12px;
    opacity:.85;
}

.pix-titulo{
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
    color:#c8a96b;
    text-transform:uppercase;
    margin-bottom:10px;
    opacity:.85;
}

/* Referência no comprovante */

.cpv-referencia em{
    color:#aaa;
    font-style:italic;
    font-size:12px;
}

.success-action-btns{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:18px;
    padding-top:18px;
    border-top:1px solid rgba(200,169,107,.15);
}

.success-btn-wpp{
    width:100%;
    padding:14px;
    border:none;
    border-radius:30px;
    background:#25d366;
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    cursor:pointer;
    transition:background .2s;
}

.success-btn-wpp:hover{ background:#1ebe59; }

.success-btn-print{
    width:100%;
    padding:12px;
    border:2px solid #c8a96b;
    border-radius:30px;
    background:transparent;
    color:#c8a96b;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    transition:background .2s, color .2s;
}

.success-btn-print:hover{
    background:#c8a96b;
    color:#071b14;
}

/* ================= IMPRESSÃO — BLOCO A ================= */

@page{
    size:58mm auto;
    margin:4mm 2mm;
}

@media print{
    /* 0. Colapsa html e body para altura do conteúdo — impede reserva de altura de viewport */
    html, body{
        height:auto !important;
        margin:0 !important;
        padding:0 !important;
    }

    /* 1. Oculta toda a página */
    body.imprimindo-comprovante > *{
        display:none !important;
    }

    /* 2. Exibe o modal — seletor de ID garante especificidade superior ao > * acima */
    body.imprimindo-comprovante > #successModal{
        display:block !important;
        position:static !important;
        background:none !important;
        overflow:visible !important;
        width:100% !important;
    }

    /* 3. Exibe o container interno */
    body.imprimindo-comprovante .success-content{
        display:block !important;
        width:100% !important;
        max-width:100% !important;
        margin:0 !important;
        padding:0 !important;
        background:#fff !important;
        border:none !important;
        box-shadow:none !important;
        border-radius:0 !important;
        color:#111 !important;
    }

    /* 4. Oculta elementos não impressos (título, fechar, botões de ação) */
    body.imprimindo-comprovante .success-content > h2,
    body.imprimindo-comprovante #closeSuccess,
    body.imprimindo-comprovante .success-modal-actions{
        display:none !important;
    }

    /* 5. Exibe #successDetails — ESSENCIAL: pai direto do comprovante */
    body.imprimindo-comprovante #successDetails{
        display:block !important;
        margin:0 !important;
        line-height:normal !important;
    }

    /* 6. Exibe o comprovante — sem margem após o último elemento */
    body.imprimindo-comprovante #comprovanteConteudo{
        display:block !important;
        background:#fff !important;
        color:#111 !important;
        border-radius:0 !important;
        padding:16px !important;
        margin-bottom:0 !important;
    }

    /* 7. Preserva cores do badge no print */
    body.imprimindo-comprovante .cpv-status-badge{
        -webkit-print-color-adjust:exact;
        print-color-adjust:exact;
    }
}

/* ================= FAVORITOS ================= */

.btn-favorite{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    padding:13px;
    border:1.5px solid rgba(200,169,107,.45);
    border-radius:12px;
    background:transparent;
    color:rgba(255,255,255,.6);
    font-weight:bold;
    font-size:14px;
    cursor:pointer;
    transition:.3s ease;
}

.btn-favorite:hover{
    border-color:#c8a96b;
    color:#c8a96b;
    background:rgba(200,169,107,.06);
}
.favorite-item{
    position:relative;
    background:linear-gradient(160deg,#0f2318,#071b14);
    border:1px solid rgba(200,169,107,.45);
    border-radius:16px;
    margin-bottom:14px;
    overflow:hidden;
    text-align:left;
    box-shadow:0 4px 20px rgba(0,0,0,.4);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.favorite-item:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 32px rgba(200,169,107,.18);
    border-color:rgba(200,169,107,.75);
}

.favorite-item::before{
    content:"❤️ Favorito";
    position:absolute;
    top:10px;
    right:10px;
    background:rgba(7,27,20,.85);
    border:1px solid rgba(200,169,107,.5);
    color:#c8a96b;
    font-size:11px;
    font-weight:bold;
    padding:4px 10px;
    border-radius:99px;
    z-index:2;
    letter-spacing:.3px;
}

.favorite-item img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:0;
    margin-bottom:0;
    display:block;
}

.favorite-item strong{
    display:block;
    padding:14px 14px 4px;
    color:#c8a96b;
    font-size:15px;
    line-height:22px;
}

.favorite-item p{
    padding:0 14px 12px;
    color:white;
    font-size:16px;
    font-weight:bold;
    margin:0;
}

.add-favorite-cart{
    display:block;
    margin:0 14px 8px;
    width:calc(100% - 28px);
    padding:11px;
    border:none;
    border-radius:10px;
    background:#c8a96b;
    color:#071b14;
    font-weight:bold;
    font-size:14px;
    cursor:pointer;
    transition:background .2s ease, transform .15s ease;
}

.add-favorite-cart:hover{
    background:#f0d080;
    transform:scale(1.01);
}

.remove-favorite{
    display:block;
    margin:0 14px 14px;
    width:calc(100% - 28px);
    padding:10px;
    border:1px solid rgba(255,100,100,.35);
    border-radius:10px;
    background:transparent;
    color:rgba(255,140,140,.8);
    font-weight:bold;
    font-size:13px;
    cursor:pointer;
    transition:background .2s ease, color .2s ease, border-color .2s ease;
}

.remove-favorite:hover{
    background:rgba(255,80,80,.1);
    color:#ff9999;
    border-color:rgba(255,100,100,.65);
}
/* ================= SCROLL SUAVE ================= */

html{
    scroll-behavior:smooth;
}

/* ================= HEADER DESKTOP FIXO ================= */

.top-attendance{
    display:none;
}

@media (min-width: 769px){

    .header{
        height:95px;
        position:fixed;

        flex-direction:row;
        align-items:center;
        justify-content:space-between;

        padding:0 45px;
    }

    .brand-area{
        display:flex;
        flex-direction:row;
        align-items:center;
        gap:18px;
    }

    .logo img{
        width:100px;
    }

    .search-box{
        width:380px;
        margin-left:0;
    }

    .nav-menu{
        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:flex-end;
        gap:22px;
        margin-top:0;
    }

    .home-banner{
        margin-top:95px;
    }
}

/* ================= RESPONSIVO MOBILE GERAL ================= */

@media (max-width: 768px){

    .header{
        position:relative;
        height:auto;

        padding:16px;

        display:flex;
        flex-direction:column;
        align-items:stretch;

        gap:14px;
    }

    .top-attendance{
        width:100%;

        display:flex;
        justify-content:flex-end;

        margin-bottom:10px;
    }

    /* ================= ATENDIMENTO MOBILE EXPANSÍVEL ================= */

.top-attendance .dropdown{
    width:100%;
    text-align:right;
}

.top-attendance .dropdown-content{
    position:static;

    width:100%;
    margin-top:12px;

    transform:none;

    display:none;

    text-align:left;
}

.top-attendance .dropdown.active .dropdown-content{
    display:block;
}

    .brand-area{
        width:100%;

        display:flex;
        flex-direction:row;
        align-items:center;

        gap:14px;
    }

    .socials{
        display:none;
    }

    .logo{
        flex-shrink:0;
    }

    .logo img{
        width:70px;
    }

    .search-box{
        flex:1;
        width:auto;
        max-width:none;
    }

    .nav-menu{
        width:100%;

        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;

        gap:12px 16px;
        margin-top:12px;
    }

    .nav-menu a,
    .dropdown span{
        font-size:12px;
        white-space:nowrap;
    }

    .nav-menu > .desktop-attendance{
    display:none;

}

    .cart{
        font-size:26px;
    }

    .dropdown-content{
        right:auto;
        left:50%;
        transform:translateX(-50%);
    }
}

/* ================= BANNER MOBILE ================= */

@media (max-width: 768px){

    .home-banner{
        margin-top:0;
        min-height:560px;

        padding:65px 22px 60px;

        display:flex;
        align-items:center;
        justify-content:center;

        background:
        linear-gradient(
            rgba(7,27,20,0.78),
            rgba(7,27,20,0.85)
        ),
        url("imagens/background/bolo.png");

        background-size:cover;
        background-position:center;
    }

    .banner-text{
        max-width:340px;
        text-align:center;
    }

    .banner-text h1{
        font-size:40px;
        line-height:1.0;
        margin:0 0 14px;
        letter-spacing:1px;
    }

    .banner-text h1 strong{
        display:block;
    }

    .divider{
        justify-content:center;
        margin-bottom:24px;
    }

    .divider span{
        flex:1;
        max-width:90px;
    }

    .banner-text > p{
        font-size:16px;
        line-height:27px;
        margin-bottom:28px;
    }

    .banner-btn{
        padding:14px 34px;
        font-size:13px;
    }

    .hero-accent-line{
        margin:0 auto 18px;
    }

    .banner-text .hero-subtitle{
        font-size:10px;
        letter-spacing:4px;
        margin-bottom:18px;
    }

    .banner-text .hero-description{
        font-size:14px;
        line-height:26px;
        margin-bottom:28px;
        max-width:100%;
    }
}

/* ================= PRODUTOS MOBILE ================= */

@media (max-width: 768px){

    .best-sellers,
    .products{
        padding:50px 18px;
    }

    .best-grid{
        display:flex;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        gap:16px;
        padding-bottom:16px;
        -webkit-overflow-scrolling:touch;
    }

    .best-card{
        flex:0 0 240px;
        max-width:240px;
        scroll-snap-align:start;
    }

    .product-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .product-card{
        max-width:none;
        margin:0;
    }

    .best-card img,
    .product-card img{
        height:200px;
    }

    .best-card h3{
        font-size:14px;
        line-height:22px;
    }

    .product-card h3{
        font-size:15px;
        line-height:23px;
        letter-spacing:.3px;
        min-height:50px;
    }

    .product-card p{
        font-size:18px;
        letter-spacing:.4px;
    }
}

/* ================= MODAIS E CARRINHO MOBILE ================= */

@media (max-width: 768px){

    .cart-sidebar{
        width:100%;
        right:-100%;
    }

    .checkout-content,
    .login-content,
    .success-content{
        width:92%;
        margin:35px auto;
        padding:24px;
    }

    #loginModal .login-premium{
        padding:32px 24px 26px;
    }
}
/* ================= ATENDIMENTO DESKTOP / MOBILE ================= */

@media (min-width: 769px){
    .desktop-attendance{
        display:block;
    }
}

@media (max-width: 768px){
    .desktop-attendance{
        display:none;
    }
}
/* ================= DROPDOWN ABERTO POR CLIQUE ================= */

.dropdown.active .dropdown-content{
    display:block;
}

@media (max-width:768px){

    .account-dropdown:not(.active) .dropdown-content{
        display:none;
    }

}
/* ================= CARRINHO MOBILE PREMIUM ================= */

@media (max-width:768px){

    .cart-item{
        gap:16px;
        padding-bottom:20px;
        margin-bottom:22px;
    }

    .cart-item img{
        width:88px;
        height:88px;
    }

    .cart-item-info h4{
        font-size:16px;
        line-height:22px;
    }

    .cart-item-info p{
        font-size:16px;
        margin-bottom:10px;
    }

    .quantity-controls{
        gap:14px;
        margin-top:12px;
    }

    .quantity-controls button{
        width:38px;
        height:38px;
        font-size:18px;
    }

    .quantity-controls span{
        font-size:18px;
    }

    .remove-item{
        margin-top:14px;
        font-size:14px;
        font-weight:bold;
    }

    .checkout-btn{
        padding:17px;
        font-size:16px;
        font-weight:800;
    }
}
/* ================= CARRINHO VAZIO PREMIUM ================= */

.empty-cart{
    text-align:center;
    margin-top:80px;
    color:white;
}

.empty-cart-icon{
    font-size:42px;
    margin-bottom:14px;
}

.empty-cart p{
    font-size:17px;
    font-weight:bold;
    margin-bottom:8px;
}

.empty-cart span{
    color:#c8a96b;
    font-size:14px;
}
/* ================= CHECKOUT MOBILE PREMIUM ================= */

@media (max-width:768px){

    .checkout-content{
        margin:20px auto;
        padding:22px;
        border-radius:18px;
        max-height:92vh;
    }

    .checkout-content h2{
        font-size:24px;
        margin-bottom:20px;
    }

    .checkout-summary{
        padding:16px;
        border-radius:14px;
        margin-bottom:22px;
    }

    .checkout-summary h3{
        font-size:18px;
        text-align:center;
    }

    .checkout-product{
        font-size:14px;
        gap:12px;
    }

    .checkout-fee,
    .checkout-discount,
    .checkout-total{
        font-size:15px;
    }

    .checkout-total{
        font-size:20px;
        text-align:center;
    }

    .loyalty-checkout{
        text-align:left;
        font-size:14px;
    }

    .checkout-form{
        gap:13px;
    }

    .checkout-form input,
    .checkout-form select,
    .checkout-form textarea{
        padding:15px;
        font-size:15px;
        border-radius:14px;
    }

    .checkout-form button[type="submit"]{
        padding:17px;
        font-size:16px;
        font-weight:800;
    }

    .checkout-form button[type="submit"]::before{
        content:"✅ ";
    }

    .close-checkout{
        font-size:32px;
    }
}
/* ================= RODAPÉ ================= */

.footer{
    background:#071b14;
    color:white;

    padding-top:60px;
    margin-top:80px;
}

.footer-content{
    max-width:1200px;

    margin:auto;

    padding:0 30px 50px;

    display:grid;
    grid-template-columns:2fr 1fr 1fr;

    gap:50px;
}

.footer-brand img{
    width:120px;
    margin-bottom:15px;
}

.footer-brand p{
    font-size:14px;
    font-weight:300;
    line-height:1.85;
    color:rgba(215,215,215,.88);
    letter-spacing:.1px;
}

.footer h3{
    color:#c8a96b;
    margin-bottom:16px;
}

.footer-contact p{
    margin-bottom:12px;
    line-height:24px;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:rgba(255,255,255,.82);
    text-decoration:none;
    margin-bottom:10px;
    font-size:13px;
    font-weight:500;
    letter-spacing:1.4px;
    display:inline-block;
    transition:color .3s ease, transform .3s ease;
}

.footer-links a:hover{
    color:#c8a96b;
    transform:translateX(5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;

    padding:20px;

    color:#bdbdbd;
}

/* ================= RODAPÉ MOBILE ================= */

@media (max-width:768px){

    .footer-content{
        grid-template-columns:1fr;

        text-align:center;

        gap:35px;
    }

    .footer-brand img{
        margin:auto auto 15px;
        display:block;
    }

    .footer-links{
        align-items:center;
    }
}
/* ================= WHATSAPP PREMIUM ================= */

.whatsapp-contact{
    display:flex;
    align-items:center;

    gap:12px;

    text-decoration:none;

    color:white;

    padding:12px;

    border:1px solid rgba(200,169,107,.25);

    border-radius:12px;

    margin-bottom:16px;

    transition:.3s;
}

.whatsapp-contact:hover{
    border-color:#25D366;

    transform:translateY(-2px);
}

.whatsapp-icon{
    font-size:26px;
}

.whatsapp-contact strong{
    color:#25D366;
    display:block;
    margin-bottom:4px;
}

.whatsapp-contact p{
    margin:0;
    color:white;
}
/* ================= WHATSAPP TEXTO PREMIUM ================= */

.whatsapp-contact{
    align-items:flex-start;
}

.whatsapp-icon{
    margin-top:3px;
}

.whatsapp-contact strong{
    color:#25D366;
    font-size:14px;
}

.whatsapp-contact p{
    margin:5px 0;
    font-size:13px;
    color:#dcdcdc;
}

.whatsapp-contact small{
    display:block;
    color:white;
    font-size:13px;
    font-weight:bold;
}
/* ================= AJUSTE CARD WHATSAPP ================= */

.desktop-attendance .dropdown-content{
    width:300px;
}

.whatsapp-contact{
    align-items:center;
}

.whatsapp-contact strong{
    line-height:20px;
}

@media (max-width:768px){
    .whatsapp-contact{
        align-items:flex-start;
    }
}
/* ================= MINHA CONTA PREMIUM ================= */

.account-dropdown .dropdown-content{
    width:300px;
}

#clienteSaudacao{
    font-size:16px;
    font-weight:bold;
    color:white;
    margin-bottom:8px;
}

#accountDescription{
    font-size:13px;
    color:rgba(255,255,255,.55);
    line-height:20px;
    margin-bottom:14px;
    padding:0 2px;
}

/* ================= LOYALTY CARD ================= */

#loyaltyCard{
    margin-bottom:14px;
}

.lc-balance{
    background:rgba(200,169,107,.1);
    border:1px solid rgba(200,169,107,.35);
    border-radius:12px;
    padding:12px 14px;
    margin-bottom:8px;
}

.lc-balance-label{
    display:block;
    font-size:10px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:rgba(200,169,107,.6);
    margin-bottom:4px;
}

.lc-balance-value{
    display:block;
    font-size:22px;
    font-weight:bold;
    color:#c8a96b;
    margin-bottom:3px;
}

.lc-balance-rate{
    display:block;
    font-size:11px;
    color:rgba(255,255,255,.45);
}

.lc-progress{
    background:#071b14;
    border:1px solid rgba(200,169,107,.2);
    border-radius:12px;
    padding:12px 14px;
    margin-bottom:8px;
}

.lc-progress-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
}

.lc-progress-title{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:rgba(255,255,255,.4);
}

.lc-progress-counter{
    font-size:12px;
    font-weight:bold;
    color:#c8a96b;
}

.lc-progress-bar{
    height:6px;
    background:rgba(200,169,107,.15);
    border-radius:99px;
    overflow:hidden;
    margin-bottom:8px;
}

.lc-progress-fill{
    height:100%;
    background:linear-gradient(90deg,#c8a96b,#f0d080);
    border-radius:99px;
    min-width:4px;
}

.lc-progress-label{
    display:block;
    font-size:12px;
    color:rgba(255,255,255,.7);
    line-height:18px;
}

.lc-progress-label strong{
    color:#c8a96b;
}

.lc-tiers-title{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:rgba(255,255,255,.35);
    margin-bottom:6px;
    padding-left:2px;
}

.lc-tiers{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.lc-tier{
    display:flex;
    align-items:center;
    gap:10px;
    padding:9px 12px;
    border-radius:10px;
    border:1px solid transparent;
}

.lc-tier--available{
    background:rgba(200,169,107,.1);
    border-color:rgba(200,169,107,.4);
}

.lc-tier--next{
    background:#071b14;
    border:1px dashed rgba(200,169,107,.3);
}

.lc-tier--locked{
    background:rgba(255,255,255,.02);
    border-color:rgba(255,255,255,.06);
}

.lc-tier-icon{
    font-size:15px;
    flex-shrink:0;
    width:20px;
    text-align:center;
}

.lc-tier-info{
    flex:1;
}

.lc-tier-reward{
    display:block;
    font-size:14px;
    font-weight:bold;
}

.lc-tier--available .lc-tier-reward,
.lc-tier--next .lc-tier-reward{
    color:#c8a96b;
}

.lc-tier--locked .lc-tier-reward{
    color:rgba(255,255,255,.3);
}

.lc-tier-pts{
    display:block;
    font-size:11px;
    color:rgba(255,255,255,.35);
}

.lc-tier-badge{
    font-size:11px;
    font-weight:bold;
    padding:3px 8px;
    border-radius:99px;
    white-space:nowrap;
    flex-shrink:0;
}

.lc-tier--available .lc-tier-badge{
    background:rgba(200,169,107,.2);
    color:#c8a96b;
}

.lc-tier--next .lc-tier-badge{
    background:rgba(255,255,255,.06);
    color:rgba(255,255,255,.5);
}

.lc-tier--locked .lc-tier-badge{
    background:rgba(255,255,255,.04);
    color:rgba(255,255,255,.22);
}

.account-dropdown .dropdown-content a{
    padding:10px 0;
    margin-bottom:0;

    border-bottom:1px solid rgba(255,255,255,.08);
}

.account-dropdown .dropdown-content a:last-of-type{
    border-bottom:none;
}

@media (max-width:768px){

    .account-dropdown .dropdown-content{
        width:290px;
    }

}
/* ================= ACOMPANHAR PEDIDO ================= */

.order-status-box{
    margin-top:16px;
    padding:16px;
    background:rgba(0,0,0,.22);
    border:1px solid rgba(200,169,107,.18);
    border-radius:14px;
    position:relative;
}

.status-title{
    font-size:10px;
    font-weight:bold;
    color:rgba(200,169,107,.55);
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:16px;
    padding-bottom:10px;
    border-bottom:1px solid rgba(200,169,107,.1);
}

.status-step{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding-bottom:22px;
    color:rgba(255,255,255,.2);
    font-size:13px;
    border-bottom:none;
    z-index:1;
}

.status-step:last-child{
    padding-bottom:0;
}

/* Dot */
.status-step::before{
    content:"";
    width:14px;
    height:14px;
    min-width:14px;
    border-radius:50%;
    background:transparent;
    border:2px solid rgba(255,255,255,.12);
    flex-shrink:0;
    margin-top:1px;
    transition:all .3s ease;
}

/* Linha vertical conectando os dots */
.status-step::after{
    content:"";
    position:absolute;
    left:6px;
    top:17px;
    bottom:0;
    width:2px;
    background:rgba(200,169,107,.1);
    border-radius:2px;
}

.status-step:last-child::after{
    display:none;
}

/* Etapas concluídas (ativas mas seguidas de outra ativa) */
.status-step.active:has(~ .status-step.active){
    color:rgba(255,255,255,.45);
}

.status-step.active:has(~ .status-step.active)::before{
    background:rgba(200,169,107,.55);
    border-color:rgba(200,169,107,.55);
}

.status-step.active:has(~ .status-step.active)::after{
    background:rgba(200,169,107,.28);
}

/* Etapa atual (última ativa — status real do pedido) */
.status-step.active:not(:has(~ .status-step.active)){
    color:white;
    font-weight:bold;
}

.status-step.active:not(:has(~ .status-step.active))::before{
    background:#c8a96b;
    border-color:#f0d080;
    box-shadow:0 0 0 3px rgba(200,169,107,.2), 0 0 12px rgba(200,169,107,.5);
    animation:pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot{
    0%,100%{ box-shadow:0 0 0 3px rgba(200,169,107,.2), 0 0 12px rgba(200,169,107,.5); }
    50%{ box-shadow:0 0 0 6px rgba(200,169,107,.08), 0 0 18px rgba(200,169,107,.3); }
}
/* ================= PIX COMPROVANTE WHATSAPP ================= */

.pix-warning{
    margin-top:14px;

    padding:12px;

    background:#071b14;

    border:1px solid rgba(200,169,107,.35);
    border-radius:12px;

    color:white;

    font-size:14px;
    line-height:22px;
}

.send-proof-btn{
    display:block;

    margin-top:12px;
    padding:13px;

    text-align:center;
    text-decoration:none;

    background:#25D366;
    color:#071b14;

    border-radius:30px;

    font-weight:bold;

    transition:.3s;
}

.send-proof-btn:hover{
    background:white;
    transform:scale(1.02);
}
/* ================= CONFIRMAÇÃO DE PAGAMENTO ================= */

.pix-confirmation{
    margin-top:14px;
    margin-bottom:4px;
    padding:14px 16px;

    background:rgba(7,27,20,.9);

    border:1px solid rgba(200,169,107,.35);
    border-radius:12px;

    line-height:22px;
}

.pix-confirmation p{
    font-size:13px;
    color:rgba(255,255,255,.82);
    margin-bottom:10px;
    line-height:1.5;
}
/* ================= PAINEL DA LOJA ================= */

.admin-content{
    max-width:650px;
}

.admin-order{
    background:#10271f;
    border:1px solid rgba(200,169,107,.4);
    border-radius:14px;
    padding:14px;
    margin-bottom:14px;
    text-align:left;
}

.admin-order strong{
    color:#c8a96b;
}

.admin-order select{
    width:100%;
    margin-top:10px;
    padding:12px;
    border-radius:12px;
    background:#071b14;
    color:white;
    border:1px solid rgba(200,169,107,.5);
}

.admin-order button{
    margin-top:10px;
}
/* ================= ESTOQUE PRODUTOS ================= */

.stock-info{
    margin:0 20px 12px;
    font-size:13px;
    letter-spacing:.3px;
    color:#9be8a8;
    font-weight:600;
}

.stock-info.out-stock{
    color:#f29a9a;
}

.disabled-product{
    background:#777 !important;
    color:#ddd !important;
    cursor:not-allowed !important;
    transform:none !important;
}
/* ================= ESTOQUE PRODUTOS ================= */

.stock-info{
    margin:0 20px 12px;
    font-size:13px;
    letter-spacing:.3px;
    color:#9be8a8;
    font-weight:600;
}

.stock-info.out-stock{
    color:#f29a9a;
}

.disabled-product{
    background:#777 !important;
    color:#ddd !important;
    cursor:not-allowed !important;
    transform:none !important;
}
/* ================= PAINEL ESTOQUE ================= */

.admin-subtitle{
    margin:25px 0 14px;
    color:#c8a96b;
    text-align:left;
}

.admin-stock-item{
    background:#10271f;
    border:1px solid rgba(200,169,107,.4);
    border-radius:14px;
    padding:14px;
    margin-bottom:14px;
    text-align:left;
}

.admin-stock-item strong{
    color:white;
}

.admin-stock-control{
    display:flex;
    gap:10px;
    margin-top:10px;
}

.admin-stock-control input{
    flex:1;
    padding:12px;
    border-radius:12px;
    border:1px solid rgba(200,169,107,.5);
    background:#071b14;
    color:white;
}

.admin-stock-control button{
    padding:12px 16px;
    border:none;
    border-radius:12px;
    background:#c8a96b;
    color:#071b14;
    font-weight:bold;
    cursor:pointer;
}
/* ================= SCROLL DO PAINEL DA LOJA ================= */

.admin-content{
    max-height:85vh;
    overflow-y:auto;
    padding-right:18px;
}

.admin-content::-webkit-scrollbar{
    width:6px;
}

.admin-content::-webkit-scrollbar-thumb{
    background:#c8a96b;
    border-radius:10px;
}
/* ================= AJUSTE INPUT ESTOQUE ADMIN ================= */

.admin-stock-control{
    align-items:center;
}

.admin-stock-control input{
    max-width:80px;
    height:48px;
    text-align:center;
    font-weight:bold;
}

.admin-stock-control button{
    flex:1;
    height:48px;
}
/* ================= RELATÓRIO DE VENDAS ================= */

.sales-report{
    background:#10271f;
    border:1px solid rgba(200,169,107,.4);
    border-radius:14px;
    padding:16px;
    text-align:left;
}

.sales-report p{
    margin-bottom:10px;
    color:white;
}

.sales-report strong{
    color:#c8a96b;
}
/* ================= STATUS ESTOQUE ADMIN ================= */

.admin-stock-status{
    margin:10px 0;
    font-weight:bold;
    font-size:14px;
}
/* ================= ALERTA ESTOQUE BAIXO ================= */

.low-stock-alert{
    background:#10271f;
    border:1px solid rgba(255,193,7,.6);
    border-radius:14px;
    padding:14px;
    text-align:left;
}

.low-stock-alert p{
    margin-bottom:8px;
}

.low-stock-alert strong{
    color:#c8a96b;
}
/* ================= CABEÇALHO PAINEL ================= */

.admin-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

/* MOBILE */

@media(max-width:768px){

    .admin-header{
        flex-direction:column;
    }

}
/* ================= NOTIFICAÇÃO TOAST ================= */

.toast{
    position:fixed;
    right:25px;
    bottom:25px;

    min-width:260px;
    max-width:340px;

    padding:16px 20px;

    background:#10271f;
    color:white;

    border:1px solid #c8a96b;
    border-radius:14px;

    box-shadow:0 10px 30px rgba(0,0,0,.45);

    font-weight:bold;
    line-height:22px;

    opacity:0;
    transform:translateY(20px);

    pointer-events:none;

    transition:.35s;

    z-index:9999;
}

.toast.active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:768px){
    .toast{
        left:18px;
        right:18px;
        bottom:18px;
        max-width:none;
        text-align:center;
    }
}
/* ================= ANIMAÇÕES GERAIS ================= */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(22px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}

/* ENTRADA SUAVE DAS SEÇÕES */

.benefits-image,
.best-sellers,
.products,
.footer{
    animation:fadeUp .7s ease both;
}

.home-banner .banner-btn{
    animation:fadeUp .8s ease both;
    animation-delay:.85s;
}

/* CARDS MAIS VIVOS */

.product-card,
.best-card,
.admin-order,
.admin-stock-item,
.sales-report,
.low-stock-alert{
    transition:.35s ease;
}

/* hover definido individualmente em cada seletor acima */

/* BOTÕES COM SENSAÇÃO DE CLIQUE */

button,
.banner-btn,
.send-proof-btn,
.whatsapp-contact{
    transition:.3s ease;
}

button:active,
.banner-btn:active,
.send-proof-btn:active{
    transform:scale(.96);
}

/* MODAIS ABRINDO SUAVEMENTE */

.modal-content,
.checkout-content,
.login-content,
.success-content,
.admin-content{
    animation:fadeUp .35s ease both;
}

/* FUNDO DOS MODAIS */

.modal,
.checkout-modal,
.login-modal,
.success-modal{
    animation:fadeIn .25s ease both;
}

/* CARRINHO MAIS SUAVE */

.cart-sidebar{
    transition:right .45s ease;
}

/* TOAST MAIS ELEGANTE */

.toast.active{
    animation:fadeUp .35s ease both;
}

/* TOAST LOGIN */

.toast--login{
    border-color:#f0d080;
    background:linear-gradient(135deg,#0f2219,#1c3d2a);
    box-shadow:0 10px 40px rgba(200,169,107,.3);
    font-size:15px;
}

.toast--login strong{
    color:#f0d080;
}

/* RESPEITA USUÁRIOS QUE REDUZEM MOVIMENTO */

@media (prefers-reduced-motion: reduce){
    *{
        animation:none !important;
        transition:none !important;
    }
}
/* ================= PRODUTOS EM CARROSSEL ================= */

.product-category{
    margin-bottom:60px;
}

.product-category:last-child{
    margin-bottom:0;
}

.product-category > h3{
    color:#c8a96b;
    font-size:20px;
    font-weight:bold;
    margin-bottom:22px;
    padding-left:16px;
    border-left:3px solid #c8a96b;
    letter-spacing:.8px;
    text-transform:uppercase;
}

.product-carousel{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:14px;
    padding-right:20px;
    -webkit-overflow-scrolling:touch;
}

.product-carousel .product-card{
    flex:0 0 270px;
    scroll-snap-align:start;
}

.product-carousel::-webkit-scrollbar{
    height:5px;
}

.product-carousel::-webkit-scrollbar-thumb{
    background:rgba(200,169,107,.5);
    border-radius:10px;
}

.product-carousel::-webkit-scrollbar-track{
    background:rgba(255,255,255,.05);
    border-radius:10px;
}

@media(max-width:768px){

    .product-carousel{
        gap:14px;
        padding-bottom:18px;
        padding-right:14px;
    }

    .product-carousel .product-card{
        flex:0 0 230px;
    }

}
/* ================= AVALIAÇÕES DOS CLIENTES ================= */

.reviews{
    padding:80px 60px;
    background:#10271f;
    text-align:center;
    border-top:2px solid #c8a96b;
}

.reviews h2{
    color:#c8a96b;
    font-size:38px;
    margin-bottom:14px;
}

.review-summary-bar{
    color:#c8a96b;
    font-size:17px;
    font-weight:500;
    margin-bottom:12px;
    letter-spacing:.4px;
    min-height:1em;
}

.review-summary-bar small{
    font-size:14px;
    color:rgba(200,169,107,0.75);
}

.reviews-subtitle{
    max-width:620px;
    margin:0 auto 35px;
    color:rgba(255,255,255,.82);
    font-weight:300;
    font-size:16px;
    line-height:1.85;
}

.reviews-summary{
    display:inline-block;
    background:#071b14;
    border:1px solid rgba(200,169,107,.45);
    border-radius:18px;
    padding:18px 30px;
    margin-bottom:40px;
}

.reviews-summary span{
    display:block;
    color:#c8a96b;
    font-size:24px;
    letter-spacing:3px;
    margin-bottom:6px;
}

.reviews-summary strong{
    display:block;
    font-size:34px;
    color:white;
}

.reviews-summary p{
    color:#c8a96b;
    margin-top:6px;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.review-card{
    background:#071b14;
    border:1px solid rgba(200,169,107,.45);
    border-radius:18px;
    padding:25px;
    text-align:left;
    transition:.35s ease;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(200,169,107,.25);
}

.review-card--intro{
    grid-column:1 / -1;
    max-width:480px;
    margin:0 auto;
}

.review-intro-card{
    grid-column:1 / -1;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:10px;
    padding:28px 32px;
    background:rgba(200,169,107,0.06);
    border:1px dashed rgba(200,169,107,0.35);
    border-radius:16px;
}

.review-intro-star{
    font-size:30px;
    color:#c8a96b;
    line-height:1;
}

.review-intro-card strong{
    color:#c8a96b;
    font-size:15px;
    letter-spacing:0.4px;
}

.review-intro-card p{
    color:rgba(255,255,255,0.6);
    font-size:13px;
    line-height:20px;
    max-width:340px;
    margin:0;
}

.review-stars{
    color:#c8a96b;
    letter-spacing:3px;
    margin-bottom:16px;
}

.review-card p{
    color:white;
    line-height:26px;
    margin-bottom:18px;
}

.review-card strong{
    color:#c8a96b;
}

/* MOBILE */

@media(max-width:768px){

    .reviews{
        padding:60px 18px;
    }

    .reviews h2{
        font-size:30px;
    }

    .reviews-grid{
        display:flex;
        gap:16px;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        padding-bottom:18px;
    }

    .review-card{
        min-width:260px;
        scroll-snap-align:start;
    }

    .review-intro-card{
        min-width:260px;
        scroll-snap-align:start;
        grid-column:auto;
    }

}

/* Botão CTA Avaliar Pedido (Parte B) */

.reviews-cta{
    margin-top:36px;
    text-align:center;
}

.reviews-cta-btn{
    padding:13px 32px;
    background:transparent;
    border:1px solid rgba(200,169,107,.6);
    border-radius:30px;
    color:#c8a96b;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    cursor:pointer;
    transition:.3s;
}

.reviews-cta-btn:hover{
    background:rgba(200,169,107,.12);
    border-color:#c8a96b;
}

/* ================= INFORMAÇÕES RÁPIDAS ================= */

.quick-info{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;

    padding:60px;
    background:#10271f;
}

.quick-card{
    background:#071b14;

    border:1px solid rgba(200,169,107,.4);
    border-radius:18px;

    padding:25px;

    text-align:center;

    transition:.35s ease;
}

.quick-card:hover{
    transform:translateY(-8px);

    box-shadow:0 0 25px rgba(200,169,107,.2);
}

.quick-icon{
    font-size:32px;
    margin-bottom:12px;
    color:#c8a96b;
}

.quick-card h3{
    color:#c8a96b;
    margin-bottom:10px;
}

.quick-card p{
    color:white;
    line-height:24px;
}

/* MOBILE */

@media(max-width:768px){

    .quick-info{
        grid-template-columns:repeat(2,1fr);
        padding:30px 18px;
    }

    .quick-card{
        padding:20px 12px;
    }

    .quick-card h3{
        font-size:16px;
    }

    .quick-card p{
        font-size:13px;
        line-height:20px;
    }

}
/* ================= LOGIN PREMIUM ================= */

.login-premium{
    position:absolute;
    inset:0;
    margin:auto;
    height:fit-content;
    width:calc(100% - 32px);
    max-width:420px;
    box-sizing:border-box;
    background:linear-gradient(160deg,#0f2318,#071b14);
    border:1px solid rgba(200,169,107,.38);
    border-radius:24px;
    padding:36px 28px 28px;
    box-shadow:0 20px 60px rgba(0,0,0,.55);
    max-height:90vh;
    overflow-y:auto;
}

.login-premium h2{
    color:#c8a96b;
    font-size:22px;
    letter-spacing:.5px;
    margin-bottom:8px;
}

.login-icon{
    width:72px;
    height:72px;

    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,rgba(200,169,107,.22),rgba(200,169,107,.06));
    border:1px solid rgba(200,169,107,.45);

    font-size:32px;
    box-shadow:0 4px 20px rgba(200,169,107,.15);
}

.login-subtitle{
    color:rgba(255,255,255,.55);
    line-height:22px;
    font-size:13px;
    margin-bottom:22px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(200,169,107,.12);
}

.login-note{
    display:block;
    margin-top:16px;
    color:rgba(255,255,255,.45);
    font-size:11px;
    line-height:18px;
    letter-spacing:.2px;
    text-align:center;
}

.login-benefits{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-bottom:20px;
    padding:12px;
    background:rgba(200,169,107,.06);
    border:1px solid rgba(200,169,107,.15);
    border-radius:12px;
}

.login-benefit-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
    flex:1;
    color:rgba(255,255,255,.5);
    font-size:11px;
    text-align:center;
    letter-spacing:.2px;
}

.login-benefit-item svg{
    color:#c8a96b;
}

.input-label{
    display:block;
    font-size:11px;
    color:rgba(255,255,255,.4);
    margin-bottom:6px;
    letter-spacing:.4px;
    text-transform:uppercase;
}

#loginModal input.input-error{
    border-color:rgba(255,100,100,.6);
    box-shadow:0 0 0 3px rgba(255,100,100,.08);
}
@media(max-width:480px){
    .login-premium{
        padding:24px 16px 20px;
    }
}

/* ================= LOGIN MODAL — REFINAMENTOS VISUAIS ================= */

/* Animação de entrada */
@keyframes loginSlideUp{
    from{ opacity:0; transform:translateY(18px) scale(.97); }
    to  { opacity:1; transform:translateY(0)    scale(1);   }
}
#loginModal .login-premium{
    animation:loginSlideUp .28s cubic-bezier(.22,1,.36,1) both;
}

/* Marca RA (substitui ícone genérico) */
.login-ra-mark{
    font-size:24px;
    font-weight:900;
    color:#c8a96b;
    letter-spacing:3px;
    font-style:italic;
    line-height:1;
}

/* Label acima dos benefícios */
.benefit-label{
    font-size:11px;
    color:rgba(255,255,255,.3);
    text-transform:uppercase;
    letter-spacing:.4px;
    margin-bottom:8px;
    text-align:center;
}

/* Grupo label + input-wrap */
.input-group{
    margin-bottom:12px;
}
.input-group .input-label{
    margin-bottom:6px;
}

/* Wrapper do campo com ícone */
.input-wrap{
    position:relative;
    display:flex;
    align-items:center;
}
.input-wrap .input-icon{
    position:absolute;
    left:14px;
    color:rgba(200,169,107,.45);
    pointer-events:none;
    flex-shrink:0;
    z-index:1;
}

/* Inputs dentro do wrapper: padding esquerdo para o ícone */
#loginModal .input-wrap > input{
    padding-left:42px;
    margin-bottom:0;
    width:100%;
}
/* Inputs de senha ganham padding direito para o botão olho */
#loginModal .input-wrap > input[type="password"]{
    padding-right:44px;
}

/* Botão mostrar/ocultar senha */
.login-content .show-pass-btn{
    position:absolute;
    right:12px;
    width:auto;
    padding:4px;
    background:none;
    border:none;
    border-radius:0;
    color:rgba(255,255,255,.25);
    font-weight:normal;
    cursor:pointer;
    display:flex;
    align-items:center;
    transition:color .2s ease;
}
.login-content .show-pass-btn:hover{
    color:rgba(200,169,107,.7);
    transform:none;
    box-shadow:none;
}

/* Links do modal (substitui inline styles) */
.login-content .login-link{
    width:auto;
    padding:0;
    background:none;
    border:none;
    border-radius:0;
    color:#c8a96b;
    font-size:.78rem;
    font-weight:normal;
    letter-spacing:.03em;
    text-decoration:underline;
    cursor:pointer;
    font-family:inherit;
    box-shadow:none;
}
.login-content .login-link:hover{
    transform:none;
    box-shadow:none;
    opacity:.8;
}

/* Loading state no botão de ação */
#saveLogin{
    position:relative;
}
@keyframes loginSpin{
    to{ transform:translateY(-50%) rotate(360deg); }
}
#saveLogin.loading{
    pointer-events:none;
    opacity:.78;
}
#saveLogin.loading::after{
    content:'';
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    width:16px;
    height:16px;
    border:2px solid rgba(7,27,20,.3);
    border-top-color:rgba(7,27,20,.85);
    border-radius:50%;
    animation:loginSpin .6s linear infinite;
}

/* ================= HORÁRIOS ================= */

.business-hours{
    padding:80px 20px;
    background:#10271f;
    text-align:center;
}

.business-hours h2{
    color:#c8a96b;
    font-size:38px;
    margin-bottom:12px;
}

.hours-subtitle{
    color:white;
    margin-bottom:35px;
}

.hours-card{
    max-width:650px;
    margin:auto;

    background:#071b14;

    border:1px solid rgba(200,169,107,.45);
    border-radius:18px;

    overflow:hidden;
}

.hour-row{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 25px;

    border-bottom:1px solid rgba(200,169,107,.15);
}

.hour-row:last-child{
    border-bottom:none;
}

.hour-row span{
    color:white;
    font-weight:600;
}

.hour-row strong{
    color:#c8a96b;
}

.closed strong{
    color:#ff6b6b;
}

.hour-row:hover{
    background:rgba(200,169,107,.05);
}

/* MOBILE */

@media(max-width:768px){

    .business-hours h2{
        font-size:30px;
    }

    .hour-row{
        padding:16px;
    }

}
/* ================= QUICK INFO EXPANSÍVEL ================= */

.quick-expand{
    cursor:pointer;
}

.quick-details{
    display:none;
    margin-top:16px;
    padding-top:14px;
    border-top:1px solid rgba(200,169,107,.35);
}

.quick-details div{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-bottom:8px;
    font-size:13px;
}

.quick-details span{
    color:white;
}

.quick-details strong{
    color:#c8a96b;
}

.quick-expand.active .quick-details{
    display:block;
}

/* Card DEPOIMENTOS — conteúdo dinâmico (Parte C) */

.quick-reviews-dynamic{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:5px;
    justify-content:flex-start;
}

.quick-reviews-stars{
    font-size:20px;
    letter-spacing:3px;
    color:#c8a96b;
    margin-bottom:2px;
}

.quick-reviews-dynamic p{
    color:rgba(255,255,255,.65);
    font-size:12px;
    margin:0;
}

/* Botão VER AVALIAÇÕES dentro do card (Parte D) */

.quick-ver-avaliacoes{
    display:block;
    margin-top:14px;
    padding:8px 16px;
    background:transparent;
    border:1px solid rgba(200,169,107,.45);
    border-radius:20px;
    color:#c8a96b;
    font-size:12px;
    font-weight:700;
    text-align:center;
    text-decoration:none;
    letter-spacing:.4px;
    transition:.2s;
}

.quick-ver-avaliacoes:hover{
    background:rgba(200,169,107,.12);
}

/* ================= HORÁRIOS DENTRO DO CARD ================= */

.hours-mini-table{
    background:#071b14;
    border:1px solid rgba(200,169,107,.45);
    border-radius:14px;
    overflow:hidden;
}

.hours-mini-table div{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 8px;

    border-bottom:1px solid rgba(200,169,107,.15);
}

.hours-mini-table div:last-child{
    border-bottom:none;
}

.hours-mini-table span{
    color:white;
    font-weight:bold;
    font-size:12px;
}

.hours-mini-table strong{
    color:#c8a96b;
    font-size:12px;
}

.hours-mini-table .closed-hour{
    color:#ff6b6b;
}
/* ================= PAGAMENTOS DENTRO DO CARD ================= */

.payment-mini-list{
    background:#071b14;
    border:1px solid rgba(200,169,107,.45);
    border-radius:14px;
    overflow:hidden;
}

.payment-mini-list div{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;

    padding:13px 8px;

    border-bottom:1px solid rgba(200,169,107,.15);
}

.payment-mini-list div:last-child{
    border-bottom:none;
}

.payment-mini-list i{
    color:#c8a96b;
    font-size:22px;
}

.payment-mini-list span{
    color:white;
    font-weight:bold;
    font-size:12px;
}
/* ================= ENTREGA DENTRO DO CARD ================= */

.delivery-mini-list{
    background:#071b14;
    border:1px solid rgba(200,169,107,.45);
    border-radius:14px;
    overflow:hidden;
}

.delivery-mini-list div{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:10px;

    padding:10px 8px;

    border-bottom:1px solid rgba(200,169,107,.15);
}

.delivery-mini-list div:last-child{
    border-bottom:none;
}

.delivery-mini-list span{
    color:white;
    font-weight:bold;
    font-size:12px;
}

.delivery-mini-list strong{
    color:#c8a96b;
    font-size:12px;
    text-align:right;
}
/* ================= AJUSTE PROPORÇÃO QUICK INFO ================= */

.quick-info{
    align-items:start;
}

.quick-card{
    min-height:150px;
}

.quick-card.active{
    min-height:auto;
}
/* ================= FUNCIONAMENTO ================= */

.store-status{
    grid-column:1 / -1;

    text-align:center;

    margin-top:10px;
    padding:18px;

    background:#071b14;

    border:1px solid rgba(200,169,107,.45);
    border-radius:18px;
}

.store-status span{
    display:block;

    color:#c8a96b;

    font-size:18px;
    font-weight:600;

    margin-bottom:8px;
}

/* FECHADO */

.store-status strong{
    color:#ff4d4d;

    font-size:22px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;
}

/* ABERTO */

.store-status strong.aberto{
    color:#7CFF8A;
}
/* ================= AVALIAÇÕES DENTRO DO CARD ================= */

.review-mini-list{
    background:#071b14;
    border:1px solid rgba(200,169,107,.45);
    border-radius:14px;
    overflow:hidden;
}

.review-mini-list div{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;

    padding:13px 8px;

    border-bottom:1px solid rgba(200,169,107,.15);
}

.review-mini-list div:last-child{
    border-bottom:none;
}

.review-mini-list strong{
    color:#c8a96b;
    font-size:15px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.review-mini-list span{
    color:white;
    font-size:12px;
    font-weight:bold;
}
/* ================= LOCALIZAÇÃO ================= */

.location-section{
    padding:80px 60px;
    background:#071b14;
    text-align:center;
}

.location-section h2{
    color:#c8a96b;
    font-size:38px;
    margin-bottom:14px;
}

.location-subtitle{
    color:rgba(255,255,255,0.82);
    font-size:15px;
    line-height:28px;
    margin-bottom:35px;
}

.location-subtitle-hl{
    display:block;
    font-weight:600;
    font-size:18px;
    color:white;
    margin-bottom:8px;
    letter-spacing:.1px;
}

.location-subtitle-body{
    display:block;
    font-weight:300;
    font-size:15px;
    color:rgba(255,255,255,.68);
    line-height:1.75;
}

.location-card{
    max-width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:28px;

    background:#10271f;
    border:1px solid rgba(200,169,107,.45);
    border-radius:20px;

    padding:24px;
}

.location-info{
    text-align:left;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.location-info h3{
    color:#c8a96b;
    font-size:26px;
    margin-bottom:18px;
    text-align:center;
    width:100%;
}

.location-info p{
    color:rgba(255,255,255,.7);
    line-height:24px;
    margin-bottom:25px;
}

.location-detail{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:20px;
}

.location-detail svg{
    flex-shrink:0;
    margin-top:2px;
}

.location-detail strong{
    display:block;
    color:#c8a96b;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.7px;
    margin-bottom:5px;
}

.location-detail p{
    color:rgba(255,255,255,.75);
    line-height:22px;
    margin-bottom:2px;
    font-size:14px;
}

.location-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:8px;
}

.map-btn{
    display:inline-flex;
    align-items:center;
    padding:13px 20px;
    background:#c8a96b;
    color:#071b14;
    text-decoration:none;
    font-weight:bold;
    border-radius:30px;
    font-size:14px;
    transition:.3s ease;
}

.map-btn:hover{
    background:#f0d080;
    transform:translateY(-2px);
}

.map-btn-wa{
    display:inline-flex;
    align-items:center;
    padding:13px 20px;
    background:#25D366;
    color:#071b14;
    text-decoration:none;
    font-weight:bold;
    border-radius:30px;
    font-size:14px;
    transition:.3s ease;
}

.map-btn-wa:hover{
    background:#20c55e;
    transform:translateY(-2px);
}

.map-box iframe{
    width:100%;
    height:350px;
    border:0;
    border-radius:16px;
}

/* MOBILE */

@media(max-width:768px){

    .location-section{
        padding:60px 18px;
    }

    .location-section h2{
        font-size:30px;
    }

    .location-card{
        grid-template-columns:1fr;
        padding:18px;
    }

    .location-info{
        text-align:left;
        align-items:flex-start;
    }

    .location-info h3{
        width:100%;
        text-align:center;
    }

    .location-actions{
        justify-content:flex-start;
    }

    .map-box iframe{
        height:240px;
    }

}
/* ================= SCROLL FAVORITOS ================= */

#favoritesList{
    flex:1;
    min-height:0;
    overflow-y:auto;
    padding-right:6px;
}

#favoritesList::-webkit-scrollbar{
    width:6px;
}

#favoritesList::-webkit-scrollbar-thumb{
    background:#c8a96b;
    border-radius:10px;
}
/* ================= SCROLL PEDIDOS ================= */

#ordersList{
    flex:1;
    min-height:0;
    overflow-y:auto;
    padding-right:6px;
}

#ordersList::-webkit-scrollbar{
    width:6px;
}

#ordersList::-webkit-scrollbar-thumb{
    background:#c8a96b;
    border-radius:10px;
}
/* ================= MODAIS COM ROLAGEM INTERNA ================= */

#ordersModal .login-content{
    display:flex;
    flex-direction:column;
    max-height:calc(100vh - 40px);
    margin-top:20px;
    margin-bottom:20px;
    overflow:hidden;
}

#favoritesModal .login-content{
    display:flex;
    flex-direction:column;
    max-height:calc(100vh - 40px);
    margin-top:20px;
    margin-bottom:20px;
    overflow:hidden;
}

/* ================= COMUNIDADE & NOVIDADES ================= */

.community-section{
    padding:80px 60px;
    background:#071b14;
    text-align:center;
    border-top:2px solid #c8a96b;
}

.community-section h2{
    color:#c8a96b;
    font-size:38px;
    margin-bottom:14px;
}

.community-subtitle{
    color:rgba(255,255,255,.78);
    font-size:16px;
    font-weight:300;
    line-height:1.8;
    max-width:580px;
    margin:0 auto 50px;
    letter-spacing:.1px;
}

.community-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.community-card{
    background:#10271f;
    border:1px solid rgba(200,169,107,.45);
    border-radius:18px;
    padding:30px 22px;
    text-align:center;
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
}

.community-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(200,169,107,.2);
}

.community-card-icon{
    font-size:36px;
}

.community-card h3{
    color:#c8a96b;
    font-size:18px;
    line-height:26px;
}

.community-card p{
    color:rgba(255,255,255,0.82);
    line-height:28px;
    font-size:15px;
    flex:1;
}

.community-instagram-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:8px;
    padding:12px 24px;
    background:#c8a96b;
    color:#071b14;
    text-decoration:none;
    font-weight:bold;
    font-size:13px;
    border-radius:30px;
    transition:.3s;
}

.community-instagram-btn:hover{
    background:#e8d5a0;
    transform:scale(1.04);
}

/* MOBILE */

@media(max-width:768px){

    .community-section{
        padding:60px 18px;
    }

    .community-section h2{
        font-size:30px;
    }

    .community-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:16px;
    }

    .community-card{
        padding:22px 16px;
    }

}

@media(max-width:480px){

    .community-grid{
        grid-template-columns:1fr;
    }

}
/* ================= WHATSAPP ICON SVG ================= */

.whatsapp-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.whatsapp-icon svg{
    display:block;
}

/* ================= LOGIN TABS ================= */

.login-tabs{
    display:flex;
    background:rgba(0,0,0,.3);
    border-radius:12px;
    padding:4px;
    gap:4px;
    margin-bottom:22px;
}

.login-tab{
    flex:1;
    padding:10px 14px;
    border:none;
    border-radius:8px;
    background:transparent;
    color:rgba(255,255,255,.45);
    font-weight:bold;
    font-size:14px;
    cursor:pointer;
    transition:all .25s ease;
    letter-spacing:.3px;
}

.login-tab.active{
    background:#c8a96b;
    color:#071b14;
    box-shadow:0 2px 10px rgba(200,169,107,.3);
}

.login-tab:hover:not(.active){
    color:rgba(255,255,255,.7);
}

#loginTitle{
    font-size:20px;
    margin-bottom:8px;
}

/* ================= ADMIN KPI GRID ================= */

.admin-kpi-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-bottom:22px;
}

.admin-kpi-card{
    background:#071b14;
    border:1px solid rgba(200,169,107,.3);
    border-radius:14px;
    padding:16px 10px;
    text-align:center;
}

.admin-kpi-icon{
    color:#c8a96b;
    margin-bottom:8px;
    display:flex;
    justify-content:center;
}

.admin-kpi-value{
    font-size:22px;
    font-weight:bold;
    color:white;
    margin-bottom:4px;
    line-height:1.2;
}

.admin-kpi-small{
    font-size:13px;
}

.admin-kpi-label{
    font-size:11px;
    color:#c8a96b;
    text-transform:uppercase;
    letter-spacing:.6px;
}

.admin-kpi-alert-card{
    border-color:rgba(255,193,7,.35);
}

.admin-kpi-alert-value{
    color:#ffc107;
}

@media(max-width:768px){
    .admin-kpi-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ================= ADMIN SECTION CARDS ================= */

.admin-section-card{
    background:#071b14;
    border:1px solid rgba(200,169,107,.25);
    border-radius:16px;
    padding:18px;
    margin-bottom:16px;
}

.admin-section-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    color:#c8a96b;
    font-size:14px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.admin-section-header svg{
    flex-shrink:0;
}

.admin-refresh-btn{
    margin-left:auto;
    padding:5px 12px;
    background:transparent;
    border:1px solid rgba(200,169,107,.4);
    border-radius:20px;
    color:#c8a96b;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
    letter-spacing:.3px;
    transition:.2s;
}

.admin-refresh-btn:hover{
    background:rgba(200,169,107,.12);
}

/* ================= RODAPÉ 4 COLUNAS ================= */

.footer-content{
    max-width:1200px;
    margin:auto;
    padding:0 30px 50px;
    display:grid;
    grid-template-columns:1.8fr 1.3fr 1fr 1.3fr;
    gap:40px;
}

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:14px;
    color:#d7d7d7;
    text-decoration:none;
    line-height:1.65;
    font-size:14px;
    letter-spacing:.15px;
    transition:color .25s;
}

.footer-contact-item:hover{
    color:#c8a96b;
}

.footer-contact-item svg{
    flex-shrink:0;
    margin-top:3px;
    color:#c8a96b;
}

.footer-social{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-social-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 18px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    font-size:13px;
    letter-spacing:.6px;
    transition:transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

.footer-social-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 24px rgba(0,0,0,.4);
    opacity:.92;
}

.footer-whatsapp{
    background:#25D366;
    color:#071b14;
}

.footer-instagram{
    background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    color:white;
}

@media(max-width:900px){
    .footer-content{
        grid-template-columns:1fr 1fr;
        gap:30px;
    }
}

@media(max-width:600px){
    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
        gap:28px;
    }
    .footer-brand img{
        margin:0 auto 15px;
        display:block;
    }
    .footer-contact-item{
        justify-content:center;
    }
    .footer-links{
        align-items:center;
    }
    .footer-social{
        align-items:center;
    }
}

/* ================= AVALIAÇÕES — AVATAR ================= */

.review-quote{
    font-size:52px;
    color:rgba(200,169,107,.2);
    font-family:Georgia,serif;
    line-height:1;
    margin-bottom:-8px;
    display:block;
}

.review-author{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:16px;
    padding-top:14px;
    border-top:1px solid rgba(200,169,107,.15);
}

.review-avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    background:linear-gradient(135deg,#c8a96b,#f0d080);
    color:#071b14;
    font-weight:bold;
    font-size:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.review-author > div strong{
    display:block;
    color:#c8a96b;
    font-size:14px;
}

.review-author > div span{
    font-size:12px;
    color:rgba(255,255,255,.4);
}

.review-card p{
    margin-bottom:0;
}

/* ================= COMUNIDADE ÍCONES SVG ================= */

.community-card-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:0;
}

.community-icon-promo{
    background:rgba(255,193,7,.12);
}

.community-icon-delivery{
    background:rgba(37,211,102,.1);
}

.community-icon-orders{
    background:rgba(200,169,107,.12);
}

.community-icon-instagram{
    background:rgba(220,39,67,.08);
}

/* ================= BADGES PREMIUM ================= */

/* Variantes para uso futuro — aplicar via classe no HTML */

.badge--mais-vendido{
    background:linear-gradient(135deg,#c8a96b,#f0d080);
    color:#071b14;
}

.badge--favorito{
    background:linear-gradient(135deg,#e05c8a,#f7a8c8);
    color:#fff;
}

.badge--novidade{
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    color:#fff;
}

.badge--personalizado{
    background:linear-gradient(135deg,#7c3aed,#a78bfa);
    color:#fff;
}

/* ================= BEST-GRID CARROSSEL SCROLLBAR (MOBILE) ================= */

@media(max-width:768px){

    .best-grid::-webkit-scrollbar{
        height:5px;
    }

    .best-grid::-webkit-scrollbar-thumb{
        background:rgba(200,169,107,.5);
        border-radius:10px;
    }

    .best-grid::-webkit-scrollbar-track{
        background:rgba(255,255,255,.05);
        border-radius:10px;
    }

}

/* ================= MODAL PRODUTO — RESPONSIVO ================= */

@media(max-width:600px){

    .modal-content{
        width:96%;
        margin:16px auto;
        max-height:96vh;
        border-radius:16px;
    }

    .modal-image-wrap{
        aspect-ratio:16/9;
        border-radius:16px 16px 0 0;
    }

    .modal-details{
        padding:16px 18px 22px;
    }

    .modal-content h2{
        font-size:16px;
    }

    .modal-content h3{
        font-size:22px;
    }

    .btn-add-cart{
        padding:15px;
        font-size:14px;
    }

}

/* ================= CARRINHO — MOBILE REFINADO ================= */

@media(max-width:768px){

    .cart-sidebar{
        width:100%;
        right:-100%;
    }

    .cart-sidebar.active{
        right:0;
    }

}

/* ================= BADGE HERDADO DO CARD NO MODAL ================= */

.modal-badge-area{
    position:absolute;
    top:14px;
    left:14px;
    z-index:2;
    pointer-events:none;
}

.modal-badge-area .modal-badge{
    display:inline-block;
    background:linear-gradient(135deg,#c8a96b,#f0d080);
    color:#071b14;
    padding:6px 13px;
    border-radius:30px;
    font-size:12px;
    font-weight:bold;
    letter-spacing:.4px;
    box-shadow:0 3px 12px rgba(200,169,107,.45);
}

/* ================= VARIAÇÕES DE PRODUTO NO MODAL ================= */

.modal-variants{
    display:none;
    margin:12px 0 6px;
    padding:14px 16px;
    background:rgba(200,169,107,.06);
    border:1px solid rgba(200,169,107,.18);
    border-radius:12px;
}

.modal-variants-label{
    display:block;
    font-size:11px;
    color:rgba(255,255,255,.45);
    text-transform:uppercase;
    letter-spacing:.6px;
    margin-bottom:10px;
}

.variants-options{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.variant-btn{
    padding:8px 18px;
    border:1.5px solid rgba(200,169,107,.45);
    border-radius:30px;
    background:transparent;
    color:rgba(255,255,255,.65);
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.2s ease;
    letter-spacing:.2px;
}

.variant-btn:hover{
    border-color:#c8a96b;
    color:#c8a96b;
}

.variant-btn.active{
    background:linear-gradient(135deg,#c8a96b,#f0d080);
    border-color:transparent;
    color:#071b14;
    box-shadow:0 3px 12px rgba(200,169,107,.3);
}

/* ================= FILTROS DE CATÁLOGO ================= */

.catalog-filters{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:40px;
}

.catalog-filter{
    padding:10px 22px;
    border:1.5px solid rgba(200,169,107,.4);
    border-radius:30px;
    background:transparent;
    color:rgba(255,255,255,.55);
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.25s ease;
    letter-spacing:.3px;
}

.catalog-filter:hover{
    border-color:#c8a96b;
    color:#c8a96b;
}

.catalog-filter.active{
    background:linear-gradient(135deg,#c8a96b,#f0d080);
    border-color:transparent;
    color:#071b14;
    box-shadow:0 3px 14px rgba(200,169,107,.35);
}

/* ================= GRID DE CATÁLOGO ================= */

.catalog-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    max-width:1200px;
    margin:0 auto;
}

.catalog-hidden{
    display:none !important;
}

@media(max-width:1024px){
    .catalog-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:700px){
    .catalog-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }
    .catalog-filters{
        gap:8px;
    }
    .catalog-filter{
        padding:8px 16px;
        font-size:13px;
    }
}

@media(max-width:400px){
    .catalog-grid{
        grid-template-columns:1fr;
    }
}

/* ================= QUERIDINHOS 4 COLUNAS — TABLET ================= */

@media(max-width:900px) and (min-width:769px){
    .best-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ================= REDESIGN MINHA CONTA ================= */

/* --- Perfil: cartão do cliente --- */
.ac-profile{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    background:linear-gradient(135deg,rgba(200,169,107,.18),rgba(200,169,107,.06));
    border:1px solid rgba(200,169,107,.38);
    border-radius:14px;
    margin-bottom:10px;
}
.ac-avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    background:linear-gradient(135deg,#c8a96b,#9a7a42);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:800;
    color:#071b14;
    flex-shrink:0;
    letter-spacing:1px;
}
.ac-profile-info{
    flex:1;
    overflow:hidden;
}
.ac-name{
    display:block;
    font-size:13px;
    font-weight:700;
    color:#c8a96b;
    letter-spacing:.4px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.ac-role{
    display:block;
    font-size:10px;
    color:rgba(200,169,107,.55);
    letter-spacing:.8px;
    text-transform:uppercase;
    margin-top:3px;
}

/* --- Estatísticas --- */
.ac-stats{
    display:flex;
    gap:5px;
    margin-bottom:12px;
}
.ac-stat{
    flex:1;
    text-align:center;
    padding:10px 4px;
    background:rgba(200,169,107,.05);
    border:1px solid rgba(200,169,107,.16);
    border-radius:10px;
    transition:border-color .25s;
}

.ac-stat:hover{
    border-color:rgba(200,169,107,.3);
}
.ac-stat-value{
    display:block;
    font-size:18px;
    font-weight:700;
    color:#c8a96b;
    line-height:1;
}
.ac-stat-label{
    display:block;
    font-size:9px;
    letter-spacing:.6px;
    text-transform:uppercase;
    letter-spacing:.5px;
    color:rgba(255,255,255,.3);
    margin-top:3px;
}

/* --- Barra de progresso melhorada --- */
.ac-progress-section{
    background:rgba(7,27,20,.85);
    border:1px solid rgba(200,169,107,.2);
    border-radius:12px;
    padding:12px 14px;
    margin-bottom:10px;
}
.ac-progress-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
}
.ac-progress-label{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.8px;
    color:rgba(255,255,255,.38);
}
.ac-progress-counter{
    font-size:12px;
    font-weight:700;
    color:#c8a96b;
}
.ac-progress-track{
    height:8px;
    background:rgba(200,169,107,.1);
    border-radius:99px;
    overflow:hidden;
    margin-bottom:8px;
    box-shadow:inset 0 1px 3px rgba(0,0,0,.2);
}
.ac-progress-fill{
    height:100%;
    background:linear-gradient(90deg,#8a6a30,#c8a96b,#f0d080);
    border-radius:99px;
    min-width:6px;
    transition:width .6s ease;
}
.ac-progress-hint{
    display:block;
    font-size:11px;
    color:rgba(255,255,255,.5);
    line-height:1.5;
}
.ac-progress-hint strong{
    color:#c8a96b;
}

/* --- Recompensas padronizadas --- */
.ac-tiers-title{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1.4px;
    color:rgba(200,169,107,.58);
    margin-bottom:7px;
    padding-left:2px;
}
.ac-tiers{
    display:flex;
    flex-direction:column;
    gap:5px;
    margin-bottom:4px;
}
.ac-tier{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 12px;
    border-radius:10px;
    border:1px solid transparent;
}
.ac-tier--available{
    background:rgba(200,169,107,.12);
    border-color:rgba(200,169,107,.42);
}
.ac-tier--next{
    background:rgba(7,27,20,.9);
    border:1px dashed rgba(200,169,107,.22);
}
.ac-tier--locked{
    background:rgba(255,255,255,.02);
    border-color:rgba(255,255,255,.05);
}
.ac-tier-info{
    flex:1;
}
.ac-tier-value{
    display:block;
    font-size:14px;
    font-weight:700;
}
.ac-tier--available .ac-tier-value,
.ac-tier--next .ac-tier-value{
    color:#c8a96b;
}
.ac-tier--locked .ac-tier-value{
    color:rgba(255,255,255,.22);
}
.ac-tier-sub{
    display:block;
    font-size:10px;
    color:rgba(255,255,255,.32);
    margin-top:2px;
}
.ac-tier--locked .ac-tier-sub{
    color:rgba(255,255,255,.16);
}
.ac-tier-badge{
    font-size:9px;
    font-weight:700;
    letter-spacing:.4px;
    text-transform:uppercase;
    padding:4px 8px;
    border-radius:99px;
    white-space:nowrap;
    flex-shrink:0;
}
.ac-tier--available .ac-tier-badge{
    background:rgba(200,169,107,.18);
    color:#c8a96b;
}
.ac-tier--next .ac-tier-badge{
    background:rgba(255,255,255,.04);
    color:rgba(255,255,255,.38);
}
.ac-tier--locked .ac-tier-badge{
    background:rgba(255,255,255,.03);
    color:rgba(255,255,255,.16);
}
.ac-max-unlocked{
    text-align:center;
    font-size:11px;
    color:#c8a96b;
    padding:8px 12px;
    background:rgba(200,169,107,.08);
    border-radius:8px;
    margin-bottom:4px;
    border:1px solid rgba(200,169,107,.2);
}

/* --- Separadores e seções --- */
.ac-section-head{
    display:none;
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:rgba(200,169,107,.55);
    padding:10px 0 5px;
    border-top:1px solid rgba(200,169,107,.1);
    margin-top:6px;
}
.ac-section-divider{
    display:none;
    height:1px;
    background:rgba(200,169,107,.1);
    margin:8px 0;
}
.ac-logged .ac-section-head{
    display:block;
}
.ac-logged .ac-section-divider{
    display:block;
}
.ac-logged #clienteSaudacao{
    display:none !important;
}

/* --- Botão sair discreto --- */
.ac-logged #logoutUser{
    opacity:.5;
    font-size:12px !important;
    padding:8px 0 !important;
}
.ac-logged #logoutUser:hover{
    opacity:.85;
}

/* --- Modal Fidelidade redesenhado --- */
.fid-modal-body{
    margin-top:16px;
}
.fid-section{
    margin-bottom:16px;
}
.fid-section-title{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1.2px;
    color:rgba(200,169,107,.55);
    margin-bottom:10px;
    padding-bottom:6px;
    border-bottom:1px solid rgba(200,169,107,.15);
}
.fid-rule{
    font-size:13px;
    color:rgba(255,255,255,.7);
    padding:6px 0;
    border-bottom:1px solid rgba(255,255,255,.05);
    line-height:1.5;
}
.fid-rule:last-child{
    border-bottom:none;
}
.fid-tiers{
    display:flex;
    flex-direction:column;
    gap:6px;
}
.fid-tier-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 14px;
    background:rgba(200,169,107,.07);
    border:1px solid rgba(200,169,107,.2);
    border-radius:10px;
}
.fid-tier-pts{
    font-size:13px;
    color:rgba(255,255,255,.55);
}
.fid-tier-reward{
    font-size:15px;
    font-weight:700;
    color:#c8a96b;
}
.fid-note{
    font-size:11px;
    color:rgba(255,255,255,.35);
    margin-top:12px;
    line-height:1.6;
    text-align:center;
}
