/* ===== VARIABLES ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== PAGE FORMULAIRE ===== */
.form-page {
    min-height: 100vh;
    padding: 2rem 1rem;
}

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

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo {
    height: 60px;
    margin-bottom: 1rem;
}

.form-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.form-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.product-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.form-section h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

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

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="number"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-800);
    font-size: 1rem;
    transition: all 0.2s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--gray-400);
}

small {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* File Input */
.file-input-wrapper {
    position: relative;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.file-preview {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    background: var(--gray-50);
    transition: all 0.2s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-preview:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.02);
}

.file-preview.has-image {
    border-style: solid;
    border-color: var(--success);
    padding: 0;
    overflow: hidden;
}

.file-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.file-preview span {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1.125rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-message {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.success-message h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.success-message > p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.link-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.link-box input {
    flex: 1;
    background: var(--gray-100);
    border-color: var(--gray-200);
    font-size: 0.875rem;
}

.btn-copy {
    padding: 0.875rem 1.25rem;
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-copy:hover {
    background: var(--gray-800);
}

.btn-view {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 700;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-new {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gray-100);
    color: var(--gray-600);
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.btn-new:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

/* ===== PAGE PRODUIT ===== */
.product-page {
    min-height: 100vh;
    background: var(--gray-50);
}

.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.loader {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Animation shake pour erreur de code */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

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

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.micro-section {
    padding: 4rem 0;
    animation: fadeInUp 0.5s ease-out;
}

.micro-section:nth-child(even) {
    animation-delay: 0.1s;
}

/* ===== PRODUCT MICROSITE (DEDICATED SITE FEEL) ===== */
.product-microsite {
    background: #ffffff;
    color: var(--gray-800);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.product-microsite .loading-screen {
    background: #ffffff;
}

/* ===== PROFESSIONAL HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    height: 52px;
}

.header-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1d1d1f;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.021em;
}

.brand svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.desktop-nav {
    display: none;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: #1d1d1f;
    opacity: 0.8;
    transition: opacity 0.15s;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary);
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1d1d1f;
    opacity: 0.8;
    margin-right: -8px;
}

@media (min-width: 768px) {
    .desktop-nav { display: flex; }
    .mobile-menu-toggle { display: none; }
}

/* ===== NEW HERO DESIGN - ULTRA MODERNE ===== */
.hero-new {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        align-items: center;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    order: 2;
}

@media (min-width: 1024px) {
    .hero-content {
        order: 1;
    }
}

.hero-seller {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.05;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 52px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 24px;
    max-width: 480px;
}

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 100px;
    color: #92400e;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    width: fit-content;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.price-new {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
}

.price-old {
    font-size: 20px;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #fee2e2;
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
    border-radius: 100px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
    }
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.4);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: #ffffff;
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.hero-image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        order: 2;
    }
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.stock-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: #dc2626;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
}

.hero-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.hero-thumb {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}

.hero-thumb:hover,
.hero-thumb.active {
    border-color: #2563eb;
}

.hero-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85%;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #2563eb;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-close:hover {
    background: var(--gray-100);
}

.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.mobile-menu-link {
    display: block;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-link:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.mobile-menu-cta {
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    background: #2563eb;
    color: #ffffff;
}

.micro-nav-cta {
    display: flex;
    justify-content: flex-end;
}

.micro-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
}

.micro-main {
    position: relative;
}

.micro-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: #ffffff;
}

.micro-hero-bg {
    display: none;
}

.micro-hero-inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.25rem;
    animation: fadeInUp 0.6s ease-out;
}

@media (min-width: 980px) {
    .micro-hero-inner {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
        gap: 3rem;
    }
}

.micro-seller {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.micro-seller-name {
    color: var(--primary);
    font-weight: 700;
}

.micro-title {
    font-size: 2.2rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0.75rem 0 0.5rem;
    font-weight: 900;
    color: var(--secondary);
}

@media (min-width: 640px) {
    .micro-title {
        font-size: 3.2rem;
    }
}

.micro-subtitle {
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 52ch;
}

.micro-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--secondary);
    font-weight: 700;
}

.micro-price-row {
    margin-top: 1.4rem;
}

.micro-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.micro-price-main {
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.micro-price-old {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
}

.micro-price-old.is-old {
    text-decoration: line-through;
    opacity: 0.85;
}

.micro-discount {
    font-size: 0.85rem;
    font-weight: 900;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.26);
}

.micro-note {
    margin-top: 0.35rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.micro-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

@media (min-width: 520px) {
    .micro-actions {
        grid-template-columns: 1fr 1fr;
    }
}

.micro-btn {
    border-radius: 18px;
    padding: 1.05rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.micro-btn-primary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(18, 140, 126, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.micro-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

.micro-btn-secondary {
    background: var(--gray-100);
    border-color: var(--gray-300);
    color: var(--gray-800);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.micro-btn-secondary:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.micro-btn:hover {
    transform: translateY(-2px);
}

.micro-btn-label {
    font-size: 1.05rem;
}

.micro-btn-sub {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.9;
}

.micro-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.micro-proof-item {
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-700);
}

.micro-media-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.micro-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.micro-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--secondary);
    font-weight: 900;
    font-size: 0.8rem;
}

.micro-thumbs {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
}

.product-microsite .gallery-thumb {
    background: transparent;
}

.micro-thumbs .gallery-thumb img {
    width: 100%;
    height: 62px;
    object-fit: cover;
    display: block;
}

.micro-section {
    padding: 4rem 0;
}

.micro-section-alt {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.micro-section-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.micro-h2 {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--secondary);
}

@media (min-width: 640px) {
    .micro-h2 {
        font-size: 2rem;
    }
}
 
 .micro-urgency {
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
     margin-top: 1rem;
     padding: 0.55rem 0.85rem;
     border-radius: 999px;
     background: rgba(245, 158, 11, 0.14);
     border: 1px solid rgba(245, 158, 11, 0.24);
     color: rgba(255, 255, 255, 0.92);
     font-weight: 700;
 }
 
 .micro-price-row {
     margin-top: 1.4rem;
 }
 
 .micro-price {
     display: flex;
     align-items: baseline;
     gap: 0.75rem;
     flex-wrap: wrap;
 }
 
 .micro-price-main {
     font-size: 2.1rem;
     font-weight: 900;
     letter-spacing: -0.03em;
 }
 
 .micro-price-old {
     font-size: 1.05rem;
     color: rgba(255, 255, 255, 0.6);
 }
 
 .micro-price-old.is-old {
     text-decoration: line-through;
     opacity: 0.85;
 }
 
 .micro-discount {
     font-size: 0.85rem;
     font-weight: 900;
     padding: 0.25rem 0.55rem;
     border-radius: 999px;
     background: rgba(239, 68, 68, 0.18);
     border: 1px solid rgba(239, 68, 68, 0.26);
 }
 
 .micro-note {
     margin-top: 0.35rem;
     color: rgba(255, 255, 255, 0.55);
     font-size: 0.9rem;
 }
 
 .micro-actions {
     display: grid;
     grid-template-columns: 1fr;
     gap: 0.75rem;
     margin-top: 1.25rem;
 }
 
 @media (min-width: 520px) {
     .micro-actions {
         grid-template-columns: 1fr 1fr;
     }
 }
 
 .micro-btn {
     border-radius: 18px;
     padding: 1.05rem 1rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 0.1rem;
     font-weight: 900;
     letter-spacing: -0.01em;
     transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
 }
 
 .micro-btn-primary {
     background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
     box-shadow: 0 16px 34px rgba(18, 140, 126, 0.25);
     color: var(--white);
 }
 
 .micro-btn-secondary {
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.16);
     color: rgba(255, 255, 255, 0.92);
 }
 
 .micro-btn:hover {
     transform: translateY(-2px);
 }
 
 .micro-btn-label {
     font-size: 1.05rem;
 }
 
 .micro-btn-sub {
     font-size: 0.8rem;
     font-weight: 700;
     opacity: 0.9;
 }
 
 .micro-proof {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
     margin-top: 1.1rem;
 }
 
 .micro-proof-item {
     padding: 0.5rem 0.7rem;
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.85rem;
     color: rgba(255, 255, 255, 0.8);
 }
 
 .micro-media-frame {
     position: relative;
     border-radius: 26px;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.12);
     background: rgba(255, 255, 255, 0.04);
     box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
 }
 
 .micro-hero-image {
     width: 100%;
     height: auto;
     aspect-ratio: 4 / 3;
     object-fit: cover;
 }
 
 .micro-badge {
     position: absolute;
     top: 1rem;
     left: 1rem;
     z-index: 2;
     padding: 0.45rem 0.7rem;
     border-radius: 999px;
     background: rgba(245, 158, 11, 0.22);
     border: 1px solid rgba(245, 158, 11, 0.3);
     color: rgba(255, 255, 255, 0.95);
     font-weight: 900;
     font-size: 0.8rem;
 }
 
 .micro-thumbs {
     margin-top: 0.8rem;
     display: grid;
     grid-template-columns: repeat(5, minmax(0, 1fr));
     gap: 0.5rem;
 }
 
 .product-microsite .gallery-thumb {
     background: transparent;
 }
 
 .micro-thumbs .gallery-thumb img {
     height: 62px;
 }
 
 .micro-section {
     padding: 3.2rem 0;
 }
 
 .micro-section-alt {
     background: rgba(255, 255, 255, 0.03);
     border-top: 1px solid rgba(255, 255, 255, 0.06);
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 }
 
 .micro-section-inner {
     max-width: 980px;
     margin: 0 auto;
     padding: 0 1.25rem;
 }
 
 .micro-h2 {
     font-size: 1.55rem;
     font-weight: 900;
     letter-spacing: -0.03em;
     margin-bottom: 1rem;
 }
 
 @media (min-width: 640px) {
     .micro-h2 {
         font-size: 2rem;
     }
 }
 
 .micro-card {
     border-radius: 16px;
     padding: 1.5rem;
     background: var(--white);
     border: 1px solid var(--gray-200);
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
 }
 
 .micro-body {
     color: var(--gray-700);
     font-size: 1.05rem;
     line-height: 1.8;
 }
 
 .micro-benefits-grid {
     list-style: none;
     display: grid;
     grid-template-columns: 1fr;
     gap: 0.75rem;
 }
 
 @media (min-width: 760px) {
     .micro-benefits-grid {
         grid-template-columns: 1fr 1fr;
     }
 }
 
 .micro-benefit {
     padding: 1rem 1rem;
     border-radius: 18px;
     background: rgba(37, 99, 235, 0.08);
     border: 1px solid rgba(37, 99, 235, 0.15);
     color: var(--gray-800);
     font-weight: 700;
 }

 /* Benefits Section */
 .benefits-section {
     padding: 3rem 0;
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
 }

 .benefits-inner {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
     text-align: center;
 }

 .benefits-inner h2 {
     font-size: 2rem;
     font-weight: 800;
     color: var(--gray-900);
     margin-bottom: 2rem;
 }

 .benefits-list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 1.5rem;
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .benefits-list .micro-benefit {
     text-align: left;
     padding: 1.5rem;
     font-size: 1rem;
     line-height: 1.6;
     border-radius: 16px;
     background: white;
     border: 2px solid rgba(37, 99, 235, 0.1);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
 }

 .benefits-list .micro-benefit:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     border-color: rgba(37, 99, 235, 0.2);
 }

 @media (max-width: 768px) {
     .benefits-section {
         padding: 2rem 0;
     }
     
     .benefits-inner {
         padding: 0 1rem;
     }
     
     .benefits-inner h2 {
         font-size: 1.5rem;
         margin-bottom: 1.5rem;
     }
     
     .benefits-list {
         grid-template-columns: 1fr;
         gap: 1rem;
     }
     
     .benefits-list .micro-benefit {
         padding: 1rem;
         font-size: 0.95rem;
     }
 }

 .micro-gallery {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0.75rem;
 }
 
 @media (min-width: 900px) {
     .micro-gallery {
         grid-template-columns: repeat(3, 1fr);
     }
 }
 
 .micro-gallery-item {
     border: 0;
     padding: 0;
     background: transparent;
     border-radius: 18px;
     overflow: hidden;
     border: 1px solid var(--gray-200);
 }
 
 .micro-gallery-item img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     display: block;
     transition: transform 0.2s ease;
 }
 
 .micro-gallery-item:hover img {
     transform: scale(1.03);
 }
 
 .micro-faq {
     display: grid;
     gap: 0.75rem;
 }
 
 .micro-faq-item {
     border-radius: 18px;
     padding: 1rem 1rem;
     background: var(--white);
     border: 1px solid var(--gray-200);
 }
 
 .micro-faq-item summary {
     cursor: pointer;
     font-weight: 900;
     color: var(--secondary);
 }
 
 .micro-faq-item p {
     margin-top: 0.75rem;
     color: var(--gray-600);
 }
 
 .micro-footer {
     border-top: 1px solid var(--gray-200);
     padding: 1.25rem 0 5rem;
     background: var(--gray-50);
 }
 
 .micro-footer-inner {
     max-width: 1180px;
     margin: 0 auto;
     padding: 0 1.25rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
     color: var(--gray-600);
 }
 
 .micro-footer-link {
     color: var(--gray-700);
     font-weight: 800;
 }
 
 .micro-bottom-bar {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 120;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(14px);
     border-top: 1px solid var(--gray-200);
     box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
 }
 
 .micro-bottom-inner {
     max-width: 1180px;
     margin: 0 auto;
     padding: 0.85rem 1.25rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
 }
 
 .micro-bottom-title {
     font-weight: 900;
     letter-spacing: -0.03em;
     color: var(--secondary);
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     max-width: 46vw;
 }
 
 .micro-bottom-actions {
     display: flex;
     gap: 0.6rem;
 }
 
 .micro-bottom-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 0.75rem 0.9rem;
     border-radius: 14px;
     font-weight: 900;
     font-size: 0.9rem;
     border: 1px solid var(--gray-300);
 }
 
 .micro-bottom-primary {
     background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
     border-color: transparent;
     color: var(--white);
 }
 
 .micro-bottom-secondary {
     background: var(--gray-100);
     color: var(--gray-700);
 }
 
 @media (min-width: 860px) {
     .micro-bottom-bar {
         display: none;
     }
     .micro-footer {
         padding-bottom: 2rem;
     }
 }


.loader p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.product-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.product-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 32px;
}

.brand-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

/* Main */
.product-main {
    flex: 1;
    padding: 2rem 1.5rem;
}

.product-showcase {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .product-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

/* Image Container */
.image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.badge {
    position: absolute;
    z-index: 10;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.stock-badge {
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--secondary);
}

.discount-badge {
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
    color: var(--white);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.seller-label {
    color: var(--gray-500);
}

.seller-name {
    color: var(--primary);
    font-weight: 600;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .product-title {
        font-size: 2.25rem;
    }
}

/* Price Section */
.price-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-800) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: var(--white);
}

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

.current-price {
    font-size: 2rem;
    font-weight: 800;
}

.old-price {
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: line-through;
    color: var(--gray-400);
}

.promo-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
}

.price-note {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    animation: pulse-urgency 2s ease-in-out infinite;
}

@keyframes pulse-urgency {
    0%, 100% { box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(251, 191, 36, 0.5); }
}

.urgency-icon {
    font-size: 1.25rem;
}

/* Description */
.description-section h3,
.features-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

/* Features */
.features-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-100);
}

.cta-text {
    text-align: center;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.cta-buttons {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .cta-buttons {
        grid-template-columns: 1fr 1fr;
    }
}

.btn-whatsapp,
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-call {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-whatsapp .icon,
.btn-call .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-whatsapp .btn-text,
.btn-call .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-whatsapp .label,
.btn-call .label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-whatsapp .app,
.btn-call .app {
    font-size: 1.125rem;
    font-weight: 700;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

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

.badge-icon {
    font-size: 1.25rem;
}

/* Footer */
.product-footer {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem;
    text-align: center;
}

.product-footer p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.micro-footer-link {
    color: var(--gray-600);
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.micro-footer-link:hover {
    color: var(--primary);
}

/* Error Container */
.error-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.error-container h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.error-container p {
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .form-page {
        padding: 1rem;
    }
    
    .product-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-header h1 {
        font-size: 1.5rem;
    }
    
    .success-message {
        padding: 2rem 1.5rem;
    }
    
    .link-box {
        flex-direction: column;
    }
    
    .product-main {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 1rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .badge-item {
        font-size: 0.75rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-container {
    animation: fadeIn 0.5s ease-out;
}

.btn-whatsapp:active,
.btn-call:active {
    transform: scale(0.98);
}

/* ===== PREMIUM PRODUCT PAGE OVERRIDES ===== */
.product-page {
    background: radial-gradient(1200px 600px at 10% 0%, rgba(37, 99, 235, 0.08), transparent 60%),
        radial-gradient(1000px 600px at 90% 20%, rgba(6, 182, 212, 0.07), transparent 55%),
        var(--gray-50);
}

.product-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-chip {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(6, 182, 212, 0.12) 100%);
    color: var(--secondary);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.product-main {
    padding: 2.25rem 1.5rem;
}

.product-hero {
    max-width: 1120px;
    margin: 0 auto;
}

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

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3rem;
        align-items: start;
    }
}

.hero-gallery .image-container {
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.12);
}

.product-image {
    aspect-ratio: 4 / 3;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.gallery-thumb {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 64px;
    object-fit: cover;
}

.gallery-thumb.is-active {
    border-color: var(--primary);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-title {
    font-size: 2rem;
    letter-spacing: -0.03em;
}

@media (min-width: 640px) {
    .product-title {
        font-size: 2.5rem;
    }
}

.purchase-card {
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
    position: sticky;
    top: 88px;
}

.purchase-card .price-section {
    background: linear-gradient(135deg, #0b1220 0%, #0f172a 45%, #111827 100%);
}

.purchase-card .cta-section {
    border: none;
    box-shadow: none;
    padding: 1rem 0 0 0;
}

.purchase-card .cta-text {
    margin-bottom: 0.75rem;
}

.product-sections {
    max-width: 1120px;
    margin: 2.5rem auto 0;
}

.sections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .sections-grid {
        grid-template-columns: 1.3fr 0.7fr;
        gap: 2rem;
        align-items: start;
    }
}

.section-block {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
}

.section-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.product-description {
    color: var(--gray-700);
    font-size: 1.02rem;
}

.features-list {
    gap: 0.6rem;
}

.features-list li {
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 0.75rem 0.9rem;
    border-radius: 14px;
}

.sections-right {
    position: sticky;
    top: 88px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
}

.info-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.info-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
}

.info-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.info-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.9rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: var(--white);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.info-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.08);
}

@media (max-width: 480px) {
    .gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .info-actions {
        grid-template-columns: 1fr;
    }

    .purchase-card {
        position: static;
    }

    .sections-right {
        position: static;
    }
}

/* ===== PAGE IA CREATOR ===== */
.ai-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--white);
}

.ai-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

/* AI Header */
.ai-header {
    text-align: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.logo-small {
    height: 40px;
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: var(--radius-sm);
    -webkit-text-fill-color: white;
    margin-left: 0.5rem;
}

.ai-subtitle {
    color: var(--gray-400);
    font-size: 1rem;
}

/* Chat Container */
.chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1rem 0;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
}

/* Messages */
.message {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
    animation: fadeIn 0.3s ease-out;
}

.ai-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.ai-message .message-avatar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.user-message .message-avatar {
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.ai-message .message-content {
    border-bottom-left-radius: 0.25rem;
}

.user-message .message-content {
    background: var(--primary);
    border-color: var(--primary);
    border-bottom-right-radius: 0.25rem;
}

.message-content p {
    margin-bottom: 0.75rem;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content .mt-2 {
    margin-top: 1rem;
}

.ai-list {
    list-style: none;
    margin: 0.75rem 0;
}

.ai-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-list li:last-child {
    border-bottom: none;
}

/* Typing Indicator */
.typing .message-content {
    padding: 1rem 1.5rem;
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

/* Chat Input Area */
.chat-input-area {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

/* Image Preview */
.image-preview-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.image-previews {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    overflow-x: auto;
}

.preview-item {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-number {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-clear-images {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-clear-images:hover {
    background: var(--danger);
    color: var(--white);
}

/* Input Form */
.ai-input-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    transition: all 0.2s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.btn-upload {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-upload:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-upload svg {
    width: 20px;
    height: 20px;
}

.chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    padding: 0.5rem;
    resize: none;
    min-height: 24px;
    max-height: 120px;
    font-family: inherit;
}

.chat-input:focus {
    outline: none;
}

.chat-input::placeholder {
    color: var(--gray-500);
}

.btn-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-send:hover:not(:disabled) {
    background: var(--primary-light);
    transform: scale(1.05);
}

.btn-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-send svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.input-hint {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.75rem;
}

/* Processing Overlay */
.processing-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.processing-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.processing-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processing-content p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

/* AI Animation */
.ai-animation {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
}

.orbit {
    width: 100%;
    height: 100%;
    position: relative;
    animation: rotate 10s linear infinite;
}

.planet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.satellite {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-light);
}

.s1 {
    width: 12px;
    height: 12px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s ease-in-out infinite;
}

.s2 {
    width: 8px;
    height: 8px;
    bottom: 20px;
    right: 20px;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.s3 {
    width: 6px;
    height: 6px;
    bottom: 30px;
    left: 30px;
    animation: pulse 2s ease-in-out infinite 1s;
}

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

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

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    width: 0%;
    transition: width 0.3s ease;
}

/* Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
    padding: 1rem;
}

.success-content {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.5s ease-out;
}

.success-animation {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

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

.success-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-message-text {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.link-showcase {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.link-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: var(--gray-400);
}

.link-domain {
    color: var(--success);
    font-weight: 600;
}

.link-path {
    color: var(--gray-500);
}

.link-showcase input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 0.75rem;
    color: var(--white);
    font-size: 0.875rem;
    text-align: center;
    font-family: monospace;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-view-ai,
.btn-copy-ai {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-view-ai {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

.btn-view-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-copy-ai {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-copy-ai:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-view-ai svg,
.btn-copy-ai svg {
    width: 18px;
    height: 18px;
}

.btn-create-another {
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.btn-create-another:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

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

/* ===== RESPONSIVE AI PAGE ===== */
@media (max-width: 640px) {
    .ai-container {
        padding: 0;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    /* Messages ultra larges sur mobile - avatar en haut */
    .message {
        max-width: 100%;
        width: 100%;
        gap: 0.25rem;
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 0.75rem;
        padding: 0 4px;
    }
    
    .user-message {
        align-items: flex-end !important;
    }
    
    .message-avatar {
        width: 28px;
        height: 28px;
        margin-bottom: 0.25rem;
    }
    
    .message-content {
        width: 100%;
        max-width: none;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .ai-message .message-content {
        padding: 0.875rem 1rem;
        border-bottom-left-radius: 0.25rem;
    }
    
    .user-message .message-content {
        border-bottom-right-radius: 0.25rem;
    }
    
    .chat-messages {
        padding: 10px 2px;
    }
    
    .chat-input-area {
        padding: 0.75rem 0.5rem;
    }
    
    .input-wrapper {
        padding: 0.375rem;
    }
    
    .success-content {
        padding: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

/* ===== NEW SECTIONS STYLES ===== */

/* Specifications Section */
.micro-specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .micro-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .micro-specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.micro-spec-item {
    padding: 1.25rem;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.micro-spec-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.micro-spec-value {
    font-size: 1.05rem;
    color: var(--gray-800);
    font-weight: 700;
}

/* Reviews Section */
.micro-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .micro-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .micro-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.micro-review-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.micro-review-stars {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.micro-review-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.micro-review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
}

.micro-review-name {
    font-weight: 800;
    color: var(--secondary);
}

.micro-review-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* About Section - Stats */
.micro-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

@media (min-width: 640px) {
    .micro-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.micro-stat-item {
    text-align: center;
    padding: 1rem;
}

.micro-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.micro-stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Shipping Section */
.micro-shipping-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .micro-shipping-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .micro-shipping-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.micro-shipping-card {
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e8e8ed;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.micro-shipping-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.micro-shipping-icon {
    font-size: 2.5rem;
}

.micro-shipping-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
}

.micro-shipping-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Returns Section */
.micro-returns-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .micro-returns-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.micro-returns-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: none;
}

.micro-returns-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
}

.micro-returns-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Payment Section */
.micro-payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .micro-payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .micro-payment-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.micro-payment-card {
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e8e8ed;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.micro-payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.micro-payment-icon {
    font-size: 2.5rem;
}

.micro-payment-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
}

.micro-payment-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Contact Section */
.micro-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .micro-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .micro-contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.micro-contact-card {
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e8e8ed;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.micro-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.micro-contact-icon {
    font-size: 2.5rem;
}

.micro-contact-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
}

.micro-contact-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.micro-contact-link {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.micro-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.3);
}

/* Trust Section */
.micro-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .micro-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .micro-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.micro-trust-item {
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.micro-trust-icon {
    font-size: 1.25rem;
}

.micro-trust-text {
    font-size: 0.95rem;
    color: var(--gray-800);
    font-weight: 700;
}

/* Newsletter Section */
.micro-newsletter-card {
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.micro-newsletter-text {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.micro-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .micro-newsletter-form {
        flex-direction: row;
    }
}

.micro-newsletter-input {
    flex: 1;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-800);
    font-size: 0.95rem;
}

.micro-newsletter-input::placeholder {
    color: var(--gray-400);
}

.micro-newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.micro-newsletter-btn {
    padding: 0.85rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.micro-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Footer Expanded */
.micro-footer {
    border-top: 1px solid var(--gray-200);
    padding: 3rem 0 2rem;
    background: var(--gray-50);
}

.micro-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .micro-footer-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

.micro-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.micro-footer-title {
    font-size: 1rem;
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.micro-footer-text {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

.micro-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.micro-footer-link {
    color: var(--gray-600);
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.micro-footer-link:hover {
    color: var(--primary);
}

.micro-footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.micro-social-link {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease;
}

.micro-social-link:hover {
    background: var(--gray-200);
    color: var(--primary);
}

.micro-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.micro-footer-contact-item {
    color: var(--gray-600);
    font-size: 0.85rem;
}

.micro-footer-bottom {
    padding: 1.5rem 0 5rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 2rem;
}

@media (min-width: 860px) {
    .micro-footer-bottom {
        padding-bottom: 1.5rem;
    }
}

.micro-footer-copyright {
    color: var(--gray-500);
    font-size: 0.85rem;
}

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

@media (max-width: 639px) {
    .micro-header {
        height: 56px;
    }
    
    .micro-header-inner {
        padding: 0 16px;
    }
    
    .micro-brand-name {
        font-size: 16px;
    }
    
    .micro-logo {
        height: 20px;
    }
    
    .micro-menu-btn {
        width: 44px;
        height: 44px;
    }
    
    .mobile-menu-content {
        width: 100%;
        max-width: 100%;
    }
    
    .micro-hero {
        padding: 24px 0 16px;
    }
    
    .micro-hero-inner {
        padding: 0 16px;
    }
    
    .micro-title {
        font-size: 28px;
        line-height: 1.1;
        margin-top: 8px;
        font-weight: 800;
    }
    
    .micro-subtitle {
        font-size: 16px;
        margin-top: 12px;
        line-height: 1.5;
    }
    
    .micro-urgency {
        padding: 8px 12px;
        font-size: 14px;
        margin-top: 16px;
        border-radius: 8px;
    }
    
    .micro-price-main {
        font-size: 28px;
        font-weight: 800;
    }
    
    .micro-actions {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }
    
    .micro-btn {
        padding: 16px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 12px;
    }
    
    .micro-media-frame {
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        margin-top: 24px;
        overflow: hidden;
    }
    
    .micro-hero-image {
        border-radius: 12px;
    }
    
    .micro-proof {
        gap: 8px;
        margin-top: 16px;
        flex-wrap: wrap;
    }
    
    .micro-proof-item {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 8px;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
    }
    
    .micro-section-inner {
        padding: 0 16px;
    }
    
    .micro-section {
        padding: 32px 0;
    }
    
    .micro-h2 {
        font-size: 24px;
        margin-bottom: 16px;
        font-weight: 800;
    }
    
    .micro-card {
        border-radius: 12px;
        padding: 20px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }
    
    .micro-spec-item {
        padding: 16px;
        border-radius: 12px;
    }
    
    .micro-spec-label {
        font-size: 12px;
    }
    
    .micro-spec-value {
        font-size: 16px;
    }
    
    .micro-review-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .micro-review-text {
        font-size: 15px;
    }
    
    .micro-shipping-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .micro-shipping-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .micro-shipping-title {
        font-size: 16px;
    }
    
    .micro-shipping-text {
        font-size: 14px;
    }
    
    .micro-returns-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .micro-returns-title {
        font-size: 16px;
    }
    
    .micro-returns-text {
        font-size: 14px;
    }
    
    .micro-payment-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .micro-payment-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .micro-payment-title {
        font-size: 16px;
    }
    
    .micro-payment-text {
        font-size: 14px;
    }
    
    .micro-contact-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .micro-contact-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .micro-contact-title {
        font-size: 16px;
    }
    
    .micro-contact-text {
        font-size: 14px;
    }
    
    .micro-contact-link {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .micro-trust-item {
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 15px;
    }
    
    .micro-trust-item svg {
        width: 20px;
        height: 20px;
    }
    
    .micro-faq-item {
        padding: 16px;
        border-radius: 12px;
    }
    
    .micro-faq-item summary {
        font-size: 16px;
    }
    
    .micro-faq-item p {
        font-size: 15px;
    }
    
    .micro-benefit {
        padding: 16px;
        border-radius: 12px;
        font-size: 15px;
    }
    
    .micro-gallery-item {
        border-radius: 12px;
    }
    
    .micro-gallery-item img {
        height: 220px;
    }
    
    .micro-specs-grid,
    .micro-shipping-grid,
    .micro-payment-grid,
    .micro-contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        border: none;
    }
    
    .micro-specs-grid > *,
    .micro-shipping-grid > *,
    .micro-payment-grid > *,
    .micro-contact-grid > * {
        border-radius: 12px;
    }
    
    .micro-reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        border: none;
    }
    
    .micro-returns-content {
        grid-template-columns: 1fr;
        gap: 12px;
        border: none;
    }
    
    .micro-trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        border: none;
    }
    
    .micro-footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .micro-footer {
        padding: 32px 0 80px;
    }
    
    .micro-newsletter-card {
        padding: 24px;
        border-radius: 12px;
    }
    
    .micro-newsletter-form {
        flex-direction: column;
    }
    
    .micro-newsletter-input {
        padding: 16px;
        font-size: 16px;
        border-radius: 12px;
    }
    
    .micro-newsletter-btn {
        padding: 16px;
        font-size: 16px;
        border-radius: 12px;
    }
}

/* ===== SOUNDCO THEME - MODERN E-COMMERCE ===== */
.boost-theme {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
}

/* Top Banner */
.top-banner {
    background: #2563eb;
    color: #ffffff;
    padding: 10px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

.top-banner-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-banner-content svg {
    flex-shrink: 0;
}

.banner-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.banner-cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Header */
.boost-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #2563eb;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #2563eb;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.boost-logo {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.boost-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.5px;
}

/* Market Page Styles */
.market-page {
    background: #ffffff;
    min-height: 100vh;
}

.market-hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.market-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.market-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.market-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-icon-wrapper {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    outline: none;
    transition: all 0.3s;
    text-indent: 36px;
}

.search-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.products-section {
    padding: 40px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 20px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.product-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.product-card-single-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel-images img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
    left: 8px;
}

.carousel-btn.next {
    right: 8px;
}

.product-card-orders {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(37, 99, 235, 0.9);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(10px);
}

.product-card-info {
    padding: 16px;
}

.product-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-card-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-price {
    font-size: 18px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 12px;
}

.product-card-reactions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.reaction-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.reaction-btn.like-btn:hover {
    background: #dcfce7;
    border-color: #86efac;
    color: #166534;
}

.reaction-btn.dislike-btn:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #991b1b;
}

.reaction-count {
    font-weight: 600;
}

.market-faq-section {
    padding: 60px 20px;
    background: #f8fafc;
}

.market-faq-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.market-faq-section .section-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
}

.market-faq-section .faq-container {
    padding: 0 20px;
}

@media (max-width: 768px) {
    .market-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .market-hero {
        padding: 40px 20px;
    }

    .market-faq-section {
        padding: 40px 20px;
    }

    .market-btn {
        display: none;
    }
}

.header-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.header-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #2563eb;
}

/* Market Button Premium */
.market-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: #2563eb;
    color: #ffffff;
    border: 1.5px solid #2563eb;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.market-btn:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.market-btn svg {
    transition: transform 0.3s;
}

.market-btn:hover svg {
    transform: scale(1.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    position: relative;
    border-radius: 8px;
    transition: background 0.2s;
}

.header-icon-btn:hover {
    background: #f5f5f5;
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: #1a2e1a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.boost-hero {
    padding: 40px 24px 60px;
    background: #ffffff;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 80px 1fr 1fr;
        gap: 48px;
    }
}

/* Product Thumbs */
.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumb-btn {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    background: #ffffff;
    cursor: pointer;
    padding: 4px;
    transition: all 0.2s;
    overflow: hidden;
}

.thumb-btn:hover,
.thumb-btn.active {
    border-color: #1a2e1a;
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Main Product Image */
.product-image-main {
    position: relative;
}

@media (min-width: 1024px) {
    .product-image-main {
        order: 2;
    }
}

.image-frame {
    position: relative;
    background: #f5f0eb;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.badge-new {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d4f4d4;
    color: #1a5a1a;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Info */
.product-info {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .product-info {
        grid-column: 3;
        order: 3;
    }
}

.badge-nouveaute {
    display: inline-block;
    background: #d4f4d4;
    color: #1a5a1a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.product-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0px;
    line-height: 1.1;
    padding-bottom: 0px;
}

@media (min-width: 640px) {
    .product-title {
        font-size: 40px;
    }
}

.product-subtitle {
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

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

.stars {
    display: flex;
    gap: 2px;
}

.rating-count {
    font-size: 14px;
    color: #6a6a6a;
}

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

.price-current {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-original {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-original.is-old {
    font-size: 20px;
    color: #9a9a9a;
    text-decoration: line-through;
}

.price-discount {
    background: #fee2e2;
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #4a4a4a;
    border-bottom: 1px solid #f0f0f0;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features svg {
    flex-shrink: 0;
    color: #1a2e1a;
}

/* Color Selector */
.product-colors {
    margin-bottom: 24px;
}

.color-label {
    display: block;
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 12px;
}

.color-label strong {
    color: #1a1a1a;
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: #1a2e1a;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1a2e1a;
}

.color-btn .check {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .product-actions {
        flex-direction: row;
    }
}

.btn-add-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #1a2e1a;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-cart:hover {
    background: #2a4e2a;
    transform: translateY(-2px);
}

.btn-buy-now {
    flex: 1;
    padding: 16px 24px;
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-buy-now:hover {
    border-color: #1a1a1a;
    background: #f9f9f9;
}

/* Urgency Banner */
.urgency-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 100px;
    color: #92400e;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Trust Section */
.trust-section {
    padding: 32px 24px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    justify-items: center;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #4a4a4a;
}

.trust-badge-item svg {
    flex-shrink: 0;
    color: #2563eb;
}

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

.trust-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.trust-text span {
    font-size: 13px;
    color: #6a6a6a;
}

/* Description Section */
.description-section {
    padding: 60px 24px;
    background: #ffffff;
}

.description-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .description-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.description-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.description-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.description-image {
    border-radius: 20px;
    overflow: hidden;
}

.description-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}

/* FAQ Section */
.faq-section {
    padding: 60px 24px;
    background: #fafafa;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-inner h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 32px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: #2563eb;
}

.faq-item[open] summary::after {
    content: '−';
    color: #2563eb;
}

.faq-item p {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #6a6a6a;
}

/* Footer */
.boost-footer {
    padding: 60px 24px 24px;
    background: #1a1a1a;
    color: #ffffff;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr;
        align-items: start;
    }
}

.footer-brand span {
    font-size: 24px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: #9a9a9a;
    max-width: 300px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 14px;
    color: #9a9a9a;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #2563eb;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-assistance-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-assistance-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .footer-assistance-btn {
        padding: 6px 12px;
        font-size: 12px;
        gap: 4px;
        width: auto;
        max-width: 150px;
    }
}

.footer-hours {
    font-size: 13px;
    color: #9a9a9a;
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-dev {
    font-size: 12px;
}

.footer-dev a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.footer-dev a:hover {
    text-decoration: underline;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 12px 16px;
    z-index: 1000;
    display: block;
}

@media (min-width: 1024px) {
    .mobile-bottom-bar {
        display: none;
    }
}

.mobile-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.mobile-bottom-info span {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.mobile-bottom-actions {
    display: flex;
    gap: 8px;
}

.mobile-btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #1a2e1a;
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
}

.mobile-btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #1a2e1a;
    color: #ffffff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* Header Logo */
.header-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Header avec menu à droite */
.boost-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.boost-header .mobile-menu-btn {
    display: none;
    margin-left: auto;
}

@media (max-width: 768px) {
    .boost-header .header-inner {
        justify-content: space-between;
    }
    
    .boost-header .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        color: #2563eb;
        order: 2;
    }
    
    .boost-header .header-nav {
        display: none;
    }
    
    .market-btn {
        display: inline-flex !important;
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
        order: 3;
    }
    
    .market-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .boost-logo {
        order: 1;
    }
}

/* Thumbnails */
.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: center;
}

/* Badges sur l'image produit */
.image-frame {
    position: relative;
}

.promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc2626;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.stock-badge-image {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(37, 99, 235, 0.95);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(10px);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Hero Grid Layout */
.boost-hero .hero-grid {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .boost-hero .hero-grid {
        grid-template-columns: 70px 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .boost-hero .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-thumbs {
        order: 2;
    }
    
    .product-image-main {
        order: 1;
    }
    
    .product-info {
        order: 3;
    }
}

.thumb-btn {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
}

.thumb-btn:hover {
    border-color: #e5e5e5;
}

.thumb-btn.active {
    border-color: #1a2e1a;
    box-shadow: 0 0 0 2px rgba(26, 46, 26, 0.1);
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .product-thumbs {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .thumb-btn {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
}

/* Product Info Simplifié */
.product-price-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

.price-main {
    font-size: 36px;
    font-weight: 800;
    color: #2563eb;
}

.price-sale {
    font-size: 36px;
    font-weight: 700;
    color: #dc2626;
}

.price-main.is-old {
    font-size: 24px;
    color: #9a9a9a;
    text-decoration: line-through;
}

.price-badge-red {
    background: #dc2626;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #16a34a;
    font-weight: 500;
    margin-bottom: 20px;
}

.stock-dot {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
}

.stock-status.low-stock {
    color: #dc2626;
}

.stock-status.low-stock .stock-dot {
    background: #dc2626;
    animation: pulse 2s infinite;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 16px;
}

.product-card-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card-order-btn svg {
    width: 12px;
    height: 12px;
}

.product-card-order-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-whatsapp:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #1a1a1a;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

.btn-call:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.4);
}

.contact-note {
    font-size: 13px;
    color: #6a6a6a;
    margin: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85%;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-brand-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-logo {
    height: 32px;
    width: auto;
}

.mobile-menu-brand {
    font-size: 20px;
    font-weight: 800;
    color: #2563eb;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #2563eb;
}

.mobile-menu-nav {
    flex: 1;
    padding: 16px 0;
}

.mobile-menu-link {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.mobile-menu-link:hover {
    background: #f9f9f9;
    color: #2563eb;
}

.mobile-menu-contact {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

/* Hide old microsite elements */
.product-microsite .micro-bottom-bar {
    display: none !important;
}

/* Footer Logo */
.footer-logo {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 8px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand span {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* CTA Section Pro */
.cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #1d4ed8 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.cta-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.9);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-stock-pulse {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-weight: 500;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

.cta-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 32px 16px;
    }
    
    .cta-section h3 {
        font-size: 20px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Description Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
}

.carousel-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

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

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-slides {
        aspect-ratio: 3/4;
    }
}

/* Additional mobile adjustments */
@media (max-width: 768px) {
    .boost-hero {
        padding: 20px 20px 40px;
    }
    
    .hero-grid {
        grid-template-columns: 60px 1fr;
        gap: 16px;
    }
    
    /* Image produit mobile - plus large et centrée */
    .product-image-main {
        display: flex;
        justify-content: center;
        padding: 0;
    }
    
    .product-image-main .image-frame {
        max-width: 100%;
        aspect-ratio: 5/4;
        margin: 0;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .product-image-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }
    
    /* Réduire taille thumbnails mobile */
    .thumb-btn {
        width: 50px;
        height: 50px;
    }
    
    /* Réduire taille carroussel mobile */
    .carousel-slides {
        aspect-ratio: 3/4;
        max-height: 250px;
    }
    
    /* Réduire taille boutons contact mobile */
    .btn-whatsapp,
    .btn-call {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .btn-whatsapp svg,
    .btn-call svg {
        width: 18px;
        height: 18px;
    }
    
    .product-title {
        font-size: 24px;
        margin-bottom: 0px !important;
        line-height: 1.1;
        padding-bottom: 0px !important;
    }
    
    .product-subtitle {
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
    }
    
    .product-price-simple {
        margin-bottom: 2px !important;
        padding-bottom: 0px !important;
    }
    
    /* Réduire uniquement hauteur image produit mobile */
    .product-image-main .image-frame {
        max-height: 250px !important;
        width: 100% !important;
    }
    
    .image-frame {
        border-radius: 16px;
    }
    
    .trust-section {
        padding: 32px 20px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .trust-badge-item {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        padding: 12px !important;
        border-radius: 12px !important;
        background: #f8f9fa !important;
        min-height: 48px !important;
        display: flex !important;
    }
    
    .trust-badge-item svg {
        flex-shrink: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .trust-text {
        flex: 1 !important;
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .trust-badge-item svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .trust-text {
        text-align: left;
    }
    
    .trust-text strong {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .trust-text span {
        font-size: 12px;
    }
    
    .description-section {
        padding: 48px 20px;
    }
    
    .faq-section {
        padding: 48px 20px;
    }
    
    .boost-footer {
        padding: 48px 20px 100px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .boost-footer {
        padding: 40px 16px 100px;
    }
}

/* ===== AI AVATAR LOGO ===== */
.ai-avatar-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ===== CHAT UI/UX IMPROVEMENTS ===== */
.ai-message .message-avatar {
    background: transparent;
    padding: 0;
    overflow: hidden;
    border: 2px solid var(--primary);
}

/* Amélioration du champ de saisie */
.chat-input-area {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.input-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--white);
}

.chat-input {
    background: transparent;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-800);
}

.chat-input::placeholder {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* Amélioration des boutons */
.btn-upload {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-upload:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.btn-upload svg {
    width: 20px;
    height: 20px;
}

.btn-send {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--white);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-send:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-send svg {
    width: 20px;
    height: 20px;
}

/* Amélioration de la liste d'instructions */
.ai-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.ai-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
    font-size: 0.95rem;
}

.ai-list li:last-child {
    margin-bottom: 0;
}

/* Amélioration du message de l'IA */
.ai-message .message-content {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.04) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    border-bottom-left-radius: 0.25rem;
    padding: 1.25rem;
}

.ai-message .message-content p {
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.ai-message .message-content p:last-child {
    margin-bottom: 0;
}

/* Input hint amélioré */
.input-hint {
    display: block;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.8rem;
    margin-top: 0.75rem;
    font-style: italic;
}

/* ===== USER MESSAGE STYLES ===== */
.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    border: 2px solid var(--gray-500);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-message .message-avatar svg {
    width: 20px;
    height: 20px;
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    border-bottom-right-radius: 0.25rem;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
}

.user-message .message-content p {
    line-height: 1.6;
    margin: 0;
}

/* Amélioration générale des messages */
.message {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
    animation: fadeInUp 0.3s ease-out;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.message-content {
    padding: 1rem 1.25rem;
    word-wrap: break-word;
}

/* Animation fadeInUp */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HIDE PROCESSING OVERLAY ===== */
.processing-overlay {
    display: none !important;
}

/* ===== HIDE SUCCESS MODAL BY DEFAULT ===== */
.success-modal {
    display: none !important;
}

/* ===== THINKING MESSAGE ===== */
.thinking-message {
    opacity: 0.9;
}

.thinking-content {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* ===== MARKDOWN CONTENT ===== */
.markdown-content {
    line-height: 1.7;
}

.markdown-content strong {
    font-weight: 700;
    color: var(--gray-900);
}

.markdown-content em {
    font-style: italic;
    color: var(--gray-600);
}

.markdown-content ul {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.markdown-content li {
    margin-bottom: 0.5rem;
    position: relative;
}

.markdown-content li::marker {
    color: var(--primary);
}

.markdown-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
    transition: all 0.2s ease;
    cursor: pointer;
}

.markdown-content a:hover {
    background: rgba(37, 99, 235, 0.05);
    border-bottom-width: 2px;
}

/* Liens markdown stylisés comme boutons */
.markdown-content a.markdown-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.markdown-content a.markdown-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, var(--primary-dark, #1d4ed8) 0%, var(--accent) 100%);
}

.markdown-content a.markdown-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.25);
}

.markdown-content br {
    display: block;
    margin: 0.5rem 0;
}

.thinking-indicator {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.thinking-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: thinking-bounce 1.4s ease-in-out infinite both;
}

.thinking-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.thinking-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes thinking-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.thinking-text {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== PAYMENT BUTTONS ===== */
.payment-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding: 0.5rem;
    flex-wrap: wrap;
}

.payment-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.payment-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-orange-money {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-orange-money:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-wave {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    color: white;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-wave:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}
