        :root {
            --ph-red: #E31837;
            --ph-red-hover: #C0122C;
            --ph-red-soft: rgba(227, 24, 55, 0.08);
            --ph-dark: #0F172A;
            --ph-dark-light: #1E293B;
            --ph-gray-bg: #F8FAFC;
            --ph-border: #E2E8F0;
            --ph-text-muted: #64748B;
            --ph-text-main: #1E293B;
            --ph-green: #10B981;
            --ph-yellow: #F59E0B;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 30px -4px rgba(0, 0, 0, 0.12);
        }

        body {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            color: var(--ph-text-main);
            background-color: #FFFFFF;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Top Notification Bar */
        .top-bar {
            background-color: var(--ph-dark);
            color: #94A3B8;
            font-size: 0.82rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .top-bar a {
            color: #CBD5E1;
            transition: color 0.2s ease;
        }
        .top-bar a:hover {
            color: #FFFFFF;
        }

        /* Header Principal */
        .main-header {
            padding: 16px 0;
            background: #FFFFFF;
            border-bottom: 1px solid var(--ph-border);
            position: sticky;
            top: 0;
            z-index: 1020;
            backdrop-filter: blur(10px);
        }

        .brand-logo-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-icon-box {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--ph-red) 0%, #B91C1C 100%);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            box-shadow: 0 4px 12px rgba(227, 24, 55, 0.25);
        }

        .brand-title {
            font-weight: 800;
            font-size: 1.35rem;
            letter-spacing: -0.5px;
            color: var(--ph-dark);
            line-height: 1;
        }

        .brand-subtitle {
            font-size: 0.72rem;
            color: var(--ph-text-muted);
            font-weight: 500;
            display: block;
            margin-top: 2px;
        }

        /* Barre de Recherche Évoluée */
        .search-container {
            position: relative;
            max-width: 580px;
            width: 100%;
        }

        .search-input-group {
            display: flex;
            align-items: center;
            background: var(--ph-gray-bg);
            border: 1.5px solid var(--ph-border);
            border-radius: 40px;
            padding: 4px 6px 4px 18px;
            transition: all 0.25s ease;
        }

        .search-input-group:focus-within {
            border-color: var(--ph-red);
            background: #FFFFFF;
            box-shadow: 0 0 0 4px rgba(227, 24, 55, 0.1);
        }

        .search-input {
            border: none;
            background: transparent;
            outline: none;
            width: 100%;
            font-size: 0.9rem;
            color: var(--ph-dark);
        }

        .btn-search {
            background: var(--ph-red);
            color: white;
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            flex-shrink: 0;
        }

        .btn-search:hover {
            background: var(--ph-red-hover);
        }

        /* Actions Header */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            transition: background 0.2s;
            cursor: pointer;
            position: relative;
        }

        .action-btn:hover {
            background: var(--ph-gray-bg);
        }

        .action-icon-wrapper {
            position: relative;
            font-size: 1.35rem;
            color: var(--ph-dark);
        }

        .badge-pill {
            position: absolute;
            top: -6px;
            right: -8px;
            background-color: var(--ph-red);
            color: white;
            font-size: 0.68rem;
            font-weight: 700;
            height: 18px;
            min-width: 18px;
            padding: 0 5px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
        }

        /* Menu de Navigation */
        .main-nav {
            background: var(--ph-dark);
            padding: 0;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 4px;
        }

        .nav-link-custom {
            color: #E2E8F0;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 14px 16px;
            display: block;
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .nav-link-custom:hover, .nav-link-custom.active {
            color: white;
            background: rgba(255, 255, 255, 0.08);
        }

        .btn-all-categories {
            background: var(--ph-red);
            color: white;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 14px 22px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: none;
            transition: background 0.2s;
        }

        .btn-all-categories:hover {
            background: var(--ph-red-hover);
            color: white;
        }

        /* Hero Banner Section - Full Width Desktop */
        .hero-section-full {
            position: relative;
            background: linear-gradient(110deg, #0F172A 1%, #1E293B 5%, #0F172A 10%);
            color: white;
            padding: 80px 0;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            width: 100%;
        }

        .hero-bg-overlay {
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background-image: url('https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&q=80&w=1920');
            background-size: cover;
            background-position: center;
            opacity: 0.22;
            mix-blend-mode: overlay;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 680px;
        }

        .pill-badge {
            background: rgba(227, 24, 55, 0.2);
            border: 1px solid rgba(227, 24, 55, 0.4);
            color: #FF8A9A;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: pulseGlow 2.5s infinite ease-in-out;
        }

        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(227, 24, 55, 0.4); }
            50% { box-shadow: 0 0 0 10px rgba(227, 24, 55, 0); }
        }

        /* Typewriter Animation Effect */
        .typewriter-text {
            background: linear-gradient(135deg, #FF6B81, #E31837);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            display: inline-block;
            min-width: 150px;
        }

        .typewriter-cursor {
            display: inline-block;
            color: var(--ph-red);
            font-weight: 300;
            animation: blinkCursor 0.8s infinite;
            margin-left: 2px;
        }

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

        .hero-title {
            font-size: clamp(2.3rem, 4.2vw, 3.4rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: #CBD5E1;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .hero-cta-group {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-ph-primary {
            background: var(--ph-red);
            color: white;
            font-weight: 700;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.25s ease;
            box-shadow: 0 4px 15px rgba(227, 24, 55, 0.35);
        }

        .btn-ph-primary:hover {
            background: var(--ph-red-hover);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(227, 24, 55, 0.45);
        }

        .btn-ph-outline {
            border: 1.5px solid rgba(255,255,255,0.3);
            color: white;
            font-weight: 600;
            padding: 14px 26px;
            border-radius: var(--radius-sm);
            transition: all 0.25s ease;
        }

        .btn-ph-outline:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        /* Floating Hero Card */
        .hero-card-floating {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: var(--radius-md);
            padding: 24px;
            color: var(--ph-dark);
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 2;
        }

        .animate-float {
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Scroll Reveal Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(35px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform, opacity;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Section Header Styling */
        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 28px;
        }

        .section-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--ph-dark);
            letter-spacing: -0.5px;
            margin-bottom: 0;
        }

        /* Category Card Styling (Full Top Image Cover) */
        .category-card {
            background: white;
            border: 1px solid var(--ph-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }

        .category-card:hover {
            border-color: var(--ph-red);
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .category-img-box {
            width: 100%;
            height: 145px;
            border-radius: 0;
            background: var(--ph-gray-bg);
            display: block;
            margin-bottom: 0;
            overflow: hidden;
            position: relative;
        }

        .category-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover .category-img-box img {
            transform: scale(1.1);
        }

        .category-body {
            padding: 14px 10px;
            text-align: center;
            background: white;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .category-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--ph-dark);
            margin-bottom: 2px;
        }

        .category-count-badge {
            font-size: 0.75rem;
            color: var(--ph-text-muted);
            font-weight: 500;
        }

        /* Carousel Horizontal Container */
        .carousel-scroll-container {
            display: flex;
            gap: 18px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 15px;
            scrollbar-width: none;
        }
        .carousel-scroll-container::-webkit-scrollbar {
            display: none;
        }

        /* E-Commerce Product Cards */
        .ph-product-card {
            background: white;
            border: 1px solid var(--ph-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .ph-product-card:hover {
            box-shadow: 0 16px 32px -8px rgba(227, 24, 55, 0.18), 0 8px 16px -4px rgba(0, 0, 0, 0.08);
            border-color: rgba(227, 24, 55, 0.35);
            transform: translateY(-8px);
        }

        .product-badge-discount {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--ph-red);
            color: white;
            font-size: 0.75rem;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 6px;
            z-index: 3;
            box-shadow: 0 4px 10px rgba(227, 24, 55, 0.3);
        }

        .product-wishlist-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ph-text-muted);
            z-index: 5;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--shadow-sm);
        }

        .product-wishlist-btn:hover, .product-wishlist-btn.active {
            color: var(--ph-red);
            background: white;
            transform: scale(1.15) rotate(8deg);
            box-shadow: 0 4px 12px rgba(227, 24, 55, 0.25);
        }

        .product-image-container {
            width: 100%;
            height: 210px;
            overflow: hidden;
            background: #F1F5F9;
            position: relative;
        }

        .product-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .ph-product-card:hover .product-image-container img {
            transform: scale(1.12);
        }

        /* Overlay d'action rapide au survol de l'image */
        .product-quick-overlay {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            padding: 12px;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            z-index: 4;
        }

        .ph-product-card:hover .product-quick-overlay {
            bottom: 0;
            opacity: 1;
        }

        .btn-quick-view {
            background: white;
            color: var(--ph-dark);
            border: none;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-quick-view:hover {
            background: var(--ph-red);
            color: white;
            transform: scale(1.05);
        }

        .product-details {
            padding: 16px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-category-tag {
            font-size: 0.72rem;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--ph-text-muted);
            margin-bottom: 4px;
            letter-spacing: 0.5px;
        }

        .product-title-text {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--ph-dark);
            margin-bottom: 8px;
            line-height: 1.35;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s ease;
        }

        .ph-product-card:hover .product-title-text {
            color: var(--ph-red);
        }

        .rating-stars {
            color: var(--ph-yellow);
            font-size: 0.78rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .price-wrapper {
            margin-top: auto;
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 12px;
        }

        .current-price {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--ph-dark);
        }

        .old-price-text {
            font-size: 0.85rem;
            color: var(--ph-text-muted);
            text-decoration: line-through;
        }

        .btn-add-cart-ph {
            width: 100%;
            background: var(--ph-gray-bg);
            border: 1px solid var(--ph-border);
            color: var(--ph-dark);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 10px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.25s ease;
        }

        .btn-add-cart-ph:hover {
            background: var(--ph-red);
            color: white;
            border-color: var(--ph-red);
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(227, 24, 55, 0.35);
        }

        /* Section Inspiration Grid */
        .inspiration-card-ph {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 260px;
            box-shadow: var(--shadow-sm);
        }

        .inspiration-card-ph img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .inspiration-card-ph:hover img {
            transform: scale(1.08);
        }

        .inspiration-overlay-content {
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: white;
        }

        .inspiration-title-text {
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 6px;
            line-height: 1.2;
        }

        .inspiration-link-text {
            color: #F87171;
            font-size: 0.82rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* Espace Pro Section Banner */
        .pro-banner-card {
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            border-radius: var(--radius-lg);
            color: white;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .pro-grid-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }

        .pro-feature-item {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-sm);
            padding: 16px;
            text-align: center;
        }

        .pro-feature-item i {
            font-size: 1.5rem;
            color: var(--ph-red);
            margin-bottom: 8px;
        }

        .pro-feature-item h6 {
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 2px;
        }

        .pro-feature-item span {
            font-size: 0.72rem;
            color: #94A3B8;
        }

        /* Trust Bar Features */
        .trust-bar {
            background: var(--ph-gray-bg);
            border-top: 1px solid var(--ph-border);
            border-bottom: 1px solid var(--ph-border);
            padding: 25px 0;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .trust-icon {
            width: 42px;
            height: 42px;
            background: white;
            border: 1px solid var(--ph-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ph-red);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        /* Main Footer Modernisé */
        .footer-dark {
            background: linear-gradient(180deg, #0F172A 0%, #090D16 100%);
            color: #94A3B8;
            padding-top: 70px;
            padding-bottom: 35px;
            font-size: 0.88rem;
            border-top: 4px solid var(--ph-red);
            position: relative;
        }

        @media (max-width: 991.98px) {
            .footer-dark {
                padding-bottom: 85px;
            }
        }

        .footer-heading {
            color: white;
            font-weight: 800;
            font-size: 1.05rem;
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 10px;
            letter-spacing: -0.2px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 32px;
            height: 3px;
            background: var(--ph-red);
            border-radius: 2px;
        }

        .footer-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

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

        .footer-links-list li a {
            color: #94A3B8;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
        }

        .footer-links-list li a::before {
            content: "›";
            opacity: 0;
            margin-right: -8px;
            color: var(--ph-red);
            font-size: 1.1rem;
            font-weight: 700;
            transition: all 0.25s ease;
        }

        .footer-links-list li a:hover {
            color: #FFFFFF;
            transform: translateX(6px);
        }

        .footer-links-list li a:hover::before {
            opacity: 1;
            margin-right: 6px;
        }

        .social-icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            color: #CBD5E1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
        }

        .social-icon-btn:hover {
            background: var(--ph-red);
            color: white;
            border-color: var(--ph-red);
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 6px 16px rgba(227, 24, 55, 0.4);
        }

        .newsletter-box {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 20px;
        }

        .payment-badge {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 6px 14px;
            border-radius: 6px;
            color: #E2E8F0;
            font-size: 0.8rem;
            font-weight: 700;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .payment-badge:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
        }

        .scroll-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: white;
            border: 1px solid var(--ph-border);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: all 0.2s ease;
        }

        .scroll-btn:hover {
            background: var(--ph-red);
            color: white;
            border-color: var(--ph-red);
        }

        /* Back to Top Button */
        .back-to-top-btn {
            position: fixed;
            bottom: 85px;
            right: 20px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--ph-red);
            color: white;
            border: none;
            box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1040;
        }

        .back-to-top-btn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top-btn:hover {
            background: var(--ph-red-hover);
            transform: translateY(-4px) scale(1.08);
            box-shadow: 0 6px 20px rgba(227, 24, 55, 0.55);
            color: white;
        }

        @media (min-width: 992px) {
            .back-to-top-btn {
                bottom: 30px;
                right: 30px;
                width: 48px;
                height: 48px;
            }
        }