/* ============================================================
   ACCORD METS & VINS — Bloc Premium GoExploria
   Carousel + Cartes Vins + Lightbox + Vidéo Modal + Réservation
   ============================================================ */

/* ---- Reset local ---- */
.amv-section *,
.amv-section *::before,
.amv-section *::after { box-sizing: border-box; }

/* ---- Wrapper principal ---- */
.amv-section {
    width: 100%;
    background: #08091a;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* ============================================================
   HERO BAND
   ============================================================ */
.amv-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 72px 20px 58px;
    overflow: hidden;
}

.amv-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.amv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,9,26,0.4) 0%, rgba(8,9,26,0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.amv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.amv-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 100px;
    padding: 7px 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 24px;
}

.amv-hero-title {
    font-size: clamp(28px, 4.5vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.amv-hero-title span {
    color: #d4af37;
    display: block;
    font-style: italic;
}

.amv-hero-subtitle {
    font-size: clamp(13px, 1.3vw, 16px);
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* Shimmer déco */
.amv-hero-shimmer {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #8b1a1a 20%, #d4af37 50%, #8b1a1a 80%, transparent 100%);
    background-size: 300% 100%;
    animation: amv-shimmer-anim 4s linear infinite;
}

@keyframes amv-shimmer-anim {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================================
   CAROUSEL MÉDIA
   ============================================================ */
.amv-carousel-section {
    position: relative;
    width: 100%;
    background: #040510;
}

.amv-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.amv-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    cursor: pointer;
    z-index: 1;
}

.amv-carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.amv-carousel-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.amv-carousel-slide > .amv-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Overlay cliquable */
.amv-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.amv-carousel-slide:hover .amv-slide-overlay {
    background: rgba(0,0,0,0.2);
}

/* Bouton play vidéo */
.amv-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(212,175,55,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 30px;
    line-height: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 40px rgba(212,175,55,0.45);
}

.amv-carousel-slide:hover .amv-play-btn {
    transform: scale(1.12);
    box-shadow: 0 14px 50px rgba(212,175,55,0.6);
}

/* Icône zoom images */
.amv-zoom-btn {
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.amv-carousel-slide:hover .amv-zoom-btn {
    opacity: 1;
    transform: scale(1.08);
}

/* Caption dégradé bas */
.amv-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 32px 28px;
    background: linear-gradient(to top, rgba(4,5,16,0.95) 0%, rgba(4,5,16,0.5) 50%, transparent 100%);
    z-index: 6;
    pointer-events: none;
}

.amv-slide-caption-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.amv-slide-caption-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(212,175,55,0.8);
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 20px;
    padding: 3px 10px;
    width: fit-content;
}

.amv-slide-title {
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

.amv-slide-sub {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    margin: 0;
    letter-spacing: 0.3px;
}

/* Flèches */
.amv-carousel-prev,
.amv-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background: rgba(8,9,26,0.65);
    border: 2px solid rgba(212,175,55,0.4);
    border-radius: 50%;
    color: #d4af37;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.amv-carousel-prev { left: 20px; }
.amv-carousel-next { right: 20px; }

.amv-carousel-prev:hover,
.amv-carousel-next:hover {
    background: rgba(212,175,55,0.25);
    border-color: #d4af37;
    transform: translateY(-50%) scale(1.1);
}

/* Dots */
.amv-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    background: #040510;
}

.amv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212,175,55,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.amv-dot.active {
    background: #d4af37;
    width: 26px;
    border-radius: 4px;
}

/* ============================================================
   SECTION VINS
   ============================================================ */
.amv-wines-section {
    padding: 72px 48px;
    background: #08091a;
}

.amv-wines-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.amv-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.amv-section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #d4af37;
    margin-bottom: 14px;
}

.amv-section-title {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
    line-height: 1.1;
}

.amv-section-subtitle {
    font-size: 15px;
    color: #94a3b8;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Grille */
.amv-wines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* Carte vin */
.amv-wine-card {
    background: #0d1229;
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.amv-wine-card:hover {
    transform: translateY(-9px);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.15);
}

.amv-wine-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a20 0%, #0d1229 100%);
}

.amv-wine-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amv-wine-card:hover .amv-wine-card-img img {
    transform: scale(1.08);
}

/* Badge type */
.amv-wine-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid;
}

.amv-wine-type-badge.rouge {
    background: rgba(139,26,26,0.7);
    border-color: rgba(192,57,43,0.6);
    color: #ff9999;
}

.amv-wine-type-badge.blanc {
    background: rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.5);
    color: #d4af37;
}

/* Région overlay */
.amv-wine-region {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0,0,0,0.72);
    color: rgba(255,255,255,0.82);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    max-width: calc(100% - 24px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* Corps carte */
.amv-wine-card-body {
    padding: 20px 18px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.amv-wine-name {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.amv-wine-grape {
    font-size: 12px;
    font-weight: 600;
    color: #d4af37;
    margin-top: 2px;
}

.amv-wine-desc {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.55;
    flex: 1;
    margin-top: 7px;
}

.amv-wine-stars {
    font-size: 13px;
    letter-spacing: 1px;
    color: #d4af37;
    margin-top: 8px;
}

.amv-wine-accord-line {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    margin-top: 4px;
}

.amv-wine-accord-line i { color: #d4af37; margin-right: 4px; }

/* Pied de carte */
.amv-wine-card-footer {
    padding: 14px 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
    gap: 10px;
}

.amv-wine-price {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.amv-wine-price-amount {
    font-size: 24px;
    font-weight: 900;
    color: #d4af37;
    line-height: 1;
}

.amv-wine-price-unit {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 2px;
}

.amv-wine-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 8px;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.amv-wine-reserve-btn:hover {
    background: #d4af37;
    color: #000000;
    border-color: #d4af37;
    transform: scale(1.04);
    box-shadow: 0 4px 18px rgba(212,175,55,0.3);
}

/* ============================================================
   RÉSERVATION VIN
   ============================================================ */
.amv-reservation-section {
    background: linear-gradient(135deg, #0d1229 0%, #1a0520 100%);
    border-top: 1px solid rgba(212,175,55,0.15);
    padding: 64px 40px;
}

.amv-reservation-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.amv-reservation-inner h3 {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.amv-reservation-inner h3 span { color: #d4af37; }

.amv-reservation-inner > p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 32px;
}

.amv-reservation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    text-align: left;
}

.amv-reservation-form input,
.amv-reservation-form select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 10px;
    padding: 13px 16px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    width: 100%;
}

.amv-reservation-form input::placeholder { color: rgba(255,255,255,0.3); }

.amv-reservation-form select option {
    background: #0d1229;
    color: #fff;
}

.amv-reservation-form input:focus,
.amv-reservation-form select:focus {
    border-color: rgba(212,175,55,0.55);
    background: rgba(212,175,55,0.04);
}

.amv-form-full { grid-column: 1 / -1; }

.amv-reservation-submit {
    grid-column: 1 / -1;
    padding: 15px;
    background: linear-gradient(135deg, #d4af37, #e8c84e);
    border: none;
    border-radius: 10px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.amv-reservation-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.35);
}

/* ============================================================
   LIGHTBOX IMAGE
   ============================================================ */
.amv-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.94);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.amv-lightbox.open { display: flex; }

.amv-lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}

.amv-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 36px;
    color: #d4af37;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: transform 0.25s ease;
    z-index: 10000;
}

.amv-lightbox-close:hover { transform: scale(1.2) rotate(90deg); }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.amv-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.93);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.amv-video-modal.open { display: flex; }

.amv-video-modal-inner {
    position: relative;
    width: min(960px, 90vw);
}

.amv-video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.7);
}

.amv-video-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.amv-video-modal-close {
    position: absolute;
    top: -46px;
    right: 0;
    font-size: 34px;
    color: #d4af37;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.25s ease;
    line-height: 1;
}

.amv-video-modal-close:hover { transform: scale(1.2) rotate(90deg); }

/* ============================================================
   SECTION À PROPOS — Description gauche + Image droite
   ============================================================ */
.amv-apropos-section {
    background: linear-gradient(135deg, #06071a 0%, #0d1229 55%, #06071a 100%);
    padding: 88px 48px;
    border-top: 1px solid rgba(212,175,55,0.1);
}

.amv-apropos-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.amv-apropos-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #d4af37;
    margin-bottom: 16px;
}

.amv-apropos-title {
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.amv-apropos-title .amv-gold { color: #d4af37; }

.amv-apropos-lead {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 36px;
}

/* Features list */
.amv-apropos-feats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.amv-apropos-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.amv-apropos-feat > i {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #d4af37;
    margin-top: 2px;
}

.amv-apropos-feat > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.amv-apropos-feat strong {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amv-apropos-feat span {
    font-size: 12px;
    color: #6b7fa0;
    line-height: 1.55;
}

/* Boutons */
.amv-apropos-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.amv-apropos-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    border: none;
}

.amv-apropos-btn.primary {
    background: linear-gradient(135deg, #8b1a1a, #c0392b);
    color: #ffffff;
}

.amv-apropos-btn.primary:hover {
    background: linear-gradient(135deg, #a31f1f, #d44040);
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(139,26,26,0.45);
}

.amv-apropos-btn.secondary {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.35);
    color: #d4af37;
}

.amv-apropos-btn.secondary:hover {
    background: rgba(212,175,55,0.2);
    border-color: #d4af37;
    transform: scale(1.03);
}

/* Côté image */
.amv-apropos-img-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.amv-apropos-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    aspect-ratio: 4 / 3;
}

.amv-apropos-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.amv-apropos-img-frame:hover img { transform: scale(1.04); }

/* Badge "Depuis 2008" sur l'image */
.amv-apropos-img-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(8,9,26,0.85);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 30px;
    padding: 7px 16px;
    font-size: 11px;
    font-weight: 800;
    color: #d4af37;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carte statistiques sous l'image */
.amv-apropos-stat-card {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #0d1229;
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 14px;
    padding: 20px 24px;
}

.amv-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.amv-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: #d4af37;
    line-height: 1;
}

.amv-stat-lbl {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
}

.amv-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}

/* ---- Responsive À Propos ---- */
@media (max-width: 1024px) {
    .amv-apropos-inner { grid-template-columns: 1fr; gap: 48px; }
    .amv-apropos-section { padding: 60px 24px; }
}

/* ============================================================
   SECTION MENU DU RESTAURANT — Tabs + Cartes Plats
   ============================================================ */
.amv-menu-section {
    background: #0a0c1e;
    padding: 72px 40px 80px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.amv-menu-inner {
    max-width: 1340px;
    margin: 0 auto;
}

/* ---- Navigation tabs ---- */
.amv-menu-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 6px;
    margin-bottom: 48px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
}

.amv-menu-tabs::-webkit-scrollbar { display: none; }

.amv-menu-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.amv-menu-tab:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
}

.amv-menu-tab.active {
    background: linear-gradient(135deg, #d4af37, #e8c84e);
    color: #000000;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}

.amv-menu-tab i { font-size: 13px; }

/* ---- Panneaux catégorie ---- */
.amv-menu-cat-panel {
    display: none;
    animation: amv-fade-in 0.3s ease;
}

.amv-menu-cat-panel.active { display: block; }

@keyframes amv-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Grille des plats ---- */
.amv-menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Carte plat ---- */
.amv-menu-dish-card {
    background: #11152e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.amv-menu-dish-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

/* Image */
.amv-dish-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0d1025;
}

.amv-dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.amv-menu-dish-card:hover .amv-dish-img img {
    transform: scale(1.06);
}

/* Badge prix */
.amv-dish-price-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, #d4af37, #e8c84e);
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Corps carte */
.amv-dish-body {
    padding: 18px 18px 12px;
    flex: 1;
}

.amv-dish-name {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 7px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amv-dish-desc {
    font-size: 12px;
    color: #6b7fa0;
    line-height: 1.65;
    margin: 0;
}

/* Pied de carte */
.amv-dish-footer {
    padding: 0 18px 18px;
}

.amv-dish-reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 10px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 8px;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.22s ease;
}

.amv-dish-reserve-btn:hover {
    background: linear-gradient(135deg, #d4af37, #e8c84e);
    border-color: transparent;
    color: #000000;
    transform: scale(1.02);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
    .amv-wines-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .amv-wines-section { padding: 52px 24px; }
    .amv-carousel-wrapper { height: 380px; }
    .amv-menu-section { padding: 52px 24px 60px; }
    .amv-menu-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .amv-wines-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .amv-carousel-wrapper { height: 260px; }
    .amv-wines-section { padding: 40px 16px; }
    .amv-wines-grid { grid-template-columns: 1fr; }
    .amv-reservation-form { grid-template-columns: 1fr; }
    .amv-reservation-section { padding: 40px 16px; }
    .amv-hero { padding: 50px 16px 44px; }
    .amv-carousel-prev,
    .amv-carousel-next { width: 40px; height: 40px; font-size: 18px; }
    .amv-menu-section { padding: 36px 16px 48px; }
    .amv-menu-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MENU PAGE — LAYOUT ALTERNANT  (nouvelle version)
   ============================================================ */

/* ---- Page wrapper ---- */
.amv-menu-page {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background: #faf9f7;
}

/* ---- Héro Vidéo ---- */
.amv-hero-video-wrap {
    display: flex;
    min-height: 500px;
    background: #0a1628;
    overflow: hidden;
}
.amv-hero-video-left {
    flex: 0 0 400px;
    padding: 52px 44px 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(160deg, #0a1628 0%, #1a2942 100%);
    border-right: 1px solid rgba(255,255,255,0.06);
}
.amv-hero-video-right {
    flex: 1;
    position: relative;
    min-height: 460px;
}
.amv-hero-video-frame {
    position: absolute;
    inset: 0;
}
.amv-hero-video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.amv-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #f26522;
    margin-bottom: 14px;
}
.amv-hero-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 900;
    line-height: 1.08;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.amv-hero-title span { color: #f26522; }
.amv-hero-lead {
    font-size: 13px;
    line-height: 1.68;
    color: rgba(255,255,255,0.65);
    margin-bottom: 22px;
}
.amv-hero-vtabs {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 24px;
}
.amv-hero-vtab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}
.amv-hero-vtab i { font-size: 12px; width: 14px; flex-shrink: 0; }
.amv-hero-vtab:hover {
    background: rgba(242,101,34,0.12);
    border-color: rgba(242,101,34,0.35);
    color: #f26522;
}
.amv-hero-vtab.active {
    background: #f26522;
    border-color: #f26522;
    color: #ffffff;
}
.amv-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.amv-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    background: #f26522;
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: all 0.22s ease;
}
.amv-hero-btn-primary:hover {
    background: #d9571e;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(242,101,34,0.38);
    color: #fff;
    text-decoration: none;
}
.amv-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 7px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    cursor: pointer;
    transition: all 0.22s ease;
}
.amv-hero-btn-secondary:hover {
    border-color: #f26522;
    color: #f26522;
    transform: translateY(-2px);
}

/* ---- Barre filtre catégories (dans le bloc menu) ---- */
.amv-menu-filter-bar {
    background: #0a1628;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.amv-menu-filter-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}
.amv-menu-filter-nav::-webkit-scrollbar { display: none; }

.amv-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.82);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.22s ease;
}

.amv-nav-pill:hover {
    background: var(--pill-color, #f26522);
    border-color: var(--pill-color, #f26522);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* ---- Section alternante ---- */
.amv-page-content-wrap {
    margin: 0 40px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.10);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.amv-page-section {
    display: flex;
    min-height: 280px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.amv-page-section.amv-reverse {
    flex-direction: row-reverse;
}

/* ---- Côté média ---- */
.amv-page-section-media {
    flex: 0 0 48%;
    position: relative;
    overflow: hidden;
}

/* ---- Côté texte ---- */
.amv-page-section-text {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: flex-start;
    overflow-y: auto;
}

.amv-page-section-text-inner {
    padding: 32px 44px 32px;
    width: 100%;
}

/* ---- Carousel ---- */
.amv-page-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    background: #111;
}

.amv-page-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.amv-page-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
}

.amv-page-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.amv-page-carousel-slide.is-active img {
    transform: scale(1.04);
}

.amv-page-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 18px rgba(0,0,0,0.22);
    transition: all 0.22s ease;
    font-size: 14px;
    color: #0a1628;
}

.amv-page-carousel-btn.prev { left: 16px; }
.amv-page-carousel-btn.next { right: 16px; }

.amv-page-carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 22px rgba(0,0,0,0.32);
}

.amv-page-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.amv-page-cdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.amv-page-cdot.active {
    background: #ffffff;
    width: 22px;
    border-radius: 4px;
}

/* ---- Badge catégorie sur média ---- */
.amv-page-section-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 10;
    box-shadow: 0 3px 14px rgba(0,0,0,0.28);
}

.amv-page-section.amv-reverse .amv-page-section-badge {
    left: auto;
    right: 22px;
}

/* ---- Texte ---- */
.amv-page-section-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 10px;
}

.amv-page-section-title {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 900;
    color: #0a1628;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent, #f26522);
}

.amv-page-section-lead {
    font-size: 12.5px;
    color: rgba(10,22,40,0.58);
    line-height: 1.65;
    margin: 10px 0 22px;
    font-style: italic;
}

/* ---- Liste items ---- */
.amv-page-items-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.amv-page-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(10,22,40,0.07);
    transition: padding-left 0.18s ease;
}

.amv-page-item:last-child { border-bottom: none; }

.amv-page-item:hover { padding-left: 6px; }

.amv-page-item-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.amv-page-item-name {
    font-size: 12.5px;
    font-weight: 700;
    color: #0a1628;
    line-height: 1.4;
    flex: 1;
}

.amv-page-item-price {
    font-size: 12.5px;
    font-weight: 900;
    white-space: nowrap;
    flex-shrink: 0;
}

.amv-page-item-desc {
    font-size: 11px;
    color: rgba(10,22,40,0.52);
    line-height: 1.5;
    margin: 4px 0 0;
    font-style: italic;
}

/* ---- CTA ---- */
.amv-page-section-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 8px;
    color: #ffffff;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.amv-page-section-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.28);
    filter: brightness(1.1);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .amv-page-section,
    .amv-page-section.amv-reverse {
        flex-direction: column;
    }
    .amv-page-content-wrap { margin: 0 20px; }
    .amv-page-section-media {
        flex: 0 0 260px;
    }
    .amv-page-carousel {
        min-height: 260px;
    }
    .amv-page-section-text-inner {
        padding: 32px 28px;
    }
}

@media (max-width: 600px) {
    .amv-page-content-wrap { margin: 0 10px; }
    .amv-page-section-media { flex: 0 0 220px; }
    .amv-page-carousel { min-height: 220px; }
    .amv-page-section-text-inner { padding: 24px 18px; }
    .amv-hero-video-wrap { flex-direction: column; min-height: auto; }
    .amv-hero-video-left { flex: none; padding: 36px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .amv-hero-video-right { min-height: 280px; height: 280px; }
    .amv-hero-video-frame iframe { height: 280px; }
    .amv-menu-filter-bar { padding: 14px 20px; }
    .amv-menu-filter-nav { justify-content: flex-start; }
}

/* ============================================================
   SECTION VIDÉO
   ============================================================ */
.amv-video-section {
    margin: 40px 40px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #0a1628;
    display: flex;
    min-height: 300px;
}
.amv-video-section-text {
    flex: 0 0 36%;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.amv-vidsec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f26522;
}
.amv-vidsec-title {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
}
.amv-vidsec-lead {
    font-size: 12.5px;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
}
.amv-video-embed-wrap {
    flex: 1;
    min-height: 360px;
    height: 360px;
}
.amv-video-embed-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: none;
    display: block;
}
.amv-vidsec-stats {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.amv-vidsec-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.amv-vidsec-stat-num {
    font-size: 22px;
    font-weight: 900;
    color: #f26522;
    line-height: 1;
}
.amv-vidsec-stat-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.48);
}
@media (max-width: 860px) {
    .amv-video-section { flex-direction: column; margin: 24px 20px 0; }
    .amv-video-section-text { padding: 32px 28px 24px; }
    .amv-video-embed-wrap { min-height: 240px; height: 240px; }
    .amv-video-embed-wrap iframe { min-height: 240px; }
    .amv-vidsec-stats { gap: 18px; }
}

/* ============================================================
   CARTE DES VINS
   ============================================================ */
.amv-wine-carte-wrap {
    margin: 32px 40px 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.amv-wine-carte-header {
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 100%);
    padding: 48px 56px 40px;
    text-align: center;
}
.amv-wine-carte-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f26522;
    margin-bottom: 12px;
}
.amv-wine-carte-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px;
}
.amv-wine-carte-lead {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}
.amv-wine-cats-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 28px 40px 0;
    flex-wrap: wrap;
}
.amv-wine-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    border-radius: 24px;
    border: 2px solid rgba(10,22,40,0.14);
    background: #ffffff;
    color: #0a1628;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.22s ease;
}
.amv-wine-cat-btn:hover,
.amv-wine-cat-btn.active {
    background: #0a1628;
    border-color: #0a1628;
    color: #ffffff;
}
.amv-wine-cat-btn.active {
    background: linear-gradient(135deg, #0a1628, #1a2942);
}
.amv-wine-cat-lists {
    padding: 32px 40px 48px;
}
.amv-wine-cat-list {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.amv-wine-cat-list.visible { display: grid; }
.amv-wine-card-v2 {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(10,22,40,0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    display: flex;
    flex-direction: column;
}
.amv-wine-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}
.amv-wine-card-v2-img {
    position: relative;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
}
.amv-wine-card-v2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.amv-wine-card-v2:hover .amv-wine-card-v2-img img {
    transform: scale(1.06);
}
.amv-wine-card-v2-price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
}
.amv-wine-card-v2-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.amv-wine-card-v2-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.amv-wine-card-v2-name {
    font-size: 12.5px;
    font-weight: 800;
    color: #0a1628;
    line-height: 1.35;
}
.amv-wine-card-v2-region {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(10,22,40,0.42);
}
.amv-wine-card-v2-desc {
    font-size: 11px;
    color: rgba(10,22,40,0.58);
    line-height: 1.5;
    font-style: italic;
    flex: 1;
}
.amv-wine-card-v2-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 14px;
    background: var(--wcolor, #0a1628);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.2s ease;
}
.amv-wine-card-v2-btn:hover {
    filter: brightness(0.88);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.22);
}
@media (max-width: 900px) {
    .amv-wine-cat-list { grid-template-columns: repeat(2,1fr); }
    .amv-wine-carte-wrap { margin: 24px 20px 0; }
}
@media (max-width: 600px) {
    .amv-wine-cat-list { grid-template-columns: 1fr; }
    .amv-wine-cat-lists { padding: 24px 20px 36px; }
    .amv-wine-cats-tabs { padding: 20px 20px 0; }
}

/* ============================================================
   À PROPOS
   ============================================================ */
.amv-apropos-wrap {
    margin: 32px 40px 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0,0,0,0.12);
}
.amv-apropos-section {
    display: flex;
    min-height: 420px;
    background: #0a1628;
}
.amv-apropos-text {
    flex: 1;
    padding: 52px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.amv-apropos-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f26522;
}
.amv-apropos-title {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.15;
}
.amv-apropos-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    max-width: 480px;
}
.amv-apropos-infos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.amv-apropos-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}
.amv-apropos-info-item i {
    width: 18px;
    text-align: center;
    color: #f26522;
    font-size: 13px;
    flex-shrink: 0;
}
.amv-apropos-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #e84c10, #f26522);
    color: #ffffff;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(242,101,34,0.35);
}
.amv-apropos-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(242,101,34,0.45);
    filter: brightness(1.08);
}
.amv-apropos-media {
    flex: 0 0 46%;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}
.amv-apropos-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #111;
}
.amv-apropos-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.amv-apropos-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
}
.amv-apropos-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}
.amv-apropos-carousel-slide.is-active img { transform: scale(1.04); }
.amv-apropos-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 13px;
    color: #0a1628;
    box-shadow: 0 3px 14px rgba(0,0,0,0.22);
    transition: all 0.22s ease;
}
.amv-apropos-carousel-btn.prev { left: 14px; }
.amv-apropos-carousel-btn.next { right: 14px; }
.amv-apropos-carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
}
.amv-apropos-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
@media (max-width: 900px) {
    .amv-apropos-section { flex-direction: column; }
    .amv-apropos-text { padding: 36px 28px; }
    .amv-apropos-media { min-height: 280px; flex: 0 0 280px; }
    .amv-apropos-carousel { min-height: 280px; }
    .amv-apropos-wrap { margin: 24px 20px 32px; }
}