:root{
  --bg:#0a0a0a;
  --card:#1a1a1b;
  --primary:#ff006e;
  --text:#fff;
  --muted:#aaa;
  --radius:12px;
  --max:1200px;
  --font:'Inter',sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:var(--font);background:var(--bg);color:var(--text);line-height:1.6}
.container{max-width:var(--max);margin:0 auto;padding:0 1rem}

/* HEADER */
.header{position:fixed;top:0;width:100%;background:rgba(255,255,255,.05);backdrop-filter:blur(8px);z-index:1000}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem}
.logo{font-size:1.5rem;font-weight:800;color:var(--primary)}
.nav{display:flex;gap:1.5rem}
.nav a{color:var(--text);text-decoration:none;font-weight:600}
.hamburger{display:none;flex-direction:column;gap:4px;background:none;border:none;cursor:pointer}
.hamburger span{width:24px;height:3px;background:var(--text);transition:.3s}

/* HERO */
.hero{text-align:center;padding:8rem 1rem 4rem;background:radial-gradient(circle at top right,rgba(255,0,110,.15),transparent 50%),radial-gradient(circle at bottom left,rgba(58,134,255,.15),transparent 50%)}
.hero h1{font-size:clamp(2rem,5vw,3rem);font-weight:800;margin-bottom:.5rem}
.hero p{color:var(--muted);margin-bottom:1.5rem}
.hero button{background:linear-gradient(135deg,#ff006e,#3a86ff);color:#fff;border:none;padding:.75rem 1.5rem;border-radius:50px;font-weight:600;cursor:pointer;transition:transform .3s}
.hero button:hover{transform:translateY(-2px)}

/* PRODUCTS */
.products{padding:2rem 1rem}
.products h2{text-align:center;font-size:2rem;margin-bottom:2rem}
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem}

/* CARD */
.product-card{background:var(--card);border-radius:var(--radius);overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.4);display:flex;flex-direction:column;transition:transform .3s}
.product-card:hover{transform:translateY(-6px)}

/* 🖼️ Images non écrasées et parfaitement centrées */
.product-image {
  width: 100%;
  height: 240px;
  object-fit: cover;        /* ← pas de distorsion, remplit sans étirer */
  object-position: center;  /* ← centre le sujet */
  border-radius: 0;         /* ← coins nets pour un look pro */
}


.product-body{padding:1rem;flex:1}
.product-title{font-size:1.1rem;font-weight:600;margin-bottom:.5rem}
.product-price{font-size:1.3rem;font-weight:700;color:var(--primary);margin:.5rem 0}
.product-btn{background:#ff9900;color:#fff;padding:.5rem 1rem;border:none;border-radius:6px;font-weight:600;text-decoration:none;display:inline-block;margin-top:.5rem;transition:background .3s}
.product-btn:hover{background:#e08600}

/* FOOTER */
.footer{text-align:center;padding:2rem;color:var(--muted);font-size:.9rem}

/* RESPONSIVE NAV */
@media(max-width:768px){
  .nav{position:absolute;top:64px;right:0;background:var(--card);width:200px;height:0;flex-direction:column;align-items:flex-start;padding:0 1rem;overflow:hidden;transition:height .3s}
  .nav.open{height:160px;padding:1rem}
  .hamburger{display:flex}
}

.product-image {
  transition: transform 0.3s ease;
}
.product-card:hover .product-image {
  transform: scale(1.05);   /* zoom subtil */
}