:root {
    --primary-accent: #a8d4d1;
    --secondary-accent: #c4b5a0;
    --text-dark: #2a3f3e;
    --text-light: #6b7c7b;
    --bg-light: #f5f0ec;
    --bg-lighter: #f9f7f5;
    --highlight-gold: #d4a574;
    --dark-section: #1a2e2d;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    background-color: #faf8f6;
    line-height: 1.6;
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--highlight-gold);
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-section {
    background: linear-gradient(135deg, rgba(245, 240, 236, 0.3), rgba(249, 247, 245, 0.3));
}

.hero-background {
    position: relative;
    overflow: hidden;
}

.light-leak-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(168, 212, 209, 0.1), rgba(196, 181, 160, 0.1));
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
}

.featured-product-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(168, 212, 209, 0.2);
}

.featured-img {
    border-radius: 6px;
    transition: transform 0.22s ease;
}

.featured-product-card:hover .featured-img {
    transform: scale(1.05);
}

.quick-tiles {
    background: linear-gradient(135deg, #f5f0ec 0%, #f9f7f5 100%);
}

.tile-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.22s ease;
    border: 1px solid #f0e8dd;
}

.tile-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(168, 212, 209, 0.15);
    background: linear-gradient(135deg, rgba(168, 212, 209, 0.05), rgba(212, 165, 116, 0.05));
}

.tile-img {
    border-radius: 6px;
    transition: transform 0.22s ease;
    max-height: 150px;
    object-fit: cover;
}

.tile-card:hover .tile-img {
    transform: scale(1.03);
}

.tile-subtitle {
    font-size: 0.9rem;
    color: var(--primary-accent);
    font-weight: 500;
    margin-top: 0.5rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.22s ease;
    height: 100%;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-link:hover .product-card {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(168, 212, 209, 0.15);
}

.product-img-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f0ec 0%, #f9f7f5 100%);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.22s ease;
}

.product-link:hover .product-img {
    transform: scale(1.08);
}

.micro-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(168, 212, 209, 0.3);
}

.product-meta {
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.availability {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-detail-img-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #f5f0ec 0%, #f9f7f5 100%);
}

.product-detail-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.lueur-img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.btn-primary, .btn-outline-primary {
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.22s ease;
    border-width: 2px;
}

.btn-primary {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: white;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary-accent);
    border-color: var(--secondary-accent);
    color: white;
    box-shadow: 0 4px 12px rgba(168, 212, 209, 0.2);
}

.btn-outline-primary {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    background-color: transparent;
}

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

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 0.2rem rgba(168, 212, 209, 0.15);
}

.card {
    border: 1px solid #f0e8dd;
    border-radius: 6px;
}

.card-header {
    background-color: transparent;
}

.card-header button {
    color: var(--text-dark);
    text-decoration: none;
}

.card-header button:hover {
    color: var(--primary-accent);
}

.accordion .card {
    border: 0;
    border-bottom: 1px solid #e9e3dd;
}

.accordion .card:last-child {
    border-bottom: 0;
}

.accordion .card-header {
    padding: 0;
}

.custom-checkbox .custom-control-label {
    cursor: pointer;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 63, 62, 0.95);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-accent) !important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .row > [class*='col-'] {
        margin-bottom: 1.5rem;
    }

    .product-img {
        height: 180px;
    }

    .cookie-consent {
        flex-direction: column;
    }

    .cookie-consent .container {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .featured-product-card {
        margin-top: 1.5rem;
    }

    .hero-section .row {
        flex-direction: column-reverse;
    }

    .hero-section .row > div:first-child {
        margin-top: 2rem;
    }
}
