/*
 * ============================================================
 *  SECTION « NOS CUVÉES »
 *  Utilisée sur single-bouteille.php et single-cuvee.php.
 * ============================================================
 */

.section-cuvees {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(3rem, 6vh, 5rem) 0;
    max-width: 1200px;
    text-align: center;
}

.section-cuvees__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
    padding: 0 clamp(20px, 4vw, 80px);
}

.section-cuvees__titre {
    font-family: "Baskervville";
    font-weight: 400;
    font-size: clamp(1.5rem, 2.083vw, 2.5rem);
    line-height: var(--lh-heading);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-red);
}

.section-cuvees__sous-titre {
    font-size: clamp(0.8125rem, 0.938vw, 1.125rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin: 0;
}

.section-cuvees__lien {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.6em 1.75em;
    border: 1px solid currentColor;
    border-radius: var(--btn-radius);
    color: var(--color-red);
    font-size: clamp(0.6875rem, 0.729vw, 0.875rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.section-cuvees__lien:hover {
    background: var(--color-red);
    color: var(--color-white, #fff);
}

.section-cuvees__nav-wrap {
    position: relative;
}

.section-cuvees__carousel {
    margin: 0 clamp(20px, 4vw, 80px);
    overflow: hidden;
}

/* ── Flèches de navigation ───────────────────────────────── */
.sc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--color-red);
    background-color: white;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 1;
}

.sc-nav--prev { left: 0; }
.sc-nav--next { right: 0; }

.sc-nav::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-red);
    border-right: 2px solid var(--color-red);
    transition: border-color 0.2s ease;
}

.sc-nav--prev::after { transform: rotate(-135deg) translate(-2px, 2px); }
.sc-nav--next::after { transform: rotate(45deg) translate(-2px, 2px); }

.sc-nav:hover { background: var(--color-red); }
.sc-nav:hover::after { border-color: var(--color-white, #fff); }

.sc-nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

@media (max-width: 600px) {
    .sc-nav { display: none; }
}

/* ── Pagination dots ─────────────────────────────────────── */
.sc-cuvees-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.sc-cuvees-pagination .swiper-pagination-bullet {
    background: var(--color-red, currentColor);
    opacity: 0.25;
}

.sc-cuvees-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ── Cartes cuvée ────────────────────────────────────────── */
.sc-cuvee-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.sc-cuvee-card__media {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: clamp(260px, 32vh, 420px);
    margin-bottom: 1.5rem;
}

.sc-cuvee-card__media img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.sc-cuvee-card:hover .sc-cuvee-card__media img {
    transform: scale(var(--bottle-hover-scale));
}

.sc-cuvee-card__titre {
    margin: 0;
    font-family: "Baskervville";
    font-weight: 400;
    font-size: var(--bottle-card-title-size);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-red);
}

.sc-cuvee-card__sous-titre {
    margin: 0.4rem 0 0;
    font-size: var(--bottle-card-subtitle-size);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
}

.sc-cuvee-card__cta {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.75em 2em;
    background-color: var(--color-red);
    color: var(--color-white, #fff);
    font-size: clamp(0.6875rem, 0.729vw, 0.875rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--btn-radius);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sc-cuvee-card:hover .sc-cuvee-card__cta {
    background-color: var(--color-white, #fff);
    color: var(--color-red);
    border-color: var(--color-red);
}
