/* Styles de la Boutique et Mise à jour UX/UI */

:root {
    --primary-color: #111111;
    --secondary-color: #c5a059; /* Or plus raffiné */
    --accent-color: #e8e2d6;    /* Blanc cassé/ivoire */
    --text-color: #333333;
    --light-text: #ffffff;
    --font-titles: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.boutique-hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('../../assets/images/boutique-bg.jpg') center/cover;
    padding: 100px 0;
    text-align: center;
    color: var(--light-text);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Ombre plus visible pour la structure */
}

.pricing-table th {
    background: var(--primary-color);
    color: var(--secondary-color); /* Or sur noir = OK */
    padding: 18px 15px;
    text-align: left;
    font-family: var(--font-titles);
    font-weight: 600;
}

.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd; /* Bordure plus marquée */
    color: var(--text-dark);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background-color: #f5f5f5;
}

.badge-ants {
    background: #0033a0;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.review-card {
    background: #fff; /* Fond blanc pur pour plus de contraste avec le texte */
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #eee;
    box-shadow: var(--shadow);
}

.review-stars {
    color: var(--secondary-dark); /* Or sombre pour les étoiles sur blanc */
    margin-bottom: 10px;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-top: 15px;
}

.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary-dark);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-dark); /* Or sombre pour les icônes sur blanc */
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-dark); /* Or sombre pour les prix */
}

@media (max-width: 768px) {
    .pricing-table {
        display: block;
        overflow-x: auto;
    }
}
