.home-loja{
    background:#f8fafc;
    padding:34px 0 50px;
}

.home-head{
    text-align:center;
    max-width:820px;
    margin:0 auto 24px;
}

.home-pill{
    display:inline-block;
    background:#fff7f2;
    color:#9a3412;
    border:1px solid #fed7aa;
    padding:8px 14px;
    border-radius:999px;
    font-weight:800;
    font-size:14px;
    margin-bottom:12px;
}

.home-head h1{
    font-size:38px;
    line-height:1.15;
    color:#111827;
    margin-bottom:12px;
}

.home-head p{
    color:#6b7280;
    font-size:18px;
    line-height:1.6;
}

.categorias-home{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin:24px 0 30px;
}

.categoria-btn{
    background:#fff;
    color:#111827;
    border:2px solid #fed7aa;
    padding:13px 18px;
    border-radius:18px;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.categoria-btn.active,
.categoria-btn:hover{
    background:#ff914d;
    color:#fff;
    border-color:#ff914d;
}

.grid-produtos-home{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
}

.produto-card-home{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.06);
    transition:.2s;
}

.produto-card-home:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 36px rgba(0,0,0,.10);
}

.produto-img-box{
    position:relative;
    width:100%;
    aspect-ratio: 9 / 16; /* 👈 retrato */
    background:#fff7f2;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.produto-img-box video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.produto-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.produto-info-home{
    padding:18px;
}

.produto-info-home small{
    color:#ff914d;
    font-weight:800;
}

.produto-info-home h3{
    font-size:20px;
    color:#111827;
    margin:8px 0;
}

.produto-desc{
    color:#6b7280;
    font-size:14px;
    line-height:1.5;
    min-height:42px;
}

.produto-footer{
    margin-top:16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.produto-footer strong{
    font-size:20px;
    color:#111827;
}

.btn-comprar{
    background:#ff914d;
    color:#fff;
    padding:11px 14px;
    border-radius:14px;
    text-decoration:none;
    font-weight:900;
    white-space:nowrap;
}

.sem-produtos{
    grid-column:1 / -1;
    background:#fff;
    border:1px dashed #d1d5db;
    border-radius:18px;
    padding:24px;
    text-align:center;
    color:#6b7280;
}

@media(max-width:1100px){
    .grid-produtos-home{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:768px){
    .home-loja{
        padding-top:22px;
    }

    .home-head h1{
        font-size:28px;
    }

    .home-head p{
        font-size:15px;
    }

     .categorias-home{
        display:grid;
        grid-template-columns:repeat(3, 1fr);
        gap:10px;
        justify-content:initial;
        overflow:visible;
    }

    .categoria-btn{
        width:100%;
        text-align:center;
        padding:10px 6px;
        font-size:13px;
        border-radius:12px;
    }

    .grid-produtos-home{
        grid-template-columns:repeat(2, 1fr);
        gap:14px;
    }

    .produto-img-box{
        height:145px;
        padding:12px;
    }

    .produto-info-home{
        padding:12px;
    }

    .produto-info-home h3{
        font-size:16px;
    }

    .produto-desc{
        display:none;
    }

    .produto-footer{
        flex-direction:column;
        align-items:stretch;
    }

    .btn-comprar{
        text-align:center;
        padding:10px;
    }

}

.produtos-grid{
    align-items:start;
}

.produto-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.produto-card video{
    width:100%;
    aspect-ratio:9 / 16;
    height:auto;
    object-fit:cover;
    display:block;
    background:#000;
}

.produto-card h3{
    padding:14px;
    text-align:center;
    font-size:18px;
    margin:0;
}

.videos-grid-modern{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
    align-items:start;
}

.video-card-modern{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.video-card-modern video{
    width:100%;
    aspect-ratio:9 / 16;
    height:auto !important;
    display:block;
    object-fit:cover;
    background:#000;
}

.video-card-body{
    padding:14px;
}

.video-card-body h3{
    margin:0 0 6px;
    font-size:18px;
}

.video-card-body p{
    margin:0;
    font-size:14px;
    line-height:1.4;
    color:#6b7280;
}

@media(max-width:768px){
    .videos-grid-modern{
        grid-template-columns:repeat(2, 1fr);
        gap:14px;
    }

    .video-card-modern{
        border-radius:18px;
    }

    .video-card-body{
        padding:10px;
    }

    .video-card-body h3{
        font-size:14px;
    }

    .video-card-body p{
        display:none;
    }
}