

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #eef3ff; /* léger bleu */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: #222;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.main-nav a {
  color: #fff;
  padding: 4px 8px;
}

.fiche-produit {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 15px;
}

.fiche-header h1 {
  margin-bottom: 5px;
}

.fiche-contenu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.visuels,
.description {
  flex: 1 1 250px;
}

.prix {
  color: #008000;
}

.caracteristiques {
  padding-left: 20px;
}

.boutons {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.boutons button {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  background: #fff;
}

.boutons .btn-secondaire {
  background: #f0f0f0;
}

.feedback-panier {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #008000;
}

.fiche-table-video {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th,
td {
  border: 1px solid #ccc;
  padding: 4px 6px;
  text-align: left;
}

th {
  background: #eee;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

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

.fiche-avis-internes {
  margin-top: 20px;
  padding: 10px;
  background: #fafafa;
  border: 1px solid #ddd;
}

.navigation-secondaire {
  max-width: 900px;
  margin: 10px auto 30px;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid #ddd;
  padding: 10px 20px;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 20px;
}
