/* ============================================
   SHENVO E-COMMERCE - STYLESHEET COMPLET
   ============================================
   ✅ AUTH SYSTEM complet & professionnel
   ✅ Doublons supprimés
   ✅ :root consolidé
   ✅ @import dédupliqués
   ✅ 100% responsive

   TABLE DES MATIÈRES :
   ====================
   1.  VARIABLES & FONTS ........... Ligne ~50
   2.  FAQ SYSTEM .................. Ligne ~100
   3.  PRODUCT INFO ................ Ligne ~500
   4.  TOP NOTICE .................. Ligne ~700
   5.  TIMELINE .................... Ligne ~800
   6.  ABOUT PAGE .................. Ligne ~1000
   7.  CONTACT PAGE ................ Ligne ~1400
   8.  WISHLIST PAGE ............... Ligne ~1700
   9.  CART PAGE ................... Ligne ~2100
   10. CHECKOUT PAGE ............... Ligne ~2700
   11. SUCCESS PAGE ................ Ligne ~3300
   12. AUTH SYSTEM ................. Ligne ~3700
   13. 📱 RESPONSIVE ............... Ligne ~4400
   14. LEGAL PAGES ................. Ligne ~5000
   15. DASHBOARD ................... Ligne ~5200
============================================ */


/* ============================================
   1. VARIABLES & FONTS
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700&family=DM+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* ── Brand ── */
    --primary:        #06D6A0;
    --primary-dark:   #05B589;
    --primary-light:  #7FE8CC;
    --secondary:      #073B4C;
    --accent:         #FFD166;

    /* ── States ── */
    --success:  #10B981;
    --error:    #EF4444;
    --warning:  #F59E0B;

    /* ── Text ── */
    --text-dark:    #1A1A2E;
    --text-body:    #374151;
    --text-light:   #6B7280;
    --text-lighter: #9CA3AF;
    --heading-color:#313131;

    /* ── Backgrounds ── */
    --bg-page:  #F9FAFB;
    --bg-white: #FFFFFF;
    --bg-gray:  #F3F4F6;
    --bg-light: #F8FAFC;

    /* ── Borders & Shadows ── */
    --border:       #E5E7EB;
    --border-light: #F3F4F6;
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.05);
    --shadow-md:    0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg:    0 10px 40px rgba(0,0,0,0.12);

    /* ── Layout ── */
    --radius:     12px;
    --radius-lg:  16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    background: var(--bg-page);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

[v-cloak] { display: none; }


/* ============================================
   2. FAQ SYSTEM
============================================ */

.faq-page,
.faq-category-page {
    --faq-primary:      #06D6A0;
    --faq-primary-dark: #05B589;
    --faq-secondary:    #073B4C;
    --faq-accent:       #FFD166;
    --faq-text:         #1A1A2E;
    --faq-text-light:   #6B7280;
    --faq-bg:           #F8FAFC;
    --faq-white:        #FFFFFF;
    --faq-border:       #E5E7EB;
}

.faq-hero-section {
    background: linear-gradient(135deg, #073B4C 0%, #0A5568 100%);
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.faq-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(6,214,160,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,209,102,0.10) 0%, transparent 50%);
    pointer-events: none;
}

.faq-hero-content { position: relative; z-index: 2; text-align: center; color: white; }
.faq-hero-content h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em; }
.faq-hero-content p  { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }

.breadcrumb-faq { background: transparent; padding: 0; margin-bottom: 1.5rem; font-size: 0.875rem; }
.breadcrumb-faq .breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-faq .breadcrumb-item { color: rgba(255,255,255,0.7); }
.breadcrumb-faq .breadcrumb-item a { color: rgba(255,255,255,0.9); text-decoration: none; transition: all 0.3s ease; }
.breadcrumb-faq .breadcrumb-item a:hover { color: #06D6A0; }
.breadcrumb-faq .breadcrumb-item.active { color: white; }
.breadcrumb-faq .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); content: "›"; padding: 0 0.5rem; }

.faq-hero-search { max-width: 700px; margin: 0 auto; position: relative; display: none; }
.faq-hero-search .faq-search-form { display: flex; background: white; border-radius: 50px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.15); transition: all 0.3s ease; }
.faq-hero-search .faq-search-form:focus-within { box-shadow: 0 15px 50px rgba(0,0,0,0.2); transform: translateY(-2px); }
.faq-hero-search .faq-search-input { flex: 1; border: none; padding: 1.25rem 1.5rem; font-size: 1rem; outline: none; background: transparent; }
.faq-hero-search .faq-search-btn { background: #06D6A0; color: white; border: none; padding: 1.25rem 2rem; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; }
.faq-hero-search .faq-search-btn:hover { background: #05B589; }

.faq-search-form { display: flex; }
.faq-search-input { padding: 2px 4px; font-size: 14px; border: 1px solid #ccc; border-right: none; border-radius: 4px 0 0 4px; outline: none; }
.faq-search-btn { padding: 2px; font-size: 14px; background-color: #245dc0; border: 1px solid #ccc; border-radius: 0 4px 4px 0; cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.faq-search-btn:hover { background-color: #f8f9fa; }

.faq-content-wrapper { margin-top: -3rem; padding-bottom: 5rem; position: relative; z-index: 3; }

.widget.faq-widget { background: white; border-radius: 1rem; padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); border: 1px solid #E5E7EB; transition: all 0.3s ease; }
.widget.faq-widget:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.widget.faq-widget .widget-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 1.25rem; color: #1A1A2E; position: relative; padding-left: 1rem; }
.widget.faq-widget .widget-title::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 1.25rem; background: #06D6A0; border-radius: 2px; }

.faq-search-box .faq-search-form { display: flex; gap: 0.5rem; }
.faq-search-box .faq-search-input { flex: 1; padding: 0.75rem 1rem; border: 1px solid #E5E7EB; border-radius: 0.5rem; font-size: 0.875rem; transition: all 0.3s ease; }
.faq-search-box .faq-search-input:focus { outline: none; border-color: #06D6A0; box-shadow: 0 0 0 3px rgba(6,214,160,0.1); }
.faq-search-box .faq-search-btn { padding: 0.75rem 1.25rem; background: #06D6A0; color: white; border: none; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; }
.faq-search-box .faq-search-btn:hover { background: #05B589; }

.simple-post-list { list-style: none; padding: 0; margin: 0; }
.simple-post-list li { padding: 0.75rem 0; border-bottom: 1px solid #E5E7EB; }
.simple-post-list li:last-child { border-bottom: none; }
.simple-post-list .post-info a { color: #1A1A2E; text-decoration: none; font-size: 0.875rem; font-weight: 500; display: block; margin-bottom: 0.25rem; transition: color 0.3s ease; }
.simple-post-list .post-info a:hover { color: #06D6A0; }
.simple-post-list .post-meta { font-size: 0.75rem; color: #6B7280; display: flex; align-items: center; gap: 0.25rem; }

.tagcloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tagcloud a { background: #F8FAFC; color: #1A1A2E; padding: 0.375rem 0.875rem; border-radius: 1.25rem; font-size: 0.813rem; text-decoration: none; transition: all 0.3s ease; border: 1px solid #E5E7EB; }
.tagcloud a:hover { background: #06D6A0; color: white; border-color: #06D6A0; transform: translateY(-2px); }

.search-results-header { background: white; border-radius: 1rem; padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); border-left: 4px solid #06D6A0; }
.search-results-header h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; color: #1A1A2E; }
.search-results-header .search-query,
.search-results-header p { color: #06D6A0; font-size: 0.875rem; font-weight: 600; margin: 0; }

.card-accordion { background: white; border-radius: 1rem; margin-bottom: 1rem; border: 1px solid #E5E7EB; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 0.3s ease; overflow: hidden; }
.card-accordion:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: #06D6A0; }
.card-accordion .card-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; background: white; border: none; font-size: 1rem; font-weight: 600; color: #1A1A2E; cursor: pointer; text-decoration: none; transition: all 0.3s ease; gap: 1rem; }
.card-accordion .card-header:hover { background: #F8FAFC; }
.card-accordion .card-header[aria-expanded="true"] { background: #F8FAFC; color: #06D6A0; }
.card-accordion .card-header::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: #06D6A0; transition: transform 0.3s ease; flex-shrink: 0; }
.card-accordion .card-header[aria-expanded="true"]::after { content: '−'; }
.card-accordion .card-body { padding: 0 1.5rem 1.5rem; color: #6B7280; font-size: 0.938rem; line-height: 1.7; }
.card-accordion .card-body p { margin-bottom: 0.75rem; }
.card-accordion .card-body ul,
.card-accordion .card-body ol { margin: 0.75rem 0; padding-left: 1.5rem; }

.country-badge { display: inline-block; background: #FFD166; color: #1A1A2E; padding: 0.25rem 0.75rem; border-radius: 0.75rem; font-size: 0.75rem; font-weight: 600; margin-left: 0.5rem; }

.card-body .legal-ref { margin-top: 1.25rem; padding: 1rem; background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); border-left: 3px solid #3B82F6; border-radius: 0.5rem; font-size: 0.875rem; }
.card-body .legal-ref strong { color: #3B82F6; display: block; margin-bottom: 0.25rem; }

.section-title.faq-section-title { text-align: center; font-size: 2rem; font-weight: 700; color: #1A1A2E; margin: 3.75rem 0 2.5rem; }

.faq-categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 3.75rem; }
.faq-category-card { background: white; border-radius: 1rem; padding: 2rem 1.5rem; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid #E5E7EB; box-shadow: 0 2px 8px rgba(0,0,0,0.04); display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; overflow: hidden; }
.faq-category-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #06D6A0, #FFD166); transform: scaleX(0); transition: transform 0.3s ease; }
.faq-category-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); border-color: #06D6A0; }
.faq-category-card:hover::before { transform: scaleX(1); }
.faq-category-icon { font-size: 3rem; margin-bottom: 1rem; transition: transform 0.3s ease; }
.faq-category-card:hover .faq-category-icon { transform: scale(1.1); }
.faq-category-name { font-size: 1.125rem; font-weight: 700; color: #1A1A2E; margin-bottom: 0.5rem; }
.faq-category-count { font-size: 0.875rem; color: #6B7280; font-weight: 500; }

.cta-simple.cta-border { background: linear-gradient(135deg, #073B4C 0%, #0A5568 100%); border-radius: 1rem; padding: 3.75rem 2.5rem; text-align: center; color: white; position: relative; overflow: hidden; border: none; }
.cta-simple.cta-border::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(6,214,160,0.20) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255,209,102,0.15) 0%, transparent 50%); }
.cta-simple.cta-border > * { position: relative; z-index: 1; }
.cta-simple.cta-border h3 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.75rem; color: white; }
.cta-simple.cta-border p { font-size: 1rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }

.btn-contact { display: inline-flex; align-items: center; gap: 0.625rem; background: #06D6A0; color: white; padding: 1rem 2rem; border-radius: 3.125rem; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(6,214,160,0.3); }
.btn-contact:hover { background: #05B589; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,214,160,0.4); color: white; }

mark { background: linear-gradient(120deg, #FFD166 0%, #FFD166 100%); background-size: 100% 40%; background-repeat: no-repeat; background-position: 0 90%; padding: 0 0.25rem; color: #1A1A2E; font-weight: 600; }

.category-hero { background: linear-gradient(135deg, #073B4C 0%, #0A5568 100%); padding: 3rem 0 4rem; position: relative; overflow: hidden; }
.category-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(6,214,160,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,209,102,0.10) 0%, transparent 50%); pointer-events: none; }
.category-hero-content { position: relative; z-index: 2; text-align: center; color: white; }
.category-icon-large { font-size: 4rem; margin-bottom: 1rem; display: inline-block; animation: float 3s ease-in-out infinite; }
.category-hero-content h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em; }
.category-hero-content .lead { font-size: 1.125rem; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto; }

.breadcrumb-nav { background: transparent; padding: 1rem 0 0; }
.category-hero .breadcrumb { background: transparent; padding: 0; margin-bottom: 1.5rem; font-size: 0.875rem; justify-content: center; }
.category-hero .breadcrumb-item { color: rgba(255,255,255,0.7); }
.category-hero .breadcrumb-item a { color: rgba(255,255,255,0.9); text-decoration: none; transition: all 0.3s ease; }
.category-hero .breadcrumb-item a:hover { color: #06D6A0; }
.category-hero .breadcrumb-item.active { color: white; }
.category-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); content: "›"; }

.category-content-wrapper { margin-top: -2rem; padding-bottom: 5rem; position: relative; z-index: 3; }

.category-stats { background: white; border-radius: 1rem; padding: 1.5rem; margin-bottom: 2rem; box-shadow: 0 4px 16px rgba(0,0,0,0.08); display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 700; color: #06D6A0; display: block; }
.stat-label { font-size: 0.875rem; color: #6B7280; text-transform: uppercase; letter-spacing: 0.05em; }

.category-sidebar { position: sticky; top: 100px; }
.widget.category-widget { background: white; border-radius: 1rem; padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); border: 1px solid #E5E7EB; transition: all 0.3s ease; }
.widget.category-widget:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.widget.category-widget .widget-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 1.25rem; color: #1A1A2E; position: relative; padding-left: 1rem; }
.widget.category-widget .widget-title::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 1.25rem; background: #06D6A0; border-radius: 2px; }

.widget-categories .list1 { list-style: none; padding: 0; margin: 0; }
.widget-categories .list1 > li { margin-bottom: 0.75rem; }
.widget-categories .list1 > li > a { color: #1A1A2E; text-decoration: none; font-weight: 600; font-size: 0.938rem; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem; border-radius: 0.5rem; transition: all 0.3s ease; }
.widget-categories .list1 > li > a:hover { background: #F8FAFC; color: #06D6A0; padding-left: 1rem; }
.widget-categories .list1 > li > a::after { content: '›'; font-size: 1.25rem; color: #6B7280; transition: all 0.3s ease; }
.widget-categories .list1 > li > a:hover::after { color: #06D6A0; transform: translateX(4px); }
.widget-categories .list1 .list1 { margin-top: 0.5rem; padding-left: 1.5rem; }
.widget-categories .list1 .list1 li { margin-bottom: 0.5rem; }
.widget-categories .list1 .list1 a { font-size: 0.875rem; font-weight: 500; color: #6B7280; padding: 0.5rem; }

.faq-accordion .card-accordion { background: white; border-radius: 1rem; margin-bottom: 1rem; border: 1px solid #E5E7EB; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 0.3s ease; overflow: hidden; }
.faq-accordion .card-accordion:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: #06D6A0; }
.faq-accordion .card-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; background: white; border: none; font-size: 1rem; font-weight: 600; color: #1A1A2E; cursor: pointer; text-decoration: none; transition: all 0.3s ease; gap: 1rem; }
.faq-accordion .card-header:hover { background: #F8FAFC; }
.faq-accordion .card-header[aria-expanded="true"] { background: #F8FAFC; color: #06D6A0; }
.faq-accordion .card-header::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: #06D6A0; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-accordion .card-header[aria-expanded="true"]::after { content: '−'; }
.faq-accordion .card-body { padding: 0 1.5rem 1.5rem; color: #6B7280; font-size: 0.938rem; line-height: 1.7; }
.faq-accordion .card-body p { margin-bottom: 0.75rem; }
.faq-accordion .card-body ul,
.faq-accordion .card-body ol { margin: 0.75rem 0; padding-left: 1.5rem; }

.btn-sm.btn-primary { background: #06D6A0; border: none; color: white; padding: 0.5rem 1.25rem; border-radius: 2rem; font-weight: 600; font-size: 0.875rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-sm.btn-primary:hover { background: #05B589; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(6,214,160,0.3); }

.empty-state { text-align: center; padding: 4rem 2rem; background: white; border-radius: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.empty-state-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-state h3 { font-size: 1.5rem; font-weight: 600; color: #1A1A2E; margin-bottom: 0.5rem; }
.empty-state p { color: #6B7280; margin-bottom: 1.5rem; }

.faq-detail-breadcrumb { background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%); padding: 2rem 0; margin-bottom: 0; }
.faq-detail-breadcrumb .breadcrumb { background: transparent; padding: 0; margin: 0; font-size: 0.875rem; }
.faq-detail-breadcrumb .breadcrumb li { display: inline-block; }
.faq-detail-breadcrumb .breadcrumb li a { color: var(--text-light); text-decoration: none; transition: color 0.3s ease; }
.faq-detail-breadcrumb .breadcrumb li a:hover { color: var(--primary); }
.faq-detail-breadcrumb .breadcrumb li.active { color: var(--text-dark); font-weight: 500; }
.faq-detail-breadcrumb .breadcrumb li + li:before { content: "›"; padding: 0 0.75rem; color: var(--text-light); }

.faq-detail-container { padding: 4rem 0; }

.faq-article-header { margin-bottom: 3rem; animation: fadeInUp 0.8s ease-out; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.faq-category-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, var(--primary) 0%, #05B589 100%); color: white; padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.faq-question-title { font-family: 'Crimson Pro', serif; font-size: 2.75rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.faq-meta { display: flex; align-items: center; gap: 2rem; color: var(--text-light); font-size: 0.875rem; padding-bottom: 2rem; border-bottom: 2px solid var(--border); }
.faq-meta-item { display: flex; align-items: center; gap: 0.5rem; }
.faq-meta-item i { color: var(--primary); }

.faq-article-content { background: white; border-radius: 1.5rem; padding: 3rem; box-shadow: 0 4px 20px rgba(0,0,0,0.04); margin-bottom: 3rem; animation: fadeInUp 0.8s ease-out 0.2s both; }
.faq-answer { font-size: 1.125rem; line-height: 1.8; color: var(--text-body); }
.faq-answer h1,.faq-answer h2,.faq-answer h3,.faq-answer h4 { font-family: 'Crimson Pro', serif; color: var(--text-dark); margin-top: 2rem; margin-bottom: 1rem; font-weight: 700; }
.faq-answer p { margin-bottom: 1.5rem; }
.faq-answer ul,.faq-answer ol { margin: 1.5rem 0; padding-left: 2rem; }
.faq-answer li { margin-bottom: 0.75rem; }
.faq-answer strong { color: var(--text-dark); font-weight: 600; }
.faq-answer a { color: var(--primary); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.faq-answer a:hover { border-bottom-color: var(--primary); }

.legal-reference-box { background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%); border-left: 4px solid #3B82F6; border-radius: 0.75rem; padding: 1.5rem; margin-top: 2rem; }
.legal-reference-box strong { color: #3B82F6; font-size: 1rem; display: block; margin-bottom: 0.5rem; }
.legal-reference-box p { color: #1E40AF; margin: 0; font-size: 0.938rem; }

.faq-feedback-section { background: linear-gradient(135deg, var(--bg-light) 0%, #F0F9FF 100%); border-radius: 1.5rem; padding: 2.5rem; text-align: center; margin-bottom: 3rem; animation: fadeInUp 0.8s ease-out 0.4s both; }
.faq-feedback-section h4 { font-family: 'Crimson Pro', serif; font-size: 1.75rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.5rem; }
.feedback-buttons { display: flex; justify-content: center; gap: 1rem; }
.feedback-btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; border: 2px solid var(--border); background: white; border-radius: 3rem; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; color: var(--text-dark); }
.feedback-btn i { font-size: 1.25rem; transition: transform 0.3s ease; }
.feedback-btn-yes:hover { background: var(--success); border-color: var(--success); color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,185,129,0.3); }
.feedback-btn-no:hover { background: var(--error); border-color: var(--error); color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(239,68,68,0.3); }
.feedback-btn:hover i { transform: scale(1.2); }
.vote-result { margin-top: 1.5rem; padding: 1rem; background: white; border-radius: 0.75rem; display: none; animation: slideIn 0.5s ease-out; }

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

.vote-result.show { display: block; }
.vote-result p { margin: 0; color: var(--success); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.vote-result i { font-size: 1.5rem; }

.faq-sidebar { animation: fadeInUp 0.8s ease-out 0.6s both; }
.sidebar-card { background: white; border-radius: 1.5rem; padding: 2rem; margin-bottom: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid var(--border); }
.sidebar-card h4 { font-family: 'Crimson Pro', serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border); position: relative; }
.sidebar-card h4::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 60px; height: 2px; background: var(--primary); }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--bg-light); }
.sidebar-list li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-list a { color: var(--text-body); text-decoration: none; display: flex; align-items: flex-start; gap: 0.75rem; transition: all 0.3s ease; font-size: 0.938rem; line-height: 1.5; }
.sidebar-list a i { color: var(--primary); margin-top: 0.25rem; font-size: 0.75rem; transition: transform 0.3s ease; }
.sidebar-list a:hover { color: var(--primary); padding-left: 0.5rem; }
.sidebar-list a:hover i { transform: translateX(4px); }
.related-faq-card { background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%); }
.related-faq-card h4 { color: #92400E; }
.related-faq-card h4::after { background: #F59E0B; }
.related-faq-card .sidebar-list a i { color: #F59E0B; }
.related-faq-card .sidebar-list a:hover { color: #92400E; }

.back-to-faq { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; background: white; border: 2px solid var(--border); border-radius: 3rem; color: var(--text-dark); text-decoration: none; font-weight: 600; transition: all 0.3s ease; margin-bottom: 2rem; }
.back-to-faq:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateX(-4px); }
.back-to-faq i { transition: transform 0.3s ease; }
.back-to-faq:hover i { transform: translateX(-4px); }


/* ============================================
   3. PRODUCT INFO
============================================ */

.tred { padding-top: 0; padding-bottom: 0; }
.product-info-container { margin-bottom: 6.1rem; background-color: #d8dce5; }
.product-info-container .heading { margin: 6.1rem 0 5.2rem; font-size: 1.6rem; }
.product-info-container .heading h4 { margin-bottom: 5px; font-size: 1.33em; font-weight: 500; letter-spacing: 0.116em; color: rgba(34,37,41,0.7); }
.product-info-container .heading h2 { margin-bottom: 7px; font-size: 3em; line-height: 1; }
.product-info-container .heading h5 { margin-left: auto; margin-right: 5.2rem; }
.product-info-container .heading h5 span { letter-spacing: -0.025em; }
.product-info-container .coupon-sale-text { line-height: 1; letter-spacing: -0.04em; margin: 0 3px 0 12px; }
.product-info-container .coupon-sale-text em { margin: 0 -3px; }
.product-info-container .btn-group { width: 100%; }
.product-info-container .btn-group .btn { padding: 1.6rem 0 1.5rem; font-size: 1.6rem; letter-spacing: -0.02em; }

.product-info-item1 { display: flex; margin-bottom: 1.5rem; padding-left: 1px; align-items: center; }
.product-info-item1:first-child { margin-bottom: 1.6rem; }
.product-info-item1 .price-box,
.product-info-item1 .product-default,
.product-info-item1 .product-title { margin-bottom: 0; }
.product-default { color: #777; margin-bottom: 1rem; transition: box-shadow 0.3s ease-in-out; }
.product-info-item1::before { content: ""; margin-right: 1rem; width: 6px; height: 1px; background-color: #3d5167; }
.product-info-item1 .product-details { padding: 0; flex-direction: row; }
.product-info-item1 .product-title { font-size: 1.5rem; font-weight: 500; letter-spacing: -0.01em; }
.product-default .product-title { max-width: 100%; font-weight: 400; font-size: 1.5rem; font-family: Poppins, sans-serif; line-height: 1.35; letter-spacing: 0.005em; margin-bottom: 0.4rem; }
.product-info-item1 .price-box { margin: 0 2rem; letter-spacing: 0; font-family: 'Open Sans', sans-serif; margin-bottom: 1.4rem; font-weight: 600; line-height: 1; }
.product-info-item1 .product-price { color: #444; }
.product-info-item1 .btn-add-cart { margin-top: -3px; padding: 0; line-height: 1.3; font-size: 1.3rem; font-weight: 700; letter-spacing: -0.025em; border: 0; border-bottom: 1px solid; background-color: transparent; color: #3d5167; }
.product-info-item1 .btn-add-cart:hover { background: transparent; color: #3d5167; }

.product-info-image { position: relative; max-width: 400px; }
.product-popup-dot { position: absolute; }
.product-popup-dot > a { display: flex; align-items: center; justify-content: center; padding: 1rem; font-size: 0.8rem; }
.product-popup-dot > a::before { content: ""; width: 20px; height: 20px; border-radius: 50%; background-color: #ff7272; }
.product-popup-dot > a i { position: absolute; color: #fff; }
.product-popup-dot.dot-top-one    { top: 22.2%; left: 13.9%; }
.product-popup-dot.dot-middle-one { top: 60.1%; left: 18.7%; }
.product-popup-dot.dot-bottom-one { bottom: 7.4%; left: 11.9%; }
.product-popup-dot.dot-top-two    { top: 20.1%; left: 55.9%; }
.product-popup-dot.dot-middle-two { top: 52%;   left: 55.4%; }
.product-popup-dot.dot-bottom-two { bottom: 12.2%; left: 53.8%; }
.product-popup-wrap { position: absolute; top: -6.1rem; left: -9999999px; padding: 2rem; background: #fff; opacity: 0; visibility: hidden; z-index: 2; transition: opacity 0.3s, visibility 0.3s; }
.product-popup-dot:hover .product-popup-wrap { left: 100%; opacity: 1; visibility: visible; }
.product-popup-wrap figure img { max-width: 210px; }
.product-popup-wrap .btn-add-cart { width: 100%; padding: 4px 1.4rem; background-color: #3d5167; color: #fff; border: 0; }


/* ============================================
   4. TOP NOTICE
============================================ */

.top-notice { background: linear-gradient(135deg, #073B4C 0%, #0A5568 100%); border-bottom: 3px solid #06D6A0; }
.top-notice::before { background: radial-gradient(circle at 20% 50%, rgba(6,214,160,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,209,102,0.10) 0%, transparent 50%); pointer-events: none; }
.top-notice .category { background: rgba(6,214,160,0.2); border: 1.5px solid #06D6A0; border-radius: 2rem; color: #06D6A0; text-decoration: none; }
.top-notice .category:hover { background: #06D6A0; color: #073B4C; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(6,214,160,0.3); }


/* ============================================
   5. TIMELINE
============================================ */

.timeline-section { padding: 5rem 0; background: rgb(170,230,189); position: relative; }
.timeline-section .section-header { text-align: center; margin-bottom: 4rem; }
.timeline-section .section-header h2 { font-family: 'Crimson Pro', serif; font-size: 2rem; font-weight: 700; color: #2C5F4F; margin: 0; }

.timeline-wrapper { position: relative; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.timeline-wrapper::before { content: ''; position: absolute; left: 50%; top: 0; height: 100%; width: 10px; background: blue; transform: translateX(-50%); border-radius: 100px; z-index: 0; }

.box { position: relative; width: 200px; min-height: 150px; border-radius: 10px; background: white; margin-bottom: 10px; z-index: 1; opacity: 0; animation: fadeIn 0.6s ease-out forwards; }
.box-left  { left: -150px; }
.box-right { left:  150px; }
.box::after { content: ''; position: absolute; width: 35px; height: 35px; background: #06D6A0; border-radius: 0px 10px; transform: rotate(-45deg); z-index: -1; top: 5px; }
.box-left::after  { right: -10px; }
.box-right::after { left:  -10px; }
.box .date { padding: 5px; display: flex; justify-content: center; align-items: center; border-radius: 10px 10px 0 0; color: white; background: rgb(18,113,48); font-family: 'DM Sans', sans-serif; font-size: 1.25rem; font-weight: 700; min-height: 40px; }
.box-content { padding: 10px; }
.box-content p { font-size: 0.8rem; line-height: 1.5; color: #333; margin: 0; }
.box-content strong { display: block; font-weight: 700; margin-bottom: 5px; }
.box::before { content: '⟲'; position: absolute; top: 0; width: 50px; height: 50px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: rgb(18,113,48); z-index: 2; overflow: hidden; }
.box-left::before  { left: 113%; }
.box-right::before { right: 225px; }
.box:nth-child(1) { animation-delay: 0.1s; }
.box:nth-child(2) { animation-delay: 0.2s; }
.box:nth-child(3) { animation-delay: 0.3s; }
.box:nth-child(4) { animation-delay: 0.4s; }
.box:nth-child(5) { animation-delay: 0.5s; }
.box:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ============================================
   6. ABOUT PAGE
============================================ */

.about h1,.about h2,.about h3,.about .subtitle { font-family: 'Playfair Display', serif; }
.about { font-family: 'Poppins', sans-serif; color: var(--text-body); }

.page-header.page-header-bg { background: linear-gradient(135deg, var(--secondary) 0%, #0A5568 100%) !important; padding: 8rem 0 6rem; position: relative; overflow: hidden; }
.page-header.page-header-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(6,214,160,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,209,102,0.10) 0%, transparent 50%); pointer-events: none; }

.page-header:not(.page-header-bg) { background: linear-gradient(135deg, #073B4C 0%, #0A5568 100%); padding: 3rem 0 3.5rem; position: relative; overflow: hidden; }
.page-header:not(.page-header-bg)::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(6,214,160,0.15) 0%, transparent 50%); pointer-events: none; }
.page-header:not(.page-header-bg) .container { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.page-header:not(.page-header-bg) .breadcrumb-nav .breadcrumb { justify-content: center; background: transparent; padding: 0; margin-bottom: 1.5rem; }
.page-header:not(.page-header-bg) .breadcrumb-item,
.page-header:not(.page-header-bg) .breadcrumb-item a { color: rgba(255,255,255,0.75); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.page-header:not(.page-header-bg) .breadcrumb-item a:hover { color: var(--primary); }
.page-header:not(.page-header-bg) .breadcrumb-item.active { color: white; }
.page-header:not(.page-header-bg) .breadcrumb-item + .breadcrumb-item::before { content: "›"; color: rgba(255,255,255,0.40); padding: 0 0.5rem; }
.page-header:not(.page-header-bg) h1 { font-family: 'Crimson Pro', serif; font-size: 2.5rem; font-weight: 700; color: var(--accent); letter-spacing: -0.01em; margin: 0; line-height: 1.2; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.page-header:not(.page-header-bg) h1 i { font-size: 3rem; color: var(--accent); animation: heartbeat 1.8s ease-in-out infinite; display: block; margin-bottom: 0.25rem; }
.page-header:not(.page-header-bg) p { color: rgba(255,255,255,0.80); font-size: 1rem; margin-top: 0.75rem; margin-bottom: 0; }

.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: 4rem; font-weight: 900; color: white; margin-bottom: 1.5rem; line-height: 1.1; letter-spacing: -0.02em; animation: fadeInUp 0.8s ease-out; }
.page-header h1 span { display: block; font-size: 1.5rem; font-weight: 400; color: var(--accent); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.2em; }
.page-header p { font-size: 1.25rem; color: rgba(255,255,255,0.9); max-width: 700px; line-height: 1.8; margin-bottom: 2rem; animation: fadeInUp 0.8s ease-out 0.2s both; }
.page-header .btn-dark { background: var(--primary); border-color: var(--primary); color: white; padding: 1rem 2.5rem; font-size: 1rem; font-weight: 600; border-radius: 3rem; transition: all 0.3s ease; animation: fadeInUp 0.8s ease-out 0.4s both; display: inline-flex; align-items: center; gap: 0.75rem; }
.page-header .btn-dark:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,214,160,0.4); }

.breadcrumb-nav { padding: 1.25rem 0; }
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--text-light); text-decoration: none; transition: color 0.3s ease; }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-dark); }
.breadcrumb-item + .breadcrumb-item::before { content: "›"; color: var(--text-light); }

.about-section { padding: 5rem 0; }
.about-section .subtitle { font-size: 2.5rem; font-weight: 700; color: var(--text-dark); text-align: center; margin-bottom: 2rem; position: relative; padding-bottom: 1.5rem; }
.about-section .subtitle::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; }
.about-section p { font-size: 1.125rem; line-height: 1.8; color: var(--text-body); margin-bottom: 1.5rem; }
.about-section .lead { font-size: 1.5rem; font-style: italic; color: var(--secondary); text-align: center; padding: 2rem; margin: 3rem 0; border-left: 4px solid var(--primary); background: var(--bg-light); border-radius: 0.5rem; font-weight: 500; }

.features-section { background: var(--bg-light); padding: 5rem 0; }
.features-section .subtitle { font-size: 2.5rem; font-weight: 700; color: var(--text-dark); text-align: center; margin-bottom: 3rem; position: relative; padding-bottom: 1.5rem; }
.features-section .subtitle::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; }
.feature-box { background: white; border-radius: 1.5rem; padding: 3rem 2rem; text-align: center; margin-bottom: 2rem; transition: all 0.3s ease; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.04); height: 100%; }
.feature-box:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.10); border-color: var(--primary); }
.feature-box i { font-size: 4rem; color: var(--primary); margin-bottom: 1.5rem; display: block; transition: transform 0.3s ease; }
.feature-box:hover i { transform: scale(1.1); }
.feature-box h3 { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; }
.feature-box p { font-size: 1rem; color: var(--text-body); line-height: 1.7; margin: 0; }

.testimonials-section { background: var(--bg-light); padding: 5rem 0; }
.testimonials-section .subtitle { font-size: 2.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3rem; position: relative; padding-bottom: 1.5rem; }
.testimonials-section .subtitle::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; }
.testimonial-item { background: white; border-radius: 1.5rem; padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid var(--border); transition: all 0.3s ease; height: 100%; }
.testimonial-item:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.10); border-color: var(--primary); }
.testimonial-owner { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.testimonial-owner figure { margin: 0; width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 3px solid var(--primary); }
.testimonial-owner figure img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-owner .testimonial-title { display: block; font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.testimonial-owner span { font-size: 0.875rem; color: var(--text-light); }
.testimonial-item blockquote { border: none; padding: 0; margin: 0 0 1.5rem 0; }
.testimonial-item blockquote p { font-size: 1rem; line-height: 1.8; color: var(--text-body); font-style: italic; margin: 0; }
.testimonial-rating { display: flex; gap: 0.25rem; }
.testimonial-rating i { color: var(--accent); font-size: 1rem; }

.counters-section { background: linear-gradient(135deg, var(--secondary) 0%, #0A5568 100%); padding: 5rem 0; color: white; }
.count-container { text-align: center; margin-bottom: 2rem; }
.count-wrapper { font-size: 3.5rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; line-height: 1; }
.count-wrapper span { font-size: 2rem; }
.count-title { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.1em; }


/* ============================================
   7. CONTACT PAGE
============================================ */

.contact-hero { background: linear-gradient(135deg, #073B4C 0%, #0A5568 100%); padding: 4rem 0 3rem; position: relative; overflow: hidden; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(6,214,160,0.15) 0%, transparent 50%); }
.breadcrumb-nav-light { position: relative; z-index: 2; }
.breadcrumb-nav-light .breadcrumb { background: transparent; padding: 0; margin-bottom: 2rem; }
.breadcrumb-nav-light .breadcrumb-item,
.breadcrumb-nav-light .breadcrumb-item a { color: rgba(255,255,255,0.9); }
.breadcrumb-nav-light .breadcrumb-item.active { color: white; }
.breadcrumb-nav-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.6); }
.hero-content { position: relative; z-index: 2; text-align: center; color: white; }
.hero-content h1 { font-family: 'Crimson Pro', serif; font-size: 3rem; font-weight: 700; margin-bottom: 1rem; }
.hero-content p { font-size: 1.25rem; opacity: 0.95; }

.contact-info-section { margin-top: -3rem; padding-bottom: 4rem; position: relative; z-index: 3; }
.contact-card { background: white; border-radius: 1rem; padding: 2rem; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; height: 100%; margin-bottom: 1.5rem; }
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(6,214,160,0.15); }
.contact-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #06D6A0, #05B589); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; transition: all 0.3s ease; }
.contact-card:hover .contact-icon { transform: scale(1.1); }
.contact-icon i { font-size: 1.75rem; color: white; }
.contact-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.125rem; font-weight: 700; color: #1A1A2E; margin-bottom: 0.75rem; }
.contact-card p { font-size: 0.938rem; color: #6B7280; margin: 0; line-height: 1.6; }
.contact-card a { color: #6B7280; text-decoration: none; transition: color 0.3s; }
.contact-card a:hover { color: #06D6A0; }

.contact-container { padding: 5rem 0; }
.contact-form-wrapper { background: white; padding: 2.5rem; border-radius: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.contact-form-wrapper h2 { font-family: 'Crimson Pro', serif; font-size: 2rem; font-weight: 700; color: #1A1A2E; margin-bottom: 0.5rem; }
.contact-form-wrapper .subtitle { color: #6B7280; font-size: 1rem; margin-bottom: 2rem; }
.messages-container { margin-bottom: 2rem; }
.alert-modern { border-radius: 0.75rem; border: none; padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.alert-modern i { font-size: 1.25rem; }
.alert-success { background: #DEF7EC; color: #03543F; }
.alert-error   { background: #FDE8E8; color: #9B1C1C; }
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label { font-size: 0.938rem; font-weight: 600; color: #374151; margin-bottom: 0.5rem; display: block; }
.contact-form .required { color: #EF4444; }
.contact-form .form-control { border: 2px solid #E5E7EB; border-radius: 0.75rem; padding: 0.875rem 1rem; font-size: 1rem; transition: all 0.3s ease; }
.contact-form .form-control:focus { border-color: #06D6A0; box-shadow: 0 0 0 3px rgba(6,214,160,0.1); outline: none; }
.contact-form textarea.form-control { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { background: linear-gradient(135deg, #06D6A0, #05B589); border: none; padding: 1rem 2rem; font-weight: 600; border-radius: 0.75rem; transition: all 0.3s ease; }
.contact-form .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,214,160,0.3); }

.map-wrapper { margin-bottom: 2rem; }
.map-wrapper h2 { font-family: 'Crimson Pro', serif; font-size: 1.75rem; font-weight: 700; color: #1A1A2E; margin-bottom: 1.5rem; }
.map-container { border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.company-info-box { background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%); border-radius: 1rem; padding: 2rem; border-left: 4px solid #06D6A0; }
.company-info-box h3 { font-family: 'DM Sans', sans-serif; font-size: 1.25rem; font-weight: 700; color: #1A1A2E; margin-bottom: 1.5rem; }
.company-info-box p { font-size: 0.938rem; color: #374151; line-height: 1.8; margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.company-info-box i { color: #06D6A0; margin-top: 0.25rem; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-family: 'Crimson Pro', serif; font-size: 2.5rem; font-weight: 700; color: #1A1A2E; margin-bottom: 0.75rem; }
.section-header p { font-size: 1.125rem; color: #6B7280; }

.contact-cta { background: linear-gradient(135deg, #073B4C 0%, #0A5568 100%); padding: 5rem 0; position: relative; overflow: hidden; }
.contact-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(6,214,160,0.15) 0%, transparent 50%); }
.contact-cta .container { position: relative; z-index: 2; }
.contact-cta h2 { font-family: 'Crimson Pro', serif; font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.contact-cta p { font-size: 1.25rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn { padding: 1rem 2.5rem; font-weight: 600; border-radius: 3rem; font-size: 1.063rem; }
.cta-buttons .btn-light { background: white; color: #073B4C; border: none; }
.cta-buttons .btn-light:hover { background: #06D6A0; color: white; transform: translateY(-2px); }
.cta-buttons .btn-outline-light { border: 2px solid white; color: white; }
.cta-buttons .btn-outline-light:hover { background: white; color: #073B4C; transform: translateY(-2px); }


/* ============================================
   8. WISHLIST PAGE
============================================ */

.wishlist-hero { background: linear-gradient(135deg, #073B4C 0%, #0A5568 100%); padding: 4rem 0 3rem; position: relative; overflow: hidden; }
.wishlist-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(6,214,160,0.15) 0%, transparent 50%); }
.breadcrumb-nav-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.6); content: "/"; }
.wishlist-hero-icon { font-size: 4rem; margin-bottom: 1rem; color: #FFD166; animation: heartbeat 1.5s ease-in-out infinite; }

@keyframes heartbeat {
    0%, 100% { transform: scale(1);   }
    50%       { transform: scale(1.1); }
}

.wishlist-content { padding: 4rem 0; }
.wishlist-stats { background: white; border-radius: 1rem; padding: 2rem; margin: -3rem auto 3rem; max-width: 500px; box-shadow: 0 8px 32px rgba(0,0,0,0.10); display: flex; align-items: center; justify-content: center; gap: 2rem; position: relative; z-index: 3; }
.stat-divider { width: 2px; height: 60px; background: #E5E7EB; }

.wishlist-table-wrapper { background: white; border-radius: 1.5rem; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-bottom: 3rem; }
.wishlist-table { margin: 0; }
.wishlist-table thead th { font-size: 0.875rem; font-weight: 700; color: #1A1A2E; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid #E5E7EB; padding: 1rem; }
.wishlist-item { border-bottom: 1px solid #F3F4F6; transition: all 0.3s ease; }
.wishlist-item:hover { background: #F8FAFC; }
.wishlist-item td { padding: 1.5rem 1rem; vertical-align: middle; }

.product-image-wrapper { position: relative; width: 80px; height: 80px; border-radius: 0.75rem; overflow: hidden; border: 2px solid #E5E7EB; }
.product-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.btn-remove-item { position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; background: #EF4444; border: none; border-radius: 50%; color: white; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; opacity: 0; }
.wishlist-item:hover .btn-remove-item { opacity: 1; }
.btn-remove-item:hover { background: #DC2626; transform: scale(1.1); }

.product-info { padding: 0 1rem; }
.product-name { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.product-name a { color: #1A1A2E; text-decoration: none; transition: color 0.3s; }
.product-name a:hover { color: #06D6A0; }
.product-category { font-size: 0.875rem; color: #6B7280; margin: 0; }

.product-price { display: flex; flex-direction: column; gap: 0.25rem; }
.old-price { font-size: 0.875rem; color: #9CA3AF; text-decoration: line-through; }
.new-price,.current-price { font-size: 1.25rem; font-weight: 700; color: #1A1A2E; }
.discount-badge { display: inline-block; background: #FEF3C7; color: #D97706; padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-size: 0.75rem; font-weight: 700; }

.stock-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.875rem; font-weight: 600; }
.stock-badge.in-stock  { background: #DEF7EC; color: #03543F; }
.stock-badge.out-of-stock { background: #FDE8E8; color: #9B1C1C; }

.product-actions { display: flex; gap: 0.75rem; }
.btn-add-cart { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; font-weight: 600; border-radius: 0.75rem; transition: all 0.3s ease; }
.btn-view { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; padding: 0; border-radius: 0.75rem; }

.wishlist-cards { display: grid; gap: 1.5rem; }
.wishlist-card { background: white; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); position: relative; transition: all 0.3s ease; }
.wishlist-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn-remove-card { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; background: rgba(239,68,68,0.9); backdrop-filter: blur(10px); border: none; border-radius: 50%; color: white; font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; z-index: 2; }
.btn-remove-card:hover { background: #DC2626; transform: scale(1.1); }
.card-image { position: relative; width: 100%; padding-top: 100%; overflow: hidden; }
.card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.discount-badge-mobile { position: absolute; top: 1rem; left: 1rem; background: #D97706; color: white; padding: 0.5rem 0.75rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 700; z-index: 1; }
.card-content { padding: 1.5rem; }
.card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-title a { color: #1A1A2E; text-decoration: none; }
.card-category { font-size: 0.875rem; color: #6B7280; margin-bottom: 1rem; }
.card-price { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.card-stock { margin-bottom: 1rem; }
.card-actions .btn { width: 100%; }

.wishlist-share { background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%); border-radius: 1.5rem; padding: 2.5rem; text-align: center; margin-top: 3rem; }
.wishlist-share h3 { font-family: 'Crimson Pro', serif; font-size: 1.75rem; font-weight: 700; color: #1A1A2E; margin-bottom: 0.5rem; }
.wishlist-share p { color: #6B7280; margin-bottom: 2rem; }
.share-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-share { background: white; border: 2px solid #E5E7EB; color: #1A1A2E; padding: 0.75rem 1.5rem; border-radius: 3rem; font-weight: 600; transition: all 0.3s ease; }
.btn-share:hover { border-color: #06D6A0; background: #06D6A0; color: white; transform: translateY(-2px); }

.wishlist-empty { text-align: center; padding: 5rem 2rem; }
.empty-icon { font-size: 6rem; color: #D1D5DB; margin-bottom: 2rem; animation: float 3s ease-in-out infinite; }
.wishlist-empty h2 { font-family: 'Crimson Pro', serif; font-size: 2rem; font-weight: 700; color: #1A1A2E; margin-bottom: 1rem; }
.wishlist-empty p { font-size: 1.125rem; color: #6B7280; margin-bottom: 2rem; }


/* ============================================
   9. CART PAGE
============================================ */

.header-bottom { margin-bottom: 0; }

.cart-page-header { background: linear-gradient(135deg, var(--secondary) 0%, #0A5568 100%); padding: 3rem 0 2rem; position: relative; overflow: hidden; }
.cart-page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(6,214,160,0.15) 0%, transparent 50%); pointer-events: none; }
.cart-page-header .container { position: relative; z-index: 2; }
.cart-page-header .breadcrumb { background: transparent; padding: 0; margin-bottom: 1rem; font-size: 0.875rem; }
.cart-page-header .breadcrumb-item a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s ease; }
.cart-page-header .breadcrumb-item a:hover { color: var(--primary-light); }
.cart-page-header .breadcrumb-item.active { color: white; }
.cart-page-header .breadcrumb-item + .breadcrumb-item::before { content: "›"; color: rgba(255,255,255,0.5); }
.cart-page-header h1 { font-size: 2.5rem; font-weight: 800; color: white; margin: 0; letter-spacing: -0.02em; animation: fadeInUp 0.6s ease-out; }

.cart-stepper { display: flex; justify-content: center; gap: 2rem; margin: 2rem 0; padding: 0 1rem; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; position: relative; opacity: 0.4; transition: var(--transition); }
.step-item.active { opacity: 1; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--border); color: var(--text-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; transition: var(--transition); }
.step-item.active .step-num { background: var(--primary); color: white; box-shadow: 0 4px 12px rgba(6,214,160,0.3); transform: scale(1.1); }
.step-label { font-size: 0.875rem; font-weight: 600; color: var(--text-body); }
.step-item:not(:last-child)::after { content: ''; position: absolute; top: 20px; left: calc(50% + 20px); width: 2rem; height: 2px; background: var(--border); z-index: -1; }

.cart-toast-wrap { position: fixed; top: 5rem; right: 2rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.75rem; }
.cart-toast { min-width: 300px; padding: 1rem 1.5rem; border-radius: var(--radius); font-weight: 600; font-size: 0.938rem; box-shadow: var(--shadow-lg); animation: slideInRight 0.4s ease-out; display: flex; align-items: center; gap: 0.75rem; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to   { opacity: 1; transform: translateX(0); }
}

.cart-toast--ok  { background: white; color: var(--success); border-left: 4px solid var(--success); }
.cart-toast--err { background: white; color: var(--error);   border-left: 4px solid var(--error);   }

.card-modern { background: var(--bg-white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 2rem; animation: fadeInUp 0.6s ease-out 0.2s both; }
.card-modern__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid var(--bg-page); }
.card-modern__title { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin: 0; }
.card-modern__meta { font-size: 0.938rem; color: var(--text-light); font-weight: 600; background: var(--bg-page); padding: 0.375rem 1rem; border-radius: 2rem; }

.cart-items { display: flex; flex-direction: column; gap: 1.5rem; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 1.5rem; padding: 1.5rem; border: 1px solid var(--border-light); border-radius: var(--radius); transition: var(--transition); background: white; }
.cart-item:hover { border-color: var(--primary); box-shadow: 0 4px 12px rgba(6,214,160,0.08); transform: translateY(-2px); }
.cart-item__img { width: 100px; height: 100px; border-radius: var(--radius); overflow: hidden; background: var(--bg-page); display: block; transition: var(--transition); }
.cart-item__img:hover { transform: scale(1.05); }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { display: flex; flex-direction: column; gap: 0.75rem; }
.cart-item__title { font-size: 1.125rem; font-weight: 600; color: var(--text-dark); text-decoration: none; transition: color 0.3s ease; line-height: 1.4; }
.cart-item__title:hover { color: var(--primary); }
.cart-item__sub { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; }
.cart-price  { font-weight: 700; color: var(--primary); font-size: 1rem; }
.cart-dot    { color: var(--border); }
.cart-muted  { color: var(--text-light); }
.cart-item__actions { display: flex; align-items: center; gap: 1rem; margin-top: auto; }

.qty-pill { display: flex; align-items: center; border: 2px solid var(--border); border-radius: 2rem; overflow: hidden; background: white; }
.qty-btn { width: 36px; height: 36px; border: none; background: transparent; color: var(--text-body); font-size: 1.25rem; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--primary); color: white; }
.qty-value { min-width: 40px; text-align: center; font-weight: 700; color: var(--text-dark); user-select: none; }
.remove-btn { padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 2rem; background: white; color: var(--text-light); font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: 'Outfit', sans-serif; }
.remove-btn:hover { background: var(--error); border-color: var(--error); color: white; }
.cart-item__total { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 0.25rem; min-width: 120px; }
.cart-strong { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); }

.cart-coupon { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 1.5rem; background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%); border-radius: var(--radius); margin-top: 2rem; align-items: center; }
.cart-coupon__left { display: flex; flex-direction: column; gap: 0.25rem; }
.cart-coupon__title { font-size: 1.125rem; font-weight: 700; color: #92400E; }
.cart-coupon__desc  { font-size: 0.875rem; color: #78350F; }
.coupon-row { display: flex; gap: 0.75rem; align-items: center; }
.coupon-input { padding: 0.75rem 1rem; border: 2px solid rgba(146,64,14,0.2); border-radius: var(--radius); font-size: 0.938rem; font-family: 'Outfit', sans-serif; font-weight: 600; background: white; min-width: 200px; transition: var(--transition); color: var(--text-dark); }
.coupon-input:focus { outline: none; border-color: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,0.1); }
.coupon-applied { display: flex; align-items: center; gap: 1rem; }
.badge-save { background: var(--success); color: white; padding: 0.5rem 1rem; border-radius: 2rem; font-weight: 700; font-size: 0.875rem; }

.btn-modern { padding: 0.875rem 1.75rem; border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 600; font-family: 'Outfit', sans-serif; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.btn-modern--primary { background: var(--primary); color: white; box-shadow: 0 4px 12px rgba(6,214,160,0.3); }
.btn-modern--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(6,214,160,0.4); }
.btn-modern--ghost { background: transparent; color: var(--text-body); border: 2px solid var(--border); }
.btn-modern--ghost:hover { background: var(--bg-page); border-color: var(--primary); color: var(--primary); }
.btn-modern--danger { background: white; color: var(--error); border: 2px solid var(--error); }
.btn-modern--danger:hover { background: var(--error); color: white; }

.w-100 { width: 100%; }
.mt-2  { margin-top: 0.5rem; }
.mt-3  { margin-top: 1rem; }

.cart-summary { position: sticky; top: 2rem; animation: fadeInUp 0.6s ease-out 0.4s both; }
.summary-line { display: flex; justify-content: space-between; padding: 0.75rem 0; font-size: 0.938rem; border-bottom: 1px solid var(--border-light); }
.summary-line:last-of-type { border-bottom: none; }
.summary-total { display: flex; justify-content: space-between; padding: 1.25rem 0 1rem; margin-top: 1rem; border-top: 2px solid var(--border); font-size: 1.125rem; font-weight: 700; color: var(--text-dark); }
.summary-total strong { color: var(--primary); font-size: 1.5rem; }
.cart-trust { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--text-body); }

.text-center { text-align: center; }
.p-4         { padding: 3rem; }
.mb-2        { margin-bottom: 0.5rem; }
.mb-3        { margin-bottom: 1rem; }
.text-muted  { color: var(--text-light); }


/* ============================================
   10. CHECKOUT PAGE
============================================ */

.checkout-hero { background: linear-gradient(135deg, var(--secondary) 0%, #0A5568 100%); padding: 3rem 0 2rem; margin-bottom: 2rem; position: relative; overflow: hidden; }
.checkout-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(6,214,160,0.15) 0%, transparent 50%); pointer-events: none; }
.checkout-hero .container { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,0.2); }
.hero-title    { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.9); }

.progress-steps { display: flex; justify-content: center; gap: 3rem; margin-top: 2rem; padding: 0 1rem; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; position: relative; opacity: 0.5; transition: var(--transition); }
.progress-step.active    { opacity: 1; }
.progress-step.completed { opacity: 1; }
.step-circle { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.125rem; color: white; transition: var(--transition); }
.progress-step.active .step-circle    { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 4px rgba(6,214,160,0.2); }
.progress-step.completed .step-circle { background: rgba(16,185,129,0.9); border-color: rgba(16,185,129,0.9); }
.progress-step .step-label { font-size: 0.875rem; font-weight: 600; color: white; text-align: center; }
.progress-step:not(:last-child)::after { content: ''; position: absolute; top: 24px; left: calc(50% + 24px); width: 3rem; height: 2px; background: rgba(255,255,255,0.2); z-index: -1; }
.progress-step.completed:not(:last-child)::after { background: rgba(16,185,129,0.5); }

.checkout-main { padding: 0 0 4rem; }
.checkout-grid { display: grid; grid-template-columns: 1fr 420px; gap: 2rem; max-width: 1400px; margin: 0 auto; }
.checkout-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-card { background: white; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.form-card:hover { box-shadow: var(--shadow-md); }
.form-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--bg-page); }
.form-card-title { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 0.75rem; }
.form-card-number { width: 32px; height: 32px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.secure-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: #EFF6FF; color: #1E40AF; padding: 0.375rem 0.875rem; border-radius: 2rem; font-size: 0.813rem; font-weight: 600; }

.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-label .required { color: var(--error); }
.form-input,.form-select { width: 100%; padding: 0.875rem 1rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: 'Outfit', sans-serif; color: var(--text-dark); background: white; transition: var(--transition); }
.form-input:focus,.form-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(6,214,160,0.1); }
.form-input::placeholder { color: var(--text-lighter); }
.form-hint { font-size: 0.813rem; color: var(--text-light); margin-top: 0.375rem; }

.delivery-options { display: flex; flex-direction: column; gap: 1rem; }
.delivery-option { position: relative; border: 2px solid var(--border); border-radius: var(--radius); padding: 1.25rem; cursor: pointer; transition: var(--transition); background: white; }
.delivery-option:hover { border-color: var(--primary); background: rgba(6,214,160,0.02); }
.delivery-option input[type="radio"] { position: absolute; opacity: 0; }
.delivery-option-content { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.delivery-option-left { flex: 1; }
.delivery-option-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.delivery-option-name { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.delivery-option-desc { font-size: 0.875rem; color: var(--text-light); }
.delivery-option-badge { display: inline-block; background: var(--accent); color: var(--text-dark); padding: 0.25rem 0.625rem; border-radius: 0.5rem; font-size: 0.75rem; font-weight: 700; margin-top: 0.5rem; }
.delivery-option-price { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); white-space: nowrap; }
.delivery-option-check { position: absolute; top: 1rem; right: 1rem; width: 24px; height: 24px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.75rem; opacity: 0; transform: scale(0.5); transition: var(--transition); }
.delivery-option:has(input[type="radio"]:checked) { border-color: var(--primary); background: rgba(6,214,160,0.05); box-shadow: 0 0 0 3px rgba(6,214,160,0.1); }
.delivery-option input[type="radio"]:checked ~ .delivery-option-check { opacity: 1; transform: scale(1); }

.payment-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.payment-method { position: relative; border: 2px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1rem; text-align: center; cursor: pointer; transition: var(--transition); background: white; }
.payment-method:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.payment-method input[type="radio"] { position: absolute; opacity: 0; }
.payment-method:has(input[type="radio"]:checked) { border-color: var(--primary); background: rgba(6,214,160,0.05); box-shadow: 0 0 0 3px rgba(6,214,160,0.1); }
.payment-method-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.payment-method-name { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.payment-method-desc { font-size: 0.75rem; color: var(--text-light); }
.payment-check { position: absolute; top: 0.5rem; right: 0.5rem; width: 20px; height: 20px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.625rem; opacity: 0; transform: scale(0.5); transition: var(--transition); }
.payment-method:has(input[type="radio"]:checked) .payment-check { opacity: 1; transform: scale(1); }

#card-element { padding: 1rem; border: 2px solid var(--border); border-radius: var(--radius); background: white; transition: var(--transition); }
#card-element:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(6,214,160,0.1); }
#card-errors { color: var(--error); font-size: 0.875rem; margin-top: 0.5rem; display: none; }
#card-errors.show { display: block; }

.order-summary { position: sticky; top: 2rem; background: white; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid var(--border); max-height: calc(100vh - 4rem); overflow-y: auto; }
.summary-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--bg-page); }
.summary-title   { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.summary-subtitle { font-size: 0.875rem; color: var(--text-light); }
.summary-items   { margin-bottom: 1.5rem; }
.summary-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--bg-page); }
.summary-item:last-child { border-bottom: none; }
.summary-item-image { width: 64px; height: 64px; border-radius: var(--radius); object-fit: cover; background: var(--bg-page); }
.summary-item-details { flex: 1; }
.summary-item-name  { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.summary-item-meta  { font-size: 0.75rem; color: var(--text-light); }
.summary-item-price { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); text-align: right; }
.summary-totals     { margin-bottom: 1.5rem; }
.summary-line-label { color: var(--text-light); }
.summary-line-value { font-weight: 600; color: var(--text-dark); }
.summary-total { display: flex; justify-content: space-between; padding: 1.25rem 0; border-top: 2px solid var(--bg-page); font-size: 1.125rem; font-weight: 700; color: var(--text-dark); }
.summary-total-value { color: var(--primary); font-size: 1.5rem; }

.trust-badges { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 2px solid var(--bg-page); }
.trust-badge  { display: flex; align-items: center; gap: 0.75rem; font-size: 0.813rem; color: var(--text-light); }
.trust-badge-icon { font-size: 1.25rem; }

.submit-section { background: white; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-top: 1.5rem; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.form-checkbox input[type="checkbox"] { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--primary); }
.form-checkbox-label { font-size: 0.875rem; color: var(--text-body); line-height: 1.5; }
.form-checkbox-label a { color: var(--primary); text-decoration: none; font-weight: 600; }
.form-checkbox-label a:hover { text-decoration: underline; }
.submit-button { width: 100%; background: var(--primary); color: white; border: none; border-radius: var(--radius); padding: 1.25rem 2rem; font-size: 1.125rem; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 0.75rem; box-shadow: 0 4px 16px rgba(6,214,160,0.3); }
.submit-button:hover     { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,214,160,0.4); }
.submit-button:disabled  { opacity: 0.6; cursor: not-allowed; transform: none; }
.submit-button-icon      { font-size: 1.25rem; }
.submit-legal            { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 1rem; line-height: 1.6; }


/* ============================================
   11. SUCCESS PAGE
============================================ */

.cart-hero,
.success-hero { background: linear-gradient(135deg, var(--secondary) 0%, #0A5568 100%); padding: 3rem 0 2rem; position: relative; overflow: hidden; }
.success-hero { padding: 4rem 1rem 5rem; text-align: center; color: white; }
.cart-hero::before,
.success-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(6,214,160,0.15) 0%, transparent 50%); pointer-events: none; }
.success-hero::after { content: ''; position: absolute; bottom: -30%; left: -5%; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; animation: float 25s infinite ease-in-out reverse; }
.cart-hero .container { position: relative; z-index: 2; }
.hero-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1rem; border: 2px solid rgba(255,255,255,0.3); animation: float 3s ease-in-out infinite; }
.success-icon { width: 100px; height: 100px; background: white; color: var(--primary); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.15); animation: successPop 0.6s cubic-bezier(0.68,-0.55,0.265,1.55); position: relative; z-index: 1; }

@keyframes successPop {
    0%   { transform: scale(0) rotate(-180deg); opacity: 0; }
    60%  { transform: scale(1.1) rotate(10deg); }
    100% { transform: scale(1)   rotate(0deg);  opacity: 1; }
}

.success-title    { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; animation: slideUp 0.6s ease-out 0.2s both; position: relative; z-index: 1; }
.success-subtitle { font-size: 1.125rem; opacity: 0.95; max-width: 600px; margin: 0 auto 2rem; line-height: 1.6; animation: slideUp 0.6s ease-out 0.3s both; position: relative; z-index: 1; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.order-badge { display: inline-block; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); padding: 0.75rem 2rem; border-radius: 50px; font-size: 1rem; font-weight: 600; border: 2px solid rgba(255,255,255,0.3); animation: slideUp 0.6s ease-out 0.4s both; position: relative; z-index: 1; }

.progress-stepper { display: flex; justify-content: center; align-items: center; gap: 2rem; margin: 2rem 0 3rem; padding: 0 1rem; }
.step-item.completed .step-circle { background: var(--success); border-color: var(--success); color: white; }
.step-item.active .step-circle { background: var(--primary); border-color: var(--primary); color: white; box-shadow: 0 0 0 4px rgba(6,214,160,0.15); transform: scale(1.1); }
.step-item.active .step-label { color: var(--text-dark); font-weight: 700; }
.step-item.completed:not(:last-child)::after { background: var(--success); }

.toast-container { position: fixed; top: 5rem; right: 2rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.75rem; }
.toast { background: white; padding: 1rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.75rem; min-width: 300px; animation: slideInRight 0.4s ease-out; border-left: 4px solid var(--success); }
.toast.toast-error { border-left-color: var(--error); }
.toast-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; background: var(--success); color: white; flex-shrink: 0; }
.toast.toast-error .toast-icon { background: var(--error); }
.toast-message { font-size: 0.938rem; font-weight: 600; color: var(--text-dark); }

.cart-main { padding: 0 0 4rem; }
.cart-grid { display: grid; grid-template-columns: 1fr 420px; gap: 2rem; align-items: start; }
.success-content { max-width: 1200px; margin: -3rem auto 4rem; padding: 0 1rem; position: relative; z-index: 10; }

.card-premium,.card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); animation: fadeInUp 0.6s ease-out; margin-bottom: 2rem; }
.card-premium:hover,.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-premium .card-header,.card .card-header { background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%); padding: 1.5rem 2rem; border-bottom: 2px solid var(--bg-gray); display: flex; align-items: center; justify-content: space-between; }
.card-premium .card-title,.card .card-title { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin: 0; display: flex; align-items: center; gap: 0.75rem; }
.card-badge { background: var(--bg-gray); color: var(--text-body); padding: 0.375rem 0.875rem; border-radius: 2rem; font-size: 0.875rem; font-weight: 600; }
.card .card-body { padding: 2rem; }
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }

.item-image { width: 90px; height: 90px; border-radius: var(--radius); overflow: hidden; background: var(--bg-gray); border: 1px solid var(--border); display: block; flex-shrink: 0; }
.item-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.item-image:hover img { transform: scale(1.05); }
.item-info { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; }
.item-name { font-size: 0.938rem; font-weight: 600; color: var(--text-dark); text-decoration: none; transition: var(--transition); line-height: 1.4; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.item-name:hover { color: var(--primary); }
.item-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.813rem; flex-wrap: wrap; }
.item-price { font-weight: 700; color: var(--primary); font-size: 0.938rem; }
.item-stock { color: var(--text-light); display: flex; align-items: center; gap: 0.375rem; }
.stock-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.item-actions { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; }

.qty-control { display: inline-flex; align-items: center; background: var(--bg-gray); border-radius: 3rem; padding: 0.25rem; border: 1px solid var(--border); }
.qty-btn { width: 36px; height: 36px; border-radius: 50%; border: none; background: white; color: var(--text-dark); font-size: 1.25rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent; user-select: none; }
.qty-btn:hover:not(:disabled) { background: var(--primary); color: white; transform: scale(1.05); }
.qty-btn:active:not(:disabled) { transform: scale(0.95); }
.qty-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.qty-value { min-width: 36px; text-align: center; font-weight: 700; font-size: 0.938rem; color: var(--text-dark); user-select: none; }

.btn-remove { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: transparent; border: 1px solid var(--border); border-radius: 3rem; color: var(--text-light); font-size: 0.813rem; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap; -webkit-tap-highlight-color: transparent; }
.btn-remove:hover { background: var(--error); border-color: var(--error); color: white; transform: translateY(-1px); }
.btn-remove:active { transform: translateY(0); }

.item-total { text-align: right; display: flex; flex-direction: column; gap: 0.25rem; justify-content: center; min-width: 100px; }
.item-total-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.item-total-price { font-size: 1.125rem; font-weight: 800; color: var(--text-dark); }

.coupon-section { padding: 1.5rem; background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%); border-top: 2px dashed var(--accent); }
.coupon-header   { margin-bottom: 1rem; }
.coupon-title    { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.5rem; }
.coupon-desc     { font-size: 0.813rem; color: var(--text-body); line-height: 1.4; }
.coupon-input-group { display: flex; gap: 0.75rem; }
.coupon-input { flex: 1; padding: 0.875rem 1rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: 0.938rem; font-weight: 600; font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; transition: var(--transition); background: white; }
.coupon-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(6,214,160,0.1); }
.coupon-input::placeholder { color: var(--text-lighter); }
.btn-coupon { padding: 0.875rem 1.5rem; background: var(--text-dark); color: white; border: none; border-radius: var(--radius); font-size: 0.938rem; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; transition: var(--transition); white-space: nowrap; -webkit-tap-highlight-color: transparent; }
.btn-coupon:hover { background: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-coupon:active { transform: translateY(0); }
.coupon-applied { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: white; border-radius: var(--radius); border: 2px solid var(--success); }
.coupon-badge   { background: var(--success); color: white; padding: 0.375rem 0.875rem; border-radius: 3rem; font-size: 0.813rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-remove-coupon { background: transparent; border: 1px solid var(--error); color: var(--error); padding: 0.5rem 1rem; border-radius: 3rem; font-size: 0.813rem; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn-remove-coupon:hover { background: var(--error); color: white; }

.summary-sticky { position: sticky; top: 2rem; }
.summary-section { padding: 1.5rem; }
.summary-label    { color: var(--text-body); font-weight: 500; }
.summary-value    { font-weight: 700; color: var(--text-dark); }
.summary-discount { color: var(--success) !important; }
.summary-total { display: flex; justify-content: space-between; padding: 1.25rem 0; margin-top: 1rem; border-top: 2px solid var(--text-dark); font-size: 1.125rem; font-weight: 800; }
.summary-total-value { color: var(--primary); font-size: 1.5rem; }
.summary-actions { display: flex; flex-direction: column; gap: 1rem; padding: 0 1.5rem 1.5rem; }

.btn-primary { width: 100%; padding: 1.125rem 2rem; background: var(--primary); color: white; border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 0.75rem; box-shadow: 0 4px 12px rgba(6,214,160,0.3); text-decoration: none; -webkit-tap-highlight-color: transparent; }
.btn-primary:hover  { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(6,214,160,0.4); color: white; }
.btn-primary:active { transform: translateY(0); }
.btn-secondary { width: 100%; padding: 1rem 2rem; background: white; color: var(--text-body); border: 2px solid var(--border); border-radius: var(--radius); font-size: 0.938rem; font-weight: 600; font-family: 'Outfit', sans-serif; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 0.75rem; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.btn-secondary:hover { background: var(--bg-gray); border-color: var(--text-dark); color: var(--text-dark); }

.trust-badges { display: grid; gap: 0.75rem; padding: 1.5rem; background: var(--bg-page); border-top: 1px solid var(--border-light); }
.trust-badge  { display: flex; align-items: center; gap: 0.75rem; font-size: 0.813rem; color: var(--text-body); }
.trust-icon   { font-size: 1.125rem; }

.empty-state { text-align: center; padding: 4rem 2rem; animation: fadeIn 0.5s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.empty-icon  { font-size: 5rem; opacity: 0.15; margin-bottom: 1.5rem; }
.empty-title { font-size: 1.75rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.75rem; }
.empty-desc  { font-size: 1.125rem; color: var(--text-light); margin-bottom: 2rem; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.info-item { padding: 1rem; background: #F9FAFB; border-radius: 12px; border: 1px solid #E5E7EB; transition: all 0.3s ease; }
.info-item:hover { background: #F3F4F6; border-color: var(--primary); transform: translateY(-2px); }
.info-label { font-size: 0.813rem; font-weight: 600; color: #6B7280; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; }
.info-value { font-size: 1rem; font-weight: 600; color: var(--text-dark); line-height: 1.6; }

.order-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-bottom: 2rem; }
.order-table thead { background: #F9FAFB; border-radius: 12px; }
.order-table thead th { padding: 1rem; font-size: 0.875rem; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid #E5E7EB; }
.order-table thead th:first-child { border-top-left-radius: 12px; }
.order-table thead th:last-child  { border-top-right-radius: 12px; }
.order-table tbody tr { transition: all 0.2s ease; }
.order-table tbody tr:hover { background: #F9FAFB; }
.order-table tbody td { padding: 1.25rem 1rem; border-bottom: 1px solid #E5E7EB; font-size: 0.938rem; color: var(--text-dark); }
.product-image { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; background: #F3F4F6; border: 1px solid #E5E7EB; }

.totals-section { background: #F9FAFB; padding: 1.5rem; border-radius: 12px; border: 1px solid #E5E7EB; }
.total-line { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; font-size: 0.938rem; color: var(--text-dark); }
.total-line:not(:last-child) { border-bottom: 1px solid #E5E7EB; }
.total-line .value { font-weight: 600; }
.total-line.grand { padding-top: 1rem; margin-top: 0.5rem; border-top: 2px solid #E5E7EB; font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.total-line.grand .value { font-size: 1.5rem; }

.timeline { position: relative; padding-left: 0; }
.timeline::before { content: ''; position: absolute; left: 30px; top: 50px; bottom: 50px; width: 2px; background: linear-gradient(to bottom, var(--primary) 0%, var(--primary) 33%, #E5E7EB 33%, #E5E7EB 100%); }
.timeline-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-icon { width: 60px; height: 60px; min-width: 60px; background: white; border: 3px solid #E5E7EB; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; position: relative; z-index: 2; transition: all 0.3s ease; }
.timeline-icon.done { background: var(--primary); border-color: var(--primary); color: white; box-shadow: 0 4px 20px rgba(6,214,160,0.3); animation: pulse 2s infinite; }

@keyframes pulse {
    0%,100% { box-shadow: 0 4px 20px rgba(6,214,160,0.3); }
    50%      { box-shadow: 0 4px 30px rgba(6,214,160,0.5); }
}

.timeline-icon.pending { background: #F3F4F6; border-color: #E5E7EB; }
.timeline-content { flex: 1; padding-top: 0.5rem; }
.timeline-content h4 { font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin: 0 0 0.5rem 0; }
.timeline-content p  { font-size: 0.938rem; color: #6B7280; margin: 0; line-height: 1.6; }

.action-buttons { display: flex; gap: 1rem; margin: 3rem 0 2rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; border-radius: 12px; font-size: 1rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); flex: 1; justify-content: center;}
.btn.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(6,214,160,0.3); }
.btn.btn-primary:hover { background: #05C292; box-shadow: 0 8px 25px rgba(6,214,160,0.4); transform: translateY(-2px); }
.btn.btn-secondary { background: white; color: var(--text-dark); border: 2px solid #E5E7EB; }
.btn.btn-secondary:hover { background: #F9FAFB; border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.trust-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; padding: 2rem; background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%); border-radius: 16px; border: 2px solid #BAE6FD; margin-top: 2rem; }
.trust-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: white; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.trust-item:hover { transform: translateY(-3px); box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
.trust-item-icon { font-size: 2rem; min-width: 50px; text-align: center; }
.trust-item-text { font-size: 0.938rem; font-weight: 600; color: var(--text-dark); line-height: 1.5; }

.loading-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.loading-spinner { text-align: center; color: white; }
.spinner { width: 48px; height: 48px; border: 4px solid rgba(255,255,255,0.2); border-top-color: #06D6A0; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1rem; }

@keyframes spin { to { transform: rotate(360deg); } }

.error-message { background: #FEE; border-left: 4px solid #EF4444; padding: 1rem; border-radius: 8px; margin-bottom: 2rem; color: #EF4444; font-weight: 600; }


/* ============================================
   12. AUTH SYSTEM
============================================ */

.signup-wrapper { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.signup-visual { background: linear-gradient(160deg, var(--secondary) 0%, #0A5568 60%, #0d6e82 100%); position: relative; overflow: hidden; display: flex; align-items: center; padding: 4rem 3rem; }
.signup-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 30%, rgba(6,214,160,0.20) 0%, transparent 45%), radial-gradient(circle at 85% 75%, rgba(255,209,102,0.12) 0%, transparent 45%); pointer-events: none; }
.visual-content { position: relative; z-index: 2; width: 100%; }
.brand-logo { margin-bottom: 3rem; animation: fadeInUp 0.6s ease-out; }
.brand-logo .logo-img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.visual-text { margin-bottom: 2.5rem; animation: fadeInUp 0.6s ease-out 0.1s both; }
.visual-title { font-family: 'Crimson Pro', serif; font-size: 3rem; font-weight: 700; color: white; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.02em; }
.visual-description { font-size: 1.0625rem; color: rgba(255,255,255,0.80); line-height: 1.75; max-width: 380px; }
.benefits-list { display: flex; flex-direction: column; gap: 1rem; animation: fadeInUp 0.6s ease-out 0.2s both; }
.benefit-item { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,0.90); font-size: 0.9375rem; font-weight: 500; animation: fadeInUp 0.6s ease-out both; }
.benefit-icon { width: 36px; height: 36px; background: rgba(6,214,160,0.20); border: 1.5px solid rgba(6,214,160,0.50); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; transition: all 0.3s ease; }
.benefit-item:hover .benefit-icon { background: var(--primary); color: white; transform: scale(1.1); }
.visual-decoration { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.decoration-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); }
.circle-1 { width: 400px; height: 400px; top: -100px; right: -120px; animation: spinSlow 40s linear infinite; }
.circle-2 { width: 250px; height: 250px; bottom: -60px; left: -80px; animation: spinSlow 30s linear infinite reverse; }
.circle-3 { width: 160px; height: 160px; top: 40%; right: 20%; border-color: rgba(6,214,160,0.15); animation: spinSlow 20s linear infinite; }

@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.signup-form-section { background: var(--bg-white); display: flex; align-items: center; justify-content: center; padding: 4rem 2.5rem; overflow-y: auto; }
.form-container { width: 100%; max-width: 440px; }
.form-header { margin-bottom: 2rem; animation: fadeInUp 0.5s ease-out; }
.form-title { font-family: 'Crimson Pro', serif; font-size: 2.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.form-subtitle { font-size: 0.9375rem; color: var(--text-light); }
.login-link { color: var(--primary); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.login-link:hover { color: var(--primary-dark); text-decoration: underline; }

.alert-box { display: flex; align-items: flex-start; gap: 0.875rem; padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.9375rem; animation: fadeInUp 0.3s ease-out; }
.alert-box.alert-error { background: #FEF2F2; border: 1px solid #FECACA; color: #DC2626; }
.alert-icon { flex-shrink: 0; margin-top: 1px; }
.alert-content p { margin: 0; line-height: 1.5; }

.signup-form .form-group { margin-bottom: 1.25rem; opacity: 0; transform: translateY(12px); animation: fadeInUp 0.4s ease-out forwards; }
.signup-form .form-group:nth-child(1) { animation-delay: 0.05s; }
.signup-form .form-group:nth-child(2) { animation-delay: 0.10s; }
.signup-form .form-group:nth-child(3) { animation-delay: 0.15s; }
.signup-form .form-group:nth-child(4) { animation-delay: 0.20s; }
.signup-form .form-label,.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.required-star { color: var(--error); margin-left: 2px; }

.input-wrapper { position: relative; display: flex; align-items: center; }
.input-wrapper .form-control,
.input-wrapper input { width: 100%; padding: 0.875rem 1rem 0.875rem 2.875rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: 0.9375rem; font-family: 'Outfit', sans-serif; color: var(--text-dark); background: var(--bg-white); transition: var(--transition); outline: none; }
.input-wrapper .form-control:focus,
.input-wrapper input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(6,214,160,0.12); }
.has-error .input-wrapper .form-control,
.has-error .input-wrapper input { border-color: var(--error); background: #FFF8F8; }
.has-error .input-wrapper .form-control:focus,
.has-error .input-wrapper input:focus { box-shadow: 0 0 0 4px rgba(239,68,68,0.10); }
.input-icon { position: absolute; left: 0.875rem; color: var(--text-lighter); display: flex; align-items: center; pointer-events: none; transition: color 0.2s; z-index: 1; }
.input-wrapper:focus-within .input-icon { color: var(--primary); }
.error-icon { position: absolute; right: 0.875rem; color: var(--error); display: flex; align-items: center; pointer-events: none; }
.password-toggle { position: absolute; right: 0.875rem; background: none; border: none; cursor: pointer; color: var(--text-lighter); display: flex; align-items: center; padding: 0; transition: color 0.2s; z-index: 1; }
.password-toggle:hover { color: var(--primary); }
.password-strength { margin-top: 0.5rem; }
.strength-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; margin-bottom: 0.375rem; }
.strength-fill { height: 100%; width: 0; background: var(--border); border-radius: 2px; transition: width 0.4s ease, background-color 0.4s ease; }
.strength-text { font-size: 0.75rem; font-weight: 600; color: var(--text-lighter); }
.field-error { display: flex; align-items: center; gap: 0.375rem; margin-top: 0.4rem; }
.error-text { font-size: 0.8125rem; color: var(--error); font-weight: 500; }
.terms-section { margin-bottom: 1.5rem; }
.terms-text { font-size: 0.8125rem; color: var(--text-light); line-height: 1.6; margin: 0; }
.terms-link { color: var(--primary); font-weight: 600; text-decoration: none; }
.terms-link:hover { text-decoration: underline; }

.btn-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 1rem 2rem; background: var(--primary); color: white; border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 16px rgba(6,214,160,0.30); -webkit-tap-highlight-color: transparent; }
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,214,160,0.40); }
.btn-submit:active { transform: translateY(0); }
.btn-text { flex: 1; }
.btn-arrow { transition: transform 0.3s ease; flex-shrink: 0; }
.btn-submit:hover .btn-arrow { transform: translateX(4px); }

.social-section { margin-top: 2rem; }
.divider { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; color: var(--text-lighter); font-size: 0.8125rem; }
.divider::before,.divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.social-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 0.625rem; padding: 0.875rem 1rem; background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius); font-size: 0.9375rem; font-weight: 600; font-family: 'Outfit', sans-serif; color: var(--text-dark); cursor: pointer; transition: var(--transition); }
.social-btn:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.social-btn.google:hover { border-color: #4285F4; }
.social-btn.facebook:hover { border-color: #1877F2; }

.auth-wrapper { padding: 4rem 0 5rem; min-height: 60vh; background: #F4F6F8 !important; background-image: none !important; }
.auth-card,.auth-card .card-body,.auth-wrapper .card,.auth-wrapper .auth-card { background: #ffffff !important; color: var(--text-dark) !important; color-scheme: light !important; }
.auth-wrapper { background: #F4F6F8 !important; color-scheme: light !important; }
.signup-form-section { background: #ffffff !important; color-scheme: light !important; }
.auth-card { border: none; border-radius: var(--radius-lg); box-shadow: 0 4px 32px rgba(0,0,0,0.08); overflow: hidden; background: var(--bg-white); animation: fadeInUp 0.5s ease-out; }
.auth-card .card-body { padding: 2.5rem 2.25rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.auth-logo { width: 52px; height: 52px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: 14px; color: white; font-size: 1.5rem; font-weight: 800; font-family: 'Crimson Pro', serif; box-shadow: 0 4px 16px rgba(6,214,160,0.30); }

.auth-icon { width: 68px; height: 68px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.75rem; animation: scaleIn 0.4s cubic-bezier(0.68,-0.55,0.265,1.55); }

@keyframes scaleIn { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }

.auth-icon.icon-info    { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); color: #2563EB; }
.auth-icon.icon-success { background: linear-gradient(135deg, #DCFCE7, #BBF7D0); color: #16A34A; }
.auth-icon.icon-warning { background: linear-gradient(135deg, #FEF3C7, #FDE68A); color: #D97706; }
.auth-icon.icon-danger  { background: linear-gradient(135deg, #FEF2F2, #FECACA); color: #DC2626; }
.auth-icon:not([class*="icon-"]) { background: linear-gradient(135deg, rgba(6,214,160,0.15), rgba(6,214,160,0.25)); color: var(--primary); }

.success-icon { width: 84px; height: 84px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #DCFCE7, #BBF7D0); border-radius: 50%; color: #16A34A; font-size: 2.25rem; animation: scaleIn 0.5s cubic-bezier(0.68,-0.55,0.265,1.55); box-shadow: 0 8px 24px rgba(22,163,74,0.20); }

.auth-title { font-family: 'Crimson Pro', serif; font-size: 1.75rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.625rem; text-align: center; line-height: 1.25; }
.auth-subtitle { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 1.75rem; text-align: center; line-height: 1.65; max-width: 360px; }
.auth-subtitle strong { color: var(--text-dark); }

.auth-alert { width: 100%; display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.875rem 1.125rem; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 1.25rem; text-align: left; line-height: 1.5; }
.auth-alert.alert-danger,.auth-alert.alert-error { background: #FEF2F2; border: 1px solid #FECACA; color: #DC2626; }
.auth-alert.alert-success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #16A34A; }
.auth-alert.alert-warning { background: #FFFBEB; border: 1px solid #FDE68A; color: #D97706; }
.auth-alert.alert-info    { background: #EFF6FF; border: 1px solid #BFDBFE; color: #2563EB; }

.auth-form { width: 100%; text-align: left; }
.auth-form .form-group { margin-bottom: 1.125rem; }
.auth-form label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.auth-form .form-control { width: 100%; height: 50px; padding: 0 1rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: 0.9375rem; font-family: 'Outfit', sans-serif; color: var(--text-dark); background: var(--bg-white); transition: var(--transition); outline: none; }
.auth-form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(6,214,160,0.12); }
.auth-form .form-control::placeholder { color: var(--text-lighter); }
.auth-form .form-control.is-invalid { border-color: var(--error); }
.auth-form .form-control.is-invalid:focus { box-shadow: 0 0 0 4px rgba(239,68,68,0.10); }
.password-hint { font-size: 0.8125rem; color: var(--text-lighter); margin-top: 0.4rem; display: flex; align-items: center; gap: 0.375rem; }
.password-hint i { color: var(--primary); }

.btn-google { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.875rem; height: 50px; padding: 0 1.5rem; background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius); font-size: 0.9375rem; font-weight: 600; font-family: 'Outfit', sans-serif; color: var(--text-dark); text-decoration: none; cursor: pointer; transition: var(--transition); }
.btn-google:hover { border-color: #4285F4; background: #FAFCFF; transform: translateY(-1px); box-shadow: var(--shadow-sm); color: var(--text-dark); }
.btn-google svg,.btn-google img { width: 20px; height: 20px; flex-shrink: 0; }

.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.25rem 0; width: 100%; }
.auth-divider::before,.auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 0.8125rem; color: var(--text-lighter); white-space: nowrap; }

.btn-auth { height: 50px; border-radius: var(--radius); font-size: 0.9375rem; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0 1.75rem; border: none; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.btn-auth-primary { background: var(--primary); color: white; box-shadow: 0 4px 16px rgba(6,214,160,0.30); }
.btn-auth-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,214,160,0.40); color: white; }
.btn-auth-outline { background: var(--bg-white); color: var(--text-body); border: 2px solid var(--border); }
.btn-auth-outline:hover { background: var(--bg-light); border-color: var(--primary); color: var(--primary); }
.btn-group-auth { display: flex; gap: 0.75rem; width: 100%; }
.btn-group-auth .btn,.btn-group-auth .btn-auth { flex: 1; }

.btn-cancel { background: transparent; border: none; color: var(--text-light); font-size: 0.875rem; font-family: 'Outfit', sans-serif; cursor: pointer; padding: 0; display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 1rem; transition: color 0.2s; }
.btn-cancel:hover { color: var(--text-dark); text-decoration: underline; }

.auth-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; flex-wrap: wrap; gap: 0.625rem; width: 100%; }
.auth-options .custom-control-label { font-size: 0.875rem; color: var(--text-body); cursor: pointer; }
.auth-options a { font-size: 0.875rem; color: var(--primary); text-decoration: none; font-weight: 600; }
.auth-options a:hover { text-decoration: underline; }

.auth-footer { font-size: 0.875rem; color: var(--text-light); text-align: center; margin-top: 1.5rem; line-height: 1.5; }
.auth-footer a { color: var(--primary); font-weight: 600; text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }

.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-light); text-decoration: none; margin-bottom: 1.5rem; transition: color 0.2s; font-weight: 500; align-self: flex-start; }
.back-link:hover { color: var(--primary); text-decoration: none; }
.back-link i { font-size: 0.75rem; }

.token-invalid { width: 100%; text-align: center; padding: 1rem 0; }

.info-box { width: 100%; background: var(--bg-light); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; text-align: left; border: 1px solid var(--border); }
.info-box h6 { font-size: 0.9375rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.875rem; display: flex; align-items: center; gap: 0.5rem; }
.info-box h6 i { color: var(--primary); }
.info-box ul { list-style: none; padding: 0; margin: 0; }
.info-box li { font-size: 0.875rem; color: var(--text-body); padding: 0.375rem 0 0.375rem 1.375rem; position: relative; line-height: 1.5; }
.info-box li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

.steps-box { width: 100%; background: #EFF6FF; border-left: 4px solid #3B82F6; border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; text-align: left; }
.steps-box h6 { font-size: 0.9375rem; font-weight: 700; color: #1E40AF; margin-bottom: 0.875rem; display: flex; align-items: center; gap: 0.5rem; }
.steps-box ol { padding-left: 1.375rem; margin: 0; }
.steps-box li { font-size: 0.875rem; color: #374151; padding: 0.35rem 0; line-height: 1.55; }

.tips-box { width: 100%; background: #FFFBEB; border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; text-align: left; }
.tips-box h6 { font-size: 0.9375rem; font-weight: 700; color: #92400E; margin-bottom: 0.875rem; display: flex; align-items: center; gap: 0.5rem; }
.tips-box ul { list-style: none; padding: 0; margin: 0; }
.tips-box li { font-size: 0.875rem; color: #78350F; padding: 0.35rem 0 0.35rem 1.375rem; position: relative; line-height: 1.55; }
.tips-box li::before { content: '💡'; position: absolute; left: 0; font-size: 0.75rem; }

.resend-section { width: 100%; text-align: center; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border-light); }
.resend-section p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 0.5rem; }
.resend-section a { font-size: 0.875rem; color: var(--primary); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.375rem; }
.resend-section a:hover { text-decoration: underline; }

.auth-container { margin-top: 3rem; margin-bottom: 5rem; }
.auth-box { background: var(--bg-white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 4px 32px rgba(0,0,0,0.08); border: 1px solid var(--border-light); animation: fadeInUp 0.5s ease-out; }
.email-list { list-style: none; padding: 0; margin: 0 0 2rem 0; }
.email-item { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.75rem; flex-wrap: wrap; gap: 1rem; background: var(--bg-white); transition: var(--transition); }
.email-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.email-info { display: flex; align-items: center; gap: 1rem; }
.email-info i { font-size: 1.5rem; color: var(--text-lighter); }
.email-info.verified i { color: var(--success); }
.email-info.primary  i { color: var(--primary); }
.email-details { display: flex; flex-direction: column; gap: 0.25rem; }
.email-address { font-size: 0.9375rem; font-weight: 600; color: var(--text-dark); }
.email-highlight { font-weight: 700; color: var(--primary); }
.email-badges { display: flex; gap: 0.375rem; margin-top: 0.25rem; flex-wrap: wrap; }
.badge-verified,.badge-primary,.badge-unverified { font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.625rem; border-radius: 2rem; letter-spacing: 0.02em; text-transform: uppercase; }
.badge-verified   { background: #DCFCE7; color: #15803D; }
.badge-primary    { background: rgba(6,214,160,0.15); color: var(--primary-dark); }
.badge-unverified { background: #FEF3C7; color: #B45309; }
.email-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.email-actions .btn { padding: 0.5rem 1.125rem; font-size: 0.8125rem; font-weight: 600; border-radius: var(--radius); }
.add-email-section { border-top: 2px solid var(--border-light); padding-top: 2rem; margin-top: 2rem; }
.add-email-section h4 { font-family: 'Crimson Pro', serif; font-size: 1.375rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.625rem; }
.add-email-section h4 i { color: var(--primary); }
.add-email-section .form-group { margin-bottom: 1rem; }
.add-email-section label { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.375rem; }
.add-email-section label i { color: var(--primary); font-size: 0.875rem; }
.add-email-section .form-control { height: 50px; border: 2px solid var(--border); border-radius: var(--radius); padding: 0 1rem; font-size: 0.9375rem; font-family: 'Outfit', sans-serif; color: var(--text-dark); transition: var(--transition); outline: none; width: 100%; }
.add-email-section .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(6,214,160,0.12); }
.success-message { width: 100%; display: flex; align-items: center; gap: 0.75rem; background: #F0FDF4; border: 1px solid #BBF7D0; border-left: 4px solid var(--success); padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.9375rem; color: #15803D; font-weight: 500; }
.success-message i { color: var(--success); font-size: 1.125rem; flex-shrink: 0; }


/* ============================================
   13. RESPONSIVE
============================================ */

@media (max-width: 991px) {
    .faq-categories-grid { grid-template-columns: 1fr; }
    .sidebar.mobile-sidebar,.category-sidebar,.faq-sidebar { display: none !important; }
    .faq-hero-search { display: block !important; }
    .col-lg-9 { flex: 0 0 100%; max-width: 100%; }
    .faq-hero-content h1,.category-hero-content h1 { font-size: 2rem; }
    .cart-grid,.checkout-grid { grid-template-columns: 1fr; }
    .cart-summary,.order-summary { position: static; max-height: none; margin-top: 2rem; }
    .cart-stepper,.progress-steps { gap: 1rem; }
    .step-item:not(:last-child)::after,.progress-step:not(:last-child)::after { width: 1rem; }
    .page-header h1 { font-size: 3rem; }
    .category-stats { gap: 2rem; }
    .stat-number    { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    body { font-size: 14px; }
    .faq-hero-section,.category-hero,.wishlist-hero,.contact-hero,.cart-hero,.checkout-hero,.cart-page-header { padding: 3rem 0 2rem; }
    .faq-hero-content h1,.category-hero-content h1,.hero-content h1,.cart-page-header h1,.hero-title { font-size: 1.75rem; }
    .faq-hero-content p,.hero-content p,.hero-subtitle { font-size: 1rem; }
    .faq-hero-search .faq-search-input { padding: 1rem 1.25rem; font-size: 0.875rem; }
    .faq-hero-search .faq-search-btn  { padding: 1rem 1.5rem; font-size: 0.875rem; }
    .faq-question-title { font-size: 1.75rem; }
    .faq-answer         { font-size: 1rem; }
    .faq-article-content { padding: 1.5rem; }
    .faq-feedback-section { padding: 2rem 1.5rem; }
    .feedback-buttons { flex-direction: column; }
    .feedback-btn { width: 100%; justify-content: center; }
    .cart-item { grid-template-columns: 80px 1fr; gap: 1rem; }
    .cart-item__total { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; padding-top: 1rem; border-top: 1px solid #F3F4F6; }
    .cart-item__img { width: 80px; height: 80px; }
    .cart-coupon { grid-template-columns: 1fr; gap: 1rem; }
    .coupon-row { flex-direction: column; width: 100%; }
    .coupon-input { width: 100%; }
    .progress-steps { gap: 1.5rem; }
    .progress-step:not(:last-child)::after { width: 1.5rem; }
    .form-row     { grid-template-columns: 1fr; }
    .payment-methods { grid-template-columns: 1fr; }
    .form-card    { padding: 1.5rem; }
    .wishlist-stats { margin-top: -2rem; padding: 1.5rem; }
    .stat-number    { font-size: 2rem; }
    .share-buttons  { flex-direction: column; }
    .btn-share      { width: 100%; }
    .contact-cta h2 { font-size: 2rem; }
    .cta-buttons    { flex-direction: column; align-items: stretch; }
    .cta-buttons .btn { width: 100%; }
    .page-header    { padding: 5rem 0 4rem; }
    .count-wrapper  { font-size: 2.5rem; }
    .category-icon-large { font-size: 3rem; }
    .category-stats { gap: 1.5rem; padding: 1.25rem; }
    .cta-simple.cta-border { padding: 2.5rem 1.5rem; }
    .cta-simple.cta-border h3 { font-size: 1.5rem; }
    .cart-toast-wrap { right: 1rem; left: 1rem; }
    .cart-toast { min-width: auto; }
}

@media (max-width: 576px) {
    .cart-page-header,.checkout-hero { padding: 2rem 0 1.5rem; }
    .cart-page-header h1,.hero-title,.page-header h1 { font-size: 1.5rem; }
    .faq-hero-search .faq-search-form { flex-direction: column; border-radius: 1rem; }
    .faq-hero-search .faq-search-btn  { width: 100%; border-radius: 0 0 1rem 1rem; }
    .card-accordion .card-header { padding: 1.25rem 1rem; font-size: 0.938rem; }
    .card-accordion .card-body   { padding: 0 1rem 1.25rem; }
    .faq-search-box .faq-search-form { flex-direction: column; }
    .faq-search-box .faq-search-btn  { width: 100%; }
    .faq-meta { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .faq-question-title { font-size: 1.5rem; }
    .sidebar-card { padding: 1.5rem; }
    .step-label { font-size: 0.75rem; }
    .step-num,.step-circle { width: 36px; height: 36px; font-size: 0.875rem; }
    .progress-steps { flex-wrap: wrap; gap: 1rem; }
    .cart-item { padding: 1rem; }
    .cart-item__title { font-size: 1rem; }
    .cart-item__actions { flex-wrap: wrap; }
    .card-modern { padding: 1.5rem; }
    .form-card-title { font-size: 1.25rem; }
    .feature-box,.testimonial-item { padding: 2rem 1.5rem; }
    .box { width: 90%; max-width: 300px; }
    .box-content p { font-size: 0.875rem; }
}

@media (max-width: 768px) {
    input[type="radio"],input[type="checkbox"],.delivery-option,.payment-method,label { -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important; cursor: pointer !important; pointer-events: auto !important; touch-action: manipulation !important; }
    .delivery-option { min-height: 64px !important; padding: 1.5rem !important; position: relative !important; z-index: 10 !important; }
    .payment-method { min-height: 80px !important; padding: 1.5rem 1rem !important; position: relative !important; z-index: 10 !important; }
    input[type="radio"] { opacity: 1 !important; position: relative !important; appearance: auto !important; -webkit-appearance: radio !important; width: 24px !important; height: 24px !important; min-width: 24px !important; min-height: 24px !important; margin: 0 !important; cursor: pointer !important; }
    label { cursor: pointer !important; -webkit-user-select: none !important; user-select: none !important; }
    .delivery-option::before,.delivery-option::after,.payment-method::before,.payment-method::after { pointer-events: none !important; }
    .delivery-options,.payment-methods,.form-card { pointer-events: auto !important; position: relative !important; z-index: 1 !important; }
    .delivery-option,.payment-method { transition: none !important; transform: none !important; }
    @supports (-webkit-touch-callout: none) {
        input[type="radio"],input[type="checkbox"] { -webkit-appearance: radio !important; width: 20px !important; height: 20px !important; }
        .delivery-option,.payment-method { -webkit-tap-highlight-color: rgba(6,214,160,0.2) !important; }
    }
}

@media screen and (max-width: 790px) {
    .timeline-section { padding: 3rem 0; }
    .timeline-wrapper::before { height: 100%; }
    .box { margin-bottom: 100px; left: 0 !important; }
    .box-left,.box-right { left: 0 !important; }
    .box::after { display: none; }
    .box::before { top: -70px; left: 50% !important; right: auto !important; transform: translateX(-50%); }
}

@media (max-width: 1024px) {
    .success-hero     { padding: 3rem 1rem 4rem; }
    .success-title    { font-size: 2rem; }
    .success-icon     { width: 80px; height: 80px; font-size: 2.5rem; }
    .card .card-body  { padding: 1.5rem; }
    .action-buttons   { flex-direction: column; }
    .btn              { min-width: 100%; }
}

@media (max-width: 768px) {
    .success-hero::before,.success-hero::after { display: none; }
    .success-title    { font-size: 1.75rem; }
    .success-subtitle { font-size: 1rem; }
    .success-icon     { width: 70px; height: 70px; font-size: 2rem; }
    .order-badge      { padding: 0.625rem 1.5rem; font-size: 0.938rem; }
    .success-content  { margin-top: -2rem; }
    .card .card-header { padding: 1.25rem 1.5rem; }
    .card .card-title  { font-size: 1.125rem; }
    .card .card-body   { padding: 1.25rem; }
    .info-grid        { grid-template-columns: 1fr; gap: 1rem; }
    .order-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .order-table thead { display: none; }
    .order-table tbody tr { display: block; margin-bottom: 1.5rem; border: 1px solid #E5E7EB; border-radius: 12px; overflow: hidden; }
    .order-table tbody td { display: flex; justify-content: space-between; align-items: center; padding: 1rem; border-bottom: 1px solid #F3F4F6; text-align: right !important; }
    .order-table tbody td:last-child { border-bottom: none; }
    .order-table tbody td::before { content: attr(data-label); font-weight: 700; color: #6B7280; font-size: 0.813rem; text-transform: uppercase; letter-spacing: 0.5px; text-align: left; }
    .product-info { flex-direction: column; align-items: flex-start; width: 100%; }
    .product-image { width: 100%; height: auto; aspect-ratio: 16/9; }
    .timeline::before { left: 25px; }
    .timeline-icon { width: 50px; height: 50px; min-width: 50px; font-size: 1.25rem; }
    .trust-box { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
    .trust-item { padding: 0.875rem; }
    .trust-item-icon { font-size: 1.75rem; min-width: 40px; }
    .trust-item-text { font-size: 0.875rem; }
    .totals-section { padding: 1.25rem; }
    .total-line { font-size: 0.875rem; }
    .total-line.grand { font-size: 1.125rem; }
    .total-line.grand .value { font-size: 1.25rem; }
    .cart-grid { grid-template-columns: 1fr; }
    .summary-sticky { position: static; margin-top: 2rem; }
    .cart-hero     { padding: 2rem 0 1.5rem; }
    .hero-icon     { width: 56px; height: 56px; font-size: 1.75rem; }
    .hero-title    { font-size: 1.75rem; }
    .hero-subtitle { font-size: 1rem; }
    .progress-stepper { gap: 1rem; margin: 1.5rem 0 2rem; }
    .step-circle  { width: 40px; height: 40px; font-size: 1rem; }
    .step-item:not(:last-child)::after { width: 1rem; left: calc(50% + 24px); }
    .card-premium .card-header { padding: 1.25rem 1.5rem; }
    .card-premium .card-title  { font-size: 1.125rem; }
    .item-image { width: 80px; height: 80px; }
    .item-total { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; padding-top: 1rem; margin-top: 0.5rem; border-top: 1px solid var(--border-light); min-width: auto; }
    .coupon-section { padding: 1.25rem; }
    .coupon-input-group { flex-direction: column; }
    .btn-coupon { width: 100%; }
    .summary-section  { padding: 1.25rem; }
    .summary-actions  { padding: 0 1.25rem 1.25rem; }
    .trust-badges     { padding: 1.25rem; }
    .toast-container  { right: 1rem; left: 1rem; top: 4rem; }
    .toast            { min-width: auto; }
}

@media (max-width: 576px) {
    .hero-title    { font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.938rem; }
    .cart-item { padding: 1rem; }
    .item-actions { width: 100%; }
    .qty-control  { flex: 1; justify-content: space-between; padding: 0.25rem 0.5rem; }
    .btn-remove   { flex: 1; justify-content: center; }
    .coupon-title { font-size: 0.938rem; }
    .coupon-desc  { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .success-title { font-size: 1.5rem; }
    .success-subtitle { font-size: 0.938rem; }
    .card .card-header { padding: 1rem; }
    .card .card-body   { padding: 1rem; }
    .btn { padding: 0.875rem 1.5rem; font-size: 0.938rem; }
}

@media print {
    .no-print,.action-buttons,.trust-box,nav,footer,header { display: none !important; }
    body { margin: 0; padding: 0; }
    .success-content { margin: 0; max-width: 100%; }
    .success-hero { background: white; color: black; padding: 2rem 0; page-break-after: avoid; }
    .success-hero::before,.success-hero::after { display: none; }
    .success-icon { background: #06D6A0; color: white; box-shadow: none; }
    .order-badge  { background: #F3F4F6; color: black; border-color: #E5E7EB; }
    .card { box-shadow: none; border: 1px solid #E5E7EB; margin-bottom: 1rem; page-break-inside: avoid; }
    .card .card-header { background: #F9FAFB; }
    .timeline::before { background: #E5E7EB; }
    .timeline-icon { border-color: #E5E7EB; }
    .timeline-icon.done { background: #06D6A0; border-color: #06D6A0; }
    .order-table { page-break-inside: avoid; }
    .order-table tbody tr { page-break-inside: avoid; }
}

@media (prefers-color-scheme: dark) {
    .success-hero    { background: linear-gradient(135deg, #048B6D 0%, #037259 100%); }
    .card            { background: #1F2937; color: white; }
    .card .card-header { background: #111827; border-color: #374151; }
    .card .card-title  { color: white; }
    .info-item       { background: #111827; border-color: #374151; }
    .info-label      { color: #9CA3AF; }
    .info-value      { color: white; }
    .order-table thead     { background: #111827; }
    .order-table tbody tr:hover { background: #1F2937; }
    .order-table tbody td  { color: white; border-color: #374151; }
    .product-name          { color: white; }
    .totals-section        { background: #111827; border-color: #374151; }
    .timeline-icon         { background: #1F2937; border-color: #374151; color: white; }
    .timeline-content h4   { color: white; }
    .timeline-content p    { color: #9CA3AF; }
    .btn.btn-secondary     { background: #1F2937; color: white; border-color: #374151; }
    .trust-box             { background: linear-gradient(135deg, #1F2937 0%, #111827 100%); border-color: #374151; }
    .trust-item            { background: #111827; }
    .trust-item-text       { color: white; }
}

@media (max-width: 991px) {
    .signup-wrapper { grid-template-columns: 1fr; }
    .signup-visual { padding: 3rem 2rem; min-height: auto; }
    .visual-title { font-size: 2.25rem; }
    .signup-form-section { padding: 3rem 2rem; }
    .form-container { max-width: 100%; }
}

@media (max-width: 768px) {
    .signup-visual { padding: 2.5rem 1.5rem; }
    .visual-title { font-size: 1.875rem; }
    .visual-description { font-size: 0.9375rem; }
    .benefits-list { gap: 0.75rem; }
    .benefit-item { font-size: 0.875rem; }
    .signup-form-section { padding: 2.5rem 1.5rem; }
    .form-title { font-size: 1.875rem; }
    .auth-wrapper { padding: 2.5rem 0 3.5rem; }
    .auth-card .card-body { padding: 2rem 1.5rem; }
    .auth-title { font-size: 1.5rem; }
    .auth-subtitle { font-size: 0.875rem; }
    .auth-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .success-icon { width: 72px; height: 72px; font-size: 1.875rem; }
    .btn-group-auth { flex-direction: column; }
    .btn-google { height: 48px; font-size: 0.875rem; }
    .social-buttons { grid-template-columns: 1fr; }
    .auth-box { padding: 2rem 1.5rem; }
    .email-item { flex-direction: column; align-items: flex-start; }
    .email-actions { width: 100%; }
    .email-actions .btn { flex: 1; text-align: center; }
}

@media (max-width: 576px) {
    .signup-visual { padding: 2rem 1.25rem; }
    .brand-logo { margin-bottom: 1.5rem; }
    .visual-title { font-size: 1.625rem; }
    .benefits-list { display: none; }
    .signup-form-section { padding: 2rem 1.25rem; }
    .form-title { font-size: 1.625rem; }
    .auth-card .card-body { padding: 1.75rem 1.25rem; }
    .auth-options { flex-direction: column; align-items: flex-start; }
    .auth-box { padding: 1.5rem 1.25rem; }
    .email-badges { flex-wrap: wrap; }
    .add-email-section { padding-top: 1.5rem; }
    .auth-form .form-control { height: 46px; font-size: 0.9rem; }
    .btn-auth { height: 46px; font-size: 0.875rem; }
}


/* ============================================
   14. LEGAL PAGES
   Mentions Légales · CGV · Privacy · Shipping
============================================ */

/* ── Hero ── */
.legal-hero {
    background: linear-gradient(135deg, #073B4C 0%, #0A5568 100%);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(6,214,160,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,209,102,0.10) 0%, transparent 50%);
    pointer-events: none;
}

.legal-hero .container { position: relative; z-index: 2; }

.legal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6,214,160,0.15);
    border: 1px solid rgba(6,214,160,0.4);
    color: #06D6A0;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.legal-hero h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease-out;
}

.legal-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.legal-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.legal-hero .breadcrumb-item { color: rgba(255,255,255,0.6); }
.legal-hero .breadcrumb-item a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.legal-hero .breadcrumb-item a:hover { color: #06D6A0; }
.legal-hero .breadcrumb-item.active { color: white; }
.legal-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); content: "›"; }

/* ── Quick Nav ── */
.legal-quicknav {
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

.quicknav-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-body);
    transition: all 0.25s ease;
    height: 100%;
}

.quicknav-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(6,214,160,0.12);
    color: var(--text-dark);
}

.quicknav-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(6,214,160,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.quicknav-card:hover .quicknav-icon {
    background: var(--primary);
    color: white;
}

.quicknav-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0 0 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.quicknav-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* ── Page Layout ── */
.legal-page { padding: 0 0 5rem; }

/* ── Sidebar TOC ── */
.legal-sidebar { position: sticky; top: 2rem; }

.legal-toc {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.legal-toc-header {
    padding: 1.25rem 1.5rem;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.legal-toc-list {
    list-style: none;
    padding: 0.75rem 0;
    margin: 0;
}

.legal-toc-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    color: var(--text-body);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.legal-toc-list li a:hover {
    color: var(--primary);
    background: rgba(6,214,160,0.05);
    border-left-color: var(--primary);
    padding-left: 1.75rem;
}

.legal-toc-list li a .toc-num {
    width: 22px;
    height: 22px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-light);
    flex-shrink: 0;
}

.legal-toc-list li a:hover .toc-num {
    background: rgba(6,214,160,0.15);
    color: var(--primary);
}

.legal-updated-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ── Sections ── */
.legal-section {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.legal-section:hover { box-shadow: var(--shadow-md); }

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
}

.legal-section-num {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.legal-section h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.legal-section-body { padding: 1.75rem 2rem; }

/* ── Table ── */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.legal-table tr {
    border-bottom: 1px solid var(--border-light);
    transition: background 0.15s ease;
}

.legal-table tr:last-child { border-bottom: none; }
.legal-table tr:hover { background: var(--bg-light); }

.legal-table td {
    padding: 0.875rem 0.75rem;
    vertical-align: middle;
}

.legal-table td:first-child {
    color: var(--text-light);
    width: 38%;
    font-weight: 500;
    font-size: 0.85rem;
}

.legal-table td:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-table .placeholder {
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
}

/* ── Text blocks ── */
.legal-para {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.legal-para:last-child { margin-bottom: 0; }

.legal-highlight {
    background: linear-gradient(135deg, rgba(6,214,160,0.08) 0%, rgba(6,214,160,0.04) 100%);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.7;
}

.legal-highlight a { color: var(--primary); font-weight: 600; text-decoration: none; }
.legal-highlight a:hover { text-decoration: underline; }

.legal-external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.legal-external-link:hover { text-decoration: underline; }

/* ── Contact CTA ── */
.legal-contact-box {
    background: linear-gradient(135deg, #073B4C 0%, #0A5568 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.legal-contact-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(6,214,160,0.15) 0%, transparent 50%);
}

.legal-contact-box > * { position: relative; z-index: 1; }

.legal-contact-box h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.legal-contact-box p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.legal-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(6,214,160,0.3);
}

.legal-contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6,214,160,0.4);
    color: white;
}

/* ── Legal page responsive ── */
@media (max-width: 768px) {
    .legal-hero h1 { font-size: 2rem; }
    .legal-sidebar { display: none; }
    .legal-section-body { padding: 1.25rem; }
    .legal-section-header { padding: 1.25rem; }
    .legal-table td:first-child { width: 45%; }
    .quicknav-card { padding: 1rem; }
    .quicknav-icon { width: 36px; height: 36px; }
    .legal-contact-box { padding: 1.75rem 1.25rem; }
}


/* ============================================
   15. DASHBOARD
============================================ */

.dash-root { display: grid; grid-template-columns: 260px 1fr; grid-template-rows: auto 1fr; min-height: calc(100vh - 60px); background: #F4F6F8; }
.dash-sidebar { grid-column: 1; grid-row: 1 / -1; background: var(--secondary, #073B4C); width: 260px; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; padding: 0 0 2rem; transition: transform .3s cubic-bezier(.4,0,.2,1); scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.1) transparent; }
.dash-sidebar::-webkit-scrollbar { width: 4px; }
.dash-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 2px; }
.dash-sidebar__header { display: flex; align-items: center; gap: 12px; padding: 1.75rem 1.5rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: .5rem; }
.dash-user-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary, #06D6A0), #05B589); display: flex; align-items: center; justify-content: center; font-family: 'Crimson Pro', serif; font-size: 1.25rem; font-weight: 700; color: white; flex-shrink: 0; box-shadow: 0 4px 12px rgba(6,214,160,.3); }
.dash-user-name { font-size: .9375rem; font-weight: 600; color: white; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-user-email { font-size: .75rem; color: rgba(255,255,255,.5); margin: 2px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-nav { flex: 1; padding: .5rem 0; }
.dash-nav__item { display: flex; align-items: center; gap: 12px; width: 100%; padding: .75rem 1.5rem; background: none; border: none; cursor: pointer; color: rgba(255,255,255,.65); font-size: .9rem; font-family: 'Outfit', sans-serif; font-weight: 500; text-decoration: none; transition: all .2s ease; position: relative; text-align: left; }
.dash-nav__item:hover { color: white; background: rgba(255,255,255,.06); }
.dash-nav__item.active { color: white; background: rgba(6,214,160,.15); }
.dash-nav__item.active::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 60%; background: var(--primary, #06D6A0); border-radius: 0 2px 2px 0; }
.dash-nav__icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.07); flex-shrink: 0; transition: all .2s ease; }
.dash-nav__item.active .dash-nav__icon,.dash-nav__item:hover .dash-nav__icon { background: rgba(6,214,160,.2); color: var(--primary, #06D6A0); }
.dash-nav__label { flex: 1; }
.dash-nav__badge { background: var(--primary, #06D6A0); color: white; font-size: .6875rem; font-weight: 700; padding: 2px 7px; border-radius: 20px; flex-shrink: 0; }
.dash-nav__divider { height: 1px; background: rgba(255,255,255,.08); margin: .75rem 1.5rem; }
.dash-nav__logout-form { width: 100%; }
.dash-nav__item--logout:hover { color: #F87171; background: rgba(239,68,68,.08); }
.dash-nav__item--logout:hover .dash-nav__icon { background: rgba(239,68,68,.15); color: #F87171; }

.dash-topbar { display: none; grid-column: 1 / -1; align-items: center; gap: 1rem; padding: .875rem 1.25rem; background: var(--secondary, #073B4C); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.dash-topbar__title { flex: 1; color: white; font-size: 1rem; font-weight: 600; font-family: 'Outfit', sans-serif; }
.dash-topbar__shop { color: rgba(255,255,255,.7); display: flex; align-items: center; text-decoration: none; transition: color .2s; }
.dash-topbar__shop:hover { color: var(--primary, #06D6A0); }
.dash-topbar__burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0; }
.dash-topbar__burger span { display: block; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: all .25s ease; }
.dash-topbar__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dash-topbar__burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.dash-topbar__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.dash-overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 149; opacity: 0; pointer-events: none; transition: opacity .3s; }
.dash-overlay.visible { opacity: 1; pointer-events: auto; }

.dash-main { grid-column: 2; grid-row: 1 / -1; padding: 2rem 2.5rem; min-width: 0; }
.dash-panel { display: none; animation: dashFadeIn .35s ease-out; }
.dash-panel.active { display: block; }

@keyframes dashFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.dash-panel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.dash-panel__title { font-family: 'Crimson Pro', serif; font-size: 2rem; font-weight: 700; color: var(--text-dark, #1A1A2E); margin: 0 0 .25rem; line-height: 1.2; }
.dash-highlight { color: var(--primary, #06D6A0); }
.dash-panel__sub { font-size: .9rem; color: var(--text-light, #6B7280); margin: 0; max-width: 560px; line-height: 1.6; }

.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.75rem; }
.dash-stat { background: white; border-radius: 14px; padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem; border: 1px solid #E5E7EB; box-shadow: 0 1px 4px rgba(0,0,0,.04); transition: all .25s ease; }
.dash-stat:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: var(--primary, #06D6A0); }
.dash-stat__icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dash-stat__icon--teal  { background: rgba(6,214,160,.12); color: var(--primary, #06D6A0); }
.dash-stat__icon--amber { background: rgba(255,209,102,.18); color: #D97706; }
.dash-stat__icon--blue  { background: rgba(59,130,246,.1);  color: #3B82F6; }
.dash-stat__icon--green { background: rgba(16,185,129,.1);  color: #059669; }
.dash-stat__val { font-size: 1.75rem; font-weight: 700; color: var(--text-dark, #1A1A2E); margin: 0; line-height: 1; }
.dash-stat__lbl { font-size: .75rem; color: var(--text-light, #6B7280); margin: 4px 0 0; font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }

.dash-quicklinks { display: grid; grid-template-columns: repeat(5, 1fr); gap: .875rem; margin-bottom: 1.75rem; }
.dash-quicklink { background: white; border: 1px solid #E5E7EB; border-radius: 14px; padding: 1.5rem 1rem; display: flex; flex-direction: column; align-items: center; gap: .75rem; font-size: .875rem; font-weight: 600; color: var(--text-dark, #1A1A2E); font-family: 'Outfit', sans-serif; text-decoration: none; cursor: pointer; transition: all .25s ease; text-align: center; }
.dash-quicklink:hover { border-color: var(--primary, #06D6A0); background: rgba(6,214,160,.04); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(6,214,160,.12); color: var(--text-dark, #1A1A2E); }
.dash-quicklink__icon { width: 48px; height: 48px; border-radius: 12px; background: #F4F6F8; display: flex; align-items: center; justify-content: center; color: var(--text-dark, #374151); transition: all .25s ease; }
.dash-quicklink:hover .dash-quicklink__icon { background: rgba(6,214,160,.15); color: var(--primary, #06D6A0); }

.dash-card { background: white; border-radius: 16px; border: 1px solid #E5E7EB; box-shadow: 0 1px 4px rgba(0,0,0,.04); margin-bottom: 1.5rem; overflow: hidden; }
.dash-card__head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid #F3F4F6; }
.dash-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--text-dark, #1A1A2E); margin: 0; }

.dash-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dash-table { width: 100%; border-collapse: collapse; }
.dash-table thead tr { background: #F9FAFB; }
.dash-table thead th { padding: .875rem 1.25rem; font-size: .75rem; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; text-align: left; border-bottom: 1px solid #E5E7EB; }
.dash-table tbody td { padding: 1rem 1.25rem; font-size: .9rem; color: var(--text-dark, #374151); border-bottom: 1px solid #F3F4F6; white-space: nowrap; }
.dash-table tbody tr:last-child td { border-bottom: none; }
.dash-table tbody tr:hover td { background: #FAFAFA; }

.dash-order-id { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .875rem; color: var(--secondary, #073B4C); background: #F0F4F8; padding: 3px 10px; border-radius: 20px; }

.dash-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 700; text-transform: capitalize; }
.dash-badge--paid,.dash-badge--completed,.dash-badge--delivered { background: #DCFCE7; color: #15803D; }
.dash-badge--pending,.dash-badge--processing { background: #FEF3C7; color: #B45309; }
.dash-badge--shipped  { background: #DBEAFE; color: #1E40AF; }
.dash-badge--cancelled,.dash-badge--failed { background: #FEE2E2; color: #DC2626; }
.dash-badge:not([class*="dash-badge--paid"]):not([class*="dash-badge--completed"]):not([class*="dash-badge--delivered"]):not([class*="dash-badge--pending"]):not([class*="dash-badge--processing"]):not([class*="dash-badge--shipped"]):not([class*="dash-badge--cancelled"]):not([class*="dash-badge--failed"]) { background: #F3F4F6; color: #6B7280; }

.dash-empty { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 3.5rem 2rem; color: #9CA3AF; text-align: center; }
.dash-empty p { font-size: 1rem; color: #6B7280; margin: 0; }

.dash-addr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.dash-addr-card { background: white; border: 1px solid #E5E7EB; border-radius: 16px; padding: 1.5rem; display: flex; flex-direction: column; gap: .875rem; transition: all .25s ease; }
.dash-addr-card:hover { border-color: var(--primary, #06D6A0); box-shadow: 0 4px 16px rgba(6,214,160,.1); }
.dash-addr-card__head { display: flex; align-items: center; gap: .75rem; }
.dash-addr-card__icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(6,214,160,.1); display: flex; align-items: center; justify-content: center; color: var(--primary, #06D6A0); flex-shrink: 0; }
.dash-addr-card__head h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark, #1A1A2E); margin: 0; }
.dash-addr-card__body { flex: 1; }
.dash-addr-placeholder { font-size: .875rem; color: #9CA3AF; margin: 0; line-height: 1.6; }

.dash-form { padding: 1.5rem; }
.dash-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dash-form__group { margin-bottom: 1.125rem; }
.dash-form__group label { display: block; font-size: .8125rem; font-weight: 600; color: var(--text-dark, #374151); margin-bottom: .4rem; }
.dash-input { width: 100%; height: 44px; padding: 0 1rem; border: 1.5px solid #E5E7EB; border-radius: 10px; font-size: .9rem; font-family: 'Outfit', sans-serif; color: var(--text-dark, #1A1A2E); background: white; transition: all .2s ease; outline: none; appearance: none; }
.dash-input:focus { border-color: var(--primary, #06D6A0); box-shadow: 0 0 0 3px rgba(6,214,160,.12); }
.dash-input::placeholder { color: #D1D5DB; }
select.dash-input { cursor: pointer; }
.dash-form__footer { display: flex; justify-content: flex-end; padding-top: .5rem; margin-top: .5rem; border-top: 1px solid #F3F4F6; }
.dash-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0 1rem; font-size: .8125rem; font-weight: 600; color: var(--text-light, #6B7280); text-transform: uppercase; letter-spacing: .06em; }
.dash-divider::before,.dash-divider::after { content: ''; flex: 1; height: 1px; background: #E5E7EB; }

.dash-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .625rem 1.25rem; border: none; border-radius: 10px; font-size: .875rem; font-weight: 600; font-family: 'Outfit', sans-serif; cursor: pointer; text-decoration: none; transition: all .2s ease; white-space: nowrap; }
.dash-btn--primary { background: var(--primary, #06D6A0); color: white; box-shadow: 0 4px 12px rgba(6,214,160,.25); }
.dash-btn--primary:hover { background: #05B589; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(6,214,160,.35); color: white; }
.dash-btn--ghost { background: white; color: var(--text-body, #374151); border: 1.5px solid #E5E7EB; }
.dash-btn--ghost:hover { border-color: var(--primary, #06D6A0); color: var(--primary, #06D6A0); background: rgba(6,214,160,.04); }
.dash-btn--sm { padding: .4375rem 1rem; font-size: .8125rem; border-radius: 8px; }
.dash-link { background: none; border: none; color: var(--primary, #06D6A0); font-size: .875rem; font-weight: 600; cursor: pointer; font-family: 'Outfit', sans-serif; padding: 0; text-decoration: none; transition: color .2s; }
.dash-link:hover { color: #05B589; }

.dash-toast { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; padding: .875rem 1.5rem; border-radius: 12px; font-size: .9rem; font-weight: 600; font-family: 'Outfit', sans-serif; box-shadow: 0 8px 32px rgba(0,0,0,.15); transform: translateY(20px); opacity: 0; transition: all .3s cubic-bezier(.4,0,.2,1); max-width: 340px; }
.dash-toast.show { transform: translateY(0); opacity: 1; }
.dash-toast--ok  { background: #ECFDF5; color: #065F46; border-left: 4px solid #10B981; }
.dash-toast--err { background: #FEF2F2; color: #991B1B; border-left: 4px solid #EF4444; }

@media (max-width: 1100px) {
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .dash-quicklinks { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .dash-root { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
    .dash-topbar { display: flex; }
    .dash-sidebar { position: fixed; top: 0; left: 0; height: 100vh; z-index: 150; transform: translateX(-100%); }
    .dash-sidebar.open { transform: translateX(0); }
    .dash-overlay { display: block; }
    .dash-main { grid-column: 1; grid-row: 2; padding: 1.5rem 1.25rem; }
    .dash-panel__head { flex-direction: column; gap: 1rem; }
    .dash-panel__head .dash-btn { width: 100%; }
}

@media (max-width: 768px) {
    .dash-stats { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    .dash-quicklinks { grid-template-columns: repeat(3, 1fr); gap: .625rem; }
    .dash-addr-grid { grid-template-columns: 1fr; }
    .dash-form__row { grid-template-columns: 1fr; }
    .dash-panel__title { font-size: 1.625rem; }
    .dash-stat { padding: 1rem 1.125rem; }
    .dash-stat__val { font-size: 1.5rem; }
    .dash-quicklink { padding: 1.25rem .75rem; font-size: .8125rem; }
    .dash-quicklink__icon { width: 40px; height: 40px; }
    .dash-toast { bottom: 1rem; right: 1rem; left: 1rem; max-width: none; }
    .dash-root button,.dash-root a,.dash-root input,.dash-root select,.dash-root label,.dash-root [data-tab],.dash-root [data-goto] { -webkit-tap-highlight-color: rgba(6,214,160,.15) !important; cursor: pointer !important; pointer-events: auto !important; touch-action: manipulation !important; }
    .dash-nav__item { min-height: 52px; padding: .875rem 1.5rem !important; }
    .dash-quicklink { min-height: 80px; -webkit-tap-highlight-color: rgba(6,214,160,.2) !important; }
    .dash-stat:hover,.dash-quicklink:hover,.dash-btn--primary:hover,.dash-btn--ghost:hover { transform: none !important; }
    .dash-input { height: 50px !important; font-size: 16px !important; }
    .dash-topbar__burger { width: 44px !important; height: 44px !important; padding: 8px !important; }
    .dash-overlay { pointer-events: none !important; }
    .dash-overlay.visible { pointer-events: auto !important; }
}

@media (max-width: 480px) {
    .dash-stats { grid-template-columns: 1fr 1fr; }
    .dash-quicklinks { grid-template-columns: repeat(2, 1fr); }
    .dash-table thead th,.dash-table tbody td { padding: .75rem .875rem; }
    .dash-main { padding: 1rem; }
}


/* ════════════════════════════════════════════
   GDPR BANNER
   Section 15 — additions My Account GDPR
════════════════════════════════════════════ */
.dash-gdpr-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg,#EFF6FF 0%,#DBEAFE 100%);
    border: 1px solid #BFDBFE;
    border-left: 4px solid #3B82F6;
    border-radius: var(--radius,12px);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size:.875rem;
    color:#1E40AF;
    line-height:1.6;
}
.dash-gdpr-banner svg { color:#3B82F6; flex-shrink:0; margin-top:2px; }
.dash-gdpr-banner strong { display:block; font-weight:700; margin-bottom:.2rem; }
.dash-gdpr-banner a { color:#3B82F6; font-weight:600; }

/* ════════════════════════════════════════════
   GDPR CARDS GRID
════════════════════════════════════════════ */
.dash-gdpr-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.25rem;
    margin-bottom:1.5rem;
}
.dash-gdpr-card {
    background:white;
    border:1px solid #E5E7EB;
    border-radius:14px;
    padding:1.5rem;
    display:flex;
    flex-direction:column;
    gap:.75rem;
    transition:all .25s ease;
}
.dash-gdpr-card:hover {
    border-color:#06D6A0;
    box-shadow:0 4px 16px rgba(6,214,160,.1);
    transform:translateY(-2px);
}
.dash-gdpr-card h3 { font-size:1rem; font-weight:700; color:#1A1A2E; margin:0; }
.dash-gdpr-card p  { font-size:.8125rem; color:#6B7280; line-height:1.55; margin:0; flex:1; }
.dash-gdpr-card__icon {
    width:42px; height:42px; border-radius:10px;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.dash-gdpr-card__icon--blue  { background:rgba(59,130,246,.12);  color:#3B82F6; }
.dash-gdpr-card__icon--green { background:rgba(16,185,129,.12);  color:#059669; }
.dash-gdpr-card__icon--amber { background:rgba(245,158,11,.12);  color:#D97706; }

/* Tableau données personnelles */
.dash-gdpr-info {
    background:#F9FAFB;
    border-radius:8px;
    padding:.75rem;
    font-size:.8125rem;
}
.dash-gdpr-info__row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:.35rem 0;
    border-bottom:1px solid #F3F4F6;
}
.dash-gdpr-info__row:last-child { border-bottom:none; }
.dash-gdpr-info__row span   { color:#9CA3AF; font-weight:500; }
.dash-gdpr-info__row strong { color:#1A1A2E; font-size:.8rem; }

/* Statut newsletter */
.dash-gdpr-status {
    display:inline-flex;
    align-items:center;
    gap:.4rem;
    font-size:.8rem;
    font-weight:700;
    padding:.375rem .875rem;
    border-radius:2rem;
}
.dash-gdpr-status--active   { background:#DCFCE7; color:#15803D; }
.dash-gdpr-status--inactive { background:#F3F4F6; color:#9CA3AF; }

/* ════════════════════════════════════════════
   ZONE DANGER — Art. 17 RGPD
════════════════════════════════════════════ */
.dash-gdpr-danger {
    background:white;
    border:1px solid #FECACA;
    border-left:4px solid #EF4444;
    border-radius:14px;
    padding:1.5rem;
}
.dash-gdpr-danger__header {
    display:flex;
    align-items:center;
    gap:.75rem;
    margin-bottom:.75rem;
}
.dash-gdpr-danger__header svg { color:#EF4444; flex-shrink:0; }
.dash-gdpr-danger__header h3  { font-size:1rem; font-weight:700; color:#991B1B; margin:0; }
.dash-gdpr-danger p { font-size:.875rem; color:#6B7280; line-height:1.6; margin:0 0 1.25rem; }
.dash-gdpr-danger p strong { color:#374151; }
.dash-gdpr-danger__btn {
    background:white;
    color:#EF4444;
    border:1.5px solid #EF4444;
    font-size:.875rem;
}
.dash-gdpr-danger__btn:hover {
    background:#EF4444;
    color:white;
    border-color:#EF4444;
    transform:none;
}

/* ════════════════════════════════════════════
   MODAL SUPPRESSION COMPTE
════════════════════════════════════════════ */
.dash-modal-backdrop {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(4px);
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:1rem;
}
.dash-modal {
    background:white;
    border-radius:16px;
    padding:2rem;
    max-width:440px;
    width:100%;
    box-shadow:0 20px 60px rgba(0,0,0,.2);
    animation:dashFadeIn .25s ease-out;
    text-align:center;
}
.dash-modal__icon {
    width:56px; height:56px;
    background:#FEF2F2;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color:#EF4444;
    margin:0 auto 1rem;
}
.dash-modal h2 {
    font-family:'Crimson Pro',Georgia,serif;
    font-size:1.5rem; font-weight:700;
    color:#1A1A2E; margin:0 0 .625rem;
}
.dash-modal p { font-size:.9rem; color:#6B7280; line-height:1.6; margin:0; }

/* ════════════════════════════════════════════
   RESPONSIVE GDPR
════════════════════════════════════════════ */
@media (max-width: 991px) {
    .dash-gdpr-grid { grid-template-columns:1fr; }
}
@media (max-width: 768px) {
    .dash-gdpr-grid { grid-template-columns:1fr; gap:1rem; }
    .dash-gdpr-card { padding:1.25rem; }
    .dash-modal     { padding:1.5rem; }
}


/* ============================================
   16. MY ACCOUNT PAGE
   Sidebar · Dashboard · Orders · Addresses
   Account Details · GDPR
============================================ */

/* ── Layout ── */
.acc-wrap {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    padding: 2.5rem 0 4rem;
    align-items: start;
}

/* ── Sidebar ── */
.acc-sidebar {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: sticky;
    top: 1.5rem;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.acc-user {
    background: var(--secondary);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: .875rem;
}

.acc-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 700; color: white; flex-shrink: 0;
    font-family: 'Crimson Pro', Georgia, serif;
}

.acc-user-name  { font-size: .875rem; font-weight: 700; color: white; margin: 0; line-height: 1.3; }
.acc-user-email { font-size: .7rem; color: rgba(255,255,255,.5); margin: 3px 0 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 145px; }

.acc-nav { padding: .5rem 0; }
.acc-nav-label { padding: .75rem 1.25rem .2rem; font-size: .62rem; font-weight: 700; color: var(--text-lighter); text-transform: uppercase; letter-spacing: .1em; }

.acc-nav-btn {
    display: flex; align-items: center; gap: .75rem;
    width: 100%; padding: .65rem 1.25rem;
    background: none; border: none; border-left: 3px solid transparent;
    font-family: 'Outfit', sans-serif; font-size: .875rem; color: var(--text-body);
    cursor: pointer; text-align: left; text-decoration: none;
    transition: all .15s;
}
.acc-nav-btn:hover  { background: var(--bg-page); color: var(--primary); }
.acc-nav-btn.is-active { background: rgba(6,214,160,.07); color: var(--primary); font-weight: 600; border-left-color: var(--primary); }
.acc-nav-btn svg    { flex-shrink: 0; opacity: .65; transition: opacity .15s; }
.acc-nav-btn:hover svg, .acc-nav-btn.is-active svg { opacity: 1; }
.acc-nav-btn--danger { color: var(--error); }
.acc-nav-btn--danger:hover { background: #FFF5F5; color: #C0392B; }

.acc-nav-divider { height: 1px; background: var(--border); margin: .4rem 1.25rem; }

/* ── Mobile topbar ── */
.acc-topbar {
    display: none; align-items: center; gap: 1rem;
    padding: .875rem 1rem;
    background: white; border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 300;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.acc-topbar-title { flex: 1; font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.acc-burger {
    width: 40px; height: 40px;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    background: var(--bg-gray); border: 1.5px solid var(--border);
    border-radius: 8px; cursor: pointer; padding: 8px; flex-shrink: 0;
}
.acc-burger span { display: block; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all .25s; }
.acc-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.acc-burger.open span:nth-child(2) { opacity: 0; }
.acc-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.acc-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.45); z-index: 150;
    opacity: 0; transition: opacity .3s; pointer-events: none;
}
.acc-overlay.on { opacity: 1; pointer-events: auto; }

/* ── Main panel ── */
.acc-panel { background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.acc-tab { display: none; }
.acc-tab.active { display: block; animation: accFade .2s ease; }
@keyframes accFade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

.acc-panel-head {
    padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: .75rem;
}
.acc-panel-head h2 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin: 0; }
.acc-panel-head svg { color: var(--primary); flex-shrink: 0; }
.acc-body { padding: 1.5rem; }

/* ── Stats (dashboard) ── */
.acc-stats {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1rem; margin-bottom: 1.5rem;
}
.acc-stat {
    background: var(--bg-page); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.125rem 1rem;
    text-align: center; cursor: pointer; transition: all .2s;
    text-decoration: none; display: flex; flex-direction: column;
    align-items: center; gap: .375rem;
}
.acc-stat:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(6,214,160,.12); transform: translateY(-2px); }
.acc-stat-val { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); line-height: 1; }
.acc-stat-val.green { color: var(--primary); }
.acc-stat-lbl { font-size: .72rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }

/* ── Quick grid ── */
.acc-quick {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.acc-quick-item {
    background: var(--bg-page); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem 1rem;
    text-align: center; cursor: pointer; transition: all .2s;
    text-decoration: none; display: flex; flex-direction: column;
    align-items: center; gap: .625rem; width: 100%;
}
.acc-quick-item:hover { border-color: var(--primary); background: rgba(6,214,160,.04); box-shadow: 0 4px 16px rgba(6,214,160,.1); transform: translateY(-3px); }
.acc-quick-item svg { color: #bbb; transition: color .2s; width: 32px; height: 32px; }
.acc-quick-item:hover svg { color: var(--primary); }
.acc-quick-item span { font-size: .75rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: .06em; }

/* ── Table ── */
.acc-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.acc-table thead th { padding: .75rem 1rem; font-size: .68rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .07em; background: var(--bg-page); border-bottom: 1px solid var(--border); text-align: left; }
.acc-table tbody td { padding: .875rem 1rem; border-bottom: 1px solid var(--bg-gray); color: var(--text-body); }
.acc-table tbody tr:last-child td { border-bottom: none; }
.acc-table tbody tr:hover td { background: var(--bg-page); }

.acc-oid { font-weight: 700; font-size: .8rem; color: var(--secondary); background: var(--bg-gray); padding: 3px 10px; border-radius: 20px; white-space: nowrap; }

.acc-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: .7rem; font-weight: 700; }
.acc-badge--ok   { background: #DCFCE7; color: #15803D; }
.acc-badge--mid  { background: #FEF3C7; color: #B45309; }
.acc-badge--info { background: #DBEAFE; color: #1E40AF; }
.acc-badge--bad  { background: #FEE2E2; color: #DC2626; }

.acc-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3.5rem 1.5rem; text-align: center; gap: 1rem; }
.acc-empty svg { color: #DDD; }
.acc-empty p { font-size: .9rem; color: var(--text-light); margin: 0; }

/* ── Address cards ── */
.acc-addr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.acc-addr-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.125rem; transition: border-color .2s; }
.acc-addr-card:hover { border-color: var(--primary); }
.acc-addr-title { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 700; color: var(--text-dark); margin: 0 0 .625rem; }
.acc-addr-title svg { color: var(--primary); }
.acc-addr-text { font-size: .8rem; color: var(--text-light); line-height: 1.7; margin: 0 0 .875rem; }

/* ── Forms ── */
.acc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.acc-form-group { margin-bottom: 1rem; }
.acc-form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--text-dark); margin-bottom: .35rem; }
.acc-input {
    width: 100%; height: 42px; padding: 0 .875rem;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-size: .875rem; font-family: 'Outfit', sans-serif;
    color: var(--text-dark); background: white; outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box; appearance: none;
}
.acc-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(6,214,160,.1); }
.acc-input::placeholder { color: var(--text-lighter); }
.acc-section-divider {
    display: flex; align-items: center; gap: 1rem; margin: 1.25rem 0;
    font-size: .7rem; font-weight: 700; color: var(--text-light);
    text-transform: uppercase; letter-spacing: .06em;
}
.acc-section-divider::before, .acc-section-divider::after { content:''; flex:1; height:1px; background: var(--border); }

/* ── Buttons ── */
.acc-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .55rem 1.125rem; border-radius: 8px; font-size: .8125rem;
    font-weight: 600; font-family: 'Outfit', sans-serif;
    cursor: pointer; border: none; text-decoration: none;
    transition: all .15s; white-space: nowrap;
}
.acc-btn--primary { background: var(--primary); color: white; box-shadow: 0 4px 12px rgba(6,214,160,.2); }
.acc-btn--primary:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); }
.acc-btn--ghost { background: white; color: var(--text-body); border: 1.5px solid var(--border); }
.acc-btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.acc-btn--danger { background: white; color: var(--error); border: 1.5px solid var(--error); }
.acc-btn--danger:hover { background: var(--error); color: white; }
.acc-btn--sm { padding: .35rem .75rem; font-size: .75rem; border-radius: 6px; }

/* ── GDPR ── */
.acc-gdpr-banner {
    display: flex; align-items: flex-start; gap: .75rem;
    background: #EFF6FF; border-left: 4px solid #3B82F6;
    border-radius: 8px; padding: .875rem 1rem; margin-bottom: 1.25rem;
    font-size: .8rem; color: #1E40AF; line-height: 1.6;
}
.acc-gdpr-banner svg { color: #3B82F6; flex-shrink: 0; margin-top: 1px; }
.acc-gdpr-banner strong { display: block; margin-bottom: .15rem; }
.acc-gdpr-banner a { color: #3B82F6; font-weight: 600; }

.acc-gdpr-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.25rem; }
.acc-gdpr-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.125rem; display: flex; flex-direction: column; gap: .625rem; transition: all .2s; }
.acc-gdpr-card:hover { border-color: var(--primary); box-shadow: 0 4px 12px rgba(6,214,160,.08); }
.acc-gdpr-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.acc-gdpr-icon--blue  { background: rgba(59,130,246,.1);  color: #3B82F6; }
.acc-gdpr-icon--green { background: rgba(16,185,129,.1);  color: #059669; }
.acc-gdpr-icon--amber { background: rgba(245,158,11,.1);  color: #D97706; }
.acc-gdpr-card h4 { font-size: .875rem; font-weight: 700; color: var(--text-dark); margin: 0; }
.acc-gdpr-card p  { font-size: .775rem; color: var(--text-light); line-height: 1.55; margin: 0; flex: 1; }
.acc-gdpr-data { background: var(--bg-page); border-radius: 7px; overflow: hidden; }
.acc-gdpr-row { display: flex; justify-content: space-between; align-items: center; padding: .4rem .875rem; border-bottom: 1px solid var(--border-light); font-size: .76rem; gap: .5rem; }
.acc-gdpr-row:last-child { border-bottom: none; }
.acc-gdpr-row span  { color: var(--text-light); white-space: nowrap; }
.acc-gdpr-row strong { color: var(--text-dark); font-size: .72rem; max-width: 55%; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.acc-pill { display: inline-flex; align-items: center; gap: .35rem; padding: .3rem .875rem; border-radius: 2rem; font-size: .72rem; font-weight: 700; }
.acc-pill--on  { background: #DCFCE7; color: #15803D; }
.acc-pill--off { background: var(--bg-gray); color: var(--text-lighter); }

.acc-danger-zone { border: 1px solid #FECACA; border-left: 4px solid var(--error); border-radius: var(--radius); padding: 1.125rem; }
.acc-danger-head { display: flex; align-items: center; gap: .625rem; margin-bottom: .5rem; }
.acc-danger-head svg { color: var(--error); }
.acc-danger-head h4  { font-size: .9375rem; font-weight: 700; color: #991B1B; margin: 0; }
.acc-danger-zone > p { font-size: .8rem; color: var(--text-light); line-height: 1.6; margin: 0 0 .875rem; }
.acc-danger-zone > p strong { color: var(--text-body); }

/* ── Toast ── */
.acc-toast {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
    padding: .75rem 1.25rem; border-radius: 10px; font-size: .85rem; font-weight: 600;
    box-shadow: var(--shadow-lg); transform: translateY(12px); opacity: 0;
    transition: all .3s; max-width: 320px; pointer-events: none;
}
.acc-toast.show { transform: translateY(0); opacity: 1; }
.acc-toast--ok  { background: #ECFDF5; color: #065F46; border-left: 4px solid var(--success); }
.acc-toast--err { background: #FEF2F2; color: #991B1B; border-left: 4px solid var(--error); }

/* ── Modal ── */
.acc-modal-bg {
    position: fixed; inset: 0; background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px); z-index: 9999;
    display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.acc-modal {
    background: white; border-radius: var(--radius-lg); padding: 1.75rem;
    max-width: 400px; width: 100%; text-align: center;
    box-shadow: var(--shadow-lg); animation: accPop .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes accPop { from { transform:scale(.9); opacity:0; } to { transform:scale(1); opacity:1; } }
.acc-modal-icon { width: 50px; height: 50px; background: #FEF2F2; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--error); margin: 0 auto .875rem; }
.acc-modal h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin: 0 0 .4rem; }
.acc-modal p  { font-size: .85rem; color: var(--text-light); margin: 0 0 1.125rem; line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .acc-wrap { grid-template-columns: 1fr; padding: 0 0 3rem; gap: 0; }
    .acc-topbar { display: flex; }
    .acc-sidebar {
        position: fixed; top: 0; left: 0;
        height: 100vh; width: 268px; z-index: 200;
        transform: translateX(-100%); border-radius: 0;
        box-shadow: 4px 0 24px rgba(0,0,0,.12);
        will-change: transform;
        overflow: hidden;
    }
    .acc-sidebar.open { transform: translateX(0); }
    .acc-overlay { display: block; }
    .acc-panel { border-radius: 0; border-left: none; border-right: none; margin: 1rem 0 0; }
    .acc-body { padding: 1.25rem; }
    .acc-gdpr-grid { grid-template-columns: 1fr; }
    .acc-addr-grid { grid-template-columns: 1fr; }
    .acc-stats { grid-template-columns: repeat(3,1fr); }
    .acc-quick { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 640px) {
    .acc-body { padding: 1rem; }
    .acc-stats { gap: .625rem; }
    .acc-quick { grid-template-columns: repeat(2,1fr); gap: .625rem; }
    .acc-form-row { grid-template-columns: 1fr; gap: 0; }
    .acc-table thead { display: none; }
    .acc-table tbody tr { display: block; padding: .875rem 1rem; border-bottom: 1px solid var(--border); }
    .acc-table tbody td { display: flex; justify-content: space-between; align-items: center; padding: .3rem 0; border: none; font-size: .8rem; }
    .acc-table tbody td::before { content: attr(data-label); font-size: .65rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; }
    .acc-toast { bottom: 1rem; right: .75rem; left: .75rem; max-width: none; }
    .acc-stat-val { font-size: 1.125rem; }
    .acc-gdpr-banner { flex-direction: column; gap: .4rem; }
    .acc-modal { padding: 1.5rem; }
    .acc-panel-head { padding: 1rem; }
    .acc-panel-head h2 { font-size: 1rem; }
}

/* ── ORDER CARDS (My Orders tab) ── */
.acc-order-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
    transition: box-shadow .2s, border-color .2s;
    background: white;
}
.acc-order-card:last-child { margin-bottom: 0; }
.acc-order-card:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(6,214,160,.08); }

/* Header */
.acc-order-header {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: .875rem 1.125rem;
    background: var(--bg-page); border-bottom: 1px solid var(--border);
}
.acc-order-meta { display: flex; align-items: center; gap: .75rem; }
.acc-order-date { display: flex; align-items: center; gap: .35rem; font-size: .78rem; color: var(--text-light); }

/* Badge with icon */
.acc-badge { display: inline-flex; align-items: center; gap: .35rem; }

/* Items list */
.acc-order-items { padding: .75rem 1.125rem; display: flex; flex-direction: column; gap: .75rem; }

.acc-order-item {
    display: flex; align-items: flex-start; gap: .875rem;
    padding: .625rem; border-radius: 8px; transition: background .15s;
}
.acc-order-item:hover { background: var(--bg-page); }

.acc-order-img {
    width: 64px; height: 64px; border-radius: 8px;
    overflow: hidden; flex-shrink: 0;
    border: 1px solid var(--border); display: block;
    background: var(--bg-page);
}
.acc-order-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s; }
.acc-order-img:hover img { transform: scale(1.05); }
.acc-order-img--placeholder {
    display: flex; align-items: center; justify-content: center; color: #CCC;
}

.acc-order-item-info { flex: 1; display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.acc-order-item-name {
    font-size: .875rem; font-weight: 600; color: var(--text-dark);
    text-decoration: none; line-height: 1.35;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    transition: color .15s;
}
.acc-order-item-name:hover { color: var(--primary); }
.acc-order-item-meta {
    display: flex; flex-wrap: wrap; gap: .375rem;
    font-size: .72rem; color: var(--text-light);
}
.acc-order-item-meta span {
    background: var(--bg-gray); padding: 2px 8px;
    border-radius: 20px; border: 1px solid var(--border);
}
.acc-order-item-price { font-size: .875rem; font-weight: 700; color: var(--primary); margin-top: auto; }

/* Tracking */
.acc-order-tracking {
    display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
    padding: .625rem 1.125rem;
    background: #EFF6FF; border-top: 1px solid #DBEAFE;
    font-size: .8rem; color: #1E40AF;
}
.acc-order-tracking svg { color: #3B82F6; flex-shrink: 0; }
.acc-order-track-link { font-weight: 700; color: #3B82F6; text-decoration: none; margin-left: auto; }
.acc-order-track-link:hover { text-decoration: underline; }

/* Footer */
.acc-order-footer {
    padding: .875rem 1.125rem;
    border-top: 1px solid var(--border);
    display: flex; align-items: center;
    flex-wrap: wrap; gap: .75rem;
}
.acc-order-total {
    display: flex; align-items: center; gap: .5rem;
    font-size: .875rem; color: var(--text-light); margin-right: auto;
}
.acc-order-total strong { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.acc-order-actions { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }

/* Rétractation */
.acc-retract-notice {
    width: 100%; display: flex; align-items: center; gap: .45rem;
    font-size: .72rem; color: #D97706;
    background: #FEF3C7; border: 1px solid #FDE68A;
    border-radius: 6px; padding: .4rem .75rem;
}
.acc-retract-notice svg { color: #D97706; flex-shrink: 0; }

/* Responsive */
@media (max-width: 640px) {
    .acc-order-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .acc-order-footer { flex-direction: column; align-items: flex-start; }
    .acc-order-total { margin-right: 0; }
    .acc-order-actions { width: 100%; }
    .acc-order-actions .acc-btn { flex: 1; justify-content: center; }
    .acc-order-img { width: 54px; height: 54px; }
    .acc-order-tracking { flex-direction: column; align-items: flex-start; }
    .acc-order-track-link { margin-left: 0; }
}

/* ============================================================
   16. PRODUCT DETAIL — Ajouts minimes sur le thème demo4
   À coller à la fin de style.css
   Toutes les classes demo4 (product-single-default, etc.)
   sont déjà dans le thème — on ajoute uniquement les nouvelles.
============================================================ */

/* ── Prix TVA ── */
.pdl-vat-note {
    font-size: .72rem;
    color: #999;
    margin: .125rem 0 .625rem;
}

/* ── Livraison ── */
.pdl-delivery {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .82rem;
    color: #555;
    margin-bottom: .375rem;
}
.pdl-delivery i,
.pdl-delivery svg { color: #06D6A0; flex-shrink: 0; }

/* ── Garantie ── */
.pdl-warranty {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .78rem;
    color: #777;
    margin-bottom: .75rem;
}
.pdl-warranty i,
.pdl-warranty svg { color: #06D6A0; flex-shrink: 0; }

/* ── Stock badges ── */
.pdl-stock {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.pdl-stock--in  { color: #28a745; }
.pdl-stock--low { color: #e07a00; }
.pdl-stock--out { color: #dc3545; }
.pdl-stock--low .pdl-pulse {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #e07a00;
    animation: pdlPulse 1.4s ease infinite;
}
@keyframes pdlPulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: .5; }
}

/* ── Buy Now button ── */
.pdl-btn-buy {
    display: inline-block;
    margin-top: .375rem;
    padding: .6rem 1.5rem;
    border-radius: .3rem;
    font-size: .875rem;
    font-weight: 700;
    transition: all .2s;
}

/* ── Trust list ── */
.pdl-trust-list {
    list-style: none;
    padding: 0;
    margin: .875rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .375rem;
}
.pdl-trust-list li {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: #666;
}
.pdl-trust-list li i { color: #06D6A0; }

/* ── Verified purchase badge in reviews ── */
.pdl-verified {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    color: #28a745;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: .25rem;
}

/* ── Condition pills (in filters section) ── */
.pdl-condition-list li a {
    min-width: 70px;
    font-size: .72rem;
    padding: 0 .5rem;
}

/* ── Widget section responsive fix ── */
@media (max-width: 767px) {
    .product-widgets-container .product-default.product-widget { margin-bottom: 1rem; }
}

.btn-orange{
    background-color: var(--warning);
    color: var(--bg-white);
}
.pdl-legal-price-note{
    font-size:.78rem;
    color:#666;
    line-height:1.5;
    margin:.15rem 0 .85rem;
  }
  
  .pdl-compliance-box{
    margin-top:1rem;
    padding:.9rem;
    border:1px solid #ececec;
    border-radius:8px;
    background:#fcfcfc;
  }
  
  .pdl-legal-row{
    display:flex;
    align-items:flex-start;
    gap:.7rem;
    padding:.55rem 0;
    border-bottom:1px solid #f0f0f0;
  }
  
  .pdl-legal-row:last-child{
    border-bottom:none;
  }
  
  .pdl-legal-row i{
    color:#06D6A0;
    margin-top:2px;
    flex-shrink:0;
  }
  
  .pdl-legal-row strong{
    display:block;
    font-size:.82rem;
    color:#222;
    margin-bottom:.1rem;
  }
  
  .pdl-legal-row span,
  .pdl-legal-row a,
  .pdl-legal-row small{
    font-size:.76rem;
    line-height:1.5;
  }
  
  .pdl-legal-links{
    font-size:.74rem;
    color:#666;
    margin-top:.75rem;
    line-height:1.7;
  }
  
  .pdl-legal-links a{
    color:#444;
    text-decoration:none;
  }
  
  .pdl-legal-links a:hover{
    text-decoration:underline;
  }
  
  .pdl-key-features-wrap{
    margin:.85rem 0 1rem;
  }
  
  .pdl-mini-title{
    font-size:.85rem;
    font-weight:700;
    margin-bottom:.45rem;
    color:#222;
  }
  
  .pdl-key-features{
    padding-left:1rem;
    margin:0;
  }
  
  .pdl-key-features li{
    font-size:.8rem;
    color:#555;
    line-height:1.55;
    margin-bottom:.2rem;
  }
  
  .product-extra-content{
    font-size:.85rem;
    color:#555;
    line-height:1.7;
  }

 /* ============================================
   17. SHOP PAGE (shopmostpopular)
   Hero · Sidebar · Filtres JS · Grille produits
   Breadcrumb · Ticker · Pagination
============================================ */

body{font-family:'Outfit',sans-serif;background:var(--bg-page);color:var(--text-body);line-height:1.6;-webkit-font-smoothing:antialiased;}

/* ═══════════════ HERO PREMIUM ═══════════════ */
.cat-hero{
  background:linear-gradient(135deg,#062030 0%,var(--secondary) 45%,#0d5a6e 100%);
  position:relative;overflow:hidden;padding:0;min-height:480px;display:flex;flex-direction:column;
}
.cat-hero::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 80% at 5% 50%,rgba(6,214,160,.14) 0%,transparent 60%),
    radial-gradient(ellipse 40% 60% at 95% 20%,rgba(255,209,102,.10) 0%,transparent 55%),
    radial-gradient(ellipse 30% 40% at 70% 90%,rgba(6,214,160,.08) 0%,transparent 50%);
  pointer-events:none;
}
/* Dot grid texture */
.cat-hero::after{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:28px 28px;pointer-events:none;
}

/* Main inner */
.cat-hero-inner{
  max-width:1240px;margin:0 auto;padding:52px 32px 44px;
  display:grid;grid-template-columns:1fr 480px;gap:32px;
  align-items:center;position:relative;z-index:2;flex:1;
}

/* Left: text */
.cat-hero-left{}
.cat-hero-tag{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(6,214,160,.15);border:1px solid rgba(6,214,160,.35);
  color:var(--primary);border-radius:2rem;font-size:11px;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;padding:5px 14px;margin-bottom:20px;
}
.cat-hero-title{
  font-family:'Crimson Pro',serif;font-size:clamp(38px,4.5vw,62px);font-weight:700;
  color:#fff;line-height:1.05;letter-spacing:-.03em;margin-bottom:14px;
}
.cat-hero-title em{font-style:normal;color:var(--primary);}
.cat-hero-desc{color:rgba(255,255,255,.65);font-size:15px;font-weight:300;max-width:380px;margin-bottom:28px;line-height:1.7;}

/* CTA row */
.cat-hero-actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-bottom:36px;}
.cat-hero-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--primary);color:var(--secondary);font-weight:700;font-size:14px;
  padding:13px 26px;border-radius:3rem;text-decoration:none;
  box-shadow:0 4px 20px rgba(6,214,160,.4);transition:var(--transition);
}
.cat-hero-cta:hover{background:var(--primary-dark);transform:translateY(-2px);}
.cat-hero-link{
  display:inline-flex;align-items:center;gap:6px;color:rgba(255,255,255,.7);
  font-size:13px;font-weight:500;text-decoration:none;transition:color .2s;
}
.cat-hero-link:hover{color:#fff;}

/* Stats strip */
.cat-hero-stats{display:flex;align-items:center;gap:0;}
.stat-sep{width:1px;height:32px;background:rgba(255,255,255,.12);margin:0 20px;}
.hero-stat-val{font-family:'Crimson Pro',serif;font-size:26px;font-weight:700;color:#fff;line-height:1;}
.hero-stat-lbl{font-size:11px;color:rgba(255,255,255,.5);margin-top:2px;font-weight:500;letter-spacing:.04em;}

/* Right: product showcase */
.cat-hero-right{position:relative;height:340px;}

/* Floating product cards */
.hero-prod-card{
  position:absolute;background:rgba(255,255,255,.07);backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.13);border-radius:14px;
  display:flex;align-items:center;gap:12px;padding:12px 14px;
  transition:transform .3s ease,box-shadow .3s ease;
  box-shadow:0 8px 32px rgba(0,0,0,.2);
}
.hero-prod-card:hover{transform:translateY(-4px) scale(1.02);box-shadow:0 16px 48px rgba(0,0,0,.3);}
.hero-prod-img{
  width:60px;height:60px;border-radius:10px;object-fit:cover;flex-shrink:0;
  border:1px solid rgba(255,255,255,.1);
}
.hero-prod-info{}
.hero-prod-name{font-size:12px;font-weight:600;color:#fff;margin-bottom:3px;line-height:1.3;max-width:140px;}
.hero-prod-price{font-size:14px;font-weight:800;color:var(--primary);}
.hero-prod-old{font-size:11px;color:rgba(255,255,255,.4);text-decoration:line-through;margin-left:5px;}
.hero-prod-badge{
  position:absolute;top:-8px;right:-8px;
  background:var(--error);color:#fff;font-size:9px;font-weight:700;
  padding:3px 7px;border-radius:20px;letter-spacing:.04em;
}

/* Card positions */
.hpc-1{top:10px;  left:0;    width:240px; animation:hpFloat1 6s ease-in-out infinite;}
.hpc-2{top:110px; left:60px; width:230px; animation:hpFloat2 7s ease-in-out infinite 1s;}
.hpc-3{top:210px; left:10px; width:220px; animation:hpFloat1 8s ease-in-out infinite 2s;}
.hpc-4{top:20px;  right:0;   width:210px; animation:hpFloat2 6.5s ease-in-out infinite .5s;}
.hpc-5{top:160px; right:0;   width:225px; animation:hpFloat1 7.5s ease-in-out infinite 1.5s;}

@keyframes hpFloat1{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
@keyframes hpFloat2{0%,100%{transform:translateY(-4px)}50%{transform:translateY(4px)}}

/* Coupon bubble */
.hero-coupon-pill{
  position:absolute;bottom:0;right:0;
  background:var(--accent);border-radius:14px;
  padding:14px 20px;text-align:center;
  box-shadow:0 8px 28px rgba(255,209,102,.3);
  animation:hpFloat2 5s ease-in-out infinite;
}
.hcp-eyelet{font-size:9px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(7,59,76,.7);margin-bottom:4px;}
.hcp-amount{font-family:'Crimson Pro',serif;font-size:32px;font-weight:700;color:var(--secondary);line-height:1;}
.hcp-sub{font-size:10px;font-weight:700;color:rgba(7,59,76,.6);text-transform:uppercase;letter-spacing:.08em;}
.hcp-btn{
  display:block;margin-top:10px;background:var(--secondary);color:#fff;
  font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  padding:8px 16px;border-radius:20px;text-decoration:none;transition:var(--transition);
}
.hcp-btn:hover{background:#0a5264;}

/* Scrolling ticker at bottom */
.cat-hero-ticker{
  background:rgba(0,0,0,.25);border-top:1px solid rgba(255,255,255,.07);
  padding:10px 0;overflow:hidden;position:relative;z-index:2;
}
.ticker-track{
  display:flex;gap:0;white-space:nowrap;
  animation:tickerScroll 25s linear infinite;
}
.ticker-track:hover{animation-play-state:paused;}
.ticker-item{
  display:inline-flex;align-items:center;gap:8px;
  padding:0 32px;font-size:12px;color:rgba(255,255,255,.55);font-weight:500;
}
.ticker-dot{width:5px;height:5px;border-radius:50%;background:var(--primary);flex-shrink:0;}
.ticker-item strong{color:rgba(255,255,255,.85);font-weight:700;}
@keyframes tickerScroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* Responsive hero */
@media(max-width:1100px){
  .cat-hero-inner{grid-template-columns:1fr 380px;}
  .hpc-4,.hpc-5{display:none;}
  .hpc-1{width:200px;} .hpc-2{width:195px;} .hpc-3{width:190px;}
}
@media(max-width:900px){
  .cat-hero-inner{grid-template-columns:1fr;padding:40px 20px 32px;}
  .cat-hero-right{display:none;}
  .cat-hero-title{font-size:clamp(30px,6vw,44px);}
}
@media(max-width:576px){
  .cat-hero-inner{padding:32px 16px 28px;}
  .cat-hero-title{font-size:30px;}
  .cat-hero-stats{flex-wrap:wrap;gap:12px;}
  .stat-sep{display:none;}
}

/* BREADCRUMB */
.cat-bc{max-width:1240px;margin:0 auto;padding:14px 32px;display:flex;align-items:center;gap:6px;font-size:12px;color:var(--text-light);border-bottom:1px solid var(--border);}
.cat-bc a{color:var(--text-light);text-decoration:none;transition:color .2s;}
.cat-bc a:hover{color:var(--primary);}
.cat-bc .sep{color:var(--border);}
.cat-bc .cur{color:var(--text-dark);font-weight:700;}
.bc-link{color:var(--text-light);}
.bc-link:hover{color:var(--primary);}
/* Animate breadcrumb update */
.cat-bc .cur{animation:bcFade .25s ease;}
@keyframes bcFade{from{opacity:0;transform:translateX(-4px)}to{opacity:1;transform:translateX(0)}}

/* LAYOUT */
.cat-body{max-width:1240px;margin:0 auto;padding:0 32px 64px;display:grid;grid-template-columns:260px 1fr;gap:28px;align-items:start;}
.sb-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:998;backdrop-filter:blur(2px);}
.sb-overlay.on{display:block;}

/* SIDEBAR */
.cat-sidebar{background:var(--bg-white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);position:sticky;top:24px;transition:transform .3s cubic-bezier(.4,0,.2,1);}
.sb-section{padding:18px 20px;border-bottom:1px solid var(--border-light);}
.sb-section:last-child{border-bottom:none;padding:0;}
.sb-mob-head{display:none;align-items:center;justify-content:space-between;padding:16px 20px;background:var(--secondary);}
.sb-mob-head span{font-size:15px;font-weight:700;color:#fff;}
.sb-mob-close{background:rgba(255,255,255,.12);border:none;color:#fff;width:30px;height:30px;border-radius:50%;font-size:18px;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;}
.sb-title{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--text-lighter);margin-bottom:12px;display:flex;align-items:center;gap:6px;}
.sb-title::before{content:'';width:3px;height:14px;background:var(--primary);border-radius:2px;display:inline-block;}

/* Categories tree */
.sb-cats{list-style:none;}
.sb-cats>li{margin-bottom:1px;}

/* Parent row */
.cat-row{display:flex;align-items:center;width:100%;padding:8px 10px;border-radius:8px;gap:4px;transition:var(--transition);}
.cat-row:hover{background:var(--bg-gray);}
.cat-row.on{background:rgba(6,214,160,.1);border-left:3px solid var(--primary);padding-left:7px;}

.cat-label{flex:1;display:flex;align-items:center;gap:0;background:none;border:none;cursor:pointer;font-family:'Outfit',sans-serif;font-size:13px;color:var(--text-body);text-align:left;padding:0;transition:color .2s;}
.cat-label:hover{color:var(--primary);}
.cat-row.on .cat-label{color:var(--primary);font-weight:600;}
.cat-row.cat-all .cat-label{font-style:italic;}

.cat-toggle{background:none;border:none;cursor:pointer;padding:2px 4px;color:var(--text-lighter);font-size:14px;line-height:1;border-radius:4px;transition:var(--transition);flex-shrink:0;}
.cat-toggle:hover{background:var(--border);color:var(--text-body);}
.cat-toggle.open{transform:rotate(180deg);}

.sb-cnt{font-size:11px;color:var(--text-lighter);background:var(--bg-gray);padding:2px 7px;border-radius:20px;flex-shrink:0;margin-left:4px;}
.cat-row.on .sb-cnt{background:rgba(6,214,160,.15);color:var(--primary);}

/* Subcategories */
.sub-cats{list-style:none;padding-left:14px;margin-top:2px;overflow:hidden;max-height:0;transition:max-height .3s ease;}
.sub-cats.open{max-height:400px;}
.sub-cats li{margin-bottom:1px;}
.sub-row{display:flex;align-items:center;width:100%;padding:7px 10px;border-radius:8px;gap:4px;transition:var(--transition);}
.sub-row:hover{background:var(--bg-gray);}
.sub-row.on{background:rgba(6,214,160,.08);border-left:2px solid var(--primary-light);padding-left:8px;}
.sub-label{flex:1;background:none;border:none;cursor:pointer;font-family:'Outfit',sans-serif;font-size:12px;color:var(--text-light);text-align:left;padding:0;transition:color .2s;}
.sub-label:hover{color:var(--primary);}
.sub-row.on .sub-label{color:var(--primary);font-weight:600;}
.sub-cnt{font-size:10px;color:var(--text-lighter);background:var(--bg-gray);padding:1px 6px;border-radius:20px;flex-shrink:0;}
.sub-row.on .sub-cnt{background:rgba(6,214,160,.15);color:var(--primary);}

/* ── CUSTOM PRICE SLIDER ── */
.slider-wrap{position:relative;height:20px;margin:20px 4px 12px;}
.slider-track{position:absolute;top:50%;left:0;right:0;height:4px;background:var(--border);border-radius:2px;transform:translateY(-50%);}
.slider-range{position:absolute;top:50%;height:4px;background:var(--primary);border-radius:2px;transform:translateY(-50%);}
.slider-thumb{position:absolute;top:50%;width:18px;height:18px;background:#fff;border:2.5px solid var(--primary);border-radius:50%;transform:translate(-50%,-50%);cursor:grab;touch-action:none;box-shadow:0 2px 6px rgba(6,214,160,.3);transition:box-shadow .2s;z-index:2;}
.slider-thumb:active{cursor:grabbing;box-shadow:0 0 0 4px rgba(6,214,160,.15);}
.price-lbl{display:flex;justify-content:space-between;font-size:12px;color:var(--text-light);margin-bottom:14px;}
.price-lbl strong{color:var(--text-dark);font-weight:700;}
.price-apply{width:100%;background:var(--primary);color:var(--secondary);border:none;border-radius:8px;padding:9px 16px;font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;cursor:pointer;font-family:'Outfit',sans-serif;transition:var(--transition);display:flex;align-items:center;justify-content:center;gap:6px;}
.price-apply:hover{background:var(--primary-dark);}
.price-apply.applied{background:#10B981;}

/* Swatches */
.sw-grid{display:flex;flex-wrap:wrap;gap:8px;}
.sw{width:28px;height:28px;border-radius:50%;cursor:pointer;position:relative;border:2px solid transparent;transition:var(--transition);}
.sw.on{border-color:var(--primary);box-shadow:0 0 0 2px rgba(6,214,160,.3);}
.sw.on::after{content:'✓';position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.4);}

/* Sizes */
.sz-grid{display:flex;flex-wrap:wrap;gap:6px;}
.sz-btn{min-width:42px;height:36px;border:1.5px solid var(--border);border-radius:8px;font-size:12px;font-weight:600;display:flex;align-items:center;justify-content:center;cursor:pointer;background:transparent;color:var(--text-body);font-family:'Outfit',sans-serif;transition:var(--transition);padding:0 10px;}
.sz-btn:hover{border-color:var(--primary);color:var(--primary);}
.sz-btn.on{background:var(--primary);color:var(--secondary);border-color:var(--primary);font-weight:700;}

/* Reset all filters */
.reset-all{width:100%;background:transparent;border:1.5px solid var(--border);color:var(--text-light);border-radius:8px;padding:8px;font-size:12px;font-weight:600;cursor:pointer;font-family:'Outfit',sans-serif;transition:var(--transition);margin-top:14px;}
.reset-all:hover{border-color:var(--error);color:var(--error);}

/* Promo */
.sb-promo{background:linear-gradient(135deg,var(--secondary) 0%,#0A5568 100%);padding:22px 20px;text-align:center;position:relative;overflow:hidden;}
.sb-promo::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 30% 50%,rgba(6,214,160,.18) 0%,transparent 50%);}
.sb-promo>*{position:relative;z-index:1;}
.promo-pill{display:inline-block;background:rgba(6,214,160,.2);color:var(--primary);font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:4px 10px;border-radius:20px;margin-bottom:10px;}
.promo-hl{color:#fff;font-size:16px;font-weight:700;line-height:1.35;margin-bottom:14px;}
.promo-hl strong{color:var(--accent);}
.promo-a{display:inline-flex;align-items:center;gap:6px;color:var(--secondary);background:var(--accent);font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;padding:9px 18px;border-radius:3rem;text-decoration:none;transition:var(--transition);}
.promo-a:hover{background:#f5c340;}

/* ACTIVE FILTER BADGES */
.active-filters{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:14px;}
.filter-tag{display:inline-flex;align-items:center;gap:5px;background:rgba(6,214,160,.12);border:1px solid rgba(6,214,160,.3);color:var(--primary);font-size:11px;font-weight:700;padding:4px 10px;border-radius:20px;}
.filter-tag button{background:none;border:none;cursor:pointer;color:var(--primary);font-size:13px;line-height:1;padding:0;display:flex;align-items:center;}

/* TOOLBOX */
.toolbox{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;padding:14px 16px;background:var(--bg-white);border:1px solid var(--border);border-radius:var(--radius);margin-bottom:16px;box-shadow:var(--shadow-sm);}
.tb-left{display:flex;align-items:center;gap:12px;}
.tb-right{display:flex;align-items:center;gap:12px;}
.filter-btn{display:flex;align-items:center;gap:7px;font-size:13px;font-weight:600;color:var(--text-dark);background:var(--bg-gray);border:1px solid var(--border);border-radius:8px;padding:8px 14px;cursor:pointer;text-decoration:none;transition:var(--transition);}
.filter-btn:hover,.filter-btn.has-filter{background:rgba(6,214,160,.1);border-color:var(--primary);color:var(--primary);}
.filter-btn .badge-count{background:var(--primary);color:var(--secondary);font-size:10px;font-weight:700;padding:1px 6px;border-radius:20px;min-width:18px;text-align:center;}
.sort-wrap{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--text-light);}
.sort-wrap select{border:1.5px solid var(--border);background:var(--bg-gray);border-radius:8px;padding:7px 12px;font-size:13px;color:var(--text-dark);font-family:'Outfit',sans-serif;cursor:pointer;outline:none;transition:var(--transition);}
.sort-wrap select:focus{border-color:var(--primary);}
.res-cnt{font-size:13px;color:var(--text-light);white-space:nowrap;}
.res-cnt strong{color:var(--text-dark);font-weight:700;}
.layout-btns{display:flex;gap:4px;}
.lay-btn{width:34px;height:34px;border-radius:8px;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;cursor:pointer;background:transparent;color:var(--text-lighter);transition:var(--transition);text-decoration:none;}
.lay-btn.on{background:var(--primary);border-color:var(--primary);color:var(--secondary);}
.lay-btn:hover:not(.on){border-color:var(--primary);color:var(--primary);}
.lay-btn svg{width:15px;height:15px;fill:currentColor;}

/* PRODUCTS */
.prod-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.prod-card{background:var(--bg-white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;position:relative;transition:var(--transition);}
.prod-card:hover{border-color:var(--primary);box-shadow:0 8px 32px rgba(6,214,160,.12);transform:translateY(-4px);}
.prod-card.hidden{display:none;}

.prod-img{position:relative;aspect-ratio:1/1.1;overflow:hidden;background:var(--bg-gray);}
.prod-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease;}
.prod-card:hover .prod-img img{transform:scale(1.05);}

.badge-g{position:absolute;top:10px;left:10px;display:flex;flex-direction:column;gap:4px;z-index:2;}
.badge{display:inline-block;font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:3px 8px;border-radius:6px;}
.b-new{background:var(--secondary);color:#fff;}
.b-sale{background:var(--error);color:#fff;}

.btn-wish{position:absolute;top:10px;right:10px;width:34px;height:34px;background:rgba(255,255,255,.92);border:1px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;color:var(--text-light);font-size:15px;transition:var(--transition);z-index:2;text-decoration:none;}
.btn-wish:hover{color:var(--error);border-color:var(--error);}

.hover-actions{position:absolute;bottom:10px;left:10px;right:10px;display:flex;gap:6px;opacity:0;transform:translateY(8px);transition:all .25s ease;z-index:3;}
.prod-card:hover .hover-actions{opacity:1;transform:translateY(0);}
.mob-actions{display:none;padding:0 12px 12px;}

.btn-cart{flex:1;background:var(--primary);color:var(--secondary);border:none;border-radius:8px;padding:10px 12px;font-size:12px;font-weight:700;letter-spacing:.03em;text-transform:uppercase;cursor:pointer;font-family:'Outfit',sans-serif;display:flex;align-items:center;justify-content:center;gap:5px;transition:var(--transition);box-shadow:0 4px 12px rgba(6,214,160,.3);}
.btn-cart:hover{background:var(--primary-dark);}
.btn-qv{width:38px;height:38px;border-radius:8px;border:1px solid var(--border);background:rgba(255,255,255,.95);display:flex;align-items:center;justify-content:center;cursor:pointer;flex-shrink:0;text-decoration:none;color:var(--text-body);transition:var(--transition);}
.btn-qv:hover{border-color:var(--primary);color:var(--primary);}

.prod-info{padding:14px 14px 16px;}
.prod-cat{font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--primary);margin-bottom:5px;display:block;text-decoration:none;}
.prod-name{font-size:14px;font-weight:600;color:var(--text-dark);margin-bottom:8px;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.prod-name a{color:inherit;text-decoration:none;}
.prod-name a:hover{color:var(--primary);}
.stars{display:flex;gap:2px;margin-bottom:10px;}
.star{color:var(--accent);font-size:12px;}
.star-e{color:var(--border);font-size:12px;}
.price-row{display:flex;align-items:baseline;gap:8px;}
.old-p{font-size:12px;color:var(--text-lighter);text-decoration:line-through;}
.cur-p{font-size:18px;font-weight:800;color:var(--text-dark);font-family:'Crimson Pro',serif;}

/* EMPTY STATE */
.empty-state{display:none;text-align:center;padding:4rem 2rem;grid-column:1/-1;}
.empty-state.show{display:block;}
.empty-icon{font-size:4rem;margin-bottom:1rem;opacity:.25;}
.empty-state h3{font-size:1.25rem;font-weight:700;color:var(--text-dark);margin-bottom:.5rem;}
.empty-state p{font-size:.9rem;color:var(--text-light);margin-bottom:1.5rem;}
.btn-reset-empty{background:var(--primary);color:var(--secondary);border:none;border-radius:8px;padding:10px 24px;font-size:13px;font-weight:700;cursor:pointer;font-family:'Outfit',sans-serif;transition:var(--transition);}
.btn-reset-empty:hover{background:var(--primary-dark);}

/* PAGINATION */
.cat-pag{display:flex;align-items:center;justify-content:center;gap:6px;margin-top:36px;flex-wrap:wrap;}
.pg-btn{min-width:38px;height:38px;border-radius:8px;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:600;cursor:pointer;background:var(--bg-white);color:var(--text-body);text-decoration:none;font-family:'Outfit',sans-serif;transition:var(--transition);}
.pg-btn:hover{border-color:var(--primary);color:var(--primary);}
.pg-btn.on{background:var(--primary);border-color:var(--primary);color:var(--secondary);font-weight:700;}
.pg-btn.off{opacity:.35;cursor:default;pointer-events:none;}

/* RESPONSIVE */
@media(max-width:1024px){
  .cat-body{grid-template-columns:230px 1fr;gap:20px;padding:0 20px 48px;}
  .cat-hero-inner{padding:0 20px;}
  .cat-bc{padding:12px 20px;}
  .prod-grid{grid-template-columns:repeat(2,1fr);gap:14px;}
  .cat-coupon{display:none;}
}
@media(max-width:991px){
  .cat-body{grid-template-columns:1fr;padding:0 16px 48px;}
  .cat-sidebar{position:fixed;top:0;left:0;width:290px;height:100%;overflow-y:auto;z-index:999;border-radius:0;border:none;transform:translateX(-100%);box-shadow:4px 0 24px rgba(0,0,0,.15);}
  .cat-sidebar.open{transform:translateX(0);}
  .sb-mob-head{display:flex;}
  .cat-hero{padding:36px 0 30px;}
  .cat-hero-inner{padding:0 16px;flex-direction:column;gap:0;align-items:flex-start;}
  .cat-hero-title{font-size:clamp(26px,7vw,40px);}
  .cat-hero-desc{font-size:14px;margin-bottom:20px;}
  .cat-bc{padding:12px 16px;}
  .cat-coupon{display:none;}
  .toolbox{padding:10px 12px;}
  .tb-left{width:100%;}
  .tb-right{width:100%;justify-content:space-between;}
  .prod-grid{grid-template-columns:repeat(2,1fr);gap:10px;}
  .hover-actions{display:none!important;}
  .mob-actions{display:block;}
  .prod-info{padding:10px 12px 0;}
  .prod-name{font-size:13px;}
  .cur-p{font-size:15px;}
}
@media(max-width:576px){
  .cat-hero-title{font-size:26px;}
  .prod-grid{grid-template-columns:repeat(2,1fr);gap:8px;}
  .prod-info{padding:8px 10px 0;}
  .badge{font-size:9px;padding:2px 6px;}
  .pg-btn{min-width:34px;height:34px;font-size:12px;}
}

/* ─── SEARCH HERO ──────────────────────────────── */
.search-hero { min-height: unset !important; }

.search-hero-inner {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  padding:        3rem 1.5rem 2rem;
  max-width:      700px;
  margin:         0 auto;
}

/* Titre */
.search-hero-title {
  display:       flex;
  flex-direction: column;
  gap:           .2rem;
  margin:        0 0 .5rem;
  line-height:   1.15;
}
.sh-label {
  font-family:  'Outfit', sans-serif;
  font-size:    clamp(.85rem, 2vw, 1rem);
  font-weight:  400;
  opacity:      .7;
  letter-spacing: .08em;
  text-transform: uppercase;
  color:        #fff;
}
.sh-query {
  font-family:  'Crimson Pro', serif;
  font-size:    clamp(2rem, 5vw, 3.2rem);
  font-weight:  700;
  font-style:   italic;
  color:        #06D6A0;
  line-height:  1;
}

/* Sous-titre compteur */
.search-hero-sub {
  font-size:   .9rem;
  opacity:     .65;
  color:       #fff;
  margin:      0 0 2rem;
}

/* ─── SEARCH BAR ───────────────────────────────── */
.search-bar-form  { width: 100%; max-width: 580px; }

.search-bar-wrap {
  display:       flex;
  align-items:   center;
  gap:           0;
  background:    rgba(255,255,255,.08);
  border:        1.5px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding:       6px 6px 6px 18px;
  transition:    border-color .2s, background .2s, box-shadow .2s;
  backdrop-filter: blur(10px);
}
.search-bar-wrap:focus-within {
  border-color:  #06D6A0;
  background:    rgba(255,255,255,.12);
  box-shadow:    0 0 0 3px rgba(6,214,160,.15);
}

.search-bar-icon {
  flex-shrink:  0;
  color:        rgba(255,255,255,.5);
  margin-right: 8px;
  transition:   color .2s;
}
.search-bar-wrap:focus-within .search-bar-icon { color: #06D6A0; }

.search-bar-input {
  flex:         1;
  border:       none;
  background:   transparent;
  color:        #fff;
  font-size:    1rem;
  font-family:  'Outfit', sans-serif;
  font-weight:  400;
  outline:      none;
  min-width:    0;
}
.search-bar-input::placeholder { color: rgba(255,255,255,.4); }

.search-bar-clear {
  flex-shrink:  0;
  display:      flex;
  align-items:  center;
  justify-content: center;
  width:        28px;
  height:       28px;
  border-radius: 50%;
  color:        rgba(255,255,255,.5);
  text-decoration: none;
  transition:   color .2s, background .2s;
  margin-right: 4px;
}
.search-bar-clear:hover { color: #fff; background: rgba(255,255,255,.1); }

.search-bar-btn {
  flex-shrink:   0;
  display:       flex;
  align-items:   center;
  gap:           6px;
  padding:       10px 22px;
  background:    #06D6A0;
  color:         #062030;
  border:        none;
  border-radius: 50px;
  font-family:   'Outfit', sans-serif;
  font-size:     .9rem;
  font-weight:   700;
  cursor:        pointer;
  transition:    background .2s, transform .15s;
  white-space:   nowrap;
}
.search-bar-btn:hover { background: #04bea0; transform: scale(1.03); }

/* ─── PILLS ────────────────────────────────────── */
.search-hero-pills {
  display:    flex;
  flex-wrap:  wrap;
  gap:        .6rem;
  margin-top: 1.8rem;
  justify-content: center;
}
.sh-pill {
  display:       flex;
  align-items:   center;
  gap:           5px;
  padding:       5px 14px;
  border-radius: 50px;
  background:    rgba(255,255,255,.07);
  border:        1px solid rgba(255,255,255,.12);
  color:         rgba(255,255,255,.75);
  font-size:     .78rem;
  font-family:   'Outfit', sans-serif;
  white-space:   nowrap;
  transition:    background .2s;
}
.sh-pill:hover { background: rgba(255,255,255,.12); }

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 540px) {
  .search-bar-btn span { display: none; }
  .search-bar-btn { padding: 10px 14px; }
  .sh-pill { font-size: .72rem; padding: 4px 11px; }
}
/* ============================================
   18. SEARCH PAGE — AMÉLIORATIONS UX
   Autocomplete · Quick View · Swatches
   Skeleton · Hero compact · Sidebar sticky
============================================ */

/* ─── Variables de base search ────────────────── */
/* Utilise --c-accent: #062030 comme couleur de fond hero */

/* ─── Hero compact ─────────────────────────────── */
.search-hero {
    background: linear-gradient(135deg, #073B4C 0%, #0A5568 100%);
    padding: 28px 20px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .search-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 0%, rgba(255,255,255,.04) 0%, transparent 70%);
    pointer-events: none;
  }
  
  /* Eyelet */
  .sh-eyelet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 10px;
  }
  .sh-eyelet a { color: inherit; text-decoration: none; }
  .sh-eyelet a:hover { color: rgba(255,255,255,.85); }
  .sh-eyelet svg { opacity: .6; }
  
  /* Titre */
  .sh-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 6px;
  }
  .sh-title em { font-style: italic; color: rgba(255,255,255,.75); }
  
  .sh-sub {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 18px;
  }
  
  /* Pill compteur de résultats */
  .sh-count-pill {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    padding: 3px 12px;
    margin-bottom: 18px;
  }
  
  /* ─── Searchbar redessinée ──────────────────────── */
  .sh-form { max-width: 540px; margin: 0 auto; position: relative; }
  
  .sh-form-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0,0,0,.18);
    position: relative;
  }
  .sh-icon {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    pointer-events: none;
  }
  .sh-input {
    flex: 1;
    border: none; outline: none;
    padding: 13px 14px 13px 44px;
    font-size: .93rem;
    background: transparent;
    color: #111;
    font-family: 'Outfit', sans-serif;
  }
  .sh-input::placeholder { color: #B0B7C3; }
  
  .sh-clear {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    color: #9CA3AF; text-decoration: none; border-radius: 6px;
    transition: background .15s; flex-shrink: 0;
  }
  .sh-clear:hover { background: #F3F4F6; color: #374151; }
  
  .sh-btn {
    background: var(--secondary, #062030);
    color: #fff; border: none;
    padding: 10px 18px; margin: 4px 4px 4px 0;
    border-radius: 9px;
    font-family: 'Outfit', sans-serif;
    font-size: .82rem; font-weight: 600;
    cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    transition: opacity .15s; white-space: nowrap; flex-shrink: 0;
  }
  .sh-btn:hover { opacity: .85; }
  
  /* ─── Autocomplete dropdown ─────────────────────── */
  .sh-autocomplete {
    position: absolute;
    top: calc(100% + 6px); left: 0; right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.14);
    z-index: 9999; overflow: hidden; display: none;
  }
  .sh-autocomplete.open { display: block; }
  
  .sh-ac-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; cursor: pointer;
    transition: background .1s;
    font-size: .88rem; color: #111; text-decoration: none;
  }
  .sh-ac-item:hover { background: #F9FAFB; }
  .sh-ac-item svg { color: #9CA3AF; flex-shrink: 0; }
  
  .sh-ac-img {
    width: 36px; height: 36px;
    object-fit: cover; border-radius: 6px;
    flex-shrink: 0; background: #F3F4F6;
  }
  .sh-ac-name { flex: 1; font-weight: 500; }
  .sh-ac-price { color: #6B7280; font-size: .8rem; }
  
  .sh-ac-sep {
    font-size: .72rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    color: #9CA3AF;
    padding: 8px 16px 4px;
    border-top: 1px solid #F3F4F6;
  }
  .sh-ac-see-all {
    display: block; text-align: center; padding: 10px;
    font-size: .82rem; color: var(--secondary, #062030);
    font-weight: 600; border-top: 1px solid #F3F4F6;
    text-decoration: none; transition: background .1s;
  }
  .sh-ac-see-all:hover { background: #F9FAFB; }
  
  /* ─── Sidebar sticky (override) ────────────────── */
  .cat-sidebar {
    position: sticky;
    top: 72px; /* Ajuster selon hauteur du header */
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .cat-sidebar::-webkit-scrollbar { width: 3px; }
  .cat-sidebar::-webkit-scrollbar-thumb { background: #E5E7EB; border-radius: 2px; }
  
  /* ─── Zone principale search ────────────────────── */
  main.search-main {
    flex: 1; min-width: 0;
    padding: 20px 24px 0;
  }
  
  /* ─── Toolbox — état has-filter ─────────────────── */
  .filter-btn.has-filter {
    border-color: var(--secondary, #062030);
    color: var(--secondary, #062030);
  }
  
  /* ─── Tags filtres actifs ───────────────────────── */
  .filter-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px 4px 12px;
    background: #F0F4F8;
    border: 1px solid #D1DBE8;
    border-radius: 20px;
    font-size: .78rem; font-weight: 500;
    color: var(--secondary, #062030);
  }
  .filter-tag button {
    background: none; border: none; cursor: pointer;
    color: #9CA3AF; padding: 0; line-height: 1; font-size: .85rem;
    transition: color .1s;
  }
  .filter-tag button:hover { color: #374151; }
  
  /* ─── Skeleton loading ──────────────────────────── */
  @keyframes shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
  }
  .skeleton-card {
    border-radius: 14px; overflow: hidden; border: 1px solid #F3F4F6;
  }
  .skeleton-img {
    width: 100%; aspect-ratio: 4/5;
    background: linear-gradient(90deg, #F3F4F6 25%, #E9ECEF 50%, #F3F4F6 75%);
    background-size: 600px 100%;
    animation: shimmer 1.4s infinite linear;
  }
  .skeleton-line {
    height: 12px; border-radius: 6px; margin: 10px 12px 6px;
    background: linear-gradient(90deg, #F3F4F6 25%, #E9ECEF 50%, #F3F4F6 75%);
    background-size: 600px 100%;
    animation: shimmer 1.4s infinite linear;
  }
  .skeleton-line.short { width: 55%; margin-right: auto; }
  .skeleton-line.price { width: 35%; margin-top: 8px; margin-bottom: 14px; }
  
  /* ─── Carte produit — améliorations ────────────── */
  .prod-card { transition: box-shadow .2s, transform .2s; }
  .prod-card:hover { transform: translateY(-2px); }
  .prod-img img { transition: transform .4s cubic-bezier(.25,.46,.45,.94); }
  .prod-card:hover .prod-img img { transform: scale(1.05); }
  
  /* État "adding" sur le bouton cart */
  .btn-cart.adding { background: #059669; pointer-events: none; }
  
  /* Prix en solde */
  .cur-p.sale { color: var(--error, #EF4444); }
  
  /* ─── Bouton Quick View ─────────────────────────── */
  .btn-quickview {
    position: absolute; bottom: 10px; left: 10px; right: 10px;
    background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
    border: none; border-radius: 8px; padding: 8px 12px;
    font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 600;
    color: var(--secondary, #062030);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    opacity: 0; transform: translateY(6px);
    transition: all .2s; z-index: 2;
  }
  .prod-card:hover .btn-quickview { opacity: 1; transform: translateY(0); }
  
  /* ─── Swatches sur la carte ─────────────────────── */
  .card-swatches {
    position: absolute; bottom: 46px; left: 10px;
    display: flex; gap: 4px;
    opacity: 0; transform: translateY(4px);
    transition: all .2s .05s; z-index: 2;
  }
  .prod-card:hover .card-swatches { opacity: 1; transform: translateY(0); }
  
  .card-swatch {
    width: 14px; height: 14px; border-radius: 50%;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,.8);
    transition: transform .15s;
  }
  .card-swatch:hover { transform: scale(1.2); }
  .card-swatch.active { border-color: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.3); }
  
  /* ─── Vue liste ─────────────────────────────────── */
  .prod-grid.list-view { grid-template-columns: 1fr; }
  .prod-grid.list-view .prod-card { flex-direction: row; height: 140px; overflow: hidden; }
  .prod-grid.list-view .prod-img  { width: 140px; height: 140px; aspect-ratio: auto; flex-shrink: 0; border-radius: 14px 0 0 14px; }
  .prod-grid.list-view .btn-quickview { display: none; }
  .prod-grid.list-view .card-swatches { display: none; }
  
  /* ─── Suggestions état vide ─────────────────────── */
  .empty-suggestions {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px; margin-bottom: 24px;
  }
  .empty-sug-btn {
    padding: 7px 16px;
    border: 1.5px solid #E5E7EB; border-radius: 20px;
    font-family: 'Outfit', sans-serif; font-size: .82rem;
    color: #374151; text-decoration: none;
    transition: all .15s; background: #fff;
  }
  .empty-sug-btn:hover {
    border-color: var(--secondary, #062030);
    color: var(--secondary, #062030);
    background: #F0F4F8;
  }
  
  /* ─── QUICK VIEW MODAL ──────────────────────────── */
  .qv-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 10000;
    display: none; align-items: flex-end; justify-content: center;
    backdrop-filter: blur(3px);
  }
  .qv-overlay.open { display: flex; }
  @media (min-width: 640px) { .qv-overlay { align-items: center; } }
  
  .qv-modal {
    background: #fff;
    border-radius: 20px 20px 0 0;
    width: 100%; max-width: 860px; max-height: 90vh;
    overflow-y: auto;
    display: flex; flex-direction: column;
    animation: qvSlideUp .28s cubic-bezier(.32,.72,0,1);
  }
  @media (min-width: 640px) {
    .qv-modal { border-radius: 20px; flex-direction: row; max-height: 560px; }
  }
  @keyframes qvSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }
  
  .qv-img-side {
    flex-shrink: 0; width: 100%; aspect-ratio: 4/3;
    background: #F9FAFB; overflow: hidden;
    border-radius: 20px 20px 0 0;
  }
  @media (min-width: 640px) {
    .qv-img-side { width: 320px; aspect-ratio: auto; border-radius: 20px 0 0 20px; }
  }
  .qv-img-side img { width: 100%; height: 100%; object-fit: cover; }
  
  .qv-body {
    flex: 1; padding: 24px;
    display: flex; flex-direction: column; overflow-y: auto;
  }
  
  .qv-close {
    position: absolute; top: 14px; right: 14px;
    width: 34px; height: 34px;
    background: #F3F4F6; border: none; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: #374151; font-size: 1.1rem; transition: background .15s; z-index: 10001;
  }
  .qv-close:hover { background: #E5E7EB; }
  
  .qv-cat-label {
    font-size: .7rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: #9CA3AF; margin-bottom: 6px;
  }
  .qv-title {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem; font-weight: 600; color: #111;
    margin-bottom: 12px; line-height: 1.2;
  }
  .qv-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
  .qv-price     { font-size: 1.3rem; font-weight: 700; color: #111; }
  .qv-old-price { font-size: .9rem; color: #9CA3AF; text-decoration: line-through; }
  .qv-badge     { font-size: .72rem; font-weight: 700; padding: 2px 8px; background: #FECACA; color: #991B1B; border-radius: 5px; }
  
  .qv-section-title {
    font-size: .72rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    color: #9CA3AF; margin-bottom: 8px;
  }
  
  .qv-swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
  .qv-swatch {
    width: 28px; height: 28px; border-radius: 50%;
    cursor: pointer; border: 2px solid transparent; transition: all .15s;
  }
  .qv-swatch:hover,
  .qv-swatch.active { border-color: #fff; box-shadow: 0 0 0 2px var(--secondary, #062030); }
  
  .qv-sizes { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
  .qv-size {
    padding: 6px 14px; border: 1.5px solid #E5E7EB; border-radius: 7px;
    font-family: 'Outfit', sans-serif; font-size: .8rem; font-weight: 500;
    cursor: pointer; transition: all .15s; background: #fff; color: #374151;
  }
  .qv-size:hover { border-color: var(--secondary, #062030); }
  .qv-size.active {
    background: var(--secondary, #062030);
    border-color: var(--secondary, #062030);
    color: #fff;
  }
  
  .qv-actions { display: flex; gap: 8px; margin-top: auto; }
  
  .qv-cart-btn {
    flex: 1; padding: 12px 20px;
    background: var(--secondary, #062030); color: #fff;
    border: none; border-radius: 10px;
    font-family: 'Outfit', sans-serif; font-size: .88rem; font-weight: 600;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    gap: 8px; transition: opacity .15s;
  }
  .qv-cart-btn:hover { opacity: .85; }
  
  .qv-link {
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB; border-radius: 10px;
    font-family: 'Outfit', sans-serif; font-size: .82rem; font-weight: 500;
    color: #374151; text-decoration: none;
    display: flex; align-items: center; justify-content: center;
    gap: 6px; transition: border-color .15s; white-space: nowrap;
  }
  .qv-link:hover {
    border-color: var(--secondary, #062030);
    color: var(--secondary, #062030);
  }
  
  /* ─── Responsive search ─────────────────────────── */
  @media (max-width: 991px) {
    .cat-sidebar {
      position: fixed; top: 0; left: 0; height: 100vh; width: 280px;
      background: #fff; z-index: 900;
      transform: translateX(-100%);
      transition: transform .28s cubic-bezier(.32,.72,0,1);
      max-height: 100vh;
      box-shadow: 4px 0 24px rgba(0,0,0,.1);
      border-right: 1px solid #F3F4F6;
      padding-top: 16px;
    }
    .cat-sidebar.open { transform: translateX(0); }
    .sb-mob-head { display: flex; }
    main.search-main { padding: 16px; }
  }
  @media (max-width: 600px) {
    .sort-wrap label { display: none; }
  }

/* ============================================
   19. FRONTPAGE
   Hero carousel · Trust bar · Product grid
   Categories · Trending Look · Features
   Blog · Brand bar · Product widgets
============================================ */

/* ═══════════════════════════════════════════════════
   SHENVO FRONTPAGE — Design System
   ═══════════════════════════════════════════════════ */
/* ── Section helpers ───────────────────────────────── */
.fp-section--dark { background: var(--secondary); }
.fp-section--cream { background: var(--bg-light); }
.fp-section--gray  { background: var(--bg-page); }
.fp-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.fp-eyelet {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.fp-eyelet::before { content: ''; width: 24px; height: 2px; background: var(--primary); border-radius: 1px; }

.fp-section-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--secondary);
  line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 8px;
}
.fp-section-title em { font-style: italic; color: var(--primary); }
.fp-section-title--white { color: #fff; }

.fp-section-sub {
  font-size: 16px; color: var(--text-light);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 48px;
}

/* ── Buttons ───────────────────────────────────────── */
.fp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 50px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .25s var(--transition);
}
.fp-btn--primary {
  background: var(--primary); color: var(--secondary);
  box-shadow: 0 4px 20px rgba(6,214,160,.35);
}
.fp-btn--primary:hover {
  background: var(--primary-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6,214,160,.45);
}
.fp-btn--outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.fp-btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.fp-btn--dark { background: var(--secondary); color: #fff; }
.fp-btn--dark:hover { background: var(--secondary); transform: translateY(-2px); }
.fp-btn svg { transition: transform .2s; }
.fp-btn:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════
   1. HERO — Full viewport, dark premium
   ═══════════════════════════════════════════════════ */
.fp-hero {
  min-height: 100vh;
  background: var(--secondary);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding-top: 0px;
  padding-bottom: 0px;
}
.fp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at -10% 60%, rgba(6,214,160,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 110% 10%, rgba(255,209,102,.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(6,214,160,.07) 0%, transparent 55%);
  pointer-events: none;
}
/* Dot grid */
.fp-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.fp-hero-body {
  flex: 1; display: flex; align-items: center;
  position: relative; z-index: 2;
  padding: 0px 0 0px;
}

.fp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 48px; align-items: center;
}

/* Left — copy */
.fp-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,214,160,.15); border: 1px solid rgba(6,214,160,.35);
  color: var(--primary); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
}

.fp-hero-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700; color: #fff;
  line-height: 1.0; letter-spacing: -.035em;
  margin-bottom: 20px;
}
.fp-hero-title em {
  font-style: italic; color: var(--primary);
  display: block;
}
.fp-hero-title span {
  display: block;
  font-size: .55em; font-style: normal;
  font-weight: 300; opacity: .65;
  letter-spacing: .02em; line-height: 1.4;
}

.fp-hero-desc {
  font-size: 16px; color: rgba(255,255,255,.55);
  max-width: 420px; line-height: 1.75; margin-bottom: 40px;
}

.fp-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* Hero stats */
.fp-hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.fp-stat { padding-right: 40px; }
.fp-stat + .fp-stat { padding-left: 40px; border-left: 1px solid rgba(255,255,255,.08); }
.fp-stat-val {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 36px; font-weight: 700; color: #fff;
  line-height: 1; margin-bottom: 4px;
}
.fp-stat-val em { color: var(--primary); font-style: normal; }
.fp-stat-lbl { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

/* Right — product slider cards */
.fp-hero-visual { position: relative; height: 520px; }
.fp-hero-main-card {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 300px; height: 400px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.1);
}
.fp-hero-main-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Floating mini-cards */
.fp-hero-mini {
  position: absolute;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  animation: fpFloat 6s ease-in-out infinite;
  min-width: 200px;
}
.fp-hero-mini--1 { top: 60px;  right: -20px; animation-delay: 0s; }
.fp-hero-mini--2 { bottom: 80px; left: -30px; animation-delay: 2s; }
.fp-hero-mini-img {
  width: 48px; height: 48px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.1);
}
.fp-hero-mini-name { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.fp-hero-mini-price { font-size: 14px; font-weight: 800; color: var(--primary); }

/* Badge sur la main card */
.fp-hero-badge {
  position: absolute; top: -12px; right: -12px;
  background: var(--accent); color: var(--secondary);
  font-size: 10px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  box-shadow: 0 4px 16px rgba(255,209,102,.4);
}

/* Trust pill flottant */
.fp-hero-trust {
  position: absolute; bottom: 20px; right: 0;
  background: var(--primary); color: var(--secondary);
  font-size: 11px; font-weight: 700;
  padding: 10px 18px; border-radius: 50px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 20px rgba(6,214,160,.4);
  animation: fpFloat 5s ease-in-out infinite 1s;
}

@keyframes fpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Ticker */
.fp-hero-ticker {
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.2);
  padding: 12px 0; overflow: hidden;
  position: relative; z-index: 2;
}
.fp-ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: fpTicker 28s linear infinite;
}
.fp-ticker-track:hover { animation-play-state: paused; }
.fp-ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 36px; font-size: 12px;
  color: rgba(255,255,255,.45); font-weight: 500;
}
.fp-ticker-item strong { color: rgba(255,255,255,.8); font-weight: 700; }
.fp-ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
@keyframes fpTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════
   2. INFO BOXES — trust bar
   ═══════════════════════════════════════════════════ */
.fp-trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.fp-trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  divide: true; gap: 0;
}
.fp-trust-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 32px;
  border-right: 1px solid var(--border);
}
.fp-trust-item:last-child { border-right: none; }
.fp-trust-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(6,214,160,.12), rgba(6,214,160,.04));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0; font-size: 20px;
}
.fp-trust-title { font-size: 14px; font-weight: 700; color: var(--secondary); margin-bottom: 2px; }
.fp-trust-sub   { font-size: 12px; color: var(--text-light); }

/* ═══════════════════════════════════════════════════
   3. TOP PRODUCTS SECTION
   ═══════════════════════════════════════════════════ */
.fp-products-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
  margin-bottom: 40px;
}

/* Product grid */
.fp-prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Product card */
.fp-prod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: box-shadow .25s var(--transition), transform .25s var(--transition), border-color .25s;
  display: flex; flex-direction: column;
  position: relative;
}
.fp-prod-card:hover {
  box-shadow: 0 12px 40px rgba(6,32,48,.1);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.fp-prod-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; background: var(--bg-gray);
  flex-shrink: 0;
}
.fp-prod-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s var(--transition);
}
.fp-prod-card:hover .fp-prod-img img { transform: scale(1.06); }
.fp-prod-img img:nth-child(2) {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .3s;
}
.fp-prod-card:hover .fp-prod-img img:nth-child(2) { opacity: 1; }

/* Badges */
.fp-prod-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px; z-index: 2;
}
.fp-badge {
  display: inline-block; font-size: 9px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 5px;
}
.fp-badge--hot  { background: var(--secondary); color: #fff; }
.fp-badge--sale { background: var(--error); color: #fff; }
.fp-badge--new  { background: var(--primary); color: var(--secondary); }

/* Wishlist */
.fp-prod-wish {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0,0,0,.06);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-light);
  transition: all .2s; z-index: 2; text-decoration: none;
  font-size: 14px;
}
.fp-prod-wish:hover { color: var(--error); border-color: var(--error); transform: scale(1.1); }

/* Cart overlay */
.fp-prod-actions {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  display: flex; gap: 6px;
  opacity: 0; transform: translateY(8px);
  transition: all .22s var(--transition); z-index: 3;
}
.fp-prod-card:hover .fp-prod-actions { opacity: 1; transform: translateY(0); }
.fp-prod-cart {
  flex: 1; background: var(--secondary); color: #fff;
  border: none; border-radius: 8px; padding: 9px 12px;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 5px;
  transition: background .15s;
}
.fp-prod-cart:hover { background: var(--primary); color: var(--secondary); }
.fp-prod-qv {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.95); color: var(--text-body);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 12px;
  transition: all .15s; flex-shrink: 0;
}
.fp-prod-qv:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }

/* Mobile cart */
.fp-prod-cart-mob {
  display: none; width: 100%;
  background: var(--secondary); color: #fff;
  border: none; padding: 10px;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; align-items: center; justify-content: center; gap: 6px;
  margin-top: auto;
}

/* Info */
.fp-prod-info { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.fp-prod-cat  {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary);
  text-decoration: none; margin-bottom: 5px; display: block;
}
.fp-prod-name {
  font-size: 13px; font-weight: 600; color: var(--secondary);
  margin-bottom: 10px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.fp-prod-name a { color: inherit; text-decoration: none; }
.fp-prod-name a:hover { color: var(--primary); }

.fp-prod-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.fp-prod-star  { color: var(--accent); font-size: 11px; }

.fp-prod-price { display: flex; align-items: baseline; gap: 6px; margin-top: auto; }
.fp-prod-old   { font-size: 11px; color: var(--text-light); text-decoration: line-through; }
.fp-prod-cur   { font-family: 'Crimson Pro', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--secondary); }
.fp-prod-cur.sale { color: var(--error); }

/* ═══════════════════════════════════════════════════
   4. BANNER SALE — bold strip
   ═══════════════════════════════════════════════════ */
.fp-sale-banner {
  background: linear-gradient(135deg, #1a6e9c 0%, #2A95CB 50%, #1f7eb5 100%);
  position: relative; overflow: hidden;
  padding: 0;
}
.fp-sale-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.08) 0%, transparent 55%);
  pointer-events: none;
}
.fp-sale-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
  padding: 36px 32px; position: relative; z-index: 1;
}
.fp-sale-left {}
.fp-sale-eyelet {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 8px;
}
.fp-sale-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -.02em;
}
.fp-sale-title em { font-style: italic; color: var(--accent); }
.fp-sale-sub { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 8px; }
.fp-sale-sub small { opacity: .6; font-size: .85em; margin-left: 8px; }

/* ═══════════════════════════════════════════════════
   5. CATEGORIES GRID
   ═══════════════════════════════════════════════════ */
.fp-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fp-cat-card {
  position: relative; overflow: hidden;
  border-radius: 16px; aspect-ratio: 3/4;
  display: block; text-decoration: none;
  group: true;
}
.fp-cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,32,48,.85) 0%, rgba(6,32,48,.2) 50%, transparent 100%);
  transition: opacity .3s;
}
.fp-cat-card:hover::after { opacity: .8; }
.fp-cat-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--transition);
}
.fp-cat-card:hover img { transform: scale(1.06); }

.fp-cat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px; z-index: 2;
  transform: translateY(6px);
  transition: transform .3s var(--transition);
}
.fp-cat-card:hover .fp-cat-info { transform: translateY(0); }
.fp-cat-count { font-size: 11px; color: var(--primary); font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .08em; }
.fp-cat-name  { font-family: 'Crimson Pro', Georgia, serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.fp-cat-link  {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--primary);
  opacity: 0; transform: translateX(-6px);
  transition: all .25s var(--transition) .05s;
}
.fp-cat-card:hover .fp-cat-link { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════════
   6. TRENDING LOOK — editorial layout
   ═══════════════════════════════════════════════════ */
.fp-look {
  background: var(--bg-light);
  position: relative; overflow: hidden;
}
.fp-look-grid {
  display: grid;
  grid-template-columns: 1fr 360px 280px;
  gap: 48px; align-items: center;
}
.fp-look-products { display: flex; flex-direction: column; gap: 16px; }

.fp-look-item {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  transition: all .2s;
}
.fp-look-item:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(6,214,160,.1); }
.fp-look-item-img {
  width: 60px; height: 60px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--border);
}
.fp-look-item-info { flex: 1; min-width: 0; }
.fp-look-item-name {
  font-size: 13px; font-weight: 600; color: var(--secondary);
  text-decoration: none; display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 4px;
}
.fp-look-item-name:hover { color: var(--primary); }
.fp-look-item-price { font-size: 14px; font-weight: 800; color: var(--secondary); }
.fp-look-item-price .old { font-size: 11px; color: var(--text-light); text-decoration: line-through; margin-right: 4px; font-weight: 500; }
.fp-look-item-cart {
  background: var(--secondary); color: #fff; border: none;
  border-radius: 8px; padding: 8px 14px;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; flex-shrink: 0; transition: background .15s;
}
.fp-look-item-cart:hover { background: var(--primary); color: var(--secondary); }

.fp-look-visual {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px rgba(6,32,48,.18);
}
.fp-look-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-look-total {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-radius: 12px; padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.fp-look-total-label { font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.fp-look-total-price { font-family: 'Crimson Pro', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--secondary); }

.fp-look-shopbtns { display: flex; flex-direction: column; gap: 12px; }
.fp-look-shopbtn {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; border-radius: 14px;
  text-decoration: none; transition: all .2s;
  border: 2px solid var(--border); background: #fff; color: var(--secondary);
}
.fp-look-shopbtn:hover { border-color: var(--primary); background: rgba(6,214,160,.04); }
.fp-look-shopbtn-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--secondary); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 16px; flex-shrink: 0;
}
.fp-look-shopbtn-label { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.fp-look-shopbtn-name  { font-size: 16px; font-weight: 700; color: var(--secondary); }
.fp-look-shopbtn-arr   { margin-left: auto; color: var(--text-light); font-size: 18px; transition: transform .2s; }
.fp-look-shopbtn:hover .fp-look-shopbtn-arr { transform: translateX(4px); color: var(--primary); }

/* ═══════════════════════════════════════════════════
   7. FEATURE BOXES
   ═══════════════════════════════════════════════════ */
.fp-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fp-feature {
  text-align: center; padding: 40px 32px;
  border-radius: 20px; background: #fff;
  border: 1px solid var(--border);
  transition: all .25s;
}
.fp-feature:hover { box-shadow: 0 8px 32px rgba(6,32,48,.08); border-color: var(--primary); transform: translateY(-4px); }
.fp-feature-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(6,214,160,.15), rgba(6,214,160,.05));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 24px; color: var(--primary);
  transition: all .25s;
}
.fp-feature:hover .fp-feature-icon { background: var(--primary); color: var(--secondary); transform: scale(1.08); }
.fp-feature h3 { font-family: 'Crimson Pro', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--secondary); margin-bottom: 6px; }
.fp-feature h5 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.fp-feature p  { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   8. NEW ARRIVALS — horizontal scroll on mobile
   ═══════════════════════════════════════════════════ */
.fp-new-scroll {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px; overflow: visible;
}

/* ═══════════════════════════════════════════════════
   9. BLOG SECTION
   ═══════════════════════════════════════════════════ */
.fp-blog-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fp-post {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: all .25s;
  display: flex; flex-direction: column;
}
.fp-post:hover { box-shadow: 0 8px 28px rgba(6,32,48,.08); border-color: var(--primary); transform: translateY(-3px); }
.fp-post-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.fp-post-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--transition); }
.fp-post:hover .fp-post-img img { transform: scale(1.04); }
.fp-post-date {
  position: absolute; top: 14px; left: 14px;
  background: #fff; border-radius: 10px;
  padding: 6px 12px; text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.fp-post-day   { font-family: 'Crimson Pro', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--secondary); line-height: 1; }
.fp-post-month { font-size: 10px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; }
.fp-post-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.fp-post-title { font-size: 15px; font-weight: 700; color: var(--secondary); line-height: 1.35; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fp-post-title a { color: inherit; text-decoration: none; }
.fp-post-title a:hover { color: var(--primary); }
.fp-post-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.fp-post-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.fp-post-comments { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.fp-post-read { font-size: 12px; font-weight: 700; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.fp-post-read:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   10. WIDGET PRODUCTS — small sidebar-style grid
   ═══════════════════════════════════════════════════ */
.fp-widgets-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.fp-widget-title {
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--secondary);
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.fp-widget-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.fp-widget-item {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-gray);
}
.fp-widget-item:last-child { border-bottom: none; }
.fp-widget-img {
  width: 64px; height: 64px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--border);
  display: block;
}
.fp-widget-info {}
.fp-widget-name {
  font-size: 13px; font-weight: 600; color: var(--secondary);
  line-height: 1.35; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.fp-widget-name a { color: inherit; text-decoration: none; }
.fp-widget-name a:hover { color: var(--primary); }
.fp-widget-stars { display: flex; gap: 2px; margin-bottom: 4px; }
.fp-widget-star  { color: var(--accent); font-size: 10px; }
.fp-widget-price { font-size: 14px; font-weight: 800; color: var(--secondary); }
.fp-widget-old   { font-size: 11px; color: var(--text-light); text-decoration: line-through; margin-right: 4px; }

/* ═══════════════════════════════════════════════════
   11. BRAND BAR
   ═══════════════════════════════════════════════════ */
.fp-brand-bar {
  background: #fff;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fp-brand-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.fp-brand-inner img { height: 40px; width: auto; opacity: .4; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.fp-brand-inner img:hover { opacity: .8; filter: grayscale(0); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .fp-prod-grid, .fp-new-scroll { grid-template-columns: repeat(4, 1fr); }
  .fp-hero-grid { grid-template-columns: 1fr 400px; }
  .fp-look-grid { grid-template-columns: 1fr 300px 240px; }
}
@media (max-width: 1024px) {
  .fp-prod-grid, .fp-new-scroll { grid-template-columns: repeat(3, 1fr); }
  .fp-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-widgets-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-look-grid { grid-template-columns: 1fr 280px; }
  .fp-look-shopbtns { display: none; }
  .fp-hero-visual { display: none; }
  .fp-hero-grid { grid-template-columns: 1fr; }
  .fp-hero-desc { max-width: 580px; }
}
@media (max-width: 768px) {
  .fp-section { padding: 56px 0; }
  .fp-container { padding: 0 16px; }
  .fp-trust-grid { grid-template-columns: 1fr; }
  .fp-trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .fp-trust-item:last-child { border-bottom: none; }
  .fp-prod-grid, .fp-new-scroll { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fp-prod-actions { display: none; }
  .fp-prod-cart-mob { display: flex; }
  .fp-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-look-grid { grid-template-columns: 1fr; }
  .fp-look-visual { display: none; }
  .fp-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .fp-blog-grid { grid-template-columns: 1fr; }
  .fp-widgets-grid { grid-template-columns: 1fr; }
  .fp-hero-stats { gap: 0; }
  .fp-stat { padding: 16px 20px; }
  .fp-stat + .fp-stat { padding-left: 20px; }
}
@media (max-width: 480px) {
  .fp-hero-title { font-size: 38px; }
  .fp-hero-actions { flex-direction: column; align-items: flex-start; }
  .fp-prod-grid, .fp-new-scroll { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .fp-cats-grid { grid-template-columns: 1fr; }
  .fp-sale-inner { flex-direction: column; }
}

/* ─── Carousel hero compact ──────────────────────── */
/* ── Carousel hero compact ─────────────────────── */
.fp-slider-wrap {
  position: relative;
  overflow: hidden;
  background: var(--secondary, var(--secondary));
}

/* Force une hauteur compacte */
.fp-slider-wrap .home-slider { margin-bottom: 0 !important; }

.fp-slider-wrap .home-slide {
  max-height: 380px !important;
  min-height: 260px !important;
  height: 32vw !important;
  position: relative;
  overflow: hidden;
  display: flex !important;
  align-items: center;
}

.fp-slider-wrap .slide-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

/* Overlay sombre pour lisibilité */
.fp-slider-wrap .home-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(6,32,48,.72) 0%,
    rgba(6,32,48,.35) 55%,
    transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.fp-slider-wrap .home-slide .container {
  position: relative;
  z-index: 2;
}

/* Banner layer — texte */
.fp-slider-wrap .banner-layer {
  color: #fff !important;
  max-width: 520px;
}
.fp-slider-wrap .banner-layer h4 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(.75rem, 1.5vw, .9rem);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary, var(--primary)) !important;
  margin-bottom: 8px !important;
}
.fp-slider-wrap .banner-layer h2 {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1.6rem, 3.8vw, 3rem) !important;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff !important;
  margin-bottom: 12px !important;
}
.fp-slider-wrap .banner-layer h3 {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1rem, 2vw, 1.5rem) !important;
  font-style: italic;
  color: var(--accent, #FFD166) !important;
  margin-bottom: 10px !important;
}
.fp-slider-wrap .banner-layer h5 {
  margin-bottom: 16px !important;
  font-size: clamp(.8rem, 1.5vw, 1rem);
}
.fp-slider-wrap .banner-layer .btn-dark {
  background: var(--primary, var(--primary)) !important;
  border-color: var(--primary, var(--primary)) !important;
  color: var(--secondary, var(--secondary)) !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: .85rem;
  transition: all .25s;
}
.fp-slider-wrap .banner-layer .btn-dark:hover {
  background: var(--primary-dark, var(--primary-dark)) !important;
  border-color: var(--primary-dark, var(--primary-dark)) !important;
  transform: translateY(-2px);
}

/* Slide 2 — centré */
.fp-slider-wrap .home-slide2 .banner-layer {
  text-align: center;
}
.fp-slider-wrap .home-slide2 .heading-border {
  border-color: rgba(255,255,255,.3) !important;
}
.fp-slider-wrap .home-slide2 .btn-block {
  max-width: 200px; margin: 0 auto;
}

/* Owl nav arrows — repositionnées */
.fp-slider-wrap .owl-nav {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
  z-index: 5;
}
.fp-slider-wrap .owl-nav button {
  pointer-events: all;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.12) !important;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 18px !important;
  display: flex !important; align-items: center; justify-content: center;
  transition: background .2s;
}
.fp-slider-wrap .owl-nav button:hover {
  background: var(--primary, var(--primary)) !important;
  border-color: var(--primary, var(--primary)) !important;
  color: var(--secondary, var(--secondary)) !important;
}

/* Owl dots */
.fp-slider-wrap .owl-dots {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  text-align: center;
  z-index: 5;
}
.fp-slider-wrap .owl-dots .owl-dot span {
  background: rgba(255,255,255,.4) !important;
  width: 6px !important; height: 6px !important;
  border-radius: 50% !important;
  transition: all .2s !important;
}
.fp-slider-wrap .owl-dots .owl-dot.active span {
  background: var(--primary, var(--primary)) !important;
  width: 20px !important;
  border-radius: 3px !important;
}

/* Responsive */
@media (max-width: 768px) {
  .fp-slider-wrap .home-slide {
    max-height: 260px !important;
    height: 48vw !important;
  }
  .fp-slider-wrap .banner-layer h2 { font-size: 1.5rem !important; }
  .fp-slider-wrap .banner-layer h4 { display: none; }
  .fp-slider-wrap .owl-nav { display: none !important; }
}
@media (max-width: 480px) {
  .fp-slider-wrap .home-slide {
    max-height: 200px !important;
    height: 55vw !important;
    min-height: 160px !important;
  }
  .fp-slider-wrap .banner-layer h2 { font-size: 1.2rem !important; }
  .fp-slider-wrap .banner-layer h3 { display: none; }
  .fp-slider-wrap .banner-layer .btn-dark { padding: 8px 16px; font-size: .78rem; }
}

/* ============================================
   19. FRONTPAGE
   Hero carousel · Trust bar · Product grid
   Categories · Trending Look · Features
   Blog · Brand bar · Product widgets
============================================ */

/* ═══════════════════════════════════════════════════
   SHENVO FRONTPAGE — Design System
   ═══════════════════════════════════════════════════ */
/* ── Section helpers ───────────────────────────────── */

.fp-slider-wrap .banner-layer h2 { font-size: 1.1rem; }
.banner-cta { font-size: .7rem !important; padding: 8px 14px !important; }
}


/* ============================================
 HERO PREMIUM — fond carousel + contenu fixe
 Design : screenshot avec cartes flottantes
============================================ */

/* ── Section principale ── */
.fp-hero {
position: relative;
overflow: hidden;
min-height: 520px;
max-height: 580px;
display: flex;
flex-direction: column;
background: var(--secondary);
}

/* ── Carousel fond (Owl) ── */
.fp-hero-bg-carousel {
position: absolute !important;
inset: 0 !important;
z-index: 0 !important;
width: 100% !important;
height: 100% !important;
pointer-events: none;
}
.fp-hero-bg-carousel .owl-stage-outer,
.fp-hero-bg-carousel .owl-stage,
.fp-hero-bg-carousel .owl-item { height: 100% !important; }

.fp-hero-bg-slide {
width: 100%; height: 100%;
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
position: relative;
}
/* Overlay directionnel sombre */
.fp-hero-bg-slide::after {
content: '';
position: absolute; inset: 0;
background: linear-gradient(
  110deg,
  rgba(6,32,48,.92) 0%,
  rgba(6,32,48,.75) 40%,
  rgba(6,32,48,.40) 70%,
  rgba(6,32,48,.15) 100%
);
}

/* ── Contenu foreground ── */
.fp-hero-body {
flex: 1;
position: relative;
z-index: 2;
display: flex;
align-items: center;
}
.fp-hero-inner {
max-width: 1280px;
margin: 0 auto;
padding: 40px 48px 36px;
width: 100%;
}

/* Grid 2 colonnes */
.fp-hero-grid {
display: grid;
grid-template-columns: 1fr 520px;
gap: 40px;
align-items: center;
}

/* ── Copie gauche ── */
.fp-hero-copy { display: flex; flex-direction: column; }

/* Tag badge */
.fp-hero-tag {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(6,214,160,.15);
border: 1px solid rgba(6,214,160,.4);
color: var(--primary);
font-family: 'Outfit', sans-serif;
font-size: 11px;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
padding: 7px 18px;
border-radius: 50px;
margin-bottom: 28px;
align-self: flex-start;
}

/* Titre h1 */
.fp-hero-title {
font-family: 'Crimson Pro', Georgia, serif;
font-size: clamp(40px, 5vw, 68px);
font-weight: 700;
color: #fff;
line-height: 1.08;
letter-spacing: -.03em;
margin-bottom: 20px;
}
.fp-hero-title em {
font-style: italic;
color: var(--primary);
display: block;
}

/* Description */
.fp-hero-desc {
font-family: 'Outfit', sans-serif;
font-size: 15px;
font-weight: 300;
color: rgba(255,255,255,.58);
max-width: 420px;
line-height: 1.75;
margin-bottom: 36px;
}

/* Boutons */
.fp-hero-actions {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 52px;
}

/* Bouton primaire vert */
.fp-hero-btn-primary {
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--primary);
color: var(--secondary);
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-weight: 700;
letter-spacing: .03em;
padding: 14px 28px;
border-radius: 50px;
text-decoration: none;
box-shadow: 0 6px 24px rgba(6,214,160,.40);
transition: background .2s, transform .2s, box-shadow .2s;
}
.fp-hero-btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 10px 32px rgba(6,214,160,.50);
color: var(--secondary);
}
.fp-hero-btn-primary svg { transition: transform .2s; }
.fp-hero-btn-primary:hover svg { transform: translateX(4px); }

/* Bouton ghost blanc */
.fp-hero-btn-ghost {
display: inline-flex;
align-items: center;
gap: 6px;
color: rgba(255,255,255,.65);
font-family: 'Outfit', sans-serif;
font-size: 13px;
font-weight: 500;
text-decoration: none;
padding: 4px 0;
border-bottom: 1px solid rgba(255,255,255,.2);
transition: color .2s, border-color .2s;
}
.fp-hero-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* Stats row */
.fp-hero-stats {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0;
padding-top: 32px;
border-top: 1px solid rgba(255,255,255,.1);
}
.fp-hero-stat {
display: flex;
flex-direction: column;
gap: 4px;
padding: 0 24px;
}
.fp-hero-stat:first-child { padding-left: 0; }
.fp-hero-stat-sep {
width: 1px;
height: 36px;
background: rgba(255,255,255,.12);
}
.fp-hs-val {
font-family: 'Outfit', sans-serif;
font-size: 24px;
font-weight: 700;
color: #fff;
line-height: 1;
letter-spacing: -.02em;
}
.fp-hs-star { font-style: normal; color: var(--accent); font-size: .85em; }
.fp-hs-lbl {
font-family: 'Outfit', sans-serif;
font-size: 11px;
color: rgba(255,255,255,.4);
font-weight: 500;
text-transform: uppercase;
letter-spacing: .07em;
}

/* ── Cartes produits flottantes ── */
.fp-hero-cards {
position: relative;
height: 360px;
}

/* Card de base */
.fp-hcard {
position: absolute;
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
background: rgba(255,255,255,.09);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255,255,255,.16);
border-radius: 14px;
text-decoration: none;
box-shadow: 0 8px 32px rgba(0,0,0,.22);
animation: fpFloat 6s ease-in-out infinite;
transition: transform .25s, box-shadow .25s;
}
.fp-hcard:hover {
transform: translateY(-6px) scale(1.02) !important;
box-shadow: 0 18px 48px rgba(0,0,0,.32);
}

/* Positions + décalages */
.fp-hcard--1 { top: 0;    left: 0;    width: 248px; animation-delay: 0s;   }
.fp-hcard--2 { top: 100px; left: 58px; width: 238px; animation-delay: 1.3s; animation-duration: 7s;  }
.fp-hcard--3 { top: 200px; left: 6px;  width: 230px; animation-delay: 2.6s; animation-duration: 8s;  }
.fp-hcard--4 { top: 8px;  right: 0;   width: 228px; animation-delay: 0.7s; animation-duration: 6.5s;}

@keyframes fpFloat {
0%, 100% { transform: translateY(0); }
50%       { transform: translateY(-9px); }
}

.fp-hcard-img {
width: 56px; height: 56px;
border-radius: 10px;
object-fit: cover;
flex-shrink: 0;
border: 1px solid rgba(255,255,255,.12);
}
.fp-hcard-info { flex: 1; min-width: 0; }
.fp-hcard-name {
font-family: 'Outfit', sans-serif;
font-size: 12px;
font-weight: 600;
color: #fff;
margin-bottom: 5px;
line-height: 1.3;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.fp-hcard-price-row { display: flex; align-items: baseline; gap: 6px; }
.fp-hcard-price {
font-family: 'Outfit', sans-serif;
font-size: 15px;
font-weight: 800;
color: var(--primary);
}
.fp-hcard-old {
font-size: 11px;
color: rgba(255,255,255,.35);
text-decoration: line-through;
}
.fp-hcard-badge {
position: absolute;
top: -9px; right: -9px;
background: var(--error);
color: #fff;
font-family: 'Outfit', sans-serif;
font-size: 9px;
font-weight: 800;
letter-spacing: .04em;
padding: 3px 8px;
border-radius: 20px;
box-shadow: 0 2px 8px rgba(239,68,68,.4);
}

/* Coupon bubble */
.fp-hero-coupon {
position: absolute;
bottom: 0; right: 0;
background: var(--accent);
border-radius: 16px;
padding: 18px 24px;
text-align: center;
box-shadow: 0 10px 32px rgba(255,209,102,.38);
animation: fpFloat 5s ease-in-out infinite 1.2s;
min-width: 160px;
}
.fp-hc-label {
font-family: 'Outfit', sans-serif;
font-size: 9px;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
color: rgba(7,59,76,.6);
margin-bottom: 5px;
}
.fp-hc-amount {
font-family: 'Crimson Pro', Georgia, serif;
font-size: 38px;
font-weight: 700;
color: var(--secondary);
line-height: 1;
margin-bottom: 3px;
}
.fp-hc-sub {
font-family: 'Outfit', sans-serif;
font-size: 10px;
font-weight: 700;
color: rgba(7,59,76,.55);
text-transform: uppercase;
letter-spacing: .09em;
margin-bottom: 14px;
}
.fp-hc-btn {
display: block;
background: var(--secondary);
color: #fff;
font-family: 'Outfit', sans-serif;
font-size: 10px;
font-weight: 700;
letter-spacing: .06em;
text-transform: uppercase;
padding: 9px 14px;
border-radius: 24px;
text-decoration: none;
transition: opacity .2s;
white-space: nowrap;
}
.fp-hc-btn:hover { opacity: .82; color: #fff; }

/* ── Responsive ── */
@media (max-width: 1200px) {
.fp-hero-grid { grid-template-columns: 1fr 420px; }
.fp-hcard--4 { display: none; }
}
@media (max-width: 1024px) {
.fp-hero-grid { grid-template-columns: 1fr 340px; }
.fp-hcard--3, .fp-hcard--4 { display: none; }
.fp-hero-inner { padding: 80px 32px 48px; }
}
@media (max-width: 768px) {
.fp-hero { min-height: 400px; max-height: none; }
.fp-hero-grid { grid-template-columns: 1fr; }
.fp-hero-cards { display: none; }
.fp-hero-inner { padding: 72px 20px 40px; }
.fp-hero-title { font-size: clamp(32px, 8vw, 48px); }
.fp-hero-stats { flex-wrap: wrap; gap: 12px; border-top: none; padding-top: 16px; }
.fp-hero-stat { padding: 8px 16px; background: rgba(255,255,255,.06); border-radius: 8px; }
.fp-hero-stat-sep { display: none; }
}
@media (max-width: 480px) {
.fp-hero { min-height: 320px; max-height: none; }
.fp-hero-title { font-size: 30px; }
.fp-hero-actions { flex-direction: column; align-items: flex-start; }
.fp-hs-val { font-size: 20px; }
}

.fp-section--dark { background: var(--secondary); }
.fp-section--cream { background: var(--bg-light); }
.fp-section--gray  { background: var(--bg-page); }
.fp-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.fp-eyelet {
display: inline-flex; align-items: center; gap: 8px;
font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
color: var(--primary); margin-bottom: 14px;
}
.fp-eyelet::before { content: ''; width: 24px; height: 2px; background: var(--primary); border-radius: 1px; }

100% { transform: translateX(-50%); }
}

/* ── Responsive hero ───────────────────────────────── */
@media (max-width: 1200px) {
.fp-hero-grid { grid-template-columns: 1fr 420px; }
.fp-hcard--4, .fp-hcard--5 { display: none; }
}
@media (max-width: 1024px) {
.fp-hero-grid { grid-template-columns: 1fr 340px; }
.fp-hcard--3, .fp-hcard--4, .fp-hcard--5 { display: none; }
.fp-hcard--1 { width: 210px; }
.fp-hcard--2 { width: 200px; }
}
@media (max-width: 768px) {
.fp-hero { min-height: 70vh; }
.fp-hero-grid { grid-template-columns: 1fr; }
.fp-hero-cards { display: none; }
.fp-hero-inner { padding: 80px 20px 40px; }
.fp-hero-title { font-size: clamp(32px, 8vw, 48px); }
.fp-hero-stats { flex-wrap: wrap; gap: 8px; border-top: none; padding-top: 20px; }
.fp-stat { padding: 8px 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; }
.fp-stat + .fp-stat { border-left: 1px solid rgba(255,255,255,.1); }
}
@media (max-width: 480px) {
.fp-hero { min-height: 320px; max-height: none; }
.fp-hero-title { font-size: 30px; }
.fp-hero-actions { flex-direction: column; align-items: flex-start; }
.fp-stat-val { font-size: 22px; }
}



.fp-section-title {
font-family: 'Crimson Pro', Georgia, serif;
font-size: clamp(2rem, 3.5vw, 2.8rem);
font-weight: 700; color: var(--secondary);
line-height: 1.1; letter-spacing: -.02em;
margin-bottom: 8px;
}
.fp-section-title em { font-style: italic; color: var(--primary); }
.fp-section-title--white { color: #fff; }

.fp-section-sub {
font-size: 16px; color: var(--text-light);
max-width: 520px; line-height: 1.7;
margin-bottom: 48px;
}

/* ── Buttons ───────────────────────────────────────── */
.fp-btn {
display: inline-flex; align-items: center; gap: 8px;
font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
letter-spacing: .04em; text-transform: uppercase;
padding: 14px 28px; border-radius: 50px;
border: none; cursor: pointer; text-decoration: none;
transition: all .25s var(--transition);
}
.fp-btn--primary {
background: var(--primary); color: var(--secondary);
box-shadow: 0 4px 20px rgba(6,214,160,.35);
}
.fp-btn--primary:hover {
background: var(--primary-dark); transform: translateY(-2px);
box-shadow: 0 8px 28px rgba(6,214,160,.45);
}
.fp-btn--outline {
background: transparent; color: #fff;
border: 2px solid rgba(255,255,255,.35);
}
.fp-btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.fp-btn--dark { background: var(--secondary); color: #fff; }
.fp-btn--dark:hover { background: var(--secondary); transform: translateY(-2px); }
.fp-btn svg { transition: transform .2s; }
.fp-btn:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════
 1. HERO — Full viewport, dark premium
 ═══════════════════════════════════════════════════ */
.fp-hero {
min-height: 100vh;
background: var(--secondary);
position: relative; overflow: hidden;
display: flex; flex-direction: column;
}
.fp-hero::before {
content: '';
position: absolute; inset: 0;
background:
  radial-gradient(ellipse 70% 90% at -10% 60%, rgba(6,214,160,.18) 0%, transparent 55%),
  radial-gradient(ellipse 50% 70% at 110% 10%, rgba(255,209,102,.12) 0%, transparent 50%),
  radial-gradient(ellipse 40% 50% at 50% 100%, rgba(6,214,160,.07) 0%, transparent 55%);
pointer-events: none;
}
/* Dot grid */
.fp-hero::after {
content: '';
position: absolute; inset: 0;
background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
background-size: 32px 32px;
pointer-events: none;
}

.fp-hero-body {
flex: 1; display: flex; align-items: center;
position: relative; z-index: 2;
padding: 120px 0 80px;
}

.fp-hero-grid {
display: grid;
grid-template-columns: 1fr 520px;
gap: 48px; align-items: center;
}

/* Left — copy */
.fp-hero-tag {
display: inline-flex; align-items: center; gap: 8px;
background: rgba(6,214,160,.15); border: 1px solid rgba(6,214,160,.35);
color: var(--primary); font-size: 11px; font-weight: 700;
letter-spacing: .14em; text-transform: uppercase;
padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
}

.fp-hero-title {
font-family: 'Crimson Pro', Georgia, serif;
font-size: clamp(48px, 6vw, 84px);
font-weight: 700; color: #fff;
line-height: 1.0; letter-spacing: -.035em;
margin-bottom: 20px;
}
.fp-hero-title em {
font-style: italic; color: var(--primary);
display: block;
}
.fp-hero-title span {
display: block;
font-size: .55em; font-style: normal;
font-weight: 300; opacity: .65;
letter-spacing: .02em; line-height: 1.4;
}

.fp-hero-desc {
font-size: 16px; color: rgba(255,255,255,.55);
max-width: 420px; line-height: 1.75; margin-bottom: 40px;
}

.fp-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* Hero stats */
.fp-hero-stats {
display: flex; gap: 0; flex-wrap: wrap;
padding-top: 40px;
border-top: 1px solid rgba(255,255,255,.08);
}
.fp-stat { padding-right: 40px; }
.fp-stat + .fp-stat { padding-left: 40px; border-left: 1px solid rgba(255,255,255,.08); }
.fp-stat-val {
font-family: 'Crimson Pro', Georgia, serif;
font-size: 36px; font-weight: 700; color: #fff;
line-height: 1; margin-bottom: 4px;
}
.fp-stat-val em { color: var(--primary); font-style: normal; }
.fp-stat-lbl { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

/* Right — product slider cards */
.fp-hero-visual { position: relative; height: 520px; }
.fp-hero-main-card {
position: absolute;
top: 0; left: 50%; transform: translateX(-50%);
width: 300px; height: 400px;
border-radius: 20px; overflow: hidden;
box-shadow: 0 32px 80px rgba(0,0,0,.4);
border: 1px solid rgba(255,255,255,.1);
}
.fp-hero-main-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Floating mini-cards */
.fp-hero-mini {
position: absolute;
background: rgba(255,255,255,.07);
backdrop-filter: blur(14px);
border: 1px solid rgba(255,255,255,.12);
border-radius: 14px;
padding: 12px 16px;
display: flex; align-items: center; gap: 10px;
box-shadow: 0 8px 32px rgba(0,0,0,.25);
animation: fpFloat 6s ease-in-out infinite;
min-width: 200px;
}
.fp-hero-mini--1 { top: 60px;  right: -20px; animation-delay: 0s; }
.fp-hero-mini--2 { bottom: 80px; left: -30px; animation-delay: 2s; }
.fp-hero-mini-img {
width: 48px; height: 48px; border-radius: 8px;
object-fit: cover; flex-shrink: 0;
border: 1px solid rgba(255,255,255,.1);
}
.fp-hero-mini-name { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.fp-hero-mini-price { font-size: 14px; font-weight: 800; color: var(--primary); }

/* Badge sur la main card */
.fp-hero-badge {
position: absolute; top: -12px; right: -12px;
background: var(--accent); color: var(--secondary);
font-size: 10px; font-weight: 800;
letter-spacing: .06em; text-transform: uppercase;
padding: 6px 14px; border-radius: 20px;
box-shadow: 0 4px 16px rgba(255,209,102,.4);
}

/* Trust pill flottant */
.fp-hero-trust {
position: absolute; bottom: 20px; right: 0;
background: var(--primary); color: var(--secondary);
font-size: 11px; font-weight: 700;
padding: 10px 18px; border-radius: 50px;
display: flex; align-items: center; gap: 6px;
box-shadow: 0 4px 20px rgba(6,214,160,.4);
animation: fpFloat 5s ease-in-out infinite 1s;
}

@keyframes fpFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}

/* Ticker */
.fp-ticker-track {
display: flex; gap: 0; white-space: nowrap;
animation: fpTicker 28s linear infinite;
}
.fp-ticker-track:hover { animation-play-state: paused; }
.fp-ticker-item {
display: inline-flex; align-items: center; gap: 8px;
padding: 0 36px; font-size: 12px;
color: rgba(255,255,255,.45); font-weight: 500;
}
.fp-ticker-item strong { color: rgba(255,255,255,.8); font-weight: 700; }
.fp-ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
@keyframes fpTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════
 2. INFO BOXES — trust bar
 ═══════════════════════════════════════════════════ */
.fp-trust-bar {
background: #fff;
border-bottom: 1px solid var(--border);
padding: 20px 0;
}
.fp-trust-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
divide: true; gap: 0;
}
.fp-trust-item {
display: flex; align-items: center; gap: 16px;
padding: 16px 32px;
border-right: 1px solid var(--border);
}
.fp-trust-item:last-child { border-right: none; }
.fp-trust-icon {
width: 48px; height: 48px; border-radius: 12px;
background: linear-gradient(135deg, rgba(6,214,160,.12), rgba(6,214,160,.04));
display: flex; align-items: center; justify-content: center;
color: var(--primary); flex-shrink: 0; font-size: 20px;
}
.fp-trust-title { font-size: 14px; font-weight: 700; color: var(--secondary); margin-bottom: 2px; }
.fp-trust-sub   { font-size: 12px; color: var(--text-light); }

/* ═══════════════════════════════════════════════════
 3. TOP PRODUCTS SECTION
 ═══════════════════════════════════════════════════ */
.fp-products-header {
display: flex; align-items: flex-end;
justify-content: space-between; flex-wrap: wrap; gap: 16px;
margin-bottom: 40px;
}

/* Product grid */
.fp-prod-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 16px;
}

/* Product card */
.fp-prod-card {
background: #fff;
border: 1px solid var(--border);
border-radius: 16px; overflow: hidden;
transition: box-shadow .25s var(--transition), transform .25s var(--transition), border-color .25s;
display: flex; flex-direction: column;
position: relative;
}
.fp-prod-card:hover {
box-shadow: 0 12px 40px rgba(6,32,48,.1);
transform: translateY(-4px);
border-color: var(--primary);
}

.fp-prod-img {
position: relative; overflow: hidden;
aspect-ratio: 4/5; background: var(--bg-gray);
flex-shrink: 0;
}
.fp-prod-img img {
width: 100%; height: 100%; object-fit: cover; display: block;
transition: transform .4s var(--transition);
}
.fp-prod-card:hover .fp-prod-img img { transform: scale(1.06); }
.fp-prod-img img:nth-child(2) {
position: absolute; inset: 0;
opacity: 0; transition: opacity .3s;
}
.fp-prod-card:hover .fp-prod-img img:nth-child(2) { opacity: 1; }

/* Badges */
.fp-prod-badges {
position: absolute; top: 10px; left: 10px;
display: flex; flex-direction: column; gap: 4px; z-index: 2;
}
.fp-badge {
display: inline-block; font-size: 9px; font-weight: 800;
letter-spacing: .08em; text-transform: uppercase;
padding: 3px 8px; border-radius: 5px;
}
.fp-badge--hot  { background: var(--secondary); color: #fff; }
.fp-badge--sale { background: var(--error); color: #fff; }
.fp-badge--new  { background: var(--primary); color: var(--secondary); }

/* Wishlist */
.fp-prod-wish {
position: absolute; top: 10px; right: 10px;
width: 32px; height: 32px; border-radius: 50%;
background: rgba(255,255,255,.9);
backdrop-filter: blur(4px);
border: 1px solid rgba(0,0,0,.06);
display: flex; align-items: center; justify-content: center;
cursor: pointer; color: var(--text-light);
transition: all .2s; z-index: 2; text-decoration: none;
font-size: 14px;
}
.fp-prod-wish:hover { color: var(--error); border-color: var(--error); transform: scale(1.1); }

/* Cart overlay */
.fp-prod-actions {
position: absolute; bottom: 10px; left: 10px; right: 10px;
display: flex; gap: 6px;
opacity: 0; transform: translateY(8px);
transition: all .22s var(--transition); z-index: 3;
}
.fp-prod-card:hover .fp-prod-actions { opacity: 1; transform: translateY(0); }
.fp-prod-cart {
flex: 1; background: var(--secondary); color: #fff;
border: none; border-radius: 8px; padding: 9px 12px;
font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
letter-spacing: .04em; text-transform: uppercase;
cursor: pointer; display: flex; align-items: center;
justify-content: center; gap: 5px;
transition: background .15s;
}
.fp-prod-cart:hover { background: var(--primary); color: var(--secondary); }
.fp-prod-qv {
width: 36px; height: 36px; border-radius: 8px;
background: rgba(255,255,255,.95); color: var(--text-body);
border: 1px solid var(--border);
display: flex; align-items: center; justify-content: center;
text-decoration: none; font-size: 12px;
transition: all .15s; flex-shrink: 0;
}
.fp-prod-qv:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }

/* Mobile cart */
.fp-prod-cart-mob {
display: none; width: 100%;
background: var(--secondary); color: #fff;
border: none; padding: 10px;
font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
letter-spacing: .04em; text-transform: uppercase;
cursor: pointer; align-items: center; justify-content: center; gap: 6px;
margin-top: auto;
}

/* Info */
.fp-prod-info { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.fp-prod-cat  {
font-size: 10px; font-weight: 700; letter-spacing: .1em;
text-transform: uppercase; color: var(--primary);
text-decoration: none; margin-bottom: 5px; display: block;
}
.fp-prod-name {
font-size: 13px; font-weight: 600; color: var(--secondary);
margin-bottom: 10px; line-height: 1.35;
display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
overflow: hidden;
}
.fp-prod-name a { color: inherit; text-decoration: none; }
.fp-prod-name a:hover { color: var(--primary); }

.fp-prod-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.fp-prod-star  { color: var(--accent); font-size: 11px; }

.fp-prod-price { display: flex; align-items: baseline; gap: 6px; margin-top: auto; }
.fp-prod-old   { font-size: 11px; color: var(--text-light); text-decoration: line-through; }
.fp-prod-cur   { font-family: 'Crimson Pro', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--secondary); }
.fp-prod-cur.sale { color: var(--error); }

/* ═══════════════════════════════════════════════════
 4. BANNER SALE — bold strip
 ═══════════════════════════════════════════════════ */
.fp-sale-banner {
background: linear-gradient(135deg, #1a6e9c 0%, #2A95CB 50%, #1f7eb5 100%);
position: relative; overflow: hidden;
padding: 0;
}
.fp-sale-banner::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.08) 0%, transparent 55%);
pointer-events: none;
}
.fp-sale-inner {
display: flex; align-items: center;
justify-content: space-between; flex-wrap: wrap; gap: 20px;
padding: 36px 32px; position: relative; z-index: 1;
}
.fp-sale-left {}
.fp-sale-eyelet {
font-size: 11px; font-weight: 700; letter-spacing: .14em;
text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 8px;
}
.fp-sale-title {
font-family: 'Crimson Pro', Georgia, serif;
font-size: clamp(28px, 3.5vw, 44px);
font-weight: 700; color: #fff;
line-height: 1.1; letter-spacing: -.02em;
}
.fp-sale-title em { font-style: italic; color: var(--accent); }
.fp-sale-sub { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 8px; }
.fp-sale-sub small { opacity: .6; font-size: .85em; margin-left: 8px; }

/* ═══════════════════════════════════════════════════
 5. CATEGORIES GRID
 ═══════════════════════════════════════════════════ */
.fp-cats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}
.fp-cat-card {
position: relative; overflow: hidden;
border-radius: 16px; aspect-ratio: 3/4;
display: block; text-decoration: none;
group: true;
}
.fp-cat-card::after {
content: '';
position: absolute; inset: 0;
background: linear-gradient(to top, rgba(6,32,48,.85) 0%, rgba(6,32,48,.2) 50%, transparent 100%);
transition: opacity .3s;
}
.fp-cat-card:hover::after { opacity: .8; }
.fp-cat-card img {
width: 100%; height: 100%; object-fit: cover; display: block;
transition: transform .5s var(--transition);
}
.fp-cat-card:hover img { transform: scale(1.06); }

.fp-cat-info {
position: absolute; bottom: 0; left: 0; right: 0;
padding: 24px 20px; z-index: 2;
transform: translateY(6px);
transition: transform .3s var(--transition);
}
.fp-cat-card:hover .fp-cat-info { transform: translateY(0); }
.fp-cat-count { font-size: 11px; color: var(--primary); font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .08em; }
.fp-cat-name  { font-family: 'Crimson Pro', Georgia, serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.fp-cat-link  {
display: inline-flex; align-items: center; gap: 6px;
font-size: 12px; font-weight: 700; letter-spacing: .06em;
text-transform: uppercase; color: var(--primary);
opacity: 0; transform: translateX(-6px);
transition: all .25s var(--transition) .05s;
}
.fp-cat-card:hover .fp-cat-link { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════════
 6. TRENDING LOOK — editorial layout
 ═══════════════════════════════════════════════════ */
.fp-look {
background: var(--bg-light);
position: relative; overflow: hidden;
}
.fp-look-grid {
display: grid;
grid-template-columns: 1fr 360px 280px;
gap: 48px; align-items: center;
}
.fp-look-products { display: flex; flex-direction: column; gap: 16px; }

.fp-look-item {
display: flex; align-items: center; gap: 16px;
background: #fff; border-radius: 14px;
padding: 14px 16px;
border: 1px solid var(--border);
transition: all .2s;
}
.fp-look-item:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(6,214,160,.1); }
.fp-look-item-img {
width: 60px; height: 60px; border-radius: 10px;
object-fit: cover; flex-shrink: 0;
border: 1px solid var(--border);
}
.fp-look-item-info { flex: 1; min-width: 0; }
.fp-look-item-name {
font-size: 13px; font-weight: 600; color: var(--secondary);
text-decoration: none; display: block;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
margin-bottom: 4px;
}
.fp-look-item-name:hover { color: var(--primary); }
.fp-look-item-price { font-size: 14px; font-weight: 800; color: var(--secondary); }
.fp-look-item-price .old { font-size: 11px; color: var(--text-light); text-decoration: line-through; margin-right: 4px; font-weight: 500; }
.fp-look-item-cart {
background: var(--secondary); color: #fff; border: none;
border-radius: 8px; padding: 8px 14px;
font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
letter-spacing: .04em; text-transform: uppercase;
cursor: pointer; flex-shrink: 0; transition: background .15s;
}
.fp-look-item-cart:hover { background: var(--primary); color: var(--secondary); }

.fp-look-visual {
position: relative; border-radius: 20px; overflow: hidden;
aspect-ratio: 3/4;
box-shadow: 0 24px 60px rgba(6,32,48,.18);
}
.fp-look-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-look-total {
position: absolute; bottom: 20px; left: 20px; right: 20px;
background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
border-radius: 12px; padding: 16px 18px;
display: flex; align-items: center; justify-content: space-between;
box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.fp-look-total-label { font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.fp-look-total-price { font-family: 'Crimson Pro', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--secondary); }

.fp-look-shopbtns { display: flex; flex-direction: column; gap: 12px; }
.fp-look-shopbtn {
display: flex; align-items: center; gap: 12px;
padding: 18px 20px; border-radius: 14px;
text-decoration: none; transition: all .2s;
border: 2px solid var(--border); background: #fff; color: var(--secondary);
}
.fp-look-shopbtn:hover { border-color: var(--primary); background: rgba(6,214,160,.04); }
.fp-look-shopbtn-icon {
width: 44px; height: 44px; border-radius: 10px;
background: var(--secondary); display: flex; align-items: center;
justify-content: center; color: #fff; font-size: 16px; flex-shrink: 0;
}
.fp-look-shopbtn-label { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.fp-look-shopbtn-name  { font-size: 16px; font-weight: 700; color: var(--secondary); }
.fp-look-shopbtn-arr   { margin-left: auto; color: var(--text-light); font-size: 18px; transition: transform .2s; }
.fp-look-shopbtn:hover .fp-look-shopbtn-arr { transform: translateX(4px); color: var(--primary); }

/* ═══════════════════════════════════════════════════
 7. FEATURE BOXES
 ═══════════════════════════════════════════════════ */
.fp-features-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.fp-feature {
text-align: center; padding: 40px 32px;
border-radius: 20px; background: #fff;
border: 1px solid var(--border);
transition: all .25s;
}
.fp-feature:hover { box-shadow: 0 8px 32px rgba(6,32,48,.08); border-color: var(--primary); transform: translateY(-4px); }
.fp-feature-icon {
width: 64px; height: 64px; border-radius: 18px;
background: linear-gradient(135deg, rgba(6,214,160,.15), rgba(6,214,160,.05));
display: flex; align-items: center; justify-content: center;
margin: 0 auto 20px; font-size: 24px; color: var(--primary);
transition: all .25s;
}
.fp-feature:hover .fp-feature-icon { background: var(--primary); color: var(--secondary); transform: scale(1.08); }
.fp-feature h3 { font-family: 'Crimson Pro', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--secondary); margin-bottom: 6px; }
.fp-feature h5 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.fp-feature p  { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
 8. NEW ARRIVALS — horizontal scroll on mobile
 ═══════════════════════════════════════════════════ */
.fp-new-scroll {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 16px; overflow: visible;
}

/* ═══════════════════════════════════════════════════
 9. BLOG SECTION
 ═══════════════════════════════════════════════════ */
.fp-blog-grid {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.fp-post {
border-radius: 16px; overflow: hidden;
border: 1px solid var(--border);
background: #fff;
transition: all .25s;
display: flex; flex-direction: column;
}
.fp-post:hover { box-shadow: 0 8px 28px rgba(6,32,48,.08); border-color: var(--primary); transform: translateY(-3px); }
.fp-post-img {
position: relative; overflow: hidden;
aspect-ratio: 4/3;
}
.fp-post-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--transition); }
.fp-post:hover .fp-post-img img { transform: scale(1.04); }
.fp-post-date {
position: absolute; top: 14px; left: 14px;
background: #fff; border-radius: 10px;
padding: 6px 12px; text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.fp-post-day   { font-family: 'Crimson Pro', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--secondary); line-height: 1; }
.fp-post-month { font-size: 10px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; }
.fp-post-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.fp-post-title { font-size: 15px; font-weight: 700; color: var(--secondary); line-height: 1.35; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fp-post-title a { color: inherit; text-decoration: none; }
.fp-post-title a:hover { color: var(--primary); }
.fp-post-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.fp-post-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.fp-post-comments { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.fp-post-read { font-size: 12px; font-weight: 700; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.fp-post-read:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
 10. WIDGET PRODUCTS — small sidebar-style grid
 ═══════════════════════════════════════════════════ */
.fp-widgets-grid {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 32px;
padding-top: 48px;
border-top: 1px solid var(--border);
}
.fp-widget-title {
font-size: 11px; font-weight: 800; letter-spacing: .12em;
text-transform: uppercase; color: var(--secondary);
margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.fp-widget-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.fp-widget-item {
display: flex; gap: 12px; align-items: center;
padding: 10px 0;
border-bottom: 1px solid var(--bg-gray);
}
.fp-widget-item:last-child { border-bottom: none; }
.fp-widget-img {
width: 64px; height: 64px; border-radius: 10px;
object-fit: cover; flex-shrink: 0;
border: 1px solid var(--border);
display: block;
}
.fp-widget-info {}
.fp-widget-name {
font-size: 13px; font-weight: 600; color: var(--secondary);
line-height: 1.35; margin-bottom: 6px;
display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
overflow: hidden;
}
.fp-widget-name a { color: inherit; text-decoration: none; }
.fp-widget-name a:hover { color: var(--primary); }
.fp-widget-stars { display: flex; gap: 2px; margin-bottom: 4px; }
.fp-widget-star  { color: var(--accent); font-size: 10px; }
.fp-widget-price { font-size: 14px; font-weight: 800; color: var(--secondary); }
.fp-widget-old   { font-size: 11px; color: var(--text-light); text-decoration: line-through; margin-right: 4px; }

/* ═══════════════════════════════════════════════════
 11. BRAND BAR
 ═══════════════════════════════════════════════════ */
.fp-brand-bar {
background: #fff;
padding: 32px 0;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.fp-brand-inner {
display: flex; align-items: center; justify-content: center;
gap: 48px; flex-wrap: wrap;
}
.fp-brand-inner img { height: 40px; width: auto; opacity: .4; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.fp-brand-inner img:hover { opacity: .8; filter: grayscale(0); }

/* ═══════════════════════════════════════════════════
 RESPONSIVE
 ═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
.fp-prod-grid, .fp-new-scroll { grid-template-columns: repeat(4, 1fr); }
.fp-hero-grid { grid-template-columns: 1fr 400px; }
.fp-look-grid { grid-template-columns: 1fr 300px 240px; }
}
@media (max-width: 1024px) {
.fp-prod-grid, .fp-new-scroll { grid-template-columns: repeat(3, 1fr); }
.fp-cats-grid { grid-template-columns: repeat(2, 1fr); }
.fp-blog-grid { grid-template-columns: repeat(2, 1fr); }
.fp-widgets-grid { grid-template-columns: repeat(2, 1fr); }
.fp-look-grid { grid-template-columns: 1fr 280px; }
.fp-look-shopbtns { display: none; }
.fp-hero-visual { display: none; }
.fp-hero-grid { grid-template-columns: 1fr; }
.fp-hero-desc { max-width: 580px; }
}
@media (max-width: 768px) {
.fp-section { padding: 56px 0; }
.fp-container { padding: 0 16px; }
.fp-trust-grid { grid-template-columns: 1fr; }
.fp-trust-item { border-right: none; border-bottom: 1px solid var(--border); }
.fp-trust-item:last-child { border-bottom: none; }
.fp-prod-grid, .fp-new-scroll { grid-template-columns: repeat(2, 1fr); gap: 10px; }
.fp-prod-actions { display: none; }
.fp-prod-cart-mob { display: flex; }
.fp-cats-grid { grid-template-columns: repeat(2, 1fr); }
.fp-look-grid { grid-template-columns: 1fr; }
.fp-look-visual { display: none; }
.fp-features-grid { grid-template-columns: 1fr; gap: 16px; }
.fp-blog-grid { grid-template-columns: 1fr; }
.fp-widgets-grid { grid-template-columns: 1fr; }
.fp-hero-stats { gap: 0; }
.fp-stat { padding: 16px 20px; }
.fp-stat + .fp-stat { padding-left: 20px; }
}
@media (max-width: 480px) {
.fp-hero-title { font-size: 38px; }
.fp-hero-actions { flex-direction: column; align-items: flex-start; }
.fp-prod-grid, .fp-new-scroll { grid-template-columns: repeat(2, 1fr); gap: 8px; }
.fp-cats-grid { grid-template-columns: 1fr; }
.fp-sale-inner { flex-direction: column; }
}

.fp-slider-wrap .banner-layer h2 { font-size: 1.2rem !important; }
.fp-slider-wrap .banner-layer h3 { display: none; }
.fp-slider-wrap .banner-layer .btn-dark { padding: 8px 16px; font-size: .78rem; }


/* ============================================
 TRENDING LOOK — exact screenshot design
============================================ */

.product-info-container.tred {
background: #E8F5F0;
padding: 48px 0 44px;
margin-bottom: 0;
}

/* ── Colonne gauche ── */
.product-info-container .heading {
margin: 0 0 28px;
}

/* "Super Sale" */
.product-info-container .heading h4 {
font-family: 'Outfit', sans-serif;
font-size: .95rem;
font-weight: 400;
color: #555;
letter-spacing: .01em;
margin-bottom: 4px;
text-transform: none;
}

/* "TRENDING LOOKS" */
.product-info-container .heading h2 {
font-family: 'Outfit', sans-serif;
font-size: clamp(2.2rem, 5vw, 4rem);
font-weight: 800;
color: var(--text-dark);
letter-spacing: -.025em;
line-height: 1.0;
text-transform: uppercase;
margin-bottom: 10px;
}

/* "for only €99,99" row */
.product-info-container .heading h5 {
display: flex;
align-items: baseline;
gap: 8px;
margin: 0;
}
.product-info-container .heading h5 span {
font-family: 'Outfit', sans-serif;
font-size: .82rem;
font-weight: 400;
color: #666;
letter-spacing: .02em;
}
/* Pill prix rouge */
.product-info-container .coupon-sale-text {
display: inline-flex;
align-items: baseline;
background: var(--error) !important;
color: #fff !important;
font-family: 'Outfit', sans-serif;
font-weight: 800;
letter-spacing: -.02em;
padding: 3px 10px !important;
border-radius: 3px;
line-height: 1.2;
font-size: 1.1rem !important;
}
.product-info-container .coupon-sale-text sup {
font-size: .65em;
margin-right: 0;
}
.product-info-container .coupon-sale-text em {
font-style: normal;
font-size: 1.3em;
}

/* ── Liste produits ── */
.product-info-content {
list-style: none;
padding: 0;
margin: 0;
}

.product-info-item1 {
display: flex;
align-items: center;
gap: 0;
padding: 7px 0;
border-bottom: none;
margin: 0;
}
/* Tiret */
.product-info-item1::before {
content: "-";
color: #888;
font-weight: 400;
font-size: .9rem;
margin-right: 10px;
flex-shrink: 0;
line-height: 1;
}

.product-info-item1 .product-default { margin: 0; }

.product-info-item1 .product-details {
display: flex !important;
align-items: baseline !important;
gap: 8px !important;
flex-direction: row !important;
flex-wrap: nowrap !important;
padding: 0 !important;
}

/* Nom produit */
.product-info-item1 .product-title {
font-family: 'Outfit', sans-serif;
font-size: .9rem !important;
font-weight: 400 !important;
color: var(--text-dark) !important;
margin: 0 !important;
white-space: nowrap;
letter-spacing: 0;
}
.product-info-item1 .product-title a {
color: inherit;
text-decoration: none;
}
.product-info-item1 .product-title a:hover { color: var(--primary); }

/* Prix */
.product-info-item1 .price-box {
display: flex;
align-items: baseline;
gap: 5px;
margin: 0 !important;
font-family: 'Outfit', sans-serif;
flex-shrink: 0;
}
.product-info-item1 .old-price {
font-size: .75rem;
color: #aaa;
text-decoration: line-through;
font-weight: 400;
}
.product-info-item1 .product-price {
font-size: .92rem;
font-weight: 700;
color: var(--text-dark);
}

/* "Add To Cart" — lien souligné */
.product-info-item1 .btn-add-cart {
font-family: 'Outfit', sans-serif;
font-size: .78rem !important;
font-weight: 500 !important;
color: var(--text-dark) !important;
text-decoration: underline !important;
text-underline-offset: 2px;
background: transparent !important;
border: none !important;
padding: 0 !important;
margin: 0 !important;
cursor: pointer;
white-space: nowrap;
flex-shrink: 0;
transition: color .15s;
line-height: 1;
display: inline;
}
.product-info-item1 .btn-add-cart:hover {
color: var(--primary) !important;
background: transparent !important;
}

/* ── Image centrale ── */
.product-info-image {
position: relative;
text-align: center;
}
.product-info-image figure {
margin: 0;
display: flex;
justify-content: center;
}
.product-info-image figure img {
max-height: 480px;
width: auto;
max-width: 100%;
object-fit: contain;
display: block;
}

/* Dots rouges */
.product-popup-dot > a {
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
}
.product-popup-dot > a::before {
content: "";
width: 18px !important;
height: 18px !important;
border-radius: 50% !important;
background: var(--error) !important;
box-shadow: 0 0 0 4px rgba(239,68,68,.25);
}

/* ── Boutons boutique (droite) ── */
.product-info-container .btn-group.flex-column { gap: 10px; }

.btn-shop {
background: var(--text-dark) !important;
border: 2px solid var(--text-dark) !important;
color: #fff !important;
font-family: 'Outfit', sans-serif;
font-size: .82rem !important;
font-weight: 700 !important;
letter-spacing: .1em;
text-transform: uppercase;
padding: 16px 28px !important;
border-radius: 0 !important;
min-width: 160px;
text-align: center;
display: block;
transition: background .2s;
white-space: nowrap;
}
.btn-shop:hover {
background: transparent !important;
color: var(--text-dark) !important;
}
.btn-shop.m-b-3 { margin-bottom: 10px !important; }

/* ── Responsive ── */
@media (max-width: 991px) {
.product-info-container.tred { padding: 36px 0 28px; }
.product-info-container .heading h2 { font-size: 2.4rem; }
.product-info-image figure img { max-height: 340px; }
}
@media (max-width: 768px) {
.product-info-item1 .product-details { flex-wrap: wrap !important; }
.product-info-item1 .btn-add-cart { display: none !important; }
.product-info-image { display: none; }
.product-info-container .heading h2 { font-size: 2rem; }
}
@media (max-width: 480px) {
.product-info-container .heading h2 { font-size: 1.7rem; }
}
/* ============================================
   20. BLOG DETAIL — Design pro & épuré
   Hero · Layout · Article · Sidebar · Comments
============================================ */

/* ── Page ────────────────────────────────── */
.bd-page { background: var(--bg-page); }

/* ══════════════════════════════════════════
   HERO — compact 340px, image en fond
══════════════════════════════════════════ */
.bd-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--secondary);
}

/* Image de fond */
.bd-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.bd-hero-bg--fallback {
  background: linear-gradient(135deg, var(--secondary) 0%, #0A5568 100%);
}

/* Overlay — plus léger que avant pour laisser voir l'image */
.bd-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,32,48,.96) 0%,
    rgba(6,32,48,.75) 40%,
    rgba(6,32,48,.35) 75%,
    rgba(6,32,48,.10) 100%
  );
}

/* Contenu hero */
.bd-hero-inner {
  position: relative;
  z-index: 2;
  padding: 32px 0 36px;
  max-width: 760px;
}

/* Breadcrumb */
.bd-bc {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.45);
  margin-bottom: 18px; flex-wrap: wrap;
}
.bd-bc-a {
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .15s;
}
.bd-bc-a:hover { color: var(--primary); }

/* Pill catégorie */
.bd-cat-tag {
  display: inline-flex; align-items: center;
  background: rgba(6,214,160,.15);
  border: 1px solid rgba(6,214,160,.35);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px;
}

/* Titre */
.bd-hero-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; color: #fff;
  line-height: 1.2; letter-spacing: -.02em;
  margin-bottom: 20px;
}

/* Meta auteur */
.bd-hero-meta {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; margin-bottom: 14px;
}
.bd-author-row {
  display: flex; align-items: center; gap: 10px;
}
.bd-author-avatar i { font-size: 1.75rem; color: var(--primary); }
.bd-author-name {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 600; color: #fff;
}
.bd-meta-dot { color: rgba(255,255,255,.3); margin: 0 4px; }
.bd-meta-date { font-size: 12px; color: rgba(255,255,255,.5); }

.bd-meta-pills { display: flex; gap: 10px; }
.bd-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; color: rgba(255,255,255,.5);
}
.bd-pill i { color: var(--primary); font-size: 11px; }

/* Tags */
.bd-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bd-tag {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.65);
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
  text-decoration: none; transition: all .15s;
}
.bd-tag:hover {
  background: rgba(6,214,160,.15);
  border-color: var(--primary); color: var(--primary);
}

/* ══════════════════════════════════════════
   LAYOUT — 2 colonnes, contenu large
══════════════════════════════════════════ */
.bd-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  padding: 48px 0 64px;
  align-items: start;
}

/* ── Article ─────────────────────────────── */
.bd-main {}

.bd-article {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 28px;
}

/* Typographie dans l'article */
.bd-article h1, .bd-article h2,
.bd-article h3, .bd-article h4 {
  font-family: 'Crimson Pro', Georgia, serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 2rem 0 .875rem;
}
.bd-article h2 { font-size: 1.65rem; }
.bd-article h3 { font-size: 1.35rem; }
.bd-article h4 { font-size: 1.15rem; }

.bd-article p  { margin-bottom: 1.4rem; }

.bd-article a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(6,214,160,.3);
  transition: border-color .15s;
}
.bd-article a:hover { border-bottom-color: var(--primary); }

.bd-article ul, .bd-article ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.bd-article li { margin-bottom: .4rem; }

.bd-article blockquote {
  border-left: 4px solid var(--primary);
  background: rgba(6,214,160,.04);
  padding: 16px 24px;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.bd-article img {
  max-width: 100%; border-radius: var(--radius);
  margin: 1.2rem 0; box-shadow: var(--shadow-md);
  display: block;
}

.bd-article pre {
  background: var(--bg-gray); border-radius: 8px;
  padding: 16px 20px; overflow-x: auto;
  font-size: .85rem; margin-bottom: 1.4rem;
}
.bd-article code {
  background: var(--bg-gray); border-radius: 4px;
  padding: 2px 6px; font-size: .875rem;
}

/* Footer article */
.bd-article-footer {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 28px;
}
.bd-footer-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bd-tag--dark {
  background: var(--bg-gray);
  border-color: var(--border);
  color: var(--text-body);
}
.bd-tag--dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(6,214,160,.05);
}

/* Partage mobile */
.bd-share-mobile {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.bd-share-lbl {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-light); margin-bottom: 12px;
}

/* Navigation prev/next */
.bd-postnav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bd-postnav-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .2s;
}
.bd-postnav-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(6,214,160,.1);
  transform: translateY(-2px);
}
.bd-postnav-card--right { text-align: right; }
.bd-postnav-dir {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary);
}
.bd-postnav-card--right .bd-postnav-dir { justify-content: flex-end; }
.bd-postnav-title {
  font-size: 13px; font-weight: 600; color: var(--text-dark);
  line-height: 1.35;
}

/* ── Sidebar ─────────────────────────────── */
.bd-sidebar {
  display: flex; flex-direction: column; gap: 16px;
  position: sticky; top: 24px;
}

.bd-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

/* Auteur */
.bd-card-author { display: flex; align-items: center; gap: 12px; }
.bd-card-avatar i { font-size: 2.25rem; color: var(--primary); }
.bd-card-name {
  font-size: 14px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 2px;
}
.bd-card-role {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-light);
}

/* Label section sidebar */
.bd-card-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-light); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.bd-card-label::before {
  content: '';
  width: 3px; height: 12px;
  background: var(--primary); border-radius: 2px;
}

/* Articles liés */
.bd-related {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--bg-gray);
  text-decoration: none;
  transition: padding-left .15s;
}
.bd-related:last-child { border-bottom: none; }
.bd-related:hover { padding-left: 4px; }

.bd-related-img {
  width: 50px; height: 50px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--border);
}
.bd-related-ph {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-gray); color: var(--text-light);
}
.bd-related-ph i { font-size: 16px; }

.bd-related-title {
  font-size: 12px; font-weight: 600; color: var(--text-dark);
  line-height: 1.35; margin-bottom: 3px;
}
.bd-related:hover .bd-related-title { color: var(--primary); }
.bd-related-date { font-size: 11px; color: var(--text-light); }

/* ══════════════════════════════════════════
   COMMENTAIRES
══════════════════════════════════════════ */
.bd-comments {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  padding: 52px 0 64px;
}
.bd-comments-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.bd-comments-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.6rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.bd-comments-badge {
  background: var(--primary); color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}

/* Formulaire */
.bd-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}
.bd-form-heading {
  font-size: 14px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 18px;
}
.bd-form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 12px;
}
.bd-fg { margin-bottom: 12px; }

/* Inputs Django — overrides */
.bd-fg input,
.bd-fg textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: .875rem;
  color: var(--text-dark);
  background: var(--bg-page);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.bd-fg input:focus,
.bd-fg textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6,214,160,.1);
  background: #fff;
}
.bd-fg textarea { min-height: 100px; resize: vertical; }

.bd-form-foot {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  flex-wrap: wrap; padding-top: 4px;
}
.bd-form-note { font-size: 12px; color: var(--text-light); }

.bd-submit {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary); color: var(--secondary);
  border: none; border-radius: var(--radius);
  padding: 10px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(6,214,160,.3);
  transition: background .15s, transform .15s;
}
.bd-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Alertes */
.bd-alert {
  border-radius: var(--radius);
  padding: 10px 14px; font-size: .875rem;
  font-weight: 500; margin-bottom: 14px;
}
.bd-alert-success { background: #DCFCE7; color: #15803D; border-left: 3px solid #22C55E; }
.bd-alert-error   { background: #FEE2E2; color: #DC2626; border-left: 3px solid var(--error); }
.bd-alert-info    { background: #DBEAFE; color: #1E40AF; border-left: 3px solid #3B82F6; }

/* Aucun commentaire */
.bd-empty-comments {
  text-align: center; padding: 36px 20px;
  background: #fff; border-radius: var(--radius);
  border: 1px dashed var(--border);
}
.bd-empty-comments i {
  font-size: 2.25rem; color: var(--text-light);
  display: block; margin-bottom: 10px;
}
.bd-empty-comments p {
  font-size: .9rem; color: var(--text-light); margin: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bd-layout { grid-template-columns: 1fr 240px; gap: 24px; }
  .bd-article { padding: 32px 36px; }
}
@media (max-width: 991px) {
  .bd-layout { grid-template-columns: 1fr; padding: 32px 0 48px; }
  .bd-sidebar { display: none; }
  .bd-article { padding: 24px 20px; }
}
@media (max-width: 768px) {
  .bd-hero { min-height: 280px; }
  .bd-hero-title { font-size: 1.45rem; }
  .bd-hero-meta { gap: 12px; }
  .bd-postnav { grid-template-columns: 1fr; }
  .bd-form-card { padding: 18px; }
  .bd-form-row { grid-template-columns: 1fr; }
  .bd-form-foot { flex-direction: column; align-items: flex-start; }
  .bd-submit { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .bd-hero-title { font-size: 1.25rem; }
  .bd-article { font-size: 15px; padding: 18px 16px; }
}


/* ── Social share widget ─────────────────── */
.sh-social {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Ligne 2 colonnes */
.sh-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

/* Bouton base */
.sh-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .18s;
  white-space: nowrap;
  overflow: hidden;
}
.sh-btn i { font-size: 13px; flex-shrink: 0; }

/* Facebook */
.sh-btn--facebook {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}
.sh-btn--facebook:hover {
  background: #1565D8;
  border-color: #1565D8;
  color: #fff;
  transform: translateY(-1px);
}

/* X / Twitter */
.sh-btn--twitter {
  background: #000;
  border-color: #000;
  color: #fff;
}
.sh-btn--twitter:hover {
  background: #222;
  border-color: #222;
  color: #fff;
  transform: translateY(-1px);
}

/* LinkedIn */
.sh-btn--linkedin {
  background: transparent;
  border-color: #0077B5;
  color: #0077B5;
}
.sh-btn--linkedin:hover {
  background: #0077B5;
  color: #fff;
  transform: translateY(-1px);
}

/* WhatsApp */
.sh-btn--whatsapp {
  background: transparent;
  border-color: #25D366;
  color: #25D366;
}
.sh-btn--whatsapp:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-1px);
}

/* Email */
.sh-btn--email {
  background: transparent;
  border-color: var(--border);
  color: var(--text-body);
}
.sh-btn--email:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Copy */
.sh-btn--copy {
  background: var(--bg-gray);
  border-color: var(--border);
  color: var(--text-dark);
}
.sh-btn--copy:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(6,214,160,.06);
  transform: translateY(-1px);
}
.sh-btn--copied {
  background: #DCFCE7 !important;
  border-color: #22C55E !important;
  color: #15803D !important;
}


/* ══════════════════════════════════════════
   COMMENT ITEM — threaded design
══════════════════════════════════════════ */

/* ── Wrapper principal ── */
.ci {
  position: relative;
  margin-bottom: 16px;
}

/* ── Réponse imbriquée ── */
.ci--reply {
  padding-left: 36px;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Trait vertical de connexion (thread) */
.ci--reply .ci-thread-line {
  position: absolute;
  left: 16px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
}

/* ── Card ── */
.ci-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, box-shadow .15s;
}
.ci-card:hover { border-color: rgba(6,214,160,.3); }

.ci--reply .ci-card {
  background: var(--bg-page);
  border-color: var(--border-light);
}

/* ── Header ── */
.ci-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ci-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Avatar initiale */
.ci-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-avatar--user {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
}
.ci--reply .ci-avatar {
  width: 30px; height: 30px;
  font-size: 12px;
}

.ci-author-info {
  display: flex; flex-direction: column; gap: 2px;
}
.ci-name {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--text-dark);
}
.ci-time {
  font-size: 11px; color: var(--text-light);
  display: flex; align-items: center; gap: 4px;
}
.ci-time i { font-size: 10px; }

/* Badge "Réponse" */
.ci-reply-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(6,214,160,.1);
  border: 1px solid rgba(6,214,160,.25);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
}

/* ── Corps ── */
.ci-body p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}

/* ── Actions ── */
.ci-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--bg-gray);
}

.ci-action-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all .15s;
}
.ci-action-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(6,214,160,.05);
}
.ci-action-btn--liked {
  border-color: #F87171;
  color: #EF4444;
  background: #FFF1F1;
}
.ci-action-btn--liked i { color: #EF4444; }

.ci-action-btn--reply {
  border-color: transparent;
  color: var(--text-light);
}
.ci-action-btn--reply:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ── Formulaire de réponse ── */
.ci-reply-form {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.ci-reply-form-inner {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ci-reply-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

.ci-form { flex: 1; display: flex; flex-direction: column; gap: 8px; }

.ci-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}

.ci-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; color: var(--text-dark);
  background: var(--bg-page);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.ci-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6,214,160,.1);
  background: #fff;
}
.ci-textarea { resize: vertical; min-height: 80px; }

.ci-form-actions {
  display: flex; align-items: center;
  justify-content: flex-end; gap: 8px;
}

.ci-cancel {
  background: transparent; border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; color: var(--text-light);
  cursor: pointer; padding: 6px 10px;
  transition: color .15s;
}
.ci-cancel:hover { color: var(--text-dark); }

.ci-submit {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary); color: var(--secondary);
  border: none; border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(6,214,160,.3);
  transition: background .15s, transform .15s;
}
.ci-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ── Bloc réponses ── */
.ci-replies { margin-top: 4px; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .ci--reply { padding-left: 20px; }
  .ci-form-row { grid-template-columns: 1fr; }
  .ci-card { padding: 14px 16px; }
}


/* ── Replies toggle ─────────────────────── */
.ci-replies--collapsed { display: none; }
.ci-replies--open      { display: block; animation: ciSlide .22s ease; }

@keyframes ciSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bouton toggle */
.ci-action-btn--toggle {
  border-color: var(--border);
  color: var(--text-body);
  gap: 6px;
}
.ci-action-btn--toggle:hover,
.ci-action-btn--active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(6,214,160,.06);
}

.ci-toggle-chevron {
  font-size: 9px;
  transition: transform .2s;
  margin-left: 2px;
}


/* Breadcrumb version article (fond blanc, au-dessus du texte) */
.bd-bc--article {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
  font-size: 12px;
  padding: 12px 0 0;
  border: none;
  background: transparent;
}
.bd-bc--article .bd-bc-a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}
.bd-bc--article .bd-bc-a:hover { color: var(--primary); }
.bd-bc--article .bd-bc-sep { color: var(--border); font-size: 11px; }
.bd-bc--article .bd-bc-a:last-of-type { color: var(--text-dark); font-weight: 600; }
.badge-circle1 {
  position: absolute;
  left: 23px;
  top: -6px;
  right: 0;
  width: 1.6rem;
  border-radius: 50%;
  color: #fff;
  background: #ff5b5b;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.6rem;
  font-family: "Open Sans",sans-serif;
  text-align: center;
}
/*Navbar style */
/* ============================================
   21. NAVBAR SHENVO
   Adapted to pro & mobile preview designs
============================================ */

/* ─── TOPBAR ─────────────────────────────── */

.shn-topbar {
  background: #073B4C;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
}

.shn-topbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,214,160,.5), transparent);
}

.shn-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 40px;
  width: 100%;
}

.shn-topbar__msg {
  font-size: 11.5px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.shn-topbar__msg b { color: #06D6A0; }

.shn-topbar__dot {
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,.22);
  border-radius: 50%;
}

.shn-topbar__pill {
  border: 1px solid rgba(6,214,160,.45);
  color: #06D6A0;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s, color .2s;
  background: transparent;
  text-decoration: none;
}

.shn-topbar__pill:hover {
  background: #06D6A0;
  color: #073B4C;
}

.shn-topbar__txt {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  letter-spacing: .03em;
}

.shn-topbar__x {
  position: absolute;
  right: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.3);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color .15s, background .15s;
  border: none;
  background: none;
}

.shn-topbar__x:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}


/* ─── HEADER GLOBAL ──────────────────────── */

.shn-header {
  font-family: 'Outfit', sans-serif;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .2s;
}

.shn-header *, .shn-header *::before, .shn-header *::after { box-sizing: border-box; }
.shn-header a { text-decoration: none; color: inherit; }
.shn-header button { cursor: pointer; border: none; background: none; }

.shn-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ─── UTILITY BAR ────────────────────────── */

.shn-util {
  border-bottom: 1px solid #f0f2f4;
  background: #fff;
}

.shn-util__inner {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shn-util__notice {
  font-size: 10.5px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shn-util__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shn-util__link {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  transition: color .15s;
  position: relative;
}

.shn-util__link:hover { color: #073B4C; }

.shn-util__sep {
  width: 1px;
  height: 12px;
  background: #e8ecf0;
  flex-shrink: 0;
}

.shn-util__currency {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}

.shn-util__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shn-util__soc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1;
  transition: color .2s, transform .2s;
}

.shn-util__soc:hover {
  color: #06D6A0;
  transform: translateY(-1px);
}

/* Langue */
.shn-lang { position: relative; }

.shn-lang__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .02em;
  transition: background .15s;
}

.shn-lang__btn:hover { background: #f8fafc; }
.shn-lang__btn .fi { font-size: 12px; }

.shn-lang__drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #f0f2f4;
  border-top: 2px solid #06D6A0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 48px rgba(7,59,76,.12);
  min-width: 168px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s, transform .16s, visibility .16s;
  z-index: 700;
  overflow: hidden;
}

.shn-lang:hover .shn-lang__drop,
.shn-lang:focus-within .shn-lang__drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.shn-lang__drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 12.5px;
  color: #334155;
  font-family: 'Outfit', sans-serif;
  transition: background .1s, color .1s;
}

.shn-lang__drop a:hover {
  background: rgba(6,214,160,.06);
  color: #06D6A0;
}

.shn-lang__drop a .fi { font-size: 14px; }


/* ─── MAIN BAR ───────────────────────────── */

.shn-main { border-bottom: 1px solid #f0f2f4; background: #fff; }

.shn-main__inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* Gauche : burger + logo */
.shn-main__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 20px;
}

.shn-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 6px;
  transition: background .15s;
}

.shn-burger:hover { background: #f8fafc; }

.shn-burger span {
  display: block;
  background: #073B4C;
  border-radius: 2px;
  transition: width .2s;
}

.shn-burger span:nth-child(1) { width: 16px; height: 1.5px; }
.shn-burger span:nth-child(2) { width: 11px; height: 1.5px; }
.shn-burger span:nth-child(3) { width: 16px; height: 1.5px; }

.shn-logo {
  display: flex;
  align-items: center;
}

.shn-logo img {
  display: block;
  height: 44px;
  width: auto;
}

.shn-logo__txt {
  font-family: 'Space Grotesk', sans-serif;  /* ← ajoute */
  font-size: 24px;
  font-weight: 300;                           /* ← ajoute */
  color: #073B4C;
  letter-spacing: -0.5px;                    /* ← ajuste */
  font-style: normal;
}

.shn-logo__txt em {
  color: #06D6A0;
  font-style: italic;  /* ← change ici */
}

/* Search — centré, flex:1 */
.shn-search {
  flex: 1;
  max-width: 520px;
  height: 46px;
  background: #f8fafc;
  border: 1.5px solid #e8ecf0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 6px 0 16px;
  gap: 10px;
  margin: 0 20px;
  transition: border-color .22s, background .22s, box-shadow .22s;
}

.shn-search:focus-within {
  background: #fff;
  border-color: #06D6A0;
  box-shadow: 0 0 0 4px rgba(6,214,160,.1);
}

.shn-search__ico {
  color: #b0bec5;
  flex-shrink: 0;
  transition: color .2s;
}

.shn-search:focus-within .shn-search__ico { color: #06D6A0; }

.shn-search__inp {
  flex: 1;
  height: 100%;
  border: none !important;
  outline: none !important;
  background: none !important;
  box-shadow: none !important;
  font-size: 13.5px;
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  padding: 0 !important;
  min-width: 0;
}

.shn-search__inp::placeholder { color: #b0bec5; }

.shn-search__btn {
  width: 34px !important;
  height: 34px !important;
  background: #073B4C !important;
  border: none !important;
  border-radius: 9px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  transition: background .18s, transform .12s !important;
  padding: 0 !important;
}

.shn-search__btn:hover {
  background: #06D6A0 !important;
  transform: scale(1.06) !important;
}

/* Droite : compte + icônes */
.shn-main__right {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-left: 20px;
}

.shn-account {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 10px;
  transition: background .15s;
  cursor: pointer;
}

.shn-account:hover { background: #f8fafc; }

.shn-account__ico {
  font-size: 19px;
  color: #073B4C;
  line-height: 1;
  flex-shrink: 0;
}

.shn-account__txt {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.shn-account__txt small {
  font-size: 9.5px;
  color: #94a3b8;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
}

.shn-account__txt strong {
  font-size: 12.5px;
  font-weight: 700;
  color: #073B4C;
  display: block;
  white-space: nowrap;
}

.shn-icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #073B4C;
  transition: background .15s, color .15s, transform .15s;
}

.shn-icon-btn:hover {
  background: #f8fafc;
  color: #06D6A0;
  transform: translateY(-1px);
}

/* Badges — fond sombre + texte vert comme le preview */
.shn-badge,
.shn-icon-btn .badge-circle,
.shn-icon-btn .badge-circle1,
.shn-icon-btn .wishlist-count {
  position: absolute !important;
  top: 4px !important;
  right: 4px !important;
  min-width: 16px !important;
  height: 16px !important;
  padding: 0 3px !important;
  border-radius: 8px !important;
  background: #073B4C !important;
  color: #06D6A0 !important;
  font-size: 9.5px !important;
  font-weight: 800 !important;
  font-family: 'Outfit', sans-serif !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #fff !important;
  line-height: 1 !important;
  pointer-events: none !important;
}


/* ─── NAVIGATION DESKTOP ─────────────────── */

.shn-nav { background: #fff; border-bottom: 1px solid #f0f2f4; }
.shn-nav .shn-container { padding-left: 24px; padding-right: 24px; }

.shn-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 50px;
  gap: 2px;
}

.shn-nav__item { position: relative; height: 50px; display: flex; align-items: center; }

.shn-nav__lnk {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 50px;
  padding: 0 16px;
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  transition: color .18s;
  white-space: nowrap;
}

/* Soulignement animé */
.shn-nav__lnk::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #06D6A0;
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}

.shn-nav__item--on .shn-nav__lnk,
.shn-nav__lnk:hover { color: #073B4C; }

.shn-nav__item--on .shn-nav__lnk::after,
.shn-nav__lnk:hover::after { transform: scaleX(1); }

.shn-nav__badge {
  background: #06D6A0;
  color: #073B4C;
  font-size: 8.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: .04em;
  animation: shn-pulse 3s infinite;
}

@keyframes shn-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .6; }
}

.shn-nav__arr {
  color: #94a3b8;
  font-size: 10px;
  transition: transform .22s, color .18s;
}

.shn-nav__item--mega:hover .shn-nav__arr {
  transform: rotate(180deg);
  color: #06D6A0;
}


/* ─── MEGA-MENU ──────────────────────────── */

.shn-mega {
  position: absolute;
  top: calc(100% + 4px);
  left: -20px;
  background: #fff;
  border: 1px solid #f0f2f4;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(7,59,76,.13);
  min-width: 580px;
  padding: 18px;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .2s, transform .2s, visibility .2s;
}

/* Ligne gradient en haut du mega */
.shn-mega::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #06D6A0, transparent);
  border-radius: 2px;
}

.shn-nav__item--mega:hover .shn-mega,
.shn-nav__item--mega:focus-within .shn-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.shn-mega__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}

.shn-mega__card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 9px;
  cursor: pointer;
  color: #334155;
  transition: background .14s, transform .14s, color .14s;
}

.shn-mega__card:hover {
  background: #f8fafc;
  color: #06D6A0;
  transform: translateX(2px);
}

.shn-mega__img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  overflow: hidden;
  transition: background .14s;
}

.shn-mega__card:hover .shn-mega__img { background: rgba(6,214,160,.1); }

.shn-mega__img img { width: 36px; height: 36px; object-fit: cover; border-radius: 8px; }

.shn-mega__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.shn-mega__name {
  font-size: 12px;
  font-weight: 600;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shn-mega__count { font-size: 10.5px; color: #94a3b8; }

.shn-mega__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 14px;
  background: #f8fafc;
  border-radius: 9px;
  border: 1px solid #f0f2f4;
}

.shn-mega__foot-txt { font-size: 12px; color: #64748b; }
.shn-mega__foot-txt b { color: #073B4C; }

.shn-mega__cta {
  background: #073B4C;
  color: #06D6A0;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .18s, color .18s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.shn-mega__cta:hover {
  background: #06D6A0;
  color: white;
}


/* ─── MOBILE DRAWER ──────────────────────── */

.mobile-menu-wrapper.shn-drawer,
.mobile-menu-wrapper.shn-drawer * { box-sizing: border-box; }

.mobile-menu-wrapper.shn-drawer {
  background: #fff !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  overflow-y: auto !important;
}

/* En-tête */
.shn-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #f0f2f4;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 5;
}

.shn-drawer__brand {
  display: flex;
  align-items: center;
}

.shn-drawer__brand img { height: 34px; width: auto; }

.shn-drawer__brand-txt {
  font-size: 20px;
  font-weight: 800;
  color: #073B4C;
  letter-spacing: -1.2px;
}

.shn-drawer__brand-txt em { color: #06D6A0; font-style: normal; }

.mobile-menu-close.shn-drawer__close {
  width: 30px !important;
  height: 30px !important;
  border-radius: 8px !important;
  background: #f8fafc !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #334155 !important;
  font-size: 12px !important;
  text-indent: 0 !important;
  border: none !important;
  cursor: pointer !important;
  transition: background .15s !important;
}

.mobile-menu-close.shn-drawer__close:hover { background: #e2e8f0 !important; }

/* Recherche */
.shn-drawer__search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 14px;
  padding: 0 13px;
  height: 42px;
  background: #f8fafc;
  border: 1.5px solid #f0f2f4;
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}

.shn-drawer__search:focus-within {
  border-color: #06D6A0;
  box-shadow: 0 0 0 3px rgba(6,214,160,.1);
}

.shn-drawer__search svg { color: #94a3b8; flex-shrink: 0; }

.shn-drawer__search input {
  flex: 1;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  height: 100%;
}

.shn-drawer__search input::placeholder { color: #94a3b8; }

/* Menu items */
.mobile-menu-wrapper.shn-drawer .mobile-menu,
.shn-drawer__menu {
  background: #fff !important;
  padding: 6px 0 !important;
  border: none !important;
  list-style: none !important;
}

.mobile-menu-wrapper.shn-drawer .mobile-menu > li > a {
  background: transparent !important;
  color: #073B4C !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  padding: 13px 18px !important;
  border-bottom: 1px solid #f8fafc !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  transition: background .12s, color .12s, padding-left .15s !important;
}

.mobile-menu-wrapper.shn-drawer .mobile-menu > li > a:hover,
.mobile-menu-wrapper.shn-drawer .mobile-menu > li.active > a {
  background: rgba(6,214,160,.05) !important;
  color: #06D6A0 !important;
  padding-left: 24px !important;
}

.mobile-menu-wrapper.shn-drawer .mobile-menu > li > ul {
  background: #fafbfc !important;
  padding: 4px 0 !important;
  border-bottom: 1px solid #f0f2f4 !important;
  list-style: none !important;
}

.mobile-menu-wrapper.shn-drawer .mobile-menu > li > ul > li > a {
  display: block !important;
  padding: 10px 28px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  font-family: 'Outfit', sans-serif !important;
  color: #64748b !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  background: transparent !important;
  transition: color .12s, padding-left .15s !important;
}

.mobile-menu-wrapper.shn-drawer .mobile-menu > li > ul > li > a:hover {
  color: #06D6A0 !important;
  padding-left: 36px !important;
}

/* Badge sale dans le menu */
.shn-drawer__sale-badge {
  background: #06D6A0;
  color: #073B4C;
  font-size: 8.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: .04em;
  margin-left: 6px;
}

.shn-drawer__promo {
  color: #ef4444 !important;
  font-weight: 700 !important;
}

/* Chevron override */
.mobile-menu-wrapper.shn-drawer .mobile-menu > li > a::after {
  content: '›' !important;
  color: #94a3b8 !important;
  font-size: 14px !important;
  border: none !important;
  right: 18px !important;
  position: static !important;
  flex-shrink: 0 !important;
}

/* Pied du drawer */
.shn-drawer__foot {
  padding: 18px 18px 24px;
  background: #f8fafc;
  border-top: 1px solid #f0f2f4;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.shn-drawer__foot-lbl {
  font-size: 9.5px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 10px;
}

/* Langues */
.shn-drawer__lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.shn-drawer__lang {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: #475569;
  background: #fff;
  border: 1.5px solid #f0f2f4;
  text-decoration: none;
  transition: all .15s;
}

.shn-drawer__lang:hover,
.shn-drawer__lang.on {
  border-color: #06D6A0;
  color: #06D6A0;
  background: rgba(6,214,160,.05);
}

/* Réseaux sociaux */
.shn-drawer__soc-row { display: flex; gap: 8px; }

.shn-drawer__soc {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: opacity .15s, transform .18s;
}

.shn-drawer__soc:hover { opacity: .85; transform: translateY(-2px); }
.shn-drawer__soc--fb { background: #1877F2; }
.shn-drawer__soc--tk { background: #0f0f0f; }
.shn-drawer__soc--ig { background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }


/* ─── RESPONSIVE ─────────────────────────── */

@media (max-width: 1100px) {
  .shn-mega { min-width: 500px; }
  .shn-mega__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .shn-nav { display: none !important; }
  .shn-mega { display: none !important; }
  .shn-burger { display: flex; }
  .shn-main__inner { height: 62px; }
  .shn-search { display: none;}
}

@media (max-width: 768px) {
  .shn-util { display: none !important; }
  .shn-main__inner { height: 62px; }
  .shn-account__txt { display: none !important; }
  .shn-main__right { margin-left: 4px; }
  .shn-main__left { margin-right: 0; }
}

@media (max-width: 480px) {
  .shn-container { padding: 0 12px; }
  .shn-main__inner { height: 58px; gap: 4px; }
  .shn-logo img { height: 36px; }
  .shn-icon-btn { width: 38px; height: 38px; font-size: 17px; }
  .shn-search { height: 40px; margin: 0 6px; }
  .shn-account { padding: 5px 6px; }
}