/* --- BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}
html { overflow-y: scroll; overflow-x: hidden; }
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body:has(.pay-container) { background-color: #f8f9fa; }
h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid #d35400;
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.nav-logo span { color: #d35400; }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: #d35400; }

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.burger-menu span {
    width: 25px;
    height: 3px;
    background: #d35400;
    transition: 0.3s;
}

/* --- FOOTER --- */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
    margin-top: auto;
    width: 100%;
}
.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.footer-col h3, .footer-col h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}
.footer-col h3 span { color: #d35400; }
.footer-col { text-align: center; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #aaa; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: #d35400; }
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.social-icon {
    color: #aaa;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}
.social-icon:hover {
    color: #d35400;
    transform: scale(1.1);
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* --- ACCUEIL --- */
.banner {
    width: 100%;
    height: 450px;
    background: url('../img/banniere.png') center/cover;
}
.main-title { padding: 40px 20px 10px; text-align: center; background: white; }
.logo { font-size: 2.5rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.logo span { color: #d35400; }
.separator { width: 20px; height: 3px; background: #d35400; margin: 25px auto; }
.cat-title { font-size: 2rem; color: #1a1a1a; }

.action-buttons { display: flex; justify-content: center; gap: 20px; padding: 10px 20px 30px; flex-wrap: wrap; }
.btn-main-action {
    display: inline-block;
    background: #d35400;
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
    border: 2px solid transparent;
}
.btn-main-action:hover { background: transparent; color: #d35400; border-color: #d35400; }
.btn-main-action.btn-outline { background: transparent; color: #d35400; border-color: #d35400; }
.btn-main-action.btn-outline:hover { background: #d35400; color: white; }

.gallery { padding: 20px 10%; background: white; text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 10px; }
.gallery-card { text-decoration: none; color: inherit; display: block; }
.gallery-caption { display: block; margin-top: 12px; font-weight: 600; color: #d35400; }
.gallery-item {
    height: 350px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    filter: grayscale(30%);
    transition: 0.5s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.gallery-card:hover .gallery-item { filter: grayscale(0%); transform: translateY(-10px); }

.reviews { padding: 80px 10%; text-align: center; }
.reviews-container { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid #d35400;
}
.review-card p::before {
    content: "★★★★★";
    display: block;
    color: #f1c40f;
    margin-bottom: 10px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* --- EN-TÊTES DE PAGES --- */
.form-header { text-align: center; padding: 120px 20px 50px; background: white; }
.form-header h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
    text-wrap: balance;
}
.form-header p {
    font-size: 1.15rem;
    color: #666 !important;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    text-wrap: balance;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    max-width: 700px;
    margin: 25px auto 0;
    padding: 25px 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.quick-info-cell { display: flex; align-items: flex-start; justify-content: flex-start; gap: 15px; }
.quick-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: #fdfaf7;
    border-radius: 50%;
    border: 1px solid #ffe0b2;
    margin-top: 2px;
}
.quick-text { display: flex; flex-direction: column; text-align: left; }
.quick-label {
    color: #d35400;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.quick-value { color: #555; font-size: 0.8rem; line-height: 1.4; }

/* --- FORMULAIRES --- */
.order-wrapper { max-width: 1000px; width: 100%; margin: -40px auto 40px; padding: 0 20px; box-sizing: border-box; }
.form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.form-section h2 { color: #d35400; margin-bottom: 25px; font-size: 1.8rem; }
.instruction { font-size: 0.95rem; color: #666; margin-bottom: 15px; }

input, select, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}
input:focus, select:focus, textarea:focus {
    border-color: #d35400;
    box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}
.hp-website {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.field input.invalid,
.field textarea.invalid,
.field select.invalid {
    border-color: #c0392b !important;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.site-toast {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(26, 26, 26, 0.45);
}
.site-toast[hidden] { display: none !important; }
.site-toast-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 22px 22px 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-top: 5px solid #c0392b;
}
.site-toast.is-success .site-toast-card { border-top-color: #27ae60; }
.site-toast.is-info .site-toast-card { border-top-color: #d35400; }
.site-toast-title {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
}
.site-toast-body p {
    margin: 0 0 8px;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #555;
}
.site-toast-body p:last-child { margin-bottom: 0; }
.site-toast-ok {
    margin-top: 16px;
    background: #d35400;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 28px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.site-toast.is-success .site-toast-ok { background: #27ae60; }
.field { display: flex; flex-direction: column; text-align: left; gap: 8px; }
.field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #d35400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.input-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.btn-del { color: #e74c3c; background: none; border: none; font-size: 1.2rem; cursor: pointer; }
.btn-clear-link {
    background: none;
    border: none;
    color: #e74c3c;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 10px;
    font-size: 0.95rem;
}
.btn-add {
    background: #27ae60;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}
.btn-add:hover {
    background: #219653;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

#recap-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.table-wrap { width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
#recap-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid #f4f4f4;
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
}
#recap-table td { padding: 15px; border-bottom: 1px solid #f9f9f9; vertical-align: top; }
#recap-table .recap-price { white-space: nowrap; font-weight: bold; }
#recap-table .recap-qty { color: #666; white-space: normal; }
.recap-pieces {
    display: block;
    font-size: 0.82rem;
    color: #d35400;
    margin-top: 4px;
    font-weight: 600;
}

.total-bar {
    background: #1a1a1a;
    color: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pricing p { margin-bottom: 5px; color: #aaa; }
.pricing .final { font-size: 2.2rem; color: #d35400; }
.btn-send-devis {
    background: #d35400;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.btn-send-devis:hover { background: #e67e22; transform: scale(1.03); }

.allergen-box {
    max-width: 600px;
    margin: 25px auto 0;
    background-color: #fff;
    border: 1px solid #eee;
    border-left: 5px solid #d35400;
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.allergen-header { display: flex; align-items: center; color: #333; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 10px; }
.info-icon { margin-right: 10px; font-size: 1.2rem; }
.allergen-content { font-size: 0.85rem; color: #555; line-height: 1.5; }
.allergen-content span { color: #d35400; font-weight: bold; }
.allergen-footer { margin-top: 10px; font-size: 0.8rem; font-style: italic; color: #888; }

/* --- PICKER APÉRITIFS --- */
.picker-container { margin-bottom: 30px; }
.picker-state-box { margin-bottom: 20px; text-align: left; }
.picker-selection-row {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    padding: 20px;
    background: #fdfaf7;
    border: 1px solid #ffe0b2;
    border-radius: 12px;
}
.picker-group-main { flex: 2; display: flex; flex-direction: column; gap: 8px; }
.picker-group-qty { flex: 0 0 130px; display: flex; flex-direction: column; gap: 8px; }
.picker-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #d35400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}
.picker-select, .picker-input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: white;
    font-size: 0.9rem;
    height: 50px;
    outline: none;
    transition: 0.3s;
}
.picker-select:focus, .picker-input:focus { border-color: #d35400; }
.picker-input { text-align: center; }
.picker-btn-add {
    height: 50px;
    background: #27ae60;
    color: white;
    border: none;
    padding: 0 25px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}
.picker-btn-add:hover {
    background: #219653;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

/* --- OPTIONS (GÂTEAUX & SNACK) --- */
.category-subtitle {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffe0b2;
    padding-bottom: 5px;
}
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 15px;
}
.option-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.option-card:hover {
    border-color: #d35400;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.option-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 5px;
}
.option-card span { font-size: 0.9rem; font-weight: 600; color: #333; line-height: 1.2; }
.option-card strong { font-size: 0.85rem; color: #d35400; }
.option-card.selected,
.option-card.active {
    border-color: #27ae60;
    background-color: #f0fff4;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}
.option-card.active strong { color: #27ae60; }

.base-package-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdfaf7;
    border: 1px solid #ffe0b2;
    padding: 20px;
    border-radius: 12px;
}
.package-info h3 { font-size: 1.2rem; color: #333; margin-bottom: 5px; }
.package-info p { font-size: 0.9rem; color: #666; }
.package-price { font-size: 1.5rem; font-weight: bold; color: #d35400; }
.recap-zone { margin-top: 30px; border-top: 1px solid #eee; padding-top: 20px; }
.recap-zone h3 { margin-bottom: 15px; font-size: 1.2rem; }

/* --- CGV --- */
.content-wrapper { max-width: 900px; margin: -30px auto 60px; padding: 0 20px; position: relative; z-index: 10; }
.info-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.info-card h2 {
    color: #d35400;
    margin-bottom: 30px;
    font-size: 1.8rem;
    border-bottom: 2px solid #fdfaf7;
    padding-bottom: 10px;
}
.condition-group { margin-bottom: 25px; }
.condition-group h3 { font-size: 1.2rem; color: #1a1a1a; margin-bottom: 10px; }
.info-card p { color: #555; margin-bottom: 15px; font-size: 1rem; }
.info-card ul { margin-left: 20px; margin-bottom: 20px; color: #555; }
.info-card ul li { margin-bottom: 8px; }
.mini-list { list-style: none !important; margin-left: 0 !important; display: flex; flex-wrap: wrap; gap: 15px; margin-top: 10px; }
.mini-list li { background: #fdfaf7; padding: 8px 15px; border-radius: 8px; border: 1px solid #ffe0b2; font-weight: 600; font-size: 0.9rem; }
.note { font-style: italic; background: #f9f9f9; padding: 15px; border-radius: 10px; border-left: 4px solid #ddd; }
.warning { color: #e74c3c !important; font-weight: 600; font-size: 0.9rem !important; margin-top: 20px; padding: 15px; border: 1px dashed #e74c3c; border-radius: 10px; }

/* --- FAQ --- */
.faq-wrapper { max-width: 800px; margin: -20px auto 50px; padding: 0 20px; position: relative; z-index: 10; }
.faq-category { margin-bottom: 50px; }
.category-title {
    font-family: 'Playfair Display', serif;
    color: #d35400;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffe0b2;
    padding-bottom: 10px;
}
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: none;
    border: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}
.faq-question::after {
    content: '+';
    color: #d35400;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
.faq-answer {
    max-height: 0;
    padding: 0 25px;
    color: #555;
    transition: all 0.3s ease-out;
    background: #fffcf9;
    font-size: 0.95rem;
    opacity: 0;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 25px 25px; opacity: 1; }
.faq-item.active .faq-question { color: #d35400; }
.faq-item.active .faq-question::after { content: '-'; transform: rotate(180deg); }

/* --- PAIEMENT --- */
.pay-container {
    max-width: 550px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Playfair Display', serif, Arial;
}
.logo-header { font-size: 1.5rem; margin-bottom: 5px; font-weight: 400; letter-spacing: 3px; color: #333; }
.logo-header span { color: #d35400; }
.logo-sub { font-size: 1.3rem; font-weight: bold; color: #333; margin-bottom: 25px; }
.client-name { color: #d35400; font-weight: bold; font-size: 1.5rem; }
.pay-container input[type="number"] {
    width: 110px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.3rem;
    text-align: center;
    background-color: #f9f9f9;
    color: #333;
    font-weight: bold;
}
.pay-notice {
    background: #fff9f4;
    border-left: 4px solid #d35400;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555;
    text-align: left;
}
#paypal-button-container { margin-top: 20px; }

.admin-tool { text-align: left; }
.admin-tool .logo-sub { text-align: center; }
.admin-tool .field { margin-bottom: 16px; }
.admin-tool input[type="number"],
.admin-tool input[type="text"],
.admin-tool input[type="email"],
.admin-tool input[type="password"] {
    width: 100%;
    font-size: 1rem;
    text-align: left;
    background: white;
}
#access-pin { letter-spacing: 0.4em; text-align: center !important; font-size: 1.3rem !important; }
.admin-tool .btn-copy {
    width: 100%;
    margin-top: 12px;
    background: #d35400;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.admin-tool .btn-copy:hover { background: #e67e22; }
.admin-tool .link-box {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #ffe0b2;
    border-radius: 10px;
    background: #fdfaf7;
    font-size: 0.85rem;
    word-break: break-all;
    font-family: 'Poppins', sans-serif;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .burger-menu { display: flex; }
    .burger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-menu.active span:nth-child(2) { opacity: 0; }
    .burger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .action-buttons { flex-direction: column; align-items: center; gap: 15px; }
    .action-buttons .btn-main-action { width: 100%; max-width: 320px; font-size: 1rem; padding: 15px 20px; }

    .form-header { padding: 100px 15px 30px; }
    .form-header h1 { font-size: 1.8rem; margin-bottom: 10px; }
    .form-header p { font-size: 0.95rem; padding: 0 10px; line-height: 1.4; }

    .quick-info-grid { grid-template-columns: 1fr; padding: 20px; gap: 0; }
    .quick-info-cell { padding: 15px 0; border-bottom: 1px solid #f2f2f2; }
    .quick-info-cell:first-child { padding-top: 0; }
    .quick-info-cell:last-child { border-bottom: none; padding-bottom: 0; }

    .input-grid { grid-template-columns: 1fr; }
    .input-grid .field { grid-column: span 1 !important; }
    .total-bar { flex-direction: column; text-align: center; gap: 20px; }
    .form-section { padding: 25px 16px; overflow-x: hidden; }
    .table-wrap { margin: 12px 0; }
    #recap-table { margin: 12px 0; }
    #recap-table thead { display: none; }
    #recap-table,
    #recap-table tbody,
    #recap-table tr,
    #recap-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    #recap-table tr {
        background: #fdfaf7;
        border: 1px solid #ffe0b2;
        border-radius: 10px;
        padding: 12px;
        margin-bottom: 12px;
    }
    #recap-table td {
        padding: 4px 0;
        border-bottom: none;
        text-align: left !important;
        white-space: normal;
    }
    #recap-table .recap-price,
    #recap-table td:last-child {
        text-align: right !important;
        white-space: nowrap;
    }
    .options-grid { grid-template-columns: repeat(2, 1fr); }
    .base-package-card { flex-direction: column; text-align: center; gap: 15px; }

    .picker-selection-row { flex-direction: column; align-items: stretch; gap: 15px; padding: 15px; }
    .picker-group-qty { flex: none; width: 100%; }
    .picker-btn-add { width: 100%; }

    .info-card { padding: 25px 20px; }
    .faq-question { font-size: 1.05rem; padding: 15px; }
    .faq-item.active .faq-answer { padding: 0 15px 15px; }
}

/* --- ATELIER PRIVÉ (hors menu) --- */
body.atelier-page {
    background: linear-gradient(160deg, #2c2320 0%, #4a3a33 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
}
.atelier-logo { display: block; margin: 0 auto 18px; }
.atelier-gate,
.atelier-hub {
    width: 100%;
    max-width: 760px;
    text-align: center;
    color: #fff;
}
.atelier-gate-box {
    max-width: 360px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(230, 162, 60, 0.4);
    border-radius: 18px;
    padding: 32px 26px;
    backdrop-filter: blur(6px);
}
.atelier-gate-box h2 {
    margin: 0 0 20px;
    font-size: 1.5rem;
    color: #fff;
}
.atelier-gate-box label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e6a23c;
    margin-bottom: 8px;
}
.atelier-gate-box input {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(230, 162, 60, 0.5);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 12px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.atelier-gate-box input:focus { outline: 2px solid #e6a23c; }
.atelier-gate-box button {
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #d35400;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
.atelier-gate-box button:hover { background: #e67e22; }
.atelier-error {
    margin: 14px 0 0;
    color: #ff9b8f;
    font-size: 0.9rem;
}
.atelier-hub h1 {
    margin: 0 0 6px;
    font-size: 2.2rem;
    color: #fff;
}
.atelier-sub {
    margin: 0 0 30px;
    color: #d8cfc9;
    font-size: 0.95rem;
    line-height: 1.6;
}
.atelier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.atelier-card {
    display: block;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(230, 162, 60, 0.35);
    border-radius: 16px;
    padding: 28px 22px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.atelier-card:hover {
    transform: translateY(-4px);
    border-color: #e6a23c;
    background: rgba(255, 255, 255, 0.12);
}
.atelier-card.is-soon { opacity: 0.6; cursor: default; }
.atelier-card.is-soon:hover { transform: none; }
.atelier-ico { display: block; font-size: 2.4rem; margin-bottom: 12px; }
.atelier-card strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #e6a23c;
}
.atelier-card span:last-child {
    display: block;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #d8cfc9;
}
.atelier-lock,
.atelier-page .atelier-nav a {
    display: inline-block;
    margin-top: 26px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 9px 18px;
    color: #d8cfc9;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
}
.atelier-lock:hover,
.atelier-page .atelier-nav a:hover { border-color: #e6a23c; color: #e6a23c; }

/* --- PAGE MERCI (retour de paiement) --- */
.merci-container { max-width: 560px; }
.merci-ico { font-size: 3.2rem; margin: 10px 0 6px; }
.merci-titre { font-size: 1.8rem; margin: 0 0 12px; color: #333; }
.merci-titre span { color: #d35400; }
.merci-texte {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 22px;
}
.merci-recap {
    background: #fdfaf7;
    border: 1px solid #ffe0b2;
    border-radius: 12px;
    padding: 16px 18px;
    margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
}
.merci-ligne {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.95rem;
    color: #555;
    padding: 5px 0;
}
.merci-ligne strong { color: #d35400; }
.btn-retour-site {
    display: inline-block;
    margin-top: 8px;
    padding: 14px 30px;
    background: #d35400;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.btn-retour-site:hover { background: #e67e22; }
