@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Great+Vibes&family=Poppins:wght@300;400;500;600&display=swap');
/* ===========================================
SITE / CSS V2
Navbar + Hero + Slider + Cards + Responsive
=========================================== */
:root{
    --gold:#d8bc79;
    --gold-light:#f1dfb0;
    --green:#29452c;
    --green2:#446c45;
    --bg:#071008;
    --text:#f4efe5;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html,
body{
    width:100%;
    overflow-x:hidden;
    scroll-behavior:smooth;
	scroll-padding-top:140px;
    font-size: 20px;
}
body{
    font-family:'Poppins', sans-serif;
    color:var(--text);
    background:
    radial-gradient(circle at top, rgba(75,120,70,0.12), transparent 30%),
    linear-gradient(to bottom, #081009, #050805);
}
h1{
    color:var(--gold);
    font-size:3rem;
    font-family:'Cinzel', serif;
    margin-top:10px;
    margin-bottom:10px;
        text-shadow:
        1px 1px 0 rgba(255,255,255,.25),
        -1px -1px 0 rgba(70,50,15,.35),
        0 3px 8px rgba(0,0,0,.20);
}
/************************************************
THEMES
************************************************/
.theme-sorciere{
    --theme-gradient:linear-gradient(135deg,#2a0a45,#14031f);
    --theme-color:#5b2d9b;
    --theme-bg:radial-gradient(circle at top,#1c0d2b,#0b0513 70%);
}
.theme-nectar{
    --theme-gradient:linear-gradient(135deg,#2f5e1f,#1e4410);
    --theme-color:#4d8a43;
    --theme-bg:radial-gradient(circle at top,#18401f,#07150a 70%);
}
.theme-prestige{
    --theme-gradient:linear-gradient(135deg,#6a5620,#2d230c);
    --theme-color:#a98a3d;
    --theme-bg:radial-gradient(circle at top,#473716,#140f05 70%);
}
.theme-signature{
    --theme-gradient:linear-gradient(135deg,#3a3528,#1a1810);
    --theme-color:#7b7058;
    --theme-bg:radial-gradient(circle at top,#1c0d2b,#0b0513 70%);
}
.theme-noix{
    --theme-gradient:linear-gradient(135deg,#2a1a10,#120c07);
    --theme-color:#8a5b38;
    --theme-bg:radial-gradient(circle at top,#2a1a10,#120c07 70%);
}
.theme-elixir{
    --theme-gradient:linear-gradient(135deg,#1a2319,#0b120a);
    --theme-color:#5a7350;
    --theme-bg:radial-gradient(circle at top,#1a2319,#0b120a 70%);
}
.theme-vin{
    --theme-gradient:linear-gradient(135deg,#6d1d26,#4a1218);
    --theme-color:#a5444f;
    --theme-bg:radial-gradient(circle at top,#4b110f,#150403 70%);
}
.theme-cocktail{
    --theme-gradient:linear-gradient(135deg,#17425c,#0b1f2a);
    --theme-color:#4f8eb8;
    --theme-bg:radial-gradient(circle at top,#163f63,#06111b 70%);
}
.theme-rhum{
    --theme-gradient:linear-gradient(135deg,#6a4420,#2b1a0a);
    --theme-color:#b67a3c;
    --theme-bg:radial-gradient(circle at top,#4e2d0c,#120a03 70%);
}
.theme-vinaigre{
    --theme-gradient:linear-gradient(135deg,#5a1f3f,#2a0f1e);
    --theme-color:#9d4d74;
    --theme-bg:radial-gradient(circle at top,#421628,#13060b 70%);
}
body[class*="theme-"]{
    background:var(--theme-bg);
}
/************************************************
HEADER 2026
************************************************/
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:
    linear-gradient(
        to bottom,
        rgba(236,225,202,0.98),
        rgba(223,208,180,0.97)
    );
    backdrop-filter:blur(14px);
    border-bottom:
    1px solid rgba(80,65,35,0.18);
    box-shadow:
    0 5px 20px rgba(0,0,0,0.06);
}
.home-page{
	padding:200px 15px 10px;
}
/************************************************
LOGO 2026
************************************************/
.logo{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:0.85;
    font-family:'Cinzel', serif;
    text-transform:uppercase;
    margin:30px 0 15px 30px;
    text-decoration:none;
}
.logo:hover{
    text-decoration:none;
}
.logo .top{
    font-size:1.7rem;
    font-weight:700;
    letter-spacing:4px;
    color:#23311f;
    text-shadow:
        0 1px 0 rgba(255,255,255,.35),
        0 2px 3px rgba(0,0,0,.12);
}
.logo .bottom{
    font-size:3rem;
    font-weight:700;
    letter-spacing:5px;
    color:#8b7338;
    text-shadow:
        0 1px 0 #d8c48b,
        0 2px 0 #b89a56,
        0 3px 4px rgba(0,0,0,.20);
}
/************************************************
MENU 2026
************************************************/
nav{
    width:100%;
    border-top:2px solid #d6c6a2;
    border-bottom:2px solid #d6c6a2;
    background:
    linear-gradient(
        to bottom,
        rgba(255,255,255,.15),
        rgba(0,0,0,.03)
    );
}
.menu{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:0;
    margin:0;
    padding:0;
    list-style:none;
}
.menu > li{
    position:relative;
    font-size:1.4rem;
}
.menu > li > a{
    display:block;
    padding:18px 32px;
    color:#3b3527;
    text-decoration:none;
    font-weight:600;
    border-left:3px solid #c8b689;
}
.menu > li:first-child > a{
    border-left:none;
}
.menu > li > a:hover{
    background:
    rgba(139,115,56,.08);
}
/************************************************
SOUS MENUS
************************************************/
.submenu{
    display:none;
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    min-width:400px;
    background:#f4ecdb;
    border:1px solid rgba(80,65,35,.12);
    border-radius:12px;
    box-shadow:
        0 15px 35px rgba(0,0,0,.12);
    padding:10px 0;
    list-style:none;
    z-index:1000;
    box-shadow:
        0 12px 30px rgba(0,0,0,.18);
}
.submenu li{
    width:100%;
    border-bottom:2px solid #e2d7bb;
}
.submenu a{
    display:block;
    padding:20px 25px;
    text-decoration:none;
    color:#2f2b22;
    transition:.25s;
    white-space:nowrap;
    display:flex;
    align-items:center;
    gap:14px;
}
.submenu a:hover{
    background:
    rgba(91,115,72,.08);
    color:#3d5c34;
}
.has-submenu:hover .submenu{
    display:block;
}
.has-submenu.active > a{
    background:#e5dcc6;
    color:#6b5a2f;
}
.has-submenu{
    position:relative;
}
/************************************************
HERO 2026
************************************************/
.hero{
    padding-bottom:20px;    
}
.hero-card{
    position:relative;
    margin:auto 15px;
    border-radius:0 0 35px 35px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:
    0 20px 50px rgba(0,0,0,.35);
}
.hero-slider{
    position:relative;
    height:350px;
}
.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:
    opacity 1.8s ease;
}
.hero-slide.active{
    opacity:1;
}
.hero-slide img{
    width:100%;
    object-fit:cover;
}
.hero-img-top{
    object-position:top center;
}
.hero-img-center{
    object-position:center center;
}
.hero-img-bottom{
    object-position:bottom center;
}
.hero-content{
    position:absolute;
    top:50%;
    left:50px;
    transform:translateY(-50%);
    max-width:550px;
    z-index:5;
}
.hero-script{
    font-family:'Great Vibes',cursive;
    font-size:3rem;
    color:#f1e0b5;
    margin-bottom:20px;
    text-shadow:0 4px 15px rgba(0,0,0,.6);
}
.hero-text{
    color:#f3f0e9;
    line-height:1.5;
    margin-bottom:30px;
    font-size:1rem;
}
.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}
.hero-calendar-overlay{
    position:absolute;
    top:50px;
    left:20px;
    z-index:10;
    width:280px;
    max-width:calc(100% - 40px);
}
.hero-calendar{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.calendar-item{
    display:flex;
    align-items:center;
    gap:15px;
    width:100%;
    box-sizing:border-box;
    padding:10px 15px;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    color:#fff;
}
.calendar-item-m{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:inherit;
    gap:15px;
    width:100%;
    box-sizing:border-box;
    padding:10px 15px;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    color:#fff;
}
.calendar-icon{
    font-size:1.5rem;
    flex-shrink:0;
}
.calendar-item strong{
    display:block;
    margin-bottom:3px;
    font-size:.9em;
    font-weight:600;
    color:#ffffff;
}
.calendar-item div div{
    font-size:.9rem;
    color:rgba(255,255,255,.85);
}
/************************************************
BOUTON
************************************************/
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 32px;
    border-radius:18px;
    text-decoration:none;
    transition:0.4s;
    font-weight:600;
        font-size:1.2rem;
}
.btn:hover{
    transform:translateY(-3px);
}
.shop-btn{
    margin-top:auto;
    display:block;
    width:calc(100% + 50px);
    margin-left:-25px;
    margin-right:-25px;
    margin-bottom:-25px;
    padding:18px;
    text-align:center;
    text-decoration:none;
    background:var(--theme-gradient);
    color:#fff;
    font-weight:700;
    border-radius:0 0 24px 24px;
}
.shop-btn:hover{
    filter:brightness(1.08);
}
.btn-order{
    display:inline-block;
    margin-top:25px;
    background:var(--theme-gradient);
    color:#fff;
    border:none;
    border-radius:10px;
    padding:12px 28px;
    font-weight:600;
    text-decoration:none;
    box-shadow:
        0 6px 20px rgba(0,0,0,.15);
    transition:.25s;
}
.btn-order:hover{
    transform:translateY(-2px);
    filter:brightness(1.08);
}
/************************************************
CITATIONS
************************************************/
.quote-box{
    padding:35px;
}
.quote{
    font-family:'Great Vibes', cursive;
    font-size:2.5rem;
    line-height:1.5;
    color:var(--gold-light);
    text-align:center;
}
/************************************************
SLIDER 2026
************************************************/
.slider-card{
    background:rgba(7,14,8,0.65);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:35px;
    overflow:hidden;
    backdrop-filter:blur(15px);
}
.slider{
    position:relative;
    width:100%;
    height:400px;
    overflow:hidden;
}
.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1.2s ease;
}
.slide.active{
    opacity:1;
}
.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.slide-proposer{
    position:absolute;
    left:10px;
    bottom:10px;
    z-index:2;
    width:auto;
}
.slide-info{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    width:320px;
    max-width:80%;
    padding:15px;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    z-index:2;
}
.slide-info h3{
    color:var(--gold-light);
    font-family:'Great Vibes', cursive;
    font-size:1.8rem;
    font-weight:400;
    color:var(--gold-light);
    margin-bottom:10px;
    text-align:center;
}
.slide-meta{
    font-family:'Poppins', sans-serif;
    color:#e7e0d0;
    line-height:1.5;
    text-align:center;
    font-size:1rem;
    margin-bottom:10px;
}
.slide-link{
    display:inline-block;
    margin:10px 0;
    padding:10px 20px;
    border-radius:12px;
    background:
    linear-gradient(
        135deg,
        #587249,
        #324b2d
    );
    color:white;
        font-family:'Poppins', sans-serif;
    text-decoration:none;
    font-weight:600;
    font-size:1.2rem;
}
/************************************************/
.featured-product{
    position:relative;
}
.card-body strong a{
    color:inherit;
    text-decoration:none;
}
.card-body strong a:hover{
    color:var(--theme-color);
}
.product-ribbon-home{
    position:absolute;
top:18px;   /* au lieu de 22px */
left:-42px; /* au lieu de -38px */
     width:160px;
    min-height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:.85rem;
    font-weight:700;
    background:var(--theme-gradient);
    transform:rotate(-45deg);
    transform-origin:center center;
    white-space:nowrap;
    z-index:5;
    box-shadow:
    0 6px 18px rgba(0,0,0,.25);
}
/************************************************
IMAGE MODAL
************************************************/
.zoomable-image{
    cursor:pointer;
}
.image-modal{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.88);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:5000;
}
.image-modal.active{
    opacity:1;
    visibility:visible;
}
.image-modal img{
    max-width:95vw;
    max-height:92vh;
    border-radius:20px;
    box-shadow:
    0 25px 60px rgba(0,0,0,.6);
}
.close-modal{
    position:absolute;
    top:20px;
    right:30px;
    font-size:3rem;
    color:white;
    cursor:pointer;
    user-select:none;
}
.image-hint{
    margin-top:12px;
    margin-bottom:20px;
    font-size:.9rem;
    color:var(--gold-light);
    font-style:italic;
}
/************************************************
SECTIONS
************************************************/
.section{
    padding:0 20px;
}
.container{
    max-width:1450px;
    margin:auto;
}
.section-title{
    text-align:center;
    margin-bottom:20px;
}
.section-title p{
    max-width:750px;
    margin:auto;
    color:#bdb8ac;
    line-height:1.5;
}
/************************************************
CARDS
************************************************/
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));
    gap:30px;
}
.card{
    background:
    linear-gradient(
        to bottom,
        rgba(28,45,30,0.85),
        rgba(8,12,8,0.96)
    );
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.45s;
}
.card:hover{
    transform:translateY(-8px);
    border-color:rgba(215,185,111,0.35);
    box-shadow:
    0 25px 50px rgba(0,0,0,0.35);
}
.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}
.about-link{
    color:#d8bc79;
    text-decoration:none;
    font-weight:600;
}
.about-link:hover{
    color:#f1dfb0;
}

.card2{
    background:
    linear-gradient(
        180deg,
        #2f2518 0%,
        #241b12 60%,
        #181109 100%
    );

    border:1px solid rgba(183,154,87,.25);

    box-shadow:
        inset 0 0 40px rgba(183,154,87,.05),
        0 10px 25px rgba(0,0,0,.35);

    border-radius:30px;
}
.card2 h3{
    color:#d7c08a;
}
.card2 p{
    color:#e3dccd;
}

.card-img-top{
    object-fit:cover;
    object-position:top center;
}
.card-body{
    padding:30px;
}
.card-body h3{
    font-family:'Cinzel', serif;
    margin-bottom:15px;
    font-size:1.6rem;
    color:var(--gold);
}
.card-body p{
    line-height:1.5;
    color:#cdc8bc;
    font-size:1.2rem;
}
/************************************************
MUSIC 2026
************************************************/
.music{
    margin:20px 0;
}
.music-box{
    padding:20px;
    background:
    linear-gradient(
        180deg,
        #2f2518 0%,
        #241b12 60%,
        #181109 100%
    );
    border:1px solid rgba(183,154,87,.25);
    box-shadow:
        inset 0 0 40px rgba(183,154,87,.05),
        0 10px 25px rgba(0,0,0,.35);
    border-radius:30px;
}
.music-box h2{
    font-family:'Cinzel', serif;
    font-size:3rem;
    margin-bottom:10px;
}
.music-box p{
	font-size:1.2rem;
    color:#d4cec1;
    margin-bottom:10px;
}
/************************************************
WRAPPER EVENEMENTS
************************************************/
.slider-wrapper{
    width:100%;
}
/************************************************
TITRE EVENEMENTS
************************************************/
.events-title{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    margin-bottom:22px;
    padding:16px 22px;
    border-radius:20px;
    background:
    linear-gradient(
        135deg,
        rgba(215,185,111,0.14),
        rgba(58,90,55,0.18)
    );
    border:
    1px solid rgba(255,255,255,0.08);
    color:var(--gold-light);
    font-family:'Cinzel', serif;
    font-size:1rem;
    font-weight:600;
    letter-spacing:1px;
    backdrop-filter:blur(12px);
    box-shadow:
    0 12px 35px rgba(0,0,0,0.22);
}
/* ===========================================
MARCHES PAGE
=========================================== */
.market-page{
    padding:220px 15px 20px;
}
.market-card{
    margin-bottom:30px;
    background:#e8dfcc;
    color:#2f2617;
        font-size:1.2rem;
    border:1px solid rgba(216,188,121,.15);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}
.market-date{
    padding:18px 25px;
    background:linear-gradient(
        90deg,
        rgba(8,25,12,.95),
        rgba(4,15,8,.98)
    );
    color:#d8bc79;
        font-size:1.2rem;
}

.market-date-day{
    font-weight:700;
    font-size:1.2rem;
    margin-bottom:5px;
}

.market-date-place{
    text-align:right;
    color:#d8bc79;
        font-size:1.2rem;
    font-weight:600;
    white-space:nowrap;
}

.market-poster{
    width:260px;
    float:left;
    margin:0 25px 15px 0;
}

.market-poster a{
    display:block;
    height:100%;
}

.market-poster img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:0;
}

.market-poster img:hover{
    transform:scale(1.03);
}

.market-info h2{
    margin:0 0 10px 0;
    padding:0;
    color:#2f2617;
}

.market-place,
.market-time{
    color:#5a4d37;
    font-weight:600;
        font-size:1.2rem;
}

.market-info{
    padding:0;
    margin:0;
    color:#5a4d37;
        font-size:1.2rem;
    line-height:1.5;
}

.market-content{
    display:block;
    padding:20px;
}

/* ===========================================
SEO CONTENT
=========================================== */
.seo-content{
    padding:0 10px 20px;
}
.seo-content .container{
    background:none;
    border:none;
    padding:0 25px;
}
.seo-content h2{
    color:#d8bc79;
    margin-bottom:15px;
}
.seo-content p{
    color:rgba(255,255,255,.85);
    line-height:1.5;
        font-size:1.2rem;
}
/* ==========================================
MODAL AFFICHES
========================================== */

.market-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    z-index:99999;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.market-modal.active{
    display:flex;
}

.market-modal-image{
    max-width:95%;
    max-height:90vh;
    border-radius:20px;
    box-shadow:
        0 0 40px rgba(0,0,0,.6),
        0 0 20px rgba(216,188,121,.25);
    cursor:pointer;
}

.market-modal-close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:42px;
    color:white;
    cursor:pointer;
}

.market-date-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.market-date-place{
    text-align:right;
    color:#ffffff;
    opacity:.9;
}

.market-date-event{
    margin-top:5px;
    color:#d8bc79;
}






/* ===========================================
PAGE ÉVÉNEMENT
=========================================== */
.event-page{
    padding:200px 15px 20px;
}
/* HERO */
.event-hero{
    text-align:center;
    padding:40px 20px 30px;
}
.event-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.2rem,6vw,4rem);
    color:#d8bc79;
    margin-bottom:10px;
}
.event-subtitle{
    font-family:'Great Vibes',cursive;
    font-size:2rem;
    color:#f0e6c5;
}
.event-countdown{
    margin-top:20px;
    font-size:1.4rem;
    font-weight:700;
    color:#d8bc79;
}
/* ===========================================
LAYOUT
=========================================== */
.event-grid{
    display:grid;
    grid-template-columns:45% 55%;
    gap:25px;
    align-items:start;
}
/* ===========================================
AFFICHE
=========================================== */
.event-poster{
    max-width:550px;
    margin:auto;
    overflow:hidden;
    border-radius:24px;
    background:#f3eee2;
    box-shadow:0 10px 35px rgba(0,0,0,.25);
}
.event-poster img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
}
/* ===========================================
INFOS
=========================================== */
.event-info{
    background:#f3eee2;
    border-radius:24px;
    padding:30px;
    box-shadow:0 10px 35px rgba(0,0,0,.25);
}

.event-info h2{
    font-family:'Great Vibes',cursive;
    font-size:2.3rem;
    margin-bottom:15px;
}

.event-meta{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin:25px 0;
}

.event-meta div{
    font-size:1.1rem;
}

.event-jcount{
    text-align:center;
    font-size:2rem;
    font-weight:700;
    color:#5b4723;
    margin:30px 0;
}
.presence-banner{
    margin:20px 0;
    padding:14px;
    border-radius:12px;
    text-align:center;
    font-weight:700;
}

.presence-banner.present{
    background:rgba(70,120,70,.15);
    border:1px solid rgba(70,120,70,.35);
    color:#587a3f;
}

.presence-banner.info{
    background:rgba(120,120,120,.12);
    border:1px solid rgba(120,120,120,.25);
    color:#666;
}
/* ===========================================
BOUTONS
=========================================== */
.event-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:20px;
}
.event-actions .slide-link,
.event-actions button{
    width:100%;
    justify-content:center;
}
.event-actions .slide-link,
.event-actions button{
    width:100%;
    min-height:48px;
}
/* ===========================================
BLOCS TEXTE
=========================================== */
.event-card{
    background:#f3eee2;
    border-radius:24px;
    padding:30px;
    margin-top:25px;
    box-shadow:
        0 10px 35px rgba(0,0,0,.2);
}
.event-card h2{
    font-family:'Great Vibes',cursive;
    font-size:2.2rem;
    margin-bottom:10px;
}
/* ===========================================
AUTRES ÉVÉNEMENTS
=========================================== */
.other-events{
    margin-top:30px;
}
.other-events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.other-event-card{
    background:#f3eee2;
    overflow:hidden;
    border-radius:20px;
    box-shadow:
        0 10px 25px rgba(0,0,0,.15);
    transition:.3s;
}
.other-event-card:hover{
    transform:translateY(-4px);
}
.other-event-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}
.other-event-content{
    padding:20px;
}
.other-event-content h3{
    margin-bottom:10px;
    color:#2b2418;
}
.other-event-content p{
    margin-bottom:6px;
    color:#555;
}
/* ===========================================
PROPOSER UN ÉVÉNEMENT
=========================================== */
.event-form{
    max-width:900px;
    margin:20px auto 0;
}
.event-form p{
    margin-bottom:10px;
}

.event-form label{
    display:block;
    font-weight:700;
    color:#2f2617;
}

.event-form input,
.event-form textarea{
    width:100%;

    padding:14px;

    border-radius:12px;

    border:1px solid rgba(0,0,0,.12);

    background:rgba(255,255,255,.7);

    color:#2f2617;

    font-size:1rem;

    box-sizing:border-box;
}

.event-form textarea{
    resize:vertical;
    min-height:180px;
}

.event-form input:focus,
.event-form textarea:focus{
    outline:none;

    border-color:#d8bc79;

    box-shadow:
        0 0 0 3px rgba(216,188,121,.15);
}

.event-form .slide-link{
    border:none;
    cursor:pointer;
    width:100%;
    justify-content:center;
}
.event-note{
    margin-top:5px;
    padding:20px;
    border-radius:16px;
    background:rgba(216,188,121,.12);
    border:1px solid rgba(216,188,121,.25);
    text-align:center;
}
.event-form select{
    width:100%;
    padding:14px 18px;
    border:1px solid rgba(0,0,0,.08);
    border-radius:14px;
    background:#fff;
    color:#2f2a24;
    font-size:1rem;
    font-family:inherit;
    box-sizing:border-box;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238c7440' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' stroke='%238c7440' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 15px center;
    background-size:14px;
}
.event-submit-cta{
    text-align:center;
    margin:30px 0;
}
/************************************************
ALBUMS
************************************************/
.album-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.album-header h3{
    margin:0;
}
.album-meta{
    white-space:nowrap;
    font-size:1rem;
    opacity:.85;
}


.album-genres{
    font-size:1rem;
    opacity:.75;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}


.album-footer{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px 20px;
}

.album-footer .slide-link{
    flex-shrink:0;
}

.album-genres{
    flex:1;
    min-width:200px;
    color:rgba(255,255,255,.75);
    font-size:.9rem;
    line-height:1.5;
}


.album-description{
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.album-card-horizontal{
    display:flex;
    gap:5px;
    margin-bottom:25px;
    overflow:hidden;
}

.album-card-horizontal .card-body{
    padding:20px;
}

.album-cover{
    width:280px;
    height:280px;
    flex-shrink:0;
    overflow:hidden;
    border-radius:12px;
}

.album-cover a{
    display:block;
    width:100%;
    height:100%;
    line-height:0;
}

.album-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
/************************************************
TITRES INDIVIDUELS
************************************************/
.single-player-preview{
    border-radius:18px;
    overflow:hidden;
    border:2px solid rgba(216,188,121,.35);
    box-shadow:
        0 10px 30px rgba(0,0,0,.35),
        0 0 20px rgba(216,188,121,.15);
}
.single-player-preview iframe{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    border:none;
}
/************************************************
PAGE ALBUM
************************************************/
.album-page{
    padding:200px 15px 20px;
}
.album-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    align-items:stretch;
}
.album-gallery{
    height:100%;
}

.album-cover-link{
    display:block;
    height:100%;
}
.album-main-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:18px;
    border:2px solid rgba(216,188,121,.35);
    box-shadow:
        0 10px 30px rgba(0,0,0,.35),
        0 0 20px rgba(216,188,121,.15);
}
.album-info{
    height:100%;
    display:flex;
    flex-direction:column;
    background:#e8dfcc;
    color:#2f2617;
    border:1px solid rgba(0,0,0,.08);
    border-radius:24px;
    padding:25px;
    box-shadow:
    0 10px 30px rgba(0,0,0,.15);
}
.album-info-index{
    color:#d8bc79;
    font-size:1rem;
    margin:12px 0;
}
.album-info h2,
.album-section h2{
    color:#2f2617;
    font-family:'Great Vibes',cursive;
    font-size:2.1rem;
    margin-bottom:10px;
}
.album-info h2::after,
.album-section h2::after{
    content:"";
    display:block;
    width:160px;
    height:2px;
    margin-top:10px;
    background:#2f2617;
}
.album-info p,
.album-section p{
    line-height:1.5;
    font-size:1.2rem;
}
.album-year{
    margin-top:15px;
    font-weight:600;
}
.album-genres-full{
    margin-top:10px;
    color:#5a4d37;
    font-size:1rem;
}
.album-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:12px;
}
.album-tag{
    padding:5px 10px;
    border-radius:8px;
    background:rgba(255,255,255,.55);
    border:1px solid rgba(0,0,0,.08);
    font-size:1rem;
    font-weight:700;
    line-height:1.2;
}
.album-section{
    background:#e8dfcc;
    color:#2f2617;
    border:1px solid rgba(0,0,0,.08);
    border-radius:24px;
    padding:35px;
    box-shadow:
    0 10px 30px rgba(0,0,0,.15);
    margin-top:20px;
}

.separator{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin:15px 0;
}
.separator::before,
.separator::after{
    content:'';
    flex:1;
    height:1px;
    background:rgba(140,106,77,.35);
}
.separator span{
    color:#8c6a4d;
    font-size:1rem;
}
.track-list{
    columns:2;
    column-gap:60px;
}
.track-list li{
    margin-bottom:10px;
    break-inside:avoid;
}
.album-player iframe{
    width:100%;
    border:none;
    border-radius:18px;
}

/************************************************
ALBUMS ASSOCIÉS
************************************************/
/* Accueil uniquement */

.album-home-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:15px 0;
}

.album-home-tag{
    padding:5px 10px;
    border-radius:10px;

    background:rgba(216,188,121,.12);

    border:1px solid rgba(216,188,121,.35);

    color:#d8bc79;

    font-size:1rem;
    font-weight:600;
}

.track-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:10px;
}

.track-tag{
    padding:5px 10px;
    border-radius:10px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.12);

    color:#d8bc79;

    font-size:1rem;
}

.album-related{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    align-items:stretch;
}

.album-related p,
.album-related .related-description{
    color:#2f2617 !important;
    opacity:1 !important;
}

.album-related .card{
    background:#e8dfcc;

    border:none;

    border-radius:24px;

    overflow:hidden;

    display:flex;
    flex-direction:column;

    height:100%;
}

.album-related .card-body{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:20px;
    color:#2f2617;
}

.album-related .card img{
    width:100%;
    height:260px;

    object-fit:cover;
    object-position:center;

    display:block;

    margin:0;
    border:none;
    box-shadow:none;
}

.album-related h3{
    color:#2f2617;
    margin-bottom:12px;
}

.related-description{
    margin:12px 0;

    color:#2f2617;

    font-size:1rem;
    line-height:1.6;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:90px;
}

.related-tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-bottom:15px;
}

.related-tag{
    padding:4px 8px;

    border-radius:8px;

    background:rgba(255,255,255,.55);
    border:1px solid rgba(0,0,0,.08);

    color:#2f2617;

    font-size:1rem;
    font-weight:600;
}

.album-player{
    padding:0;
    background:transparent;
    border:none;
    box-shadow:none;
}

.album-player iframe{
    width:100%;
    height:500px;

    border-radius:24px;

    border:2px solid rgba(216,188,121,.35);

    box-shadow:
        0 10px 30px rgba(0,0,0,.35),
        0 0 20px rgba(216,188,121,.15);
}

.album-modal{
    display:none;

    position:fixed;
    inset:0;
    z-index:9999;

    background:rgba(0,0,0,.92);

    justify-content:center;
    align-items:center;

    padding:20px;
}

.album-modal.active{
    display:flex;
}

.album-modal-image{
    max-width:95vw;
    max-height:95vh;

    border-radius:18px;

    box-shadow:
        0 0 30px rgba(216,188,121,.25);
}

.album-modal-close{
    position:absolute;
    top:20px;
    right:25px;

    color:#fff;
    font-size:2.5rem;
    cursor:pointer;
}

.album-cover-link{
    display:block;
    cursor:zoom-in;
}

.album-cover-link:hover img{
    transform:scale(1.02);
}

.album-main-image{
    transition:transform .3s ease;
}











/************************************************
BOUTIQUE
************************************************/
.shop-page{
    padding:200px 15px 40px;
}
/************************************************
HERO
************************************************/
.shop-hero{
    text-align:center;
    margin-top:30px;
}
.shop-hero h1{
    color:var(--gold);
    font-size:3rem;
    font-family:'Cinzel', serif;
    margin-bottom:15px;
}
.shop-hero p{
    max-width:850px;
    margin:auto;
    color:#e9dcc3;
    line-height:1.5;
    font-size:1.2rem;
}
/************************************************
RECHERCHE
************************************************/
.shop-search{
    width:100%;
    max-width:700px;
    margin:20px auto 0;
    padding:16px 22px;
    border:none;
    border-radius:12px;
    background:#f0eadf;
    color:#2f2617;
    font-size:1rem;
    box-shadow:
    0 10px 30px rgba(0,0,0,.25);
}
/************************************************
FILTRES
************************************************/
.shop-filters{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    max-width:800px;
    margin:10px auto 15px;
}
.shop-filters button{
    min-width:100px;
    height:40px;
    border:none;
    border-radius:12px;
    padding:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e8dfcc;
    color:#2f2617;
    font-size:1.2rem;
    font-weight:600;
    transition:.25s;
}
.shop-filters button:hover{
    transform:translateY(-2px);
}
.shop-filters button.active{
    background:#b79a57;
    color:#fff;
}
/************************************************
GRILLE
************************************************/
.shop-grid{
    display:grid;
    margin:30px 15px 0;
    grid-template-columns:
    repeat(auto-fill,minmax(320px,1fr));
    gap:30px;
}
/************************************************
CARTE
************************************************/
.shop-card{
    display:flex;
    flex-direction:column;

    background:linear-gradient(
        180deg,
        #f0eadf,
        #e4dccd
    );

    border-radius:24px;
    overflow:hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,.18);

    transition:.3s;
}

.shop-card:hover{

    transform:translateY(-5px);

}

.shop-card-image{

    position:relative;
}

.shop-card-image img{

    width:100%;
    aspect-ratio:1/1;

    object-fit:cover;

    display:block;
}

/************************************************
RIBBON
************************************************/

.shop-ribbon{

    position:absolute;

    top:22px;
    left:-75px;

    width:240px;

    padding:8px 0;

    text-align:center;

    color:#fff;

    font-size:.85rem;
    font-weight:700;

    background:var(--theme-gradient);
    filter:brightness(1.15);

    transform:rotate(-45deg);
white-space:nowrap;
    z-index:5;

    box-shadow:
    0 6px 18px rgba(0,0,0,.25);
}

/************************************************
CONTENU
************************************************/
.shop-card-content{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:25px;
}
.shop-card-content h2{
    color:#2f2617;
    font-size:1.4rem;
    margin-bottom:12px;
}
.shop-card-content p{
    color:#4d4332;
    line-height:1.5;
    margin-bottom:18px;
    font-size:1.2rem;
}
.shop-image-link{
    display:block;
}
.shop-image-link img{
    display:block;
    width:100%;
}
/************************************************
TAGS PRODUITS
************************************************/
.index-tags,
.shop-tags,
.similar-tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin:12px 0;
}
.index-tag,
.shop-tag,
.similar-tag{
    display:inline-block;
    padding:4px 8px;
    border-radius:8px;
    background:rgba(255,255,255,.55);
    border:1px solid
    color-mix(
        in srgb,
        var(--theme-color) 40%,
        white
    );
    color:var(--theme-color);
    font-size:0.9rem;
    font-weight:700;
    text-transform:uppercase;
    text-decoration:none; /* ajout */
    transition:.2s;       /* ajout */
}
.index-tag,
.shop-tag,
.similar-tag:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.12);
}
/************************************************
PRIX
************************************************/
.shop-price{
    font-size:1.4rem;
    font-weight:700;
    color:var(--theme-color);
    margin-bottom:12px;
}
.shop-stock{
    margin-bottom:20px;

    color:#5c4d39;
}
/************************************************
BOUTON
************************************************/



















/************************************************
PAGE PRODUIT
************************************************/
:root{
    --card-bg:#e8dfcc;
    --card-text:#2f2617;
    --card-border:rgba(0,0,0,.08);
    --card-shadow:0 15px 40px rgba(0,0,0,.18);
}
/************************************************
PAGE
************************************************/
.product-page{
    padding:200px 15px 20px;
}
.product-hero{
    text-align:center;
    margin-top:30px;
}
.product-category{
    display:inline-block;
    padding:10px 22px;
    background:
    linear-gradient(
        180deg,
        color-mix(in srgb,var(--theme-color) 80%,white 20%),
        var(--theme-color)
    );
    color:white;
    font-weight:600;
    letter-spacing:.5px;
    border-radius:6px;
    position:relative;
    box-shadow:
    0 6px 20px rgba(0,0,0,.25);
}
.product-category::before,
.product-category::after{
    content:"";
    position:absolute;
    bottom:-8px;
    border-top:8px solid
    color-mix(in srgb,var(--theme-color) 70%,black 30%);
}

.product-category::before{
    left:0;
    border-right:8px solid transparent;
}

.product-category::after{
    right:0;
    border-left:8px solid transparent;
}

.product-mini-section{
    margin-top:25px;
    padding-top:20px;

    border-top:
    1px solid rgba(0,0,0,.12);
}

.product-mini-section h3{
    margin-bottom:10px;
    color:var(--theme-color);
    font-size:1rem;
    text-transform:uppercase;
    letter-spacing:1px;
}

/************************************************
GRILLE PRINCIPALE
************************************************/
.product-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:20px;
    align-items:stretch;
    margin:10px 0;
}
.product-info,
.product-card,
.product-section{
    background:linear-gradient(
        180deg,
        #f0eadf,
        #e4dccd
    );
    color:var(--card-text);
    font-size:1.2rem;
    border:1px solid var(--card-border);
    box-shadow:var(--card-shadow);
    border-radius:24px;
}
.product-gallery{
    background:linear-gradient(
        180deg,
        #f0eadf,
        #e4dccd
    );
    color:var(--card-text);
    border:none;
    box-shadow:var(--card-shadow);
    border-radius:24px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

/************************************************
GALERIE
************************************************/
.product-gallery{
    overflow:hidden;
    display:flex;
    flex-direction:column;
    position:relative;
    margin-top:20px;
}
.product-ribbon{
    position:absolute;
    top:22px;
    left:-50px;

    width:200px;
    min-height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:.85rem;
    font-weight:700;
    line-height:1;

    background:var(--theme-gradient);
    filter:brightness(1.15);

    transform:rotate(-45deg);
    transform-origin:center center;

    white-space:nowrap;
    z-index:5;

    box-shadow:
        0 6px 18px rgba(0,0,0,.25);
}
.product-main-image{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
    border-radius:24px 24px 0 0;
    margin:0;
    box-shadow:none;
    cursor:pointer;
}
.thumbnail{
    width:130px;
    height:130px;
    object-fit:cover;
    border-radius:14px;
    transition:.25s;
}
.product-thumbnails{
    display:flex;
    justify-content:center;
    gap:15px;
    padding:20px;
}
.thumbnail:hover{
    transform:scale(1.04);
    border:2px solid var(--theme-color);
}
/************************************************
AUDIO
************************************************/
.product-audio{
    text-align:center;
    margin-top:15px;
}
.product-audio audio{
    width:260px;
    max-width:100%;
    display:block;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:10px;
}
.product-audio h3{
    margin:0 0 12px;
    color:var(--theme-color);
    font-size:.95rem;
}
/************************************************
INFOS
************************************************/
.product-info{
    padding:25px;
    margin-top:20px;
}
.product-info h2{
	color:#2f2617;
    margin-bottom:10px;
font-size:2.1rem;
    font-family:'Great Vibes', cursive;
}
.product-info h2::after{
    content:"";
    display:block;
    width:160px;
    height:2px;
    margin-top:10px;
    background:var(--theme-gradient);
}
.product-info p{
    line-height:1.5;
    margin-bottom:8px;
}
.product-price{
    margin-top:25px;
    font-size:1.8rem;
    font-weight:700;
color:var(--theme-color);
}
.product-stock{
    margin-top:15px;
    line-height:1.5;
}
.product-origin{
    margin-top:15px;
    color:#5a4d37;
}
.disabled{
    opacity:.5;
    pointer-events:none;
}
/* Tag Album Index */
.product-tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin:15px 0;
}
.tag{
    display:inline-block;
    padding:4px 8px;
    font-size:1rem;
    border-radius:8px;
    background:rgba(255,255,255,.55);
    border:1px solid
    color-mix(
        in srgb,
        var(--theme-color) 40%,
        white
    );
    color:var(--theme-color);
    font-size:.72rem;
    font-weight:700;
    text-transform:uppercase;
    text-decoration:none;
    transition:.2s;
}
.tag:hover{
    background:rgba(255,255,255,.12);
}
/************************************************
BOUTONS
************************************************/

.product-purchase{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-top:20px;
}
/************************************************
SECTIONS
************************************************/
.product-section{
    padding:25px;
    margin-top:20px;
}
.product-section h2{
	    color:#2f2617;
    margin-bottom:10px;
font-size:2.1rem;
    font-family:'Great Vibes', cursive;
}
.product-section p{
    line-height:1.5;
}
/************************************************
CARTES
************************************************/
.product-card{
    padding:25px;
    margin-top:20px;
}

.product-card h2{
	    color:#2f2617;
    margin-bottom:10px;
font-size:2.1rem;
    font-family:'Great Vibes', cursive;
}

.product-card p{
    line-height:1.5;
}

.product-card ul{
    margin:0;
    padding-left:20px;
}

.product-card li{
    margin-bottom:10px;
    line-height:1.5;
}

.card h3 a{
    color:inherit;
    text-decoration:none;
}
/************************************************
GRILLES
************************************************/
.product-two-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.product-three-columns{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
/************************************************
AFFICHE
************************************************/
.product-poster{
    width:100%;
    border-radius:18px;
    display:block;
    cursor:pointer;
}
.poster-note{
    margin-top:12px;
    text-align:center;
    font-size:.9rem;
    color:#7b6d56;
}
/************************************************
ZOOM
************************************************/
.image-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:20px;
}
.image-modal.active{
    display:flex;
}
.image-modal img{
    max-width:95%;
    max-height:95%;
    border-radius:12px;
}
.close-modal{
    position:absolute;
    top:20px;
    right:25px;
    font-size:2rem;
    color:#fff;
    cursor:pointer;
}
/************************************************
PRODUITS SIMILAIRES FIChe Produit 
************************************************/
.similar-products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.similar-product{
    background:linear-gradient(
        180deg,
        #f0eadf,
        #e4dccd
    );
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--card-shadow);
    display:flex;
    flex-direction:column;
}
.similar-product-image{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
}
.similar-product-content{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}
.similar-product h3{
    margin-bottom:10px;
}
.similar-product h3 a{
    color:#2f2617;
    text-decoration:none;
}
.similar-product p{
    color:#4b3d29;
    line-height:1.5;
    margin-bottom:20px;
    font-size:1.2rem;
}
.similar-product .btn-order{
    width:100%;
    text-align:center;
    margin-top:auto;
}
/* =====================================================
FOOTER PREMIUM
===================================================== */
.site-footer{
    padding:4rem 1.5rem 2rem;
    background:
    radial-gradient(
        circle at top,
        rgba(41,69,44,.25),
        transparent 40%
    ),
    linear-gradient(
        to bottom,
        #081009,
        #050805
    );
    border-top:1px solid rgba(216,188,121,.20);
    color:var(--text);
}
.footer-separator{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:20px;
    color:var(--gold);
    font-size:1.4rem;
}
.footer-separator::before,
.footer-separator::after{
    content:'';
    width:140px;
    height:1px;
    background:
    linear-gradient(
        to right,
        transparent,
        rgba(216,188,121,.65),
        transparent
    );
}
.footer-separator-small{
    margin-top:2rem;
    margin-bottom:3rem;
}
.footer-brand{
    text-align:center;
}
.footer-brand h2{
    font-family:'Cinzel', serif;
    font-size:3rem;
    color:var(--gold-light);
    letter-spacing:3px;
    margin-bottom:1.5rem;
}
.footer-devise{
    font-family:'Great Vibes', cursive;
    font-size:2rem;
    color:#d7cfbe;
    line-height:1.5;
    font-style:italic;
}
.footer-columns{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;
}
.footer-column{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.footer-column h3{
    font-family:'Cinzel', serif;
    color:var(--gold-light);
    margin-bottom:1.2rem;
    font-size:1.2rem;
}
.footer-column a{
    color:#cfc8ba;
    text-decoration:none;
    transition:.3s;
}
.footer-column a:hover{
    color:var(--gold-light);
    transform:translateX(4px);
}
.footer-column p{
    color:#bdb5a4;
    line-height:1.5;
}
.footer-copyright{
    text-align:center;
    margin-top:3rem;
    padding-top:2rem;
    border-top:1px solid rgba(216,188,121,.08);
    color:#777065;
    font-size:.85rem;
}