/* Category page */
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:24px;padding:24px 0}
.card{text-align:center;padding:18px;border-radius:12px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));border:1px solid rgba(212,175,55,0.04)}
.card img{border-radius:10px;height:200px;object-fit:cover;margin-bottom:12px;box-shadow:0 12px 30px rgba(0,0,0,0.4)}
.card h2{color:var(--light);font-size:1.05rem;margin:6px 0}
.card .price{color:var(--gold-2);font-weight:700;margin-bottom:10px}
.card .btn-primary{display:inline-block;padding:10px 18px;border-radius:10px;background:linear-gradient(135deg,var(--gold-2),var(--gold));color:var(--navy);font-weight:700;text-decoration:none}
/* ===== CATÉGORIES ===== */
.categories-section {
    padding: 20px 10%;
}
.categories-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.category-tile {
    min-width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-tile span {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 5px;
    font-weight: bold;
}
