.boutique-wrap {
  padding: 6vh 5vw;
}

.boutique-head {
  text-align: center;
  margin-bottom: 4rem;
}

.boutique-intro {
  max-width: 600px;
  margin: 0 auto;
  color: #aaa;
}

.boutique-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.item:hover {
  transform: translateY(-4px);
  border-color: #a8ff60;
}

.item-media img {
  width: 100%;
  display: block;
}

.item-body {
  padding: 1.5rem;
  text-align: center;
}

.item-title {
  font-family: var(--font-gothic, "Cardo", serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.item-desc {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.item-price {
  font-weight: bold;
  color: #a8ff60;
  margin-bottom: 0.8rem;
}
.shop-grid {
  max-width: 960px;
  margin: 2rem auto;
}
/* Empêche le cadre de déborder sur la colonne entière */
.shop-grid .shop-card {
  border: none; /* Supprime le grand cadre vertical */
}

/* Applique le cadre uniquement autour du visuel (l'image ou la vidéo) */
.shop-grid .shop-media {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0;
  display: inline-block;
}

/* Évite les débordements et aligne mieux les éléments */
.shop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.shop-card {
  flex: 1 1 300px;
  max-width: 350px;
}
/* — Corrige la grille : on garde une grille CSS propre — */
.shop-grid{
  display:grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap:1.25rem !important;
  margin:2rem 0 !important;
}

/* — Le cadre ne s’applique que sur le visuel, pas sur toute la colonne — */
.shop-item{ border:none !important; }
.item-media{
  border:1px solid rgba(255,255,255,0.15);
  border-radius:.5rem;
  overflow:hidden;
}
.item-media img,
.item-media video{
  display:block; width:100%; height:auto;
}

/* — Bouton “Acheter” (base + hover émeraude) — */
.shop-item .btn{
  background:#1a1a1a;
  color:#f5f5f5;
  border:1px solid rgba(255,255,255,0.15);
  padding:.6em 1.4em;
  font-weight:700;
  border-radius:.4em;
  text-decoration:none;
  transition:all .25s ease;
}
.shop-item .btn:hover{
  color:#000;
  background:#a8ff60;        /* vert émeraude/phospho */
  border-color:#a8ff60;
  box-shadow:0 0 20px #a8ff60;
  transform:translateY(-2px);
}
.shop-legal {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.8rem;
  color: #777;
}

.shop-legal a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.shop-legal a:hover {
  color: #a8ff60; /* ton vert phospho émeraude */
}