
        @keyframes fadeSlideUp {
            0% { opacity: 0; transform: translateY(24px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes glowPulse {
            0% { box-shadow: 0 0 0 0 rgba(250, 207, 15, 0.4); }
            70% { box-shadow: 0 0 0 12px rgba(250, 207, 15, 0); }
            100% { box-shadow: 0 0 0 0 rgba(250, 207, 15, 0); }
        }

        .market-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .logo {
            display: inline-flex;
            align-items: baseline;
            gap: 0.15rem;
            font-weight: 800;
            font-size: 2.2rem;
            letter-spacing: -0.02em;
            background: var(--bleu-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-shadow: none;
        }

        .logo span:first-child {
            background: var(--jaune-orange-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .tagline {
            font-size: 0.9rem;
            color: #3a4a7a;
            margin-top: 0.5rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .tagline i {
            margin-right: 6px;
        }

        .hero-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem 1.5rem 4rem 1.5rem;
        }

        .card-message {
            max-width: 780px;
            width: 100%;
            background: var(--blanc);
            border-radius: 48px;
            padding: 3rem 2rem 3.5rem 2rem;
            text-align: center;
            box-shadow: var(--shadow-sm), 0 20px 35px -12px rgba(0,0,0,0.05);
            border: 1px solid rgba(224, 228, 236, 0.6);
            transition: var(--transition);
            animation: fadeSlideUp 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
        }

        .card-message:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .badge-collection {
            display: inline-block;
            background: var(--jaune-orange-gradient);
            padding: 0.4rem 1rem;
            border-radius: 60px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #1e2a47;
            margin-bottom: 1.8rem;
            text-transform: uppercase;
            backdrop-filter: blur(2px);
        }

        .badge-collection i {
            margin: 0 4px;
        }

        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #0a2c75 0%, #1e3d8c 50%, #e10600 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .description {
            font-size: 1.18rem;
            color: #2c3a5e;
            margin-bottom: 1.8rem;
            font-weight: 450;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .product-grid-hint {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0 2.2rem 0;
        }

        .hint-item {
            background: var(--gris-pale);
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--bleu);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(2px);
            border: 1px solid var(--gris-border);
            transition: var(--transition);
        }

        .hint-item:hover {
            background: var(--blanc);
            transform: scale(0.97);
            border-color: var(--jaune-orange);
        }

        .hint-item i {
            font-size: 1.2rem;
            width: 1.2rem;
        }

        .btn-shop-outer {
            margin: 1rem 0 0.5rem 0;
        }

        .btn-shop {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: var(--bleu-gradient);
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
            padding: 1rem 2.4rem;
            border-radius: 60px;
            text-decoration: none;
            letter-spacing: -0.2px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(10, 44, 117, 0.25);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,240,0.2);
        }

        .btn-shop:hover {
            transform: translateY(-3px);
            background: linear-gradient(145deg, #1a3c8c 0%, #0a2c75 50%, #05204d 100%);
            box-shadow: 0 20px 28px -10px rgba(10,44,117,0.4);
            gap: 16px;
        }

        .btn-shop:active {
            transform: translateY(2px);
        }

        .btn-shop i {
            font-size: 1.4rem;
        }

        .btn-shop .arrow-icon {
            transition: transform 0.2s;
        }

        .btn-shop:hover .arrow-icon {
            transform: translateX(6px);
        }

        .info-note {
            font-size: 0.8rem;
            color: #5e6f8d;
            margin-top: 1.8rem;
            background: rgba(250,207,15,0.08);
            display: inline-block;
            padding: 0.35rem 1rem;
            border-radius: 30px;
        }

        .info-note i {
            margin-right: 6px;
        }

        .inspire-strip {
            margin-top: 1rem;
            text-align: center;
            padding: 2rem 1rem 3rem 1rem;
            border-top: 1px solid var(--gris-border);
        }

        .inspire-title {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            color: var(--bleu);
            margin-bottom: 1.2rem;
        }

        .inspire-title i {
            margin: 0 6px;
        }

        .categories-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            row-gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .cat-item {
            background: white;
            padding: 0.8rem 1.5rem;
            border-radius: 80px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #0a2c75;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
            border: 1px solid var(--gris-border);
            transition: all 0.2s;
        }

        .cat-item i:first-child {
            font-size: 1.3rem;
            width: 1.3rem;
        }

        .cat-item:hover {
            border-color: var(--jaune-orange);
            background: #fffcf0;
            transform: translateY(-2px);
        }

        .footer-note {
            text-align: center;
            padding: 2rem 1rem;
            font-size: 0.75rem;
            color: #5e6f8d;
            border-top: 1px solid var(--gris-border);
            background: var(--gris-pale);
        }

        .footer-note i {
            margin: 0 4px;
        }

        /* responsive */
        @media (max-width: 640px) {
            h1 {
                font-size: 2rem;
            }
            .card-message {
                padding: 2rem 1.2rem;
            }
            .btn-shop {
                font-size: 1.1rem;
                padding: 0.85rem 1.8rem;
            }
            .description {
                font-size: 1rem;
            }
            .product-grid-hint {
                gap: 0.7rem;
            }
            .hint-item {
                padding: 0.4rem 1rem;
                font-size: 0.8rem;
            }
            .categories-row {
                gap: 1rem;
            }
            .cat-item {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        .pulse-soft {
            animation: glowPulse 2s infinite;
        }