/* =========================================
   GAMMES.CSS - Vitrine des produits
   ========================================= */
.page-header { padding: 180px 0 80px; text-align: center; background: var(--bg-offwhite); border-bottom: 1px solid #e2e8f0; }

.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 50px; }
.filter-btn { padding: 10px 25px; border-radius: 50px; border: 1px solid #cbd5e1; background: white; color: var(--text-dark); cursor: pointer; transition: var(--transition); font-weight: 600; font-size: 15px; }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 15px rgba(29, 78, 216, 0.2); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.product-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: var(--transition); border: 1px solid #f1f5f9; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: #e2e8f0; }

.product-img { height: 280px; overflow: hidden; background: #f8fafc; display: flex; align-items: center; justify-content: center; padding: 20px; }
.product-img img { max-width: 100%; max-height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.product-card:hover .product-img img { transform: scale(1.08); }

.product-info { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.product-category { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.product-title { font-size: 22px; margin-bottom: 12px; }
.product-desc { color: var(--text-light); font-size: 15px; margin-bottom: 25px; flex-grow: 1; }

.product-btn { display: inline-block; width: 100%; text-align: center; padding: 14px; border: 2px solid var(--primary); color: var(--primary); border-radius: 12px; font-weight: 600; transition: var(--transition); }
.product-btn:hover { background: var(--primary); color: white; }

@keyframes fadeInCard { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }