/* ====== LAYOUT GÉNÉRAL ====== */
.header-placeholder { 
    height: 78px; 
}

.main {
    min-height: calc(100vh - 320px);
}

/* ====== UTILITAIRES ====== */
.center { text-align: center; }

.row { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; 
}

.col { flex: 1; }

.card { 
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); 
    padding: 18px; 
    border-radius: var(--radius); 
    border: 1px solid rgba(212,175,55,0.06); 
}

.small { font-size: .9rem; }

.kicker { 
    color: var(--gold); 
    font-weight: 600; 
}

/* ====== SECTIONS GÉNÉRALES ====== */
section {
    text-align: center; 
    margin-bottom: 50px;
}

/* Texte centré pour présentation */
.presentation p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SLIDER ===== */
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-bottom: 40px;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== DOTS DE PAGINATION ===== */
.slider-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.4;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .active {
    opacity: 1;
}

/* ===== GRID PRODUITS ===== */
.products-section h2,
.categories-section h2 {
    text-align: center;
    margin-bottom: 25px;
}

.product-grid,
.categories-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Cartes centrées */
.product-card,
.category-tile {
    text-align: center;
}

/* Amélioration visuelle produits */
.product-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

.price {
    margin: 8px 0 12px;
    font-weight: bold;
    color: #222;
}

/* Catégories */
.category-tile img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.category-tile span {
    display: block;
    margin-top: 8px;
    font-weight: 600;
}
/* Force le centrage de la section nouveautés/promos */
.products-section,
.products-section h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
}
