/* ===== STYLES GLOBAUX ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fcf9f6;
    color: #1e1e1e;
    line-height: 1.6;
}
h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: #c2a25b;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.top-bar a {
    color: #fff;
    font-weight: 600;
}
.top-bar a:hover {
    text-decoration: underline;
}

/* ===== HEADER ===== */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}
.logo {
    font-size: 2rem;
    color: #c2a25b;
    text-decoration: none;
    letter-spacing: 2px;
}
.logo span { color: #1e1e1e; }

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
nav ul li a {
    text-decoration: none;
    color: #1e1e1e;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c2a25b;
    transition: width 0.3s;
}
nav ul li a:hover::after {
    width: 100%;
}
nav ul li a:hover { color: #c2a25b; }
nav ul li a.active {
    color: #c2a25b;
}
nav ul li a.active::after {
    width: 100%;
}

.header-icons a {
    color: #1e1e1e;
    margin-left: 1.2rem;
    font-size: 1.2rem;
    transition: color 0.3s;
    position: relative;
}
.header-icons a:hover { color: #c2a25b; }
.header-icons .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #c2a25b;
    color: #fff;
    font-size: 0.6rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ===== LOGO AVEC IMAGE ===== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    max-height: 90px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Version responsive pour mobile */
@media (max-width: 480px) {
    .logo-img {
        height: 40px;
        max-height: 45px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 45px;
        max-height: 50px;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.slide-content {
    background: rgba(0,0,0,0.2);
    padding: 2rem 3rem;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    max-width: 600px;
}
.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}
.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.btn {
    display: inline-block;
    background: #c2a25b;
    color: #fff;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background: #a5853e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 162, 91, 0.3);
}
.btn-outline {
    background: transparent;
    border: 2px solid #c2a25b;
    color: #c2a25b;
}
.btn-outline:hover {
    background: #c2a25b;
    color: #fff;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active {
    background: #c2a25b;
    transform: scale(1.2);
}

/* ===== CATEGORIES ===== */
.categories {
    padding: 60px 0;
    text-align: center;
}
.categories h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #c2a25b;
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.cat-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 180px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.cat-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.cat-card span {
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== PRODUITS ===== */
.featured-products {
    padding: 60px 0;
    background: #f8f5f0;
}
.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #c2a25b;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.3s;
    text-align: center;
    padding-bottom: 16px;
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s;
}
.product-card:hover img {
    transform: scale(1.05);
}
.product-card h3 {
    margin: 14px 0 4px;
    font-size: 1.1rem;
}
.product-card .price {
    color: #c2a25b;
    font-weight: 600;
    font-size: 1.1rem;
}
.product-card .badge {
    display: inline-block;
    background: #c2a25b20;
    color: #a5853e;
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 2px 12px;
    border-radius: 20px;
    margin-top: 4px;
    letter-spacing: 1px;
}
.product-card .add-to-cart {
    margin-top: 10px;
    padding: 8px 20px;
    background: #c2a25b;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}
.product-card .add-to-cart:hover {
    background: #a5853e;
    transform: scale(1.05);
}

/* ===== SOCIAL ===== */
.social-section {
    padding: 60px 0;
    text-align: center;
}
.social-section h2 {
    font-size: 2.5rem;
    color: #c2a25b;
    margin-bottom: 10px;
}
.social-section .handle {
    font-weight: 300;
    color: #555;
    margin-bottom: 25px;
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 25px 0 35px;
}
.insta-grid a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.insta-grid a:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.insta-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.upscrolled-btn {
    background: #1e1e1e;
    color: #fff;
    padding: 14px 40px;
    font-size: 1rem;
}
.upscrolled-btn i { margin-right: 10px; }
.upscrolled-btn:hover { background: #333; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* ===== PAGES ===== */
.page-section {
    padding: 60px 0;
    min-height: 60vh;
}
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #c2a25b;
    text-align: center;
    margin-bottom: 15px;
}
.page-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* ===== COLLECTIONS ===== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}
.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.collection-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.collection-card .collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}
.collection-card .collection-info h3 {
    font-size: 1.5rem;
}
.collection-card .collection-info .btn {
    margin-top: 10px;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.contact-item i {
    font-size: 2rem;
    color: #c2a25b;
    width: 50px;
}
.contact-item h4 {
    margin-bottom: 5px;
}
.contact-item a {
    color: #c2a25b;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c2a25b;
}
.contact-form textarea {
    resize: vertical;
}

/* ===== FILTERS ===== */
.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.filter-btn {
    padding: 8px 20px;
    border: 2px solid #c2a25b;
    border-radius: 25px;
    color: #c2a25b;
    transition: all 0.3s;
    text-decoration: none;
}
.filter-btn:hover,
.filter-btn.active {
    background: #c2a25b;
    color: #fff;
}

/* ===== ABOUT ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-text h2 {
    color: #c2a25b;
    margin-top: 25px;
    font-family: 'Playfair Display', serif;
}
.about-text p {
    color: #555;
    margin: 10px 0;
}
.about-image img {
    width: 100%;
    border-radius: 12px;
}

/* ========================================= */
/* ===== FOOTER PROFESSIONNEL ===== */
/* ========================================= */

.footer-professional {
    background: #1a1a1a;
    color: #b0b0b0;
    padding: 60px 0 0;
    margin-top: 40px;
    border-top: 3px solid #c2a25b;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}
.footer-brand .footer-logo img:hover {
    filter: brightness(0) invert(0.8);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #999;
    max-width: 450px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #b0b0b0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social a:hover {
    background: #c2a25b;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(194, 162, 91, 0.3);
}

.footer-newsletter h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}
.footer-newsletter p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.newsletter-form input::placeholder {
    color: #666;
}
.newsletter-form input:focus {
    outline: none;
    border-color: #c2a25b;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(194, 162, 91, 0.1);
}
.newsletter-form button {
    padding: 12px 20px;
    background: #c2a25b;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-form button:hover {
    background: #a5853e;
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(194, 162, 91, 0.3);
}
.newsletter-note {
    font-size: 0.7rem !important;
    color: #666 !important;
    margin-top: 10px !important;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1.2fr;
    gap: 40px;
    padding: 40px 0 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #c2a25b;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}
.footer-col ul li a:hover {
    color: #c2a25b;
    transform: translateX(5px);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.footer-contact-list li i {
    width: 20px;
    color: #c2a25b;
    font-size: 1rem;
}
.footer-contact-list li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact-list li a:hover {
    color: #c2a25b;
}
.footer-contact-list li span {
    color: #b0b0b0;
}

.footer-payment h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-payment h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #c2a25b;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: #666;
    margin-bottom: 20px;
}
.payment-icons i {
    transition: all 0.3s ease;
    cursor: default;
}
.payment-icons i:hover {
    color: #c2a25b;
    transform: scale(1.1);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #888;
    padding: 4px 0;
}
.footer-badges .badge i {
    color: #c2a25b;
    font-size: 0.9rem;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-bottom strong {
    color: #c2a25b;
    font-weight: 600;
}

.footer-bottom .separator {
    color: #555;
    margin: 0 4px;
}

/* ===== CRAFTED BADGE ===== */
.crafted-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 197, 169, 0.08);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(212, 197, 169, 0.12);
    transition: all 0.3s ease;
}

.crafted-badge:hover {
    background: rgba(212, 197, 169, 0.15);
    border-color: rgba(212, 197, 169, 0.25);
}

.crafted-badge i {
    color: #d4c5a9;
}

/* ===== CREATOR NAME - ZIAD Z. ===== */
.creator-name {
    color: #d4c5a9;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.creator-name:hover {
    color: #e8dccc;
    transform: translateX(3px);
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.footer-credits i {
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* ========================================= */
/* ===== COMPTEUR DE VISITEURS EN DIRECT ===== */
/* ========================================= */

.visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: rgba(194, 162, 91, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(194, 162, 91, 0.1);
    font-size: 0.85rem;
    color: #b0b0b0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.visitor-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 162, 91, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-50%); }
    50% { transform: translateX(50%); }
}

.visitor-counter:hover {
    background: rgba(194, 162, 91, 0.15);
    border-color: rgba(194, 162, 91, 0.2);
    transform: translateY(-2px);
}

.visitor-counter i {
    color: #c2a25b;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.visitor-counter #visitorCounter {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.visitor-counter .visitor-label {
    font-weight: 300;
    color: #999;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

/* Point vert "Live" */
.visitor-counter .visitor-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    z-index: 1;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

.visitor-counter .visitor-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.2);
    animation: pulse-ring 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

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

/* ========================================= */
/* ===== RESPONSIVE ===== */
/* ========================================= */

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-radius: 0 0 12px 12px;
    }
    nav.show {
        display: flex;
    }
    nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .mobile-menu-btn {
        display: block;
    }
    .slide-content h2 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    .slide-content {
        padding: 1.5rem;
        margin: 0 15px;
    }
    .header-inner {
        flex-wrap: wrap;
    }
    .header-icons {
        display: flex;
        align-items: center;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .page-title {
        font-size: 2.2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .footer-bottom p {
        justify-content: center;
    }
    .footer-brand .footer-logo img {
        height: 40px;
    }
    .footer-description {
        max-width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-col ul li a:hover {
        transform: translateX(0);
    }
    .footer-contact-list li {
        justify-content: center;
    }
    .payment-icons {
        justify-content: center;
    }
    .footer-badges {
        align-items: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        width: 100%;
    }

    /* Compteur responsive */
    .visitor-counter {
        padding: 5px 14px;
        font-size: 0.8rem;
    }
    .visitor-counter #visitorCounter {
        font-size: 0.95rem;
        min-width: 25px;
    }
    .visitor-counter .visitor-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    .slide-content h2 {
        font-size: 1.6rem;
    }
    .categories h2,
    .featured-products h2,
    .social-section h2 {
        font-size: 2rem;
    }

    .footer-professional {
        padding: 40px 0 0;
    }
    .footer-top {
        padding-bottom: 25px;
    }
    .footer-links {
        padding: 25px 0 20px;
    }
    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    .payment-icons {
        font-size: 1.6rem;
        gap: 12px;
    }

    /* Compteur responsive mobile */
    .visitor-counter {
        padding: 4px 12px;
    }
    .visitor-counter #visitorCounter {
        font-size: 0.85rem;
        min-width: 20px;
    }
    .visitor-counter .visitor-dot {
        width: 6px;
        height: 6px;
    }
    .visitor-counter .visitor-label {
        font-size: 0.65rem;
    }
}