/* 🌸 Thème Pastel - Ambiance douce et moderne */

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fef6f9;
    color: #5f6368;
    margin: 0;
    padding: 0;
}

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

header.shop-header {
    background-color: #fbefff;
    padding: 20px 0;
    border-bottom: 2px solid #eac1f7;
}
header.shop-header h1 {
    color: #7c4d7c;
    margin-top: 10px;
}

.promo-banner {
    background-color: #fff0f5;
    color: #a65fa6;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    border-top: 2px dashed #eac1f7;
    border-bottom: 2px dashed #eac1f7;
}

.product-card {
    border: 1px solid #f3cce7;
    background-color: #fff9fb;
    border-radius: 12px;
    padding: 12px;
    transition: transform 0.2s ease;
}
.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(170, 170, 170, 0.1);
}

.btn-view {
    background-color: #ec7fcf;
    color: white;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    border: none;
}
.btn-view:hover {
    background-color: #d064b4;
}

footer {
    background-color: #fbefff;
    color: #7c4d7c;
    padding: 15px;
    text-align: center;
    border-top: 2px solid #eac1f7;
    margin-top: 40px;
}

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

input, textarea, select {
    background-color: #fff;
    color: #5f6368;
    border: 1px solid #f3cce7;
    border-radius: 6px;
    padding: 8px;
    width: 100%;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #ec7fcf;
    box-shadow: 0 0 5px rgba(236, 127, 207, 0.3);
}
