/* Base & Reset */
:root {
    --primary-blue: #4A90E2;
    --sky-blue: #A5D8FF;
    --secondary-yellow: #FFD93D;
    --accent-pink: #FF6B6B;
    --accent-green: #6BCB77;
    --accent-purple: #9B59B6;
    --accent-orange: #FF9F43;
    --light-bg: #F8F9FA;
    --white: #ffffff;
    --dark-text: #2D3436;
    --gray-text: #636E72;
    --border-radius: 30px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --rainbow-gradient: linear-gradient(90deg, #FF6B6B, #FF9F43, #FFD93D, #6BCB77, #4A90E2, #9B59B6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

h1,
h2,
h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-ar {
    font-family: 'Noto Sans Arabic', sans-serif;
    direction: rtl;
}

/* Navbar with Glassmorphism */
.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 80px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-text);
    transition: var(--transition);
}

.cart-icon:hover {
    transform: scale(1.1);
    color: var(--primary-blue);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-pink);
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-text);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 6px 0 #357ABD;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #357ABD;
    transform: translateY(2px);
    box-shadow: 0 4px 0 #357ABD;
}

.btn-secondary {
    background: var(--secondary-yellow);
    color: var(--dark-text);
    box-shadow: 0 6px 0 #e9ad22;
}

.btn-secondary:hover {
    background: #FFD93D;
    transform: translateY(2px);
    box-shadow: 0 4px 0 #e9ad22;
}

.btn-bubbly {
    background: var(--white);
    color: var(--primary-blue);
    border: 3px solid var(--primary-blue);
    box-shadow: 0 6px 0 var(--primary-blue);
}

.btn-bubbly:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--primary-blue);
    background: var(--sky-blue);
}

.btn-call {
    background: var(--accent-green);
    color: white;
    font-size: 18px;
    padding: 15px 35px;
}

.btn-call:hover {
    background: #58B065;
    transform: scale(1.05);
}

/* Hero Section - Rainbow & Clouds Style */
.hero {
    min-height: 95vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #A5D8FF;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-main-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    border-radius: 50% 50% 50% 40% / 40% 50% 50% 50%;
    /* Organic shape */
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 15px white,
        0 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 2;
    animation: organic-float 6s ease-in-out infinite;
    transition: var(--transition);
}

@keyframes organic-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        border-radius: 50% 50% 50% 40% / 40% 50% 50% 50%;
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
        border-radius: 40% 50% 50% 50% / 50% 40% 50% 50%;
    }
}

.hero-bg-container::before {
    content: '☁';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.4);
    z-index: 0;
    filter: blur(5px);
}

.hero-bg-container::after {
    content: '☁';
    position: absolute;
    bottom: 20%;
    right: 15%;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 0;
    filter: blur(5px);
}

.hero-main-img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.rainbow-arc {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 100%;
    height: 120%;
    background: radial-gradient(circle at 15% 15%,
            rgba(255, 107, 107, 0.4) 0%,
            rgba(255, 217, 61, 0.4) 15%,
            rgba(74, 144, 226, 0.4) 30%,
            transparent 50%);
    z-index: 1;
    filter: blur(10px);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-visual {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0) 45%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 55%,
            transparent 100%);
    transform: translate(-50%, -50%) rotate(45deg);
    animation: shimmer 4s infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes shimmer {
    0% {
        transform: translate(-150%, -150%) rotate(45deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(45deg);
    }
}

.hero-text {
    flex: 1;
    text-align: left;
}

.mega-bubbly {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    color: var(--accent-pink);
    /* Changed to pink */
    -webkit-text-stroke: 2px white;
    text-shadow: 4px 4px 0px #FFD93D;
    margin-bottom: 15px;
    font-family: 'Fredoka', sans-serif;
}

.sub-bubbly {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 #fff;
    line-height: 1.2;
}

.sub-bubbly span {
    color: var(--accent-pink);
}

.sub-bubbly span:last-child {
    color: var(--accent-green);
}

/* Clouds */
.cloud-layer {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,250.7C960,235,1056,181,1152,149.3C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    z-index: 5;
}

.fluffy-cloud {
    position: absolute;
    background: white;
    border-radius: 100px;
    z-index: 3;
    opacity: 0.9;
    filter: blur(10px);
}

.hero-shapes .shape {
    position: absolute;
    z-index: 1;
    filter: blur(40px);
    opacity: 0.5;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary-yellow);
    top: -100px;
    right: -50px;
    border-radius: 50%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-pink);
    bottom: 10%;
    left: -50px;
    border-radius: 50%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-green);
    top: 20%;
    left: 40%;
    border-radius: 50%;
}

/* Rainbow Elements */
.rainbow-text {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: rainbow-shift 5s linear infinite;
    background-size: 200% auto;
}

@keyframes rainbow-shift {
    to {
        background-position: 200% center;
    }
}

.rainbow-divider {
    height: 8px;
    width: 100%;
    background: var(--rainbow-gradient);
    border-radius: 10px;
    margin: 20px 0;
}

/* Floating Stars */
.star {
    position: absolute;
    color: var(--secondary-yellow);
    font-size: 24px;
    animation: star-float 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes star-float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(15px, -30px) rotate(45deg) scale(1.4);
        opacity: 1;
    }
}

.fa-heart.star {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.hero-sun {
    position: absolute;
    bottom: 15%;
    right: 5%;
    font-size: 100px;
    color: var(--secondary-yellow);
    filter: drop-shadow(0 0 20px rgba(255, 217, 61, 0.5));
    animation: sun-rotate 10s linear infinite;
    z-index: 6;
}

@keyframes sun-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Sticker styles removed */

/* Global Pattern */
body {
    background-image: radial-gradient(#d0ebff 2px, transparent 2px);
    background-size: 40px 40px;
}

/* Playful Patterns */
.playful-bg {
    background-image:
        radial-gradient(var(--accent-pink) 1px, transparent 1px),
        radial-gradient(var(--primary-blue) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    background-color: var(--light-bg);
    opacity: 0.4;
}

/* Categories */
.section-title {
    font-size: 42px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--secondary-yellow);
    border-radius: 5px;
    display: none;
    /* Hidden by default if using ribbon */
}

/* Ribbon Title Style (Banner) */
.ribbon-title {
    position: relative;
    background: var(--accent-pink);
    color: white;
    display: inline-block;
    padding: 10px 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    transform: rotate(-1deg);
    box-shadow: 0 6px 0 #d9534f;
}

.ribbon-title.blue {
    background: var(--primary-blue);
    box-shadow: 0 6px 0 #357ABD;
}

.ribbon-title.green {
    background: var(--accent-green);
    box-shadow: 0 6px 0 #58B065;
}

.ribbon-title h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

/* Age Section */
.age-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.age-card {
    width: 80px;
    height: 80px;
    border-radius: 50% 50% 50% 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.age-card:hover {
    transform: scale(1.1) rotate(5deg);
}

.age-card.pink {
    background-color: var(--accent-pink);
}

.age-card.green {
    background-color: var(--accent-green);
}

.age-card.orange {
    background-color: #fcbc1b;
}

.age-card.blue {
    background-color: var(--primary-blue);
}

.age-card.purple {
    background-color: #9B59B6;
}

.age-card.red {
    background-color: #E74C3C;
}

/* Gender Section */
.gender-section {
    padding: 60px 0;
}

.gender-card {
    height: 300px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.gender-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gender-card.fille {
    background-color: #FFE6F2;
    border: 3px dashed var(--accent-pink);
    background-image: linear-gradient(rgba(255, 230, 242, 0.7), rgba(255, 230, 242, 0.7)), url('https://images.unsplash.com/photo-1596461404969-9ae70f2830c1?auto=format&fit=crop&q=80&w=800');
}

.gender-card.garcon {
    background-color: #E6F3FF;
    border: 3px dashed var(--primary-blue);
    background-image: linear-gradient(rgba(230, 243, 255, 0.7), rgba(230, 243, 255, 0.7)), url('https://images.unsplash.com/photo-1545558014-8692077e9b5c?auto=format&fit=crop&q=80&w=800');
}

.gender-card h3 {
    font-size: 50px;
    margin: 0;
    z-index: 2;
    font-weight: 800;
}

.gender-card.fille h3 {
    color: var(--accent-pink);
}

.gender-card.garcon h3 {
    color: var(--primary-blue);
}

/* Boutique Page Layout */
.boutique-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 120px;
    padding-bottom: 80px;
}

.filter-mobile-btn {
    display: none;
    margin-bottom: 20px;
    width: 100%;
}

.sidebar {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h3 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-list {}

.filter-item .count {
    background: #f1f3f5;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--gray-text);
}

/* Nested Filter List */
.nested-filter-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nested-item {
    margin-bottom: 10px;
}

.filter-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid var(--sky-blue);
    flex-shrink: 0;
}

.filter-category,
.filter-item {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-category {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    padding: 8px 0;
    justify-content: flex-start;
    border-bottom: 1px solid #f0f0f0;
}

.filter-category i {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.filter-category:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.sub-filter-list {
    max-height: 0;
    overflow: hidden;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 2px solid var(--sky-blue);
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.nested-item.open .sub-filter-list {
    max-height: 1000px;
    /* Increased for deeper lists */
    margin-top: 5px;
    padding-bottom: 10px;
    opacity: 1;
}

.nested-item.open .filter-category i {
    transform: rotate(180deg);
}

.sub-filter-list .filter-item {
    padding: 5px 0;
    font-size: 14px;
    border-bottom: none;
    color: var(--gray-text);
}

.sub-filter-list .filter-item:hover {
    color: var(--accent-pink);
    padding-left: 5px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
    border: 3px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.category-card[data-category="poupee"] {
    border-color: var(--accent-pink);
    background: #FFF0F5;
    color: var(--accent-pink);
}

.category-card[data-category="voiture"] {
    border-color: var(--primary-blue);
    background: #F0F8FF;
    color: var(--primary-blue);
}

.category-card[data-category="educatif"] {
    border-color: var(--accent-green);
    background: #F0FFF0;
    color: var(--accent-green);
}

.category-card[data-category="puzzle"] {
    border-color: var(--secondary-yellow);
    background: #FFFFF0;
    color: var(--secondary-yellow);
}

.category-icon {
    font-size: 60px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.2) rotate(10deg);
}

.category-card h3 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}

/* Price Filter */
.price-filter-container {
    max-width: 400px;
    margin: 40px auto 0;
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-filter-container label {
    font-weight: 600;
    color: var(--gray-text);
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #eee;
    outline: none;
    transition: .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-blue);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-blue);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .boutique-layout {
        grid-template-columns: 1fr;
        margin-top: 100px;
    }

    .filter-mobile-btn {
        display: block;
    }

    .sidebar {
        display: none;
        /* Hidden on mobile by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100%;
        z-index: 2000;
        border-radius: 0;
        overflow-y: auto;
    }

    .sidebar.active {
        display: block;
        animation: slideInLeft 0.3s ease;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 250px;
    position: relative;
    background: #f0f0f0;
}

.product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-img {
    height: 500px;
    /* Augmenté pour une visibilité maximale */
    position: relative;
    overflow: hidden;
    background: #fff;
    /* Fond blanc pour object-fit: contain */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Product List Slider (Index/Boutique) ── */
.product-slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.3s ease;
}

.product-slider img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Évite de couper les produits */
    padding: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    z-index: 10;
    padding: 0 10px;
}

.slider-dots span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.slider-dots span.active {
    background: white;
    transform: scale(1.3);
    width: 12px;
    border-radius: 3px;
}

.product-img:hover .slider-dots span {
    background: rgba(255, 255, 255, 0.8);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    transition: all 0.3s ease;
    border: none;
    color: var(--dark-text);
    font-size: 12px;
}

.product-img:hover .slider-nav {
    opacity: 1;
}

.slider-nav:hover {
    background: white;
    color: var(--primary-blue);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FF6B6B;
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.rating {
    color: #FFD93D;
    font-size: 14px;
    margin-bottom: 8px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.btn-add-to-cart {
    width: 100%;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 0 #357ABD;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-add-to-cart:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #357ABD;
    background: #357ABD;
}

/* Shopping Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
}

.cart-modal.open {
    right: 0;
}

.cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 15px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.empty-cart-msg {
    text-align: center;
    margin-top: 50px;
    color: var(--gray-text);
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.cart-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
}

.cart-item-price {
    color: var(--primary-blue);
    font-weight: 700;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.q-btn {
    background: var(--light-bg);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
}

.remove-item {
    color: var(--accent-pink);
    cursor: pointer;
    font-size: 18px;
}

.cart-footer {
    border-top: 2px solid var(--light-bg);
    padding-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-checkout {
    width: 100%;
}

/* About Section */
.rounded-img {
    border-radius: var(--border-radius);
    width: 100%;
}

.shadow {
    box-shadow: var(--shadow);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item i {
    font-size: 24px;
    color: var(--accent-pink);
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
}

/* Contact Section */
.info-list {
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}



.info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: white;
    padding: 60px 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .nav-logo-img {
    height: 160px;
    filter: brightness(0) invert(1);
    /* Make it white for footer */
}

.footer p {
    color: #BDC3C7;
    margin-bottom: 10px;
}

/* Animations */
.animate-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-up-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.animate-up-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.animate-fade {
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .boutique-layout {
        display: block;
    }

    .sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background: white;
        z-index: 3000;
        padding: 40px 20px;
        overflow-y: auto;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .sidebar.active {
        display: block;
    }

    .filter-mobile-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .mega-bubbly {
        font-size: 50px;
    }

    .sub-bubbly {
        font-size: 28px;
    }

    .hero-main-img {
        max-width: 90%;
        border-width: 8px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    #boutique-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-img {
        height: 450px;
        /* Très grand pour mobile comme demandé */
    }

    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 13px;
        height: 36px;
        line-height: 1.4;
    }

    .price {
        font-size: 15px;
    }

    .btn-add-to-cart {
        padding: 8px;
        font-size: 13px;
        border-radius: 10px;
    }

    .cart-modal {
        width: 100%;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

/* Background Decoration Icons */
.bg-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    color: var(--primary-blue);
}

.bg-decoration-1 {
    top: 10%;
    left: 5%;
    font-size: 80px;
    transform: rotate(-15deg);
}

.bg-decoration-2 {
    top: 40%;
    right: 5%;
    font-size: 100px;
    transform: rotate(20deg);
}

.bg-decoration-3 {
    bottom: 10%;
    left: 20%;
    font-size: 60px;
    transform: rotate(-10deg);
    color: var(--accent-pink);
}

.bg-decoration-4 {
    bottom: 20%;
    right: 10%;
    font-size: 90px;
    transform: rotate(15deg);
    color: var(--accent-green);
}

/* Card Shine Effect */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    z-index: 2;
}

.product-card:hover::before {
    left: 150%;
}

/* Sub-categories Mega Grid */
.mega-catalog {
    background: white;
    padding: 80px 0;
    border-top: 10px solid var(--sky-blue);
    position: relative;
    overflow: hidden;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.catalog-column h3 {
    font-size: 18px;
    color: var(--dark-text);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 800;
    border-bottom: 3px solid var(--sky-blue);
    padding-bottom: 10px;
    display: inline-block;
}

.catalog-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.catalog-list a {
    color: var(--gray-text);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.catalog-list a:hover {
    color: var(--accent-pink);
    padding-left: 5px;
}