/* Theme Styles */
:root {
    --primary-color: #D4B196;
    --secondary-color: #F5EBE3;
    --accent-color: #8B7355;
    --text-color: #333333;
    --light-text: #666666;
    --background-color: #FFFFFF;
    --light-background: #F9F5F2; /* Correspond à fdfaf6 */
}

/* Typography */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-color);
}

/* Section Titles */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; /* Ajusté pour correspondre à la démo */
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700; /* Ajouté pour correspondre à la démo */
}

.section-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.section-title-sub {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background-color: var(--background-color); /* #fff */
    padding: 1rem 0;
    border-bottom: 1px solid #eee; /* Ajouté pour correspondre à la démo */
}

.navbar .nav-link {
    color: var(--text-color); /* #555 */
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary-color); /* #000 dans la démo, ajusté pour la cohérence */
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color); /* #d1ab87 */
    border-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color); /* #c19a77 */
    border-color: var(--accent-color);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background-color: var(--light-background);
    padding: 4rem 0; /* 60px dans la démo */
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem; /* 1.1rem dans la démo */
    color: var(--light-text); /* #777 */
    margin-bottom: 2rem; /* 30px */
}

/* Handmade Lingerie Section */
.handmade-section {
    padding: 4rem 0;
}

.handmade-section .icon-feature {
    text-align: center;
    margin-bottom: 2rem;
}

.handmade-section .icon-feature img {
    height: 50px; /* Ajustez au besoin */
    margin-bottom: 1rem;
}

/* Bestsellers Section */
.bestsellers-section {
    padding: 4rem 0;
    background-color: var(--light-background);
}

/* 100% Cotton Section */
.cotton-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

/* Collection Section */
.collection-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.collection-item {
    margin-bottom: 2rem;
    text-align: center;
}

.collection-item img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Ajouté pour correspondre à la démo */
    margin-bottom: 1rem; /* 15px */
    transition: transform 0.3s ease;
}

.collection-item:hover img {
    transform: scale(1.05);
}

.collection-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; /* 1.2rem */
    margin: 1rem 0 0.5rem; /* 10px */
}

/* Subscribe Section */
.subscribe-section {
    background-color: var(--primary-color);
    padding: 3rem 0;
    color: white;
}

.subscribe-section .form-control {
    border-radius: 2rem 0 0 2rem;
    border: none;
    padding: 0.75rem 1.5rem;
}

.subscribe-section .btn-light {
    border-radius: 0 2rem 2rem 0;
    border: none;
    padding: 0.75rem 1.5rem;
    background-color: var(--text-color);
    color: white;
}

/* Lookbook Section */
.lookbook-section {
    padding: 4rem 0;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.lookbook-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.lookbook-item:hover img {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-background);
    padding: 4rem 0;
}

.testimonial-item {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%; /* Ajouté pour correspondre à la démo */
    margin-bottom: 1rem;
}

.testimonial-comment {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.testimonial-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.contact-info {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Ajouté pour un effet subtil */
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    /* justify-content: center; */ /* Laissé pour alignement à gauche par défaut */
    margin-top: 1.5rem;
}

.social-icon-link {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon-link:hover {
    color: var(--primary-color);
}

/* Product Cards (Général) */
.product-card {
    background-color: var(--background-color);
    border: 1px solid #eee; /* Ajouté pour correspondre à la démo */
    border-radius: 0.5rem; /* 8px */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.25rem; /* 20px */
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem; /* 15px */
}

.product-image img {
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-details {
    padding: 0; /* Ajusté car le padding est sur .product-card */
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem; /* 10px */
}

.product-price {
    color: var(--primary-color); /* #d1ab87 */
    font-weight: bold;
    font-size: 1.1rem;
}

/* Footer */
footer.footer {
    background-color: var(--text-color); /* #333 */
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--primary-color); /* #d1ab87 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444; /* Séparateur plus subtil */
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}