/** Shopify CDN: Minification failed

Line 23:4 Unexpected "{"

**/
/* --- Variables Globales (Thème) --- */
:root {
    --primary-color: #7a9e7e; /* Vert sauge */
    --accent-color: #f4a261;   /* Terracotta */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
    --border-radius: 8px;
}

/* --- Reset et Styles de Base --- */

    {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header --- */
#main-header {
    padding: 1.5rem 0;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.header-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* --- Style du header au scroll (géré par JS) --- */
#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

/* --- Section Hero --- */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: -80px; /* Compense le header fixe */
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #6a886a;
    transform: translateY(-3px);
}

/* --- Section Universes --- */
.universes {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.universes .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.universe-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 2rem;
}

.universe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.universe-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.universe-card h2 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.universe-card p {
    color: var(--text-light);
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

.link-button {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.link-button:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* --- Section Produits Vedettes --- */
.featured-products {
    padding: 6rem 0;
    text-align: center;
}

.featured-products h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.2rem;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.product-card .tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    padding: 0 1.5rem;
}

.product-card .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

/* --- Section Philosophie --- */
.philosophy {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.philosophy .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.philosophy img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* --- Footer --- */
footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    text-align: center;
    padding: 2rem 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: var(--bg-light);
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .universes .container, .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .philosophy .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .philosophy img {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Sur mobile, on cacherait la nav pour un menu hamburger */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .universes .container, .product-grid {
        grid-template-columns: 1fr;
    }
    footer .container {
        flex-direction: column;
        gap: 1rem;
    }
}.hero-section-wrapper {
    /* Mettez ici les styles de votre section hero, comme la couleur de fond */
    background-color: #f8f9fa; /* ou ce que vous voulez */
}
.universes-section-wrapper {
    background-color: #ffffff; /* ou ce que vous voulez */
}