<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ALmodding Shop</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #00d4ff;
            --secondary-color: #0066ff;
            --dark-bg: #0a0e27;
            --card-bg: #151b3d;
            --text-light: #e0e7ff;
            --text-muted: #8b92b8;
            --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
            --glow-primary: 0 0 20px rgba(0, 212, 255, 0.4);
            --glow-hover: 0 0 30px rgba(0, 212, 255, 0.6);
        }

        body {
            margin: 0;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f45 50%, #0a0e27 100%);
            background-attachment: fixed;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-light);
            min-height: 100vh;
        }

        /* Navbar moderne */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(21, 27, 61, 0.8);
            backdrop-filter: blur(20px);
            padding: 1.5rem 3rem;
            margin: 2rem auto;
            max-width: 1400px;
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.1);
            box-shadow: var(--glow-primary), 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 3rem;
            margin: 0;
            padding: 0;
        }

        .navbar a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 600;
            position: relative;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .navbar a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: width 0.3s ease;
        }

        .navbar a:hover {
            color: var(--primary-color);
        }

        .navbar a:hover::after {
            width: 100%;
        }

        .social-buttons {
            display: flex;
            gap: 1rem;
        }

        .social-buttons img {
            width: 40px;
            height: 40px;
            transition: all 0.3s ease;
            filter: brightness(0.8);
            border-radius: 8px;
        }

        .social-buttons img:hover {
            transform: translateY(-3px) scale(1.1);
            filter: brightness(1.2);
            box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
        }

        .cart-icon {
            position: relative;
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 10px;
            background: rgba(0, 212, 255, 0.05);
        }

        .cart-icon:hover {
            background: rgba(0, 212, 255, 0.15);
            transform: scale(1.1);
        }

        .badge {
            background: linear-gradient(135deg, #ff4757, #ff6b81);
            color: white;
            border-radius: 50%;
            padding: 4px 8px;
            font-size: 0.75rem;
            font-weight: bold;
            position: absolute;
            top: 0;
            right: 0;
            box-shadow: 0 4px 10px rgba(255, 71, 87, 0.4);
        }

        /* Container principal */
        .container {
            text-align: center;
            margin: 3rem auto;
            color: white;
            padding: 2rem;
            max-width: 1400px;
        }

        #bvn, h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5)); }
            to { filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8)); }
        }

        .container p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        /* Cartes modernes */
        .cards-section, .photo-gallery, .products-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .card, .product-card, .photo-card {
            background: linear-gradient(135deg, rgba(21, 27, 61, 0.9) 0%, rgba(30, 40, 80, 0.9) 100%);
            border-radius: 20px;
            padding: 2.5rem;
            color: white;
            text-align: left;
            border: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .card::before, .product-card::before, .photo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .card:hover, .product-card:hover, .photo-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--glow-hover), 0 20px 60px rgba(0, 0, 0, 0.4);
            border-color: var(--primary-color);
        }

        .card:hover::before, .product-card:hover::before, .photo-card:hover::before {
            transform: scaleX(1);
        }

        .card h2, .product-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .card p, .product-card p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .product-card .price {
            margin-top: 1.5rem;
            font-weight: 800;
            font-size: 2rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Boutons modernes */
        button, .checkout-btn {
            background: var(--accent-gradient);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        button:hover, .checkout-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 212, 255, 0.5);
        }

        button:active, .checkout-btn:active {
            transform: translateY(0);
        }

        button:disabled, .checkout-btn:disabled {
            background: linear-gradient(135deg, #4a5568, #2d3748);
            cursor: not-allowed;
            box-shadow: none;
            opacity: 0.5;
        }

        /* Filtres */
        .photo-filters {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .photo-filters button {
            background: rgba(21, 27, 61, 0.6);
            color: var(--primary-color);
            padding: 0.8rem 1.5rem;
            border: 2px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .photo-filters button:hover {
            background: var(--accent-gradient);
            color: white;
            border-color: transparent;
        }

        /* Photos */
        .photo-card {
            padding: 0;
            overflow: hidden;
            text-align: center;
        }

        .photo-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .photo-card:hover img {
            transform: scale(1.1);
        }

        .photo-card h3 {
            padding: 1.5rem;
            color: var(--primary-color);
            font-size: 1.2rem;
            background: rgba(10, 14, 39, 0.9);
        }

        /* Panier */
        #cart-items {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, rgba(21, 27, 61, 0.9), rgba(30, 40, 80, 0.9));
            border-radius: 15px;
            padding: 1.5rem 2rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .cart-item:hover {
            transform: translateX(5px);
            border-color: var(--primary-color);
            box-shadow: var(--glow-hover);
        }

        .cart-item .name {
            font-weight: 600;
            font-size: 1.2rem;
            flex: 1;
            color: var(--text-light);
        }

        .cart-item .price {
            width: 120px;
            text-align: right;
            font-weight: 700;
            font-size: 1.3rem;
            margin-right: 1.5rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cart-item button {
            background: linear-gradient(135deg, #ff4757, #ff6b81);
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
        }

        .total {
            max-width: 900px;
            margin: 2rem auto;
            text-align: right;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            text-shadow: var(--glow-primary);
        }

        .checkout-btn {
            display: block;
            max-width: 900px;
            margin: 2rem auto;
            padding: 1.5rem;
            font-size: 1.3rem;
        }

        .empty-msg {
            max-width: 900px;
            margin: 4rem auto;
            text-align: center;
            font-size: 1.5rem;
            color: var(--text-muted);
            font-style: italic;
        }

        /* Section À propos */
        .about-section {
            margin-bottom: 3rem;
            background: linear-gradient(135deg, rgba(21, 27, 61, 0.9), rgba(30, 40, 80, 0.9));
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            color: var(--text-light);
        }

        .about-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 2rem;
            font-weight: 700;
        }

        .about-section ul {
            padding-left: 2rem;
            line-height: 2;
        }

        .about-section ul li {
            margin-bottom: 1rem;
            color: var(--text-muted);
        }

        .about-section a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .about-section a:hover {
            color: var(--secondary-color);
            text-shadow: var(--glow-primary);
        }

        /* Formulaire caisse */
        #checkout-container {
            background: linear-gradient(135deg, rgba(21, 27, 61, 0.9), rgba(30, 40, 80, 0.9));
            max-width: 600px;
            margin: 3rem auto;
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: var(--glow-primary), 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        form label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: var(--text-light);
            font-size: 1rem;
        }

        form input[type="text"],
        form input[type="email"] {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border-radius: 12px;
            border: 2px solid rgba(0, 212, 255, 0.2);
            background: rgba(10, 14, 39, 0.6);
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        form input:focus {
            outline: none;
            border-color: var(--primary-color);
            background: rgba(10, 14, 39, 0.8);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        #pay-button {
            width: 100%;
            padding: 1.2rem;
            font-size: 1.2rem;
            margin-top: 1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1.5rem;
            }

            .nav-links {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .cards-section, .photo-gallery, .products-section {
                grid-template-columns: 1fr;
                padding: 1rem;
            }

            #bvn, h1 {
                font-size: 2rem;
            }

            .cart-item {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .cart-item .price {
                width: auto;
                margin-right: 0;
            }
        }

        /* Animation d'apparition */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card, .product-card, .photo-card, .cart-item {
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .card:nth-child(1) { animation-delay: 0.1s; }
        .card:nth-child(2) { animation-delay: 0.2s; }
        .card:nth-child(3) { animation-delay: 0.3s; }
        .card:nth-child(4) { animation-delay: 0.4s; }
        .card:nth-child(5) { animation-delay: 0.5s; }
    </style>
</head>
<body>
    <nav class="navbar">
        <ul class="nav-links">
            <li><a href="/index.html">Accueil</a></li>
            <li><a href="/boutique.html">Boutique</a></li>
            <li><a href="/photos.html">Photos</a></li>
            <li><a href="/a-props.html">À propos</a></li>
        </ul>
        <div class="cart-icon" onclick="alert('Panier')">
            🛒 <span class="badge" id="cart-count">0</span>
        </div>
        <div class="social-buttons">
            <a href="https://discord.gg/UttyEm26vR" target="_blank" aria-label="Serveur Discord">
                <img src="https://cdn-icons-png.flaticon.com/512/906/906361.png" alt="Discord">
            </a>
            <a href="https://www.tiktok.com/@almodding" target="_blank" aria-label="TikTok">
                <img src="https://cdn-icons-png.flaticon.com/512/3046/3046121.png" alt="TikTok">
            </a>
            <a href="https://www.youtube.com/@ALmodding1" target="_blank" aria-label="YouTube">
                <img src="https://cdn-icons-png.flaticon.com/512/1384/1384060.png" alt="YouTube">
            </a>
        </div>
    </nav>

    <div class="container">
        <h1 id="bvn">Bienvenue sur ALmodding Shop</h1>
        <p>Découvrez nos derniers produits et offres exclusives.</p>
        <p>Si vous souhaitez voir des vidéos de présentations, elles se trouvent sur ma chaîne YouTube.</p>
        
        <section class="cards-section">
            <div class="card">
                <h2>📜 Script</h2>
                <p>Scripts optimisés pour vos serveurs FiveM. Faciles à configurer, performants.</p>
            </div>
            <div class="card">
                <h2>👕 Tenue</h2>
                <p>Tenues FDO, Pompier, Civil... sur-mesure ou prêtes à l'emploi pour enrichir votre RP.</p>
            </div>
            <div class="card">
                <h2>🏠 MLO / Mapping</h2>
                <p>Des intérieurs immersifs, des mappings complets et réalistes pour tous types de serveurs.</p>
            </div>
            <div class="card">
                <h2>🧱 Props</h2>
                <p>Objets personnalisés pour améliorer vos scènes : barrières, équipements.</p>
            </div>
            <div class="card">
                <h2>🚔 Véhicule</h2>
                <p>Véhicules débadgés, entièrement optimisés pour le jeu.</p>
            </div>
        </section>
    </div>
</body>
</html>