/* ========================================================
   BOUTIQUE - DESIGN DES PRODUITS
======================================================== */

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: linear-gradient(135deg, #16161f 0%, #0a0a0f 100%);
    border: 1px solid var(--line);
    padding: 20px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Petit effet badge (si tu ajoutes <div class="badge">NOUVEAU</div> dans ton HTML) */
.product-card .badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: white;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 5px 30px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #050507;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border-radius: 4px;
    transition: 0.3s ease; /* Pour animer l'image au survol */
}

.product-card:hover .product-image {
    background: #0a0a0f;
}

.product-category {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.product-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
}

.buy-btn {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px; /* Rend le bouton un peu plus doux */
}

.buy-btn:hover {
    background: var(--accent-bright);
    letter-spacing: 2px; /* Un peu plus d'écart au survol */
    box-shadow: 0 0 15px var(--accent); /* Effet néon */
}