/* Page produit */
.product-page {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.product-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b88a44; /* doré pour bijoux */
    margin-bottom: 20px;
}

.product-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.btnPanier {
    border-radius: 25px;
    padding: 10px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btnPanier:hover {
    background-color: #46a571;
    transform: translateY(-2px);
}

.login-msg a {
    color: #58bc82;
    text-decoration: underline;
}

.comments h3 {
    margin-bottom: 20px;
    color: #2c2c2c;
}

.comment {
    background-color: #f9f9f9;
}

.comment-text {
    margin-bottom: 10px;
}

.comment-meta {
    font-size: 0.85rem;
    color: #888;
}
