/* Reset et Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --taupe: #A6A195;
    --neon-yellow: #1a1a1a; /* Changé de jaune néon en noir */
    --charcoal: #333333;
    --light-bg: #F5F4F0;
    --cream: #FAF9F6;
    --white: #FFFFFF;
    --text-light: #666666;
    --success: #25D366;
    --warning: #FF6B6B;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bannière Top */
.top-banner {
    background: linear-gradient(135deg, var(--taupe) 0%, #8B8578 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1001;
    animation: slideDown 0.5s ease;
}

.promo-text {
    display: inline-block;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Navigation Principale */
.main-nav {
    background: white;
    border-bottom: none; /* Retirer la bordure */
    padding: 0;
    position: sticky;
    top: 48px;
    z-index: 1000;
    box-shadow: none; /* Retirer l'ombre */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.nav-link {
    padding: 18px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--taupe);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--taupe);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* Header */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 106px;
    z-index: 999;
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #333333 0%, #8B7D6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    white-space: nowrap;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    position: relative;
    min-width: 200px;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--taupe);
    box-shadow: 0 3px 10px rgba(139, 125, 107, 0.2);
}

.search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
    display: none;
    z-index: 100;
}

.search-results.show {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-bg);
    cursor: pointer;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: var(--light-bg);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    margin-right: 12px;
}

.search-result-info {
    flex: 1;
}

.search-result-brand {
    font-size: 0.75rem;
    color: var(--taupe);
    font-weight: 600;
    text-transform: uppercase;
}

.search-result-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.search-result-price {
    color: var(--taupe);
    font-weight: 700;
    font-size: 0.95rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-btn:hover {
    background: var(--taupe);
    color: white;
    transform: translateY(-2px);
}

.icon-btn i {
    font-size: 1.1rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--warning);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    animation: bounce 0.5s ease;
}

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

.whatsapp-btn-header {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.whatsapp-btn-header:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Navigation Catégories - Horizontal scrollable */
.category-nav {
    background: white;
    border-bottom: 1px solid var(--light-bg);
    padding: 15px 0;
    position: sticky;
    top: 176px;
    z-index: 998;
}

.category-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-container::-webkit-scrollbar {
    display: none;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid var(--light-bg);
    background: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-btn:hover {
    border-color: var(--taupe);
    background: var(--light-bg);
}

.category-btn.active {
    background: var(--taupe);
    color: white;
    border-color: var(--taupe);
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    background: linear-gradient(135deg, rgba(166, 161, 149, 0.3), rgba(166, 161, 149, 0.5)),
                url('../images/central.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.social-proof {
    margin: 25px 0;
    font-size: 1.1rem;
}

.stars {
    color: var(--neon-yellow);
    font-size: 1.3rem;
    margin-right: 10px;
}

.cta-btn {
    padding: 18px 45px;
    background: var(--taupe);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    background: var(--neon-yellow);
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(246, 255, 32, 0.4);
}

/* Trust Badges */
.trust-badges {
    background: white;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    box-shadow: var(--shadow);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--charcoal);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--taupe);
}

.pulse-badge {
    animation: pulse 2s infinite;
}

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

/* Alerte Stock */
.stock-alert-banner {
    background: linear-gradient(135deg, #6B5D4F 0%, #5A4D3F 100%); /* Marron foncé */
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.stock-alert-banner i {
    color: var(--neon-yellow);
    font-size: 1.2rem;
}

.stock-alert-banner strong {
    color: var(--neon-yellow);
}

/* Section Produits */
.products-section {
    padding: 60px 20px;
    background: white;
    border-top: 3px solid var(--taupe);
    border-bottom: 3px solid var(--taupe);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--taupe);
    border-radius: 2px;
}

.filter-info {
    color: var(--text-light);
    font-weight: 600;
}

/* ===== CATEGORY DESCRIPTION ===== */
.category-description {
    background: white;
    border: 2px solid var(--taupe);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    display: none;
}

.category-description.active {
    display: block;
}

.category-description h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.category-description p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.category-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.category-description li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.category-description li::before {
    content: "✓";
    color: var(--neon-yellow);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid #f0f0f0; /* Bordure subtile */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #F4E6EC 0%, #E3C5D5 100%); /* Rose poudré doux */
    color: #8B6B7A;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(227, 197, 213, 0.3);
}

/* Badge "Produit le plus demandé" 💝 - Rose poudré */
.product-badge.badge-most-wanted {
    background: linear-gradient(135deg, #F4E6EC 0%, #E3C5D5 100%);
    color: #8B6B7A;
    box-shadow: 0 2px 8px rgba(227, 197, 213, 0.3);
}

/* Badge "Best-Seller" ⭐ - Mauve doux */
.product-badge.badge-bestseller {
    background: linear-gradient(135deg, #E3C5D5 0%, #B58DAF 100%);
    color: #6B4D64;
    box-shadow: 0 2px 8px rgba(181, 141, 175, 0.3);
}

/* Badge "Dernières unités" ⚡ - Beige rosé */
.product-badge.badge-limited {
    background: linear-gradient(135deg, #EADDD1 0%, #D9A7A7 100%);
    color: #8B6B6B;
    box-shadow: 0 2px 8px rgba(217, 167, 167, 0.3);
}

/* Badge "Nouveauté" 🔥 - Rose très clair */
.product-badge.badge-new {
    background: linear-gradient(135deg, #F4E6EC 0%, #EADDD1 100%);
    color: #8B7269;
    box-shadow: 0 2px 8px rgba(244, 230, 236, 0.3);
}

/* Badge "Régénération" ✨ - Mauve clair */
.product-badge.badge-regen {
    background: linear-gradient(135deg, #E3C5D5 0%, #D9A7A7 100%);
    color: #7B5B64;
    box-shadow: 0 2px 8px rgba(227, 197, 213, 0.3);
}

/* Badge "Anti-âge" 🎯 - Mauve foncé élégant */
.product-badge.badge-antiage {
    background: linear-gradient(135deg, #D9A7A7 0%, #B58DAF 100%);
    color: #6B4D5F;
    box-shadow: 0 2px 8px rgba(181, 141, 175, 0.3);
}

/* Badge "Microneedle" 💉 - Beige doux */
.product-badge.badge-microneedle {
    background: linear-gradient(135deg, #EADDD1 0%, #E3C5D5 100%);
    color: #8B7269;
    box-shadow: 0 2px 8px rgba(234, 221, 209, 0.3);
}

/* Badge "Éclat" 💫 - Rose beige */
.product-badge.badge-glow {
    background: linear-gradient(135deg, #F4E6EC 0%, #D9A7A7 100%);
    color: #8B6B6B;
    box-shadow: 0 2px 8px rgba(244, 230, 236, 0.3);
}

.product-image-container {
    width: 100%;
    height: 320px;
    background: var(--cream);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    background: white;
    border-top: 1px solid #f0f0f0; /* Légère séparation avec l'image */
}

.product-brand {
    font-size: 0.8rem;
    color: #666; /* Gris foncé pour la marque */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a; /* NOIR pour le nom */
    min-height: 50px;
    line-height: 1.4;
}

.product-volume {
    font-size: 0.85rem;
    color: #333; /* NOIR pour le volume */
    margin-bottom: 12px;
    font-weight: 500;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a; /* NOIR pour le prix */
    margin-bottom: 15px;
}

.stock-indicator {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333; /* NOIR pour "En stock" */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stock-indicator.in-stock {
    color: #2E7D32; /* Vert foncé */
}

.stock-indicator.limited-stock {
    color: #F57C00; /* Orange foncé */
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart {
    flex: 1;
    padding: 12px 20px;
    background: var(--taupe);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background: var(--neon-yellow);
    color: var(--charcoal);
    transform: scale(1.05);
}

.btn-details {
    padding: 12px 20px;
    background: white;
    color: var(--taupe);
    border: 2px solid var(--taupe);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: var(--taupe);
    color: white;
}

.viewer-count {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-results p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-secondary {
    padding: 12px 30px;
    background: white;
    color: var(--taupe);
    border: 2px solid var(--taupe);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--taupe);
    color: white;
}

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

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 25px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--taupe);
    color: white;
    transform: rotate(90deg);
}

.modal-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-image {
    width: 100%;
    border-radius: 15px;
    background: var(--cream);
    padding: 30px;
}

.modal-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.modal-details h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white; /* TITRE EN BLANC */
}

/* SECTION HEADER DU MODAL (fond sombre) */
.modal-header-section {
    background: linear-gradient(135deg, var(--charcoal), #444);
    padding: 30px 30px 0 30px; /* Pas de padding en bas */
    border-radius: 12px 12px 0 0;
    color: white;
}

.modal-header-section .modal-brand {
    color: rgba(255,255,255,0.9);
}

.modal-header-section .modal-price {
    color: white; /* BLANC sur fond sombre */
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0 0 0; /* Pas de margin en bas */
}

.modal-header-section .modal-description {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    padding-bottom: 30px; /* Padding en bas pour espace */
}

/* TITRE ET VOLUME SUR FOND BLANC */
.modal-title-section {
    background: white;
    padding: 20px 30px;
    border-top: 3px solid #1a1a1a; /* Bordure NOIRE */
}

.modal-title-section .modal-title {
    color: #1a1a1a; /* NOIR PROFOND - bien visible */
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.modal-title-section .product-volume {
    color: #333; /* NOIR - bien visible */
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* SECTION BODY DU MODAL (fond clair) */
.modal-body-section {
    background: white;
    padding: 30px;
    border-radius: 0 0 12px 12px;
}

.modal-body-section .modal-long-description {
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.modal-brand {
    color: rgba(255,255,255,0.9); /* MARQUE EN BLANC */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-yellow); /* PRIX EN JAUNE NÉON */
    margin: 20px 0;
}

.modal-description {
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.modal-benefits,
.modal-usage {
    margin: 25px 0;
}

.modal-benefits h4,
.modal-usage h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1a1a1a; /* TITRES SECTIONS EN NOIR (fond blanc) */
    font-weight: 700;
}

.modal-benefits ul,
.modal-usage ul {
    list-style: none;
    padding: 0;
}

.modal-benefits li,
.modal-usage li {
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.6;
    color: #333333;
    font-weight: 400;
}

.modal-benefits li:before,
.modal-usage li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--taupe);
    font-weight: 700;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-selector button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--taupe);
    background: white;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.quantity-selector button:hover {
    background: var(--taupe);
    color: white;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    padding: 8px;
    font-weight: 700;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 80px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: var(--light-bg);
    transition: all 0.3s ease;
}

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

.benefit-card i {
    font-size: 3rem;
    color: var(--taupe);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    line-height: 1.7;
    color: var(--text-light);
}

/* Footer */
.main-footer {
    background: var(--taupe);
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--neon-yellow);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-yellow);
}

.whatsapp-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--success);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.whatsapp-footer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    color: white;
    text-decoration: underline;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1500;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--success);
    opacity: 0.6;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 120px;
    right: -400px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2000;
    transition: right 0.3s ease;
    min-width: 300px;
}

.cart-notification.show {
    right: 30px;
}

.cart-notification i {
    font-size: 1.5rem;
    color: var(--success);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .category-nav {
        top: 157px;
    }
    
    .modal-product {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
