
/* 🎨 Thème Énergique - Ambiance vive et jeune */

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background-color: #fff3cd;
    color: #856404;
    margin: 0;
    padding: 0;
}

a {
    color: #fd7e14;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

header.shop-header {
    background-color: #ffeeba;
    padding: 20px 0;
    border-bottom: 2px solid #ffc107;
}
header.shop-header h1 {
    color: #856404;
    margin-top: 10px;
}

.promo-banner {
    background-color: #fff8dc;
    color: #7c5200;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.product-card {
    border: 1px solid #ffc107;
    background-color: #fffde7;
    border-radius: 10px;
    padding: 12px;
    transition: transform 0.2s ease;
}
.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.btn-view {
    background-color: #ffc107;
    color: #212529;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    border: none;
}
.btn-view:hover {
    background-color: #ffca2c;
}

footer {
    background-color: #ffeeba;
    color: #856404;
    padding: 15px;
    text-align: center;
    border-top: 2px solid #ffc107;
    margin-top: 40px;
}

.contact-merchant {
    background-color: #fff8e1;
    border: 1px solid #ffd54f;
    border-radius: 10px;
    padding: 20px;
}

input, textarea, select {
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 8px;
    width: 100%;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #fd7e14;
    box-shadow: 0 0 6px rgba(253, 126, 20, 0.5);
}
