/* Section d'introduction de la boutique */
#intro-boutique {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    color: #f5f5f5;
}

/* Titres */
section {
    margin-bottom: 40px;
}

/* Title styling for main heading */
section h1 {
    font-size: 2.5em;
    color: #f5a623;
    margin-bottom: 20px; /* Espace entre le titre et le contenu */
}

/* Title styling for chapter headings */
section h2 {
    text-align: center;
    margin-bottom: 20px; /* Espace entre le titre et le contenu */
    font-size: 2em;
    color: #f5a623;
    width: 100%; /* Assure que le titre occupe toute la largeur */
}

/* Conteneur de section produit */
#produits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
	margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Fond pour une meilleure lisibilité */
    padding: 20px; /* Ajoute du padding pour un meilleur espacement */
    border-radius: 10px; /* Coins arrondis */
    max-width: 1200px; /* Largeur maximale pour le chapitre */
    margin: 20px auto; /* Centre le chapitre */
}

/* Carte produit */
.produit {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 450px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.5);
}

/* Image produit */
.produit img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #f5a623;
    margin-bottom: 15px;
}

/* Texte produit */
.details-produit {
    color: #e0e0e0;
    text-align: left;
}

.details-produit h3 {
    color: #f5a623;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
}

.details-produit p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.purchase-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.purchase-links a {
    padding: 10px 20px;
    background-color: #f5a623;
    color: #1c1c1c;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.purchase-links a:hover {
    background-color: #1c1c1c;
    color: #f5a623;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: #f5f5f5;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: #f5a623;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
