body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0e0e0e;
  color: #fff;
}

.main-header {
  background: #1a1a1a;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #EA6122;
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-header h1 {
  margin: 0;
  color: #EA6122;
  font-size: 32px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

nav li {
  margin: 0 15px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

nav a:hover {
  color: #EA6122;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.reseaux {
  position: relative;
  z-index: 10;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  background: rgba(0,0,0,0.5);
  z-index: 0; /* très important */
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #EA6122;
  animation: fadeIn 1s ease-in-out;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px #000;
}

.hero p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}

.btn-orange {
  background: #EA6122;
  color: #000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.btn-orange:hover {
  background: #ff6600;
  transform: scale(1.05);
}

.features {
  display: flex;
  justify-content: space-around;
  background: #1a1a1a;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.feature {
  max-width: 300px;
  background: #222;
  padding: 30px;
  margin: 10px;
  border-left: 5px solid #EA6122;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.2);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature h3 {
  margin-top: 0;
  color: #EA6122;
}

footer {
  text-align: center;
  padding: 20px;
  background: #1a1a1a;
  border-top: 2px solid #EA6122;
  font-size: 14px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}
.jeux-section {
  padding: 60px 30px;
  background-color: #0e0e0e;
  text-align: center;
}

.jeux-section h2 {
  font-size: 36px;
  color: #EA6122;
  margin-bottom: 40px;
}

.jeux-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.jeu-card {
  width: 240px;
  background: #111;
  border: 2px solid #EA6122;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 15px #ea612255;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}
.jeu-img-wrapper {
  height: 140px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
}

.jeu-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jeu-card:hover {
  transform: scale(1.03);
}

.jeu-card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
}

.jeu-card h3 {
  color: #EA6122;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1em;
  margin: 8px 0 12px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jeu-card p {
  font-size: 14px;
  color: #ccc;
}

.jeu-card .date {
  display: block;
  margin-top: 10px;
  color: #999;
  font-size: 12px;
}
.login-box {
  width: 300px;
  margin: 100px auto;
  background: #1a1a1a;
  padding: 30px;
  border-left: 5px solid #EA6122;
  box-shadow: 0 0 10px rgba(255,165,0,0.3);
  text-align: center;
}

.login-box input {
  width: 90%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.admin-panel {
  padding: 40px;
  text-align: center;
}
form input, form textarea {
  width: 90%;
  padding: 10px;
  margin-bottom: 10px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #EA6122;
  border-radius: 5px;
}

form textarea {
  height: 100px;
  resize: vertical;
}
.admin-table {
  width: 90%;
  margin: 30px auto;
  border-collapse: collapse;
  background: #1a1a1a;
  color: white;
}

.admin-table th, .admin-table td {
  border: 1px solid #EA6122;
  padding: 10px;
  text-align: center;
}

.admin-table img {
  border-radius: 5px;
}

.btn-supprimer {
  background-color: #ff3c3c;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-supprimer:hover {
  background-color: #cc0000;
}
.jeux-section h2 {
  margin-bottom: 30px;
}

.jeux-section div.review-box {
  background-color: #1a1a1a;
  border-left: 5px solid #EA6122;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255,165,0,0.2);
}
.contact-section {
  background-color: #0e0e0e;
  padding: 60px 30px;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  color: #EA6122;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #EA6122;
  background: #1a1a1a;
  color: white;
  font-family: inherit;
  box-sizing: border-box;
  border-radius: 6px;
}

.contact-form .btn-orange.full-width {
  width: 100%;
  font-weight: bold;
  font-size: 1em;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}
.contact-info {
  text-align: center;
  background: #121212;
  padding: 40px;
  color: #fff;
}

.contact-info h3 {
  font-size: 28px;
  color: #EA6122;
  margin-bottom: 15px;
}

.map-container {
  margin-top: 20px;
  border: 3px solid #EA6122;
  border-radius: 8px;
  overflow: hidden;
}
.about-section, .team-section {
  background-color: #0e0e0e;
  padding: 60px 30px;
  text-align: center;
  color: #fff;
}

.about-section h2, .team-section h2 {
  font-size: 36px;
  color: #EA6122;
  margin-bottom: 20px;
}

.team-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.team-card {
  background: #1a1a1a;
  border: 1px solid #EA6122;
  border-radius: 10px;
  width: 280px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 8px rgba(234, 97, 34, 0.2);
  transition: background 0.3s ease;
}

.team-card img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 2px solid #EA6122;
  margin-bottom: 10px;
}
.team-card:hover {
  background: #222;
  box-shadow: 0 0 20px rgba(234, 97, 34, 0.2);
  cursor: default; /* très important : PAS "pointer" */
}
.icon-joystick {
  font-size: 30px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  color: #EA6122;
}

.team-card:hover .icon-joystick {
  opacity: 1;
  transform: translateY(0);
}
.team-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: box-shadow 0.4s ease;
}

/* Halo pulsant + particules */
.team-card::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border-radius: 16px;
  background-image:
    radial-gradient(circle, rgba(255,165,0,0.15) 10%, transparent 60%), /* halo */
    radial-gradient(circle, rgba(255,165,0,0.03) 1%, transparent 80%);  /* particules */
  background-size: 100% 100%, 6% 6%;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(4px);
  z-index: 0;
  animation: halo-pulse 8s ease-in-out infinite, move-particles-soft 25s linear infinite;
}

.team-card:hover::before {
  opacity: 1;
}

@keyframes halo-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.2;
  }
}

@keyframes move-particles-soft {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 200% 200%, 150% 150%;
  }
}

/* Contenu toujours au-dessus */
.team-card * {
  position: relative;
  z-index: 2;
}
.card-jeu {
  width: 250px;
  background-color: #111;
  border: 2px solid #EA6122;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 0 15px #ea612288;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 350px; /* force une hauteur égale */
}

.card-jeu img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}
.card-jeu h3 {
  font-family: 'Orbitron', sans-serif;
  color: #EA6122;
  margin-bottom: 15px;
  font-size: 1.1em;
  text-transform: uppercase;
  min-height: 30px;
}


.jeux-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.jeu-card.compact {
  background-color: #111;
  border: 2px solid #EA6122;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  margin: 10px;
  box-shadow: 0 0 10px #ea612288;
  width: 240px;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jeu-card.compact:hover {
  transform: scale(1.02);
}

.jeu-card.compact .jeu-img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.jeu-card.compact img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.jeu-card.compact h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1em;
  color: #EA6122;
  margin: 15px 0 10px;
  text-align: center;
  text-transform: uppercase;
}

.btn-group {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.9em;
  font-family: 'Orbitron', sans-serif;
  background-color: #EA6122;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.btn-icon:hover {
  background-color: #ff7322;
}
.card-jeu {
  width: 280px;
  height: 460px;
  background-color: #1a1a1a;
  border: 2px solid #EA6122;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255,165,0,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-jeu:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255,165,0,0.3);
}

.card-jeu img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

.card-jeu h3 {
  color: #EA6122;
  font-size: 18px;
  margin: 10px 0 5px;
}

.card-jeu p {
  color: #ccc;
  font-size: 14px;
  margin: 0;
  flex-grow: 1;
}

.card-jeu small {
  color: #777;
  font-size: 12px;
  margin-top: 10px;
}

.card-jeu .btn-orange {
  background-color: #EA6122;
  color: #111;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.card-jeu .btn-orange:hover {
  background-color: #ffb733;
}
.categorie-form {
  text-align: center;
  margin-bottom: 40px;
}

.categorie-select {
  background-color: #1a1a1a;
  color: #EA6122;
  font-weight: bold;
  border: 2px solid #EA6122;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='#EA6122' points='0,0 20,0 10,10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.categorie-select:hover {
  background-color: #222;
  border-color: #ffbb33;
  color: #ffbb33;
}
.restauration-section {
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.restauration-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #EA6122;
}

.categorie-form {
  margin-bottom: 40px;
}

.categorie-select {
  background-color: #1a1a1a;
  color: #EA6122;
  font-weight: bold;
  border: 2px solid #EA6122;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.plats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.plat-card {
  width: 260px;
  background-color: #1a1a1a;
  border: 2px solid #EA6122;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255,165,0,0.1);
  transition: transform 0.3s ease;
}

.plat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255,165,0,0.3);
}

.plat-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}

.plat-card h3 {
  color: #EA6122;
  margin: 10px 0 5px;
}

.plat-card p {
  color: #ccc;
  font-size: 14px;
  min-height: 60px;
}

.plat-card .prix {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
.fiche-jeu-section {
  padding: 40px;
  color: white;
  text-align: center;
}

.fiche-image {
  width: 300px;
  border: 3px solid #EA6122;
  border-radius: 12px;
  margin-bottom: 20px;
}

.fiche-details {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.galerie-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.galerie-thumb {
  width: 120px;
  height: auto;
  border: 2px solid #EA6122;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}
.galerie-thumb:hover {
  transform: scale(1.05);
}
.galerie-jeu img {
  border-radius: 6px;
  transition: transform 0.3s;
}
.galerie-jeu img:hover {
  transform: scale(1.05);
}
.galerie-fiche {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.mini-galerie-img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 2px solid #EA6122;
}

.mini-galerie-img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px #EA6122aa;
}
.fiche-video {
  margin-top: 30px;
  border: 3px solid #EA6122;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px #ea612280;
}
.fiche-jeu-section {
  padding: 40px;
  color: white;
  max-width: 1100px;
  margin: auto;
}

.fiche-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: #EA6122;
}

.fiche-jeu-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.fiche-jeu-left img {
  max-width: 300px;
  border-radius: 10px;
  border: 3px solid #EA6122;
}

.fiche-details {
  flex: 1;
  min-width: 300px;
  font-size: 1.1em;
}

.fiche-video {
  margin-top: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #EA6122;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fiche-galerie-title {
  margin-top: 50px;
  text-align: center;
  color: #EA6122;
}

.fiche-galerie {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.fiche-thumb {
  width: 150px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s;
  border: 2px solid #EA6122;
}

.fiche-thumb:hover {
  transform: scale(1.05);
}
/* ======================= */
/* ==== Reviews (avis) ==== */
/* ======================= */

.reviews-section {
  padding: 40px 20px;
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.reviews-section h3 {
  color: #EA6122;
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 22px;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.review-card {
  background: #1a1a1a;
  width: calc(33.33% - 10px);
  padding: 10px;
  border-left: 4px solid #EA6122;
  box-shadow: 0 0 10px rgba(234, 97, 34, 0.2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-radius: 6px;
}

.review-card img {
  width: 80px;
  height: auto;
  border-radius: 5px;
}

.review-card p {
  margin: 5px 0;
  color: #fff;
}

.review-card small {
  color: #999;
  font-size: 11px;
}

.review-stars {
  color: orange;
  font-size: 18px;
}

@media screen and (max-width: 900px) {
  .review-card {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 600px) {
  .review-card {
    width: 100%;
  }
}
.reviews-section {
  padding: 40px 20px;
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.review-category {
  color: #EA6122;
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 22px;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
}

.filter-form {
  text-align: center;
  margin-bottom: 25px;
}

.filter-form select {
  padding: 6px 12px;
  font-size: 14px;
  font-family: inherit;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.review-card {
  background: #1a1a1a;
  width: 300px;
  padding: 10px;
  border-left: 4px solid #EA6122;
  box-shadow: 0 0 10px rgba(234, 97, 34, 0.2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-radius: 6px;
}

.review-card img {
  width: 80px;
  height: auto;
  border-radius: 5px;
}

.review-card p {
  margin: 5px 0;
  color: #fff;
}

.review-card small {
  color: #999;
  font-size: 11px;
}
.noter-section {
  padding: 40px;
  text-align: center;
}

.noter-contenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.form-review {
  max-width: 400px;
  text-align: left;
}

.note-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.note-stars input {
  display: none;
}

.note-stars label {
  font-size: 28px;
  color: #555;
  cursor: pointer;
  transition: color 0.3s;
}

.note-stars input:checked ~ label,
.note-stars label:hover,
.note-stars label:hover ~ label {
  color: #EA6122;
}
form input[type="submit"] {
  width: 100%;
  padding: 12px;
  font-family: inherit;
  background-color: #1a1a1a;
  color: white;
  border: 1px solid #EA6122;
  cursor: pointer;
  transition: background 0.3s ease;
  box-sizing: border-box;
  margin-top: 10px;
}

form input[type="submit"]:hover {
  background-color: #EA6122;
  color: black;
}
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 10px 30px;
  border-bottom: 2px solid #EA6122;
}

.header-left,
.header-right {
  flex: 0 0 auto;
}

.header-center {
  flex: 1;
  text-align: center;
}

.header-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 20px;
}

.header-center a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.header-center a:hover {
  color: #EA6122;
}

.logo-header {
  height: 60px;
  border-radius: 6px;
  
}

.horaires-nav {
  color: #EA6122;
  font-weight: 600;
  font-size: 18px;
}
.hero {
  position: relative;
  height: 55vh; /* au lieu de 100vh */
  background: url('/lvl/assets/images/bg-gaming.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.feature {
  flex: 1;
  min-width: 220px;
  background: #1a1a1a;
  padding: 15px;
  border: 1px solid #EA6122;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 8px rgba(234,97,34,0.2);
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
section {
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
.horaires-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px 0;
}

.produit-card {
  border: 2px solid #EA6122;
  border-radius: 12px;
  background: #111;
  padding: 20px;
  width: 260px;
  text-align: center;
}

.produit-card img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

.produit-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.produit-card .prix {
  font-weight: bold;
  color: #EA6122;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.produit-card .btn-orange {
  display: block;
  width: 100%;
  margin-top: 10px;
}

.boutique-filtres {
  text-align: center;
  margin-bottom: 20px;
}

.boutique-filtres a {
  margin: 5px;
  display: inline-block;
}

.boutique-produits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 10px 30px;
  color: #fff;
}

.header-left img.logo-header {
  max-height: 60px;
}

.header-center ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.header-center a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px; /* Espace entre horaires et panier */
}

.horaires-nav {
  white-space: nowrap;
}
.horaires {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.3;
  color: #ccc;
}
.boutique-section {
  padding: 40px 20px;
  text-align: center;
}

.categorie-form {
  margin-bottom: 30px;
}

.categorie-select {
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.boutique-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.produit-card {
  border: 2px solid #EA6122;
  border-radius: 12px;
  background: #111;
  padding: 20px;
  width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
}

.produit-card:hover {
  transform: scale(1.03);
}

.produit-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

.produit-card h3 {
  margin: 10px 0 5px;
}

.produit-card .prix {
  font-weight: bold;
  color: #EA6122;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.produit-card .btn-orange {
  width: 100%;
  margin: 5px 0;
  padding: 10px 0;
}

.produit-card .btn-orange:first-of-type {
  min-height: 42px;
}

.admin-table td .btn-orange {
  display: inline-block;
  margin: 2px;
  padding: 6px 10px;
  font-size: 0.9em;
  border: none;
  text-decoration: none;
  color: white;
  background-color: #EA6122;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.admin-table td .btn-orange:hover {
  background-color: #cc4d1b;
}
.form-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-row label {
  min-width: 150px;
  font-weight: bold;
}

.form-row input[type="text"],
.form-row input[type="number"],
.form-row select,
.form-row textarea {
  flex: 1;
  max-width: 600px;
  padding: 8px;
  border: 1px solid #EA6122;
  background: #111;
  color: white;
}

.form-row textarea {
  width: 100%;
  min-height: 100px;
}
.fiche-produit-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
  background: #111;
  border: 1px solid #EA6122;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 1000px;
}

.fiche-gauche {
  flex: 1 1 40%;
  text-align: center;
}

.fiche-gauche img {
  max-width: 100%;
  border-radius: 10px;
  border: 2px solid #EA6122;
}

.fiche-miniatures {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.miniature-img {
  width: 60px;
  height: auto;
  border: 1px solid #EA6122;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}
.miniature-img:hover {
  transform: scale(1.1);
}

.fiche-droite {
  flex: 1 1 50%;
}

.fiche-droite h2 {
  margin-top: 0;
  font-size: 1.8em;
}

.fiche-droite .prix {
  font-size: 1.6em;
  color: #EA6122;
  font-weight: bold;
}

.fiche-droite .description {
  margin: 20px 0;
}

.snipcart-checkout {
  font-size: 30px; /* Agrandit l'icône et le chiffre */
  color: white !important; /* Rends-le visible sur fond sombre */
  fill: white !important;
  display: flex;
  align-items: center;
  gap: 8px; /* espace entre l'icône et le compteur */
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  background-color: #EA6122; /* optionnel, mais visible */
  transition: transform 0.2s ease;
}

.snipcart-checkout:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px #EA6122;
}

.snipcart-items-count {
  font-weight: bold;
}

/* 📱 Mobile-first ajustements */
@media screen and (max-width: 768px) {
  header nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    display: none;
    flex-direction: column;
  }

  .menu.active {
    display: flex;
  }

  .burger {
    display: block;
    cursor: pointer;
    font-size: 28px;
    padding: 10px;
  }

  .grid {
    display: block;
  }

  .produit {
    width: 100%;
    margin-bottom: 20px;
  }

  .btn, .input, textarea {
    width: 100%;
    font-size: 16px;
  }
}

.burger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  padding: 10px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .burger {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 999;
  }

  .header-center ul {
    display: none;
    flex-direction: column;
    background-color: #111;
    padding: 10px;
    position: absolute;
    top: 70px;
    right: 10px;
    width: 200px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }

  .header-center ul.active {
    display: flex;
  }

  .header-center ul li {
    margin: 10px 0;
  }

  .header-right {
    display: none; /* cache les horaires + panier pour mobile si trop serré */
  }
}
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* <-- passe derrière */
  pointer-events: none; /* <-- hyper important pour cliquer au travers */
}

.overlay {
  z-index: 1;
  pointer-events: none; /* <-- idem ici */
}

.hero {
  position: relative;
  z-index: 2;
}

.reseaux {
  position: relative;
  z-index: 10; /* bien au-dessus */
}
.logo-home {
  max-width: 280px;
  width: 100%;
  margin: 0 auto 20px;
  display: block;
}
.hero {
  height: 100vh; /* s’assure que ça ne dépasse pas l’écran */
  overflow: hidden;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.hero-buttons .btn-orange {
  width: 180px;
  text-align: center;
}

/* --- Corrections page d'accueil --- */
body.accueil, html.accueil {
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

body.accueil .hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0 20px;
  box-sizing: border-box;
  background: url('/lvl/assets/images/bg-gaming.jpg') no-repeat center center/cover;
  position: relative;
}

body.accueil .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

body.accueil .hero-content {
  z-index: 2;
  text-align: center;
  padding: 0;
  margin: 0;
}

body.accueil .logo-home {
  max-width: 260px;
  margin: 0 auto 10px;
  display: block;
}

body.accueil .hero h2 {
  font-size: 34px;
  margin: 5px 0 10px;
}

body.accueil .hero p {
  font-size: 16px;
  margin: 5px 0 10px;
}

body.accueil .hero-buttons {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

body.accueil .hero-buttons .btn-orange {
  width: 160px;
  padding: 10px 20px;
  text-align: center;
}

body.accueil .reseaux {
  padding: 10px 0 0;
  margin: 0;
}

body.accueil footer {
  padding: 10px 0;
}