/**
 * Styles pour la page des nouveaux arrivages
 * Module: doli_new_products_page
 * Note: full-width, hero-banner et page-title sont gérés par %page-story-base dans custom.scss
 */

/* ===== LISTE DES ARRIVAGES ===== */
.arrivals-list {
    padding-bottom: 4rem;
}

/* ===== BLOC PRODUIT ===== */
.arrival-product-block + .arrival-product-block::before {
    content: '';
    display: block;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #42403d;
}

.arrival-product-block {
    margin-bottom: 2rem;
}


/* ===== HEADER PRODUIT ===== */
.product-header {
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 0.25rem;
}

.product-title a {
    color: #42403d;
    text-decoration: none;
}

.product-title a:hover {
    text-decoration: underline;
}

.arrival-date {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #42403d;
    text-transform: uppercase;
}

/* ===== GRILLE COMBINAISONS ===== */
.product-combinations {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.combination-col {
    width: 120px;
    text-align: center;
}

.combination-item {
    display: block;
    text-decoration: none;
    color: #7a756e;
    transition: opacity 0.2s ease;
}

.combination-item:hover {
    opacity: 0.8;
    color: #7a756e;
    text-decoration: none;
}

/* ===== IMAGE COMBINAISON ===== */
.combination-image {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
}

.combination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== TEXTE COMBINAISON ===== */
.combination-ref {
    font-size: 0.7rem;
    margin: 0.5rem 0 0;
}

.combination-name {
    font-size: 0.65rem;
    line-height: 1.4;
    margin: 0.15rem 0 0;
    text-transform: uppercase;
}

/* ===== ÉTAT VIDE ===== */
.arrivals-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #7a756e;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
    .product-title {
        font-size: 1.1rem;
    }

    .combination-col {
        width: 100px;
    }

    .combination-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 575.98px) {
    .combination-col {
        width: calc((100% - 1.5rem) / 2);
    }
}
