/* Product detail */
.product-detail{display:flex;gap:36px;padding:48px 0;max-width:1100px;margin:0 auto;align-items:flex-start}
.product-detail > div:first-child{flex:0 0 460px}
.product-detail img{width:100%;border-radius:14px;object-fit:cover;height:460px;box-shadow:0 24px 60px rgba(0,0,0,0.6)}
.meta h1{font-size:2.2rem;color:var(--gold-2);margin-bottom:8px}
.meta .price{font-size:1.6rem;color:var(--light);font-weight:700;margin-bottom:16px}
.meta .description{color:var(--muted);margin-top:18px}
.qty-row{display:flex;align-items:center;gap:12px;margin-top:10px}
.qty-row input[type="number"]{width:90px;padding:8px;border-radius:8px;border:1px solid rgba(255,255,255,0.06);background:transparent;color:var(--light)}
.btn-primary{background:linear-gradient(135deg,var(--gold-2),var(--gold));color:var(--navy);padding:12px 18px;border-radius:10px;font-weight:800;display:inline-block;text-decoration:none}
.btn-primary:hover{transform:scale(1.02)}
/* ===== PRODUIT GRID ===== */
.products-section {
    padding: 20px 0;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    justify-content: center; /* ← ajoute juste ça */
}

.product-card {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: 0.2s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}
.product-card .price {
    color: #d62;
    font-size: 18px;
    font-weight: bold;
}
.product-card .btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 15px;
    background: black;
    color: white;
    border-radius: 6px;
}
