/* ================================================
   Jewelry 86 - Premium E-Commerce CSS
   ================================================ */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --gold-primary: #D4AF37;
    --gold-light: #F4E5C2;
    --gold-dark: #B8941E;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-dark: #666666;
    --green-success: #10B981;
    --red-accent: #EF4444;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

.gold-text {
    color: var(--gold-primary);
    position: relative;
    display: inline-block;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-medium);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.logo i {
    font-size: 1.75rem;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--black);
    position: relative;
    padding: 0.25rem 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width var(--transition-medium);
}

.nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}


/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: var(--gold-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--gold-primary);
    font-size: 1.25rem;
}

.price-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.5rem;
    color: var(--gray-dark);
    text-decoration: line-through;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-heading);
}

.economy {
    background: var(--red-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.price-detail i {
    color: var(--gold-primary);
}

.cta-section {
    margin-bottom: 2rem;
}

.cta-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-gold);
    margin-bottom: 1rem;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.urgency {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red-accent);
    font-weight: 600;
}

.urgency i {
    animation: pulse 2s infinite;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--green-success);
    font-size: 1.125rem;
}

.hero-image {
    animation: fadeInRight 0.8s ease;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-medium);
}

.image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.image-badge i {
    color: var(--gold-primary);
    font-size: 1.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-primary);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* ===== Section Styles ===== */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-dark);
}

/* ===== Collection Section ===== */
.collection-section {
    background: var(--white);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.collection-card {
    background: var(--gray-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.collection-card h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.collection-card p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.collection-highlight {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.highlight-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.highlight-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-dark);
}

.check-list {
    list-style: none;
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.check-list i {
    color: var(--green-success);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.highlight-note {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold-primary);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.highlight-note i {
    color: var(--gold-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-dark);
    font-weight: 500;
}

/* ===== Hero Carousel ===== */
.hero-carousel {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-medium);
    color: var(--gold-primary);
    font-size: 1.25rem;
}

.carousel-btn:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 1.5rem;
}

.carousel-btn.next {
    right: 1.5rem;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-medium);
}

.carousel-dots .dot.active,
.carousel-dots .dot:hover {
    background: var(--gold-primary);
    transform: scale(1.3);
}

/* ===== Video Section ===== */
.video-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    background: var(--black);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-card video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition-medium);
    pointer-events: none;
}

.video-card:hover .video-overlay {
    opacity: 0;
}

.video-overlay i {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.9;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--gray-light);
    padding: var(--spacing-xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--white);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.lightbox-close:hover {
    background: var(--gold-primary);
    color: var(--white);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-medium);
    color: var(--gold-primary);
}

.lightbox-nav:hover {
    background: var(--gold-primary);
    color: var(--white);
}

.lightbox-nav.prev {
    left: -70px;
}

.lightbox-nav.next {
    right: -70px;
}

/* ===== Avantages Section ===== */
.avantages-section {
    background: var(--white);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.avantage-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.avantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.avantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.avantage-card h3 {
    margin-bottom: 1rem;
}

.avantage-card p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ===== Témoignages Section ===== */
.temoignages-section {
    background: var(--white);
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.temoignage-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition-medium);
}

.temoignage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
    font-size: 1.125rem;
}

.temoignage-text {
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: var(--black);
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
    border-radius: 30px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proof-item i {
    font-size: 2.5rem;
    color: var(--gold-primary);
}

.proof-item strong {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--gold-dark);
}

.proof-item span {
    font-size: 0.95rem;
    color: var(--gray-dark);
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--gray-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
}

.faq-question i {
    color: var(--gold-primary);
    font-size: 1.25rem;
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ===== CTA Final Section ===== */
.cta-final-section {
    background: linear-gradient(135deg, var(--black) 0%, #2A2A2A 100%);
    color: var(--white);
    text-align: center;
}

.cta-final-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-final-content > p {
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
}

.final-price-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    display: inline-block;
}

.final-price-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.final-old-price {
    font-size: 1.75rem;
    color: var(--gray-medium);
    text-decoration: line-through;
}

.final-current-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-heading);
}

.final-economy {
    background: var(--red-accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.final-guarantees {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-medium);
}

.guarantee-item i {
    color: var(--green-success);
    font-size: 1.25rem;
}

.countdown-timer {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold-primary);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timer-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-unit span:first-child {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.timer-label {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-top: 0.5rem;
}

.timer-separator {
    font-size: 2.5rem;
    color: var(--gold-primary);
    font-weight: 700;
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section p {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition-medium);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: var(--gray-medium);
    transition: var(--transition-fast);
}

.footer-section ul a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-medium);
}

.footer-contact i {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-medium);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.75rem;
    color: var(--gray-medium);
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--gray-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--gray-light);
    color: var(--black);
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-medium);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.modal-header i {
    color: var(--gold-primary);
}

.modal-header p {
    color: var(--gray-dark);
}

.modal-body {
    padding: 2.5rem;
}

.order-summary {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-price {
    font-weight: 600;
}

.summary-free {
    color: var(--green-success);
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: var(--gray-medium);
    margin: 1rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
}

.summary-total-price {
    color: var(--gold-primary);
    font-family: var(--font-heading);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--black);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

.form-group label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.form-group label a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.payment-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.payment-info i {
    color: var(--green-success);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .highlight-content {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
    
    .carousel-container {
        height: 450px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: 1rem;
    }
    
    .carousel-btn.next {
        right: 1rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .avantages-grid {
        grid-template-columns: 1fr;
    }
    
    .temoignages-grid {
        grid-template-columns: 1fr;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 2rem;
    }
    
    .final-guarantees {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        display: none;
    }
    
    .carousel-container {
        height: 350px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .carousel-btn.prev {
        left: 0.5rem;
    }
    
    .carousel-btn.next {
        right: 0.5rem;
    }
    
    .carousel-dots {
        bottom: 1rem;
    }
    
    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .video-card video {
        height: 250px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
    
    .lightbox-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .price-section {
        padding: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        border-radius: 20px;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .carousel-container {
        height: 280px;
    }
    
    .image-badge {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        top: 1rem;
        right: 1rem;
    }
    
    .video-card video {
        height: 200px;
    }
    
    .video-overlay i {
        font-size: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .lightbox-nav.prev,
    .lightbox-nav.next {
        left: 5px;
    }
    
    .lightbox-nav.next {
        left: auto;
        right: 5px;
    }
}

/* ===== Section Commander Premium ===== */
.order-section {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    padding: 80px 0;
}

.order-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Image Produit */
.order-product-image {
    position: sticky;
    top: 100px;
}

.product-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
    padding: 20px;
}

.product-image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.image-badge i {
    margin-right: 8px;
}

/* Détails Produit */
.order-product-details {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.order-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.product-rating .stars {
    display: flex;
    gap: 4px;
    color: #FFB800;
}

.product-rating .stars i {
    font-size: 1.1rem;
}

.rating-text {
    color: #666;
    font-size: 0.95rem;
}

/* Prix */
.order-price-box {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFEDD5 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid var(--gold-primary);
}

.price-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.old-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Cormorant Garamond', serif;
}

.economy-badge {
    background: #DC2626;
    color: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.price-info i {
    color: var(--gold-primary);
}

/* Formulaire de Commande */
.order-form {
    margin-bottom: 30px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.quantity-input-group {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 150px;
}

.quantity-btn {
    background: var(--gold-primary);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-medium);
    font-size: 1rem;
}

.quantity-btn.minus {
    border-radius: 8px 0 0 8px;
}

.quantity-btn.plus {
    border-radius: 0 8px 8px 0;
}

.quantity-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

.quantity-input {
    width: 70px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--gold-primary);
    border-left: none;
    border-right: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A1A1A !important;
    background: #FFFFFF !important;
}

/* Boutons d'Action */
.order-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.order-actions-extra {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-add-to-cart i {
    font-size: 1.2rem;
}

.btn-buy-now {
    background: var(--dark);
    color: var(--white);
    padding: 18px 30px;
    border: 2px solid var(--dark);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-buy-now:hover {
    background: transparent;
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-buy-now i {
    font-size: 1.2rem;
}

/* Garanties */
.order-guarantees {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 12px;
}

.order-guarantees .guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-guarantees .guarantee-item i {
    font-size: 1.8rem;
    color: var(--gold-primary);
    min-width: 30px;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
}

.guarantee-text strong {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.guarantee-text span {
    color: #666;
    font-size: 0.85rem;
}

/* Badges de Confiance */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: #FAFAFA;
    border-radius: 12px;
    margin-bottom: 20px;
}

.trust-badges .badge-img {
    width: 40px;
    height: auto;
    border-radius: 4px;
}

.trust-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.trust-badges .badge-item i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.stock-status.in-stock {
    background: #D1FAE5;
    color: #065F46;
}

.stock-status.out-of-stock {
    background: #FEE2E2;
    color: #991B1B;
}

.stock-status i {
    font-size: 1.2rem;
}

/* Section Urgence */
.urgency-section {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    padding: 25px 0;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--white);
}

.urgency-icon {
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.urgency-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.urgency-text strong {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.urgency-text span {
    font-size: 1rem;
    opacity: 0.9;
}

.countdown-timer-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.countdown-timer-compact .timer-unit {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.countdown-timer-compact .timer-unit span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
}

.countdown-timer-compact .timer-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.countdown-timer-compact .timer-separator {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.6;
}

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

/* Responsive */
@media (max-width: 968px) {
    .order-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-product-image {
        position: relative;
        top: 0;
    }
    
    .order-product-details {
        padding: 30px 20px;
    }
    
    .order-header h2 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .urgency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .urgency-text {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .order-section {
        padding: 60px 0;
    }
    
    .order-product-details {
        padding: 25px 15px;
    }
    
    .order-header h2 {
        font-size: 1.6rem;
    }
    
    .order-actions {
        gap: 12px;
    }
    
    .btn-add-to-cart,
    .btn-buy-now {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-timer-compact {
        padding: 10px 15px;
    }
    
    .countdown-timer-compact .timer-unit span:first-child {
        font-size: 1.5rem;
    }
}

