/* Conteneur principal */
.product-details {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
}

/* Image du produit */
.product-image {
    text-align: center;
    margin-bottom: 20px;
}


/* Informations sur le produit */
.product-info {
    margin-bottom: 20px;
}

.product-name {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 10px;
}

.product-description,
.product-category {
    color: #666;
    margin-bottom: 10px;
}

/* Boutons pour les admins */
.admin-options {
    margin-bottom: 20px;
}

.admin-button {
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    padding: 10px 15px;
    border-radius: 5px;
    margin-right: 10px;
    display: inline-block;
}

.admin-button.delete {
    background-color: #dc3545;
}

.admin-button.update {
    background-color: #28a745;
}

/* Bouton Ajouter au panier */
.add-to-cart {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: #5070c4;
    padding: 12px 20px;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #218838;
}
