/* ============================================
   FAMILY CUSTOM - Catégories (Carrousel)
   ============================================ */

/* ===== CATÉGORIE SPÉCIALE: FÊTE DES GRANDS-MÈRES ===== */
.mamie-special-tile {
    background: linear-gradient(145deg, #fdf2f8 0%, #fce7f3 100%) !important;
    border: 2px solid #f9a8d4 !important;
    position: relative;
    overflow: hidden;
}

.mamie-special-tile::before {
    content: '🌷';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.6;
}

.mamie-special-tile .category-name {
    color: #be185d !important;
}

.mamie-special-tile p {
    color: #9d174d !important;
}

.mamie-special-tile .category-tile-btn {
    background: linear-gradient(135deg, #ec4899, #db2777) !important;
    color: white !important;
}

.mamie-special-tile .mamie-icon {
    background: rgba(236, 72, 153, 0.15) !important;
}

/* ===== COMING SOON STYLES ===== */
.coming-soon-tile {
    cursor: not-allowed !important;
}

.coming-soon-tile .category-tile-content {
    position: relative;
    z-index: 2;
    padding: 15px 10px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.coming-soon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 6px;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(168, 85, 247, 0); }
}

.coming-soon-tile .mamie-icon {
    width: 50px !important;
    height: 50px !important;
    margin: 5px 0 !important;
}

.coming-soon-tile .category-name {
    font-size: 1rem !important;
    margin: 0 !important;
}

.coming-soon-hook {
    color: #9d174d !important;
    font-size: 0.75rem !important;
    font-style: italic;
    margin: 2px 0 8px !important;
    line-height: 1.2;
}

.coming-soon-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0 auto 8px;
}

.coming-soon-countdown .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(190, 24, 93, 0.15);
    padding: 6px 8px;
    border-radius: 6px;
    min-width: 42px;
}

.coming-soon-countdown .countdown-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #be185d;
    line-height: 1;
}

.coming-soon-countdown .countdown-label {
    font-size: 0.5rem;
    color: #9d174d;
    text-transform: uppercase;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.coming-soon-countdown .countdown-sep {
    font-size: 1rem;
    font-weight: 700;
    color: #be185d;
    margin-top: -8px;
}

.coming-soon-btn {
    background: linear-gradient(135deg, #a855f7, #7c3aed) !important;
    padding: 8px 16px !important;
    font-size: 0.8rem !important;
}

.coming-soon-btn i {
    animation: ring-bell 1s ease-in-out infinite;
}

@keyframes ring-bell {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

/* Notification Coming Soon */
.coming-soon-notif {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.4);
    font-weight: 500;
}

.coming-soon-notif.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.coming-soon-notif i {
    font-size: 1.2rem;
}

/* Notify Popup */
.notify-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notify-popup-overlay.show {
    opacity: 1;
}

.notify-popup {
    background: #1a1a1a;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.notify-popup-overlay.show .notify-popup {
    transform: scale(1);
}

.notify-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.notify-popup-close:hover {
    color: #fff;
}

.notify-popup-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.notify-popup h3 {
    color: #D4AF37;
    font-size: 1.3rem;
    margin: 0 0 6px;
}

.notify-popup p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0 0 16px;
    line-height: 1.4;
}

.notify-popup-form {
    display: flex;
    gap: 8px;
}

.notify-popup-form input[type="email"] {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.notify-popup-form input[type="email"]:focus {
    border-color: #D4AF37;
}

.notify-popup-form button[type="submit"] {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #D4AF37, #f0d060);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, opacity 0.2s;
}

.notify-popup-form button[type="submit"]:hover {
    transform: scale(1.03);
}

.notify-popup-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: wait;
}

.notify-popup-hint {
    color: #666 !important;
    font-size: 0.75rem !important;
    margin: 10px 0 0 !important;
}

/* ===== FIN COMING SOON ===== */

/* ===== FIN CATÉGORIE SPÉCIALE ===== */

/* Section Catégories */
.categories-section {
    min-height: auto;
    padding: 80px 0 60px;
    background: #2d2d2d !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* overflow: hidden retiré - bloquait le scroll du carrousel */
    overflow-x: clip; /* Empêche le débordement horizontal de la page sans bloquer le scroll interne */
    overflow-y: visible;
}

.categories-section .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.categories-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 500px;
    padding: 0 1rem;
}

/* ===== CARROUSEL WRAPPER ===== */
.categories-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: visible; /* Important pour permettre le débordement visuel des effets */
}

/* ===== CARROUSEL ===== */
.categories-carousel,
#categories-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0.5rem 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Amélioration mobile */
    overscroll-behavior-x: contain;
    /* S'assurer que le contenu peut déborder */
    width: 100%;
    max-width: 100%;
}

.categories-carousel::-webkit-scrollbar {
    display: none;
}

/* ===== SKELETON LOADING ===== */
.category-skeleton {
    flex: 0 0 280px;
    height: 320px;
    border-radius: 20px;
    background: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.category-skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
    animation: skeletonShimmer 1.5s infinite;
}

.category-skeleton .skeleton-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    margin: 2.5rem auto 1rem;
}

.category-skeleton .skeleton-title {
    width: 60%;
    height: 20px;
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
    margin: 0 auto 0.75rem;
}

.category-skeleton .skeleton-desc {
    width: 80%;
    height: 14px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    margin: 0 auto 1.5rem;
}

.category-skeleton .skeleton-btn {
    width: 120px;
    height: 36px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    margin: 0 auto;
}

@keyframes skeletonShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== FLÈCHES DE NAVIGATION ===== */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-50%);
}

/* ===== POINTS DE PAGINATION ===== */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    padding: 0.5rem 0;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.3s ease,
                border-radius 0.4s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dot:focus-visible {
    outline: 2px solid #e07a5f;
    outline-offset: 3px;
}

.carousel-dot.active {
    background: #D4AF37;
    width: 28px;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .carousel-dots {
        display: none;
    }
}

/* Loading */
.loading-categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    padding: 3rem;
    color: #cccccc;
}

.loading-categories i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.empty-state {
    min-width: 100%;
    text-align: center;
    padding: 3rem;
    color: #cccccc;
}

/* ===== CARTE CATÉGORIE (CARROUSEL) ===== */
.category-tile {
    flex: 0 0 280px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.category-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-tile:hover {
    transform: translateY(-8px) scale(1.02);
}

.category-tile:focus-visible {
    outline: 3px solid #e07a5f;
    outline-offset: 4px;
}

.category-tile:hover::before {
    opacity: 1;
}

/* ===== MURALES - Style élégant beige/doré ===== */
.category-tile[data-category="murales"] {
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4b896' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(145deg, #f7ede2 0%, #e8d5c4 50%, #d4b896 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.category-tile[data-category="murales"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category-tile[data-category="murales"]::before {
    background: linear-gradient(145deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}

/* ===== NEON - Style sombre avec glow ===== */
.category-tile[data-category="neon"] {
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        linear-gradient(145deg, #1a1a2e 0%, #16162a 50%, #0d0d1a 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.category-tile[data-category="neon"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.category-tile[data-category="neon"]::before {
    background: radial-gradient(ellipse at center, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
}

/* ===== BOIS - Style naturel texturé ===== */
.category-tile[data-category="bois"] {
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%238b6914' fill-opacity='0.08'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(145deg, #c9a66b 0%, #a67c52 50%, #8b5e34 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.category-tile[data-category="bois"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category-tile[data-category="bois"]::before {
    background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, transparent 100%);
}

/* Contenu */
.category-tile-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    color: #f5f5f5;
    z-index: 2;
}

.category-tile[data-category="neon"] .category-tile-content {
    color: #fff;
}

/* Texte Murales - couleur foncée pour contraste sur fond clair */
.category-tile[data-category="murales"] .category-tile-content {
    color: #5d4022;
}

.category-tile[data-category="murales"] .category-tile-content h3 {
    color: #3d2a15;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.category-tile[data-category="murales"] .category-tile-content p {
    color: #6b4c2a;
}

/* Icône */
.category-tile-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-tile:hover .category-tile-icon {
    transform: scale(1.1) rotate(-3deg);
}

/* Icône Murales */
.category-tile[data-category="murales"] .category-tile-icon {
    background: rgba(255, 255, 255, 0.9);
    color: #8b6914;
    box-shadow: 0 8px 25px rgba(139, 105, 20, 0.2);
}

/* Icône Néon */
.category-tile[data-category="neon"] .category-tile-icon {
    background: rgba(255, 107, 157, 0.15);
    color: #ff6b9d;
    box-shadow: 
        0 0 30px rgba(255, 107, 157, 0.4),
        inset 0 0 20px rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.category-tile[data-category="neon"]:hover .category-tile-icon {
    box-shadow: 
        0 0 40px rgba(255, 107, 157, 0.6),
        inset 0 0 25px rgba(255, 107, 157, 0.2);
}

/* Icône Bois */
.category-tile[data-category="bois"] .category-tile-icon {
    background: rgba(255, 255, 255, 0.9);
    color: #e8c89e;
    box-shadow: 0 8px 25px rgba(93, 64, 34, 0.2);
}

/* Titre */
.category-tile-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

/* Titre Néon avec effet glow */
.category-tile[data-category="neon"] .category-tile-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b9d;
    text-shadow: 
        0 0 10px #ff6b9d,
        0 0 25px rgba(255, 107, 157, 0.6);
    animation: neonFlicker 4s ease-in-out infinite;
}

@keyframes neonFlicker {
    0%, 100% {
        color: #ff6b9d;
        text-shadow: 
            0 0 10px #ff6b9d,
            0 0 25px rgba(255, 107, 157, 0.6);
    }
    92% {
        color: #ff6b9d;
        text-shadow: 
            0 0 10px #ff6b9d,
            0 0 25px rgba(255, 107, 157, 0.6);
    }
    93% {
        color: #cc5580;
        text-shadow: 
            0 0 5px rgba(255, 107, 157, 0.3);
    }
    94% {
        color: #ff6b9d;
        text-shadow: 
            0 0 10px #ff6b9d,
            0 0 25px rgba(255, 107, 157, 0.6);
    }
    96% {
        color: #e05a88;
        text-shadow: 
            0 0 8px rgba(255, 107, 157, 0.4);
    }
    97% {
        color: #ff6b9d;
        text-shadow: 
            0 0 10px #ff6b9d,
            0 0 25px rgba(255, 107, 157, 0.6);
    }
}

.category-tile:hover .category-tile-content h3 {
    transform: translateY(-2px);
}

/* Description */
.category-tile-content p {
    font-size: 0.95rem;
    opacity: 0.75;
    margin-bottom: 1.5rem;
}

/* Style texte foncé pour catégories avec fond clair */
.category-tile.text-dark {
    color: #1a1a1a;
}

.category-tile.text-dark .category-tile-content h3 {
    color: #1a1a1a;
}

.category-tile.text-dark .category-tile-content p {
    color: #333;
    opacity: 0.9;
}

.category-tile.text-dark .category-tile-btn {
    background: rgba(26, 26, 26, 0.9);
    color: #fff;
}

.category-tile.text-dark .category-tile-btn:hover {
    background: #1a1a1a;
}

/* Bouton "Découvrir" */
.category-tile-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.category-tile:hover .category-tile-btn {
    opacity: 1;
    transform: translateY(0);
}

.category-tile[data-category="murales"] .category-tile-btn {
    background: #1a1a1a;
    color: #fff;
}

.category-tile[data-category="neon"] .category-tile-btn {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.category-tile[data-category="bois"] .category-tile-btn {
    background: #1a1a1a;
    color: #fff;
}

.category-tile-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.category-tile:hover .category-tile-btn i {
    transform: translateX(3px);
}

/* Responsive Carrousel */
@media (max-width: 768px) {
    .categories-carousel-wrapper {
        padding: 0 15px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .category-tile {
        flex: 0 0 260px;
        height: 300px;
    }
    
    .categories-carousel {
        gap: 1rem;
        padding: 1rem 0.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .categories-carousel-wrapper {
        padding: 0 10px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .category-tile {
        flex: 0 0 85vw;
        height: 280px;
    }
    
    .categories-carousel {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ===== CARTE CADEAU - Style spécial ===== */
.category-tile.gift-card-tile {
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(145deg, #e07a5f 0%, #c9a87c 50%, #d4af37 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.category-tile.gift-card-tile::before {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%,
        rgba(212, 175, 55, 0.3) 100%
    );
}

.category-tile.gift-card-tile:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.category-tile.gift-card-tile .category-tile-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-tile.gift-card-tile .category-tile-icon i {
    background: linear-gradient(135deg, #e07a5f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-tile.gift-card-tile h3 {
    color: #ffffff;
    text-shadow: none;
}

.category-tile.gift-card-tile p {
    color: rgba(255, 255, 255, 0.9);
}

.category-tile.gift-card-tile .category-tile-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #d4af37;
    font-weight: 600;
}

.category-tile.gift-card-tile:hover .category-tile-btn {
    background: #ffffff;
    transform: translateX(5px);
}
