/* Réinitialisation générale */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #121212; /* Fond sombre pour un effet moderne */
  color: #fff;
  line-height: 1.6;
}

/* Conteneur principal du produit */
.product-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  border: 2px solid #444; /* Légère bordure autour du conteneur */
  border-radius: 8px;
  background-color: #1e1e1e; /* Fond sombre */
}

/* Image du produit */
.product-image {
  flex: 1;
  max-width: 450px;
  margin-right: 30px;
  border: 2px solid #333; /* Bordure autour de l'image */
  padding: 10px;
  background-color: #333; /* Fond pour l'image */
  border-radius: 8px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Informations sur le produit */
.product-info {
  flex: 2;
  padding-left: 30px;
  max-width: 500px;
}

/* Nom du produit */
.product-name {
  font-size: 2.5rem;
  color: #f1c40f; /* Jaune doré pour le nom */
  font-weight: bold;
  margin-bottom: 15px;
}

/* Description du produit */
.product-description {
  font-size: 1.2rem;
  color: #ddd; /* Couleur claire pour le texte de description */
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Prix du produit */
.product-price {
  font-size: 1.5rem;
  color: #e74c3c; /* Rouge pour le prix */
  font-weight: bold;
  margin-bottom: 25px;
}

/* Section des boutons */
.product-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

/* Bouton Ajouter au panier */
.btn-add-to-cart {
  background-color: #8e44ad; /* Violet */
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 180px; /* Largeur fixe pour un meilleur alignement */
}

.btn-add-to-cart:hover {
  background-color: #9b59b6;
}

/* Sélecteur de plan (par exemple 1 mois, 1 semaine) */
.plan-selector {
  display: flex;
  gap: 10px;
}

.plan-selector button {
  background-color: #34495e;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.plan-selector button:hover {
  background-color: #2c3e50;
}

/* Plateformes compatibles */
.compatible-platforms {
  margin-top: 20px;
  font-size: 1rem;
  color: #ccc;
}

.compatible-platforms p {
  margin-bottom: 10px;
}

.compatible-platforms span {
  font-weight: bold;
  color: #fff;
}
