/** Shopify CDN: Minification failed

Line 190:18 Expected identifier but found whitespace
Line 190:20 Unexpected "{"
Line 190:30 Expected ":"
Line 191:20 Expected identifier but found whitespace
Line 191:22 Unexpected "{"
Line 191:32 Expected ":"
Line 192:20 Expected identifier but found whitespace
Line 192:22 Unexpected "{"
Line 192:32 Expected ":"
Line 193:22 Expected identifier but found whitespace
... and 2 more hidden warnings

**/
/* ===== PALETTE WITHOUT ===== */
:root {
  --color-primary: #4B2B13; /* Marron foncé (logo, titres, boutons) */
  --color-secondary: #7A4F27; /* Brun moyen (boutons secondaires) */
  --color-bg: #F8F5F0; /* Beige clair (fond) */
  --color-accent: #EADBC8; /* Accent clair */
  --color-highlight: #9A6C3A; /* Brun doré profond (éléments clés) */
}

/* ===== GLOBAL ===== */
body {
  background-color: var(--color-bg) !important;
  color: var(--color-primary);
  font-family: 'Helvetica Neue', sans-serif;
}

/* ===== HEADER ===== */
header, .header-wrapper {
  background-color: var(--color-bg) !important;
  color: var(--color-primary) !important;
}

header a, .header-wrapper a {
  color: var(--color-primary) !important;
}

/* ===== HERO SECTION ===== */
.hero, .custom-hero, .banner {
  background-color: var(--color-bg) !important;
  color: var(--color-primary) !important;
}

.hero h1, .hero h2 {
  color: var(--color-primary);
}

.hero p {
  color: var(--color-secondary);
}

/* ===== COLLECTIONS ===== */
.collection-list, .collection {
  background-color: var(--color-bg) !important;
}

.collection-title {
  color: var(--color-primary);
}

/* ===== BOUTONS ===== */
button, .button, .btn, input[type="submit"] {
  background-color: var(--color-primary);
  color: #fff !important;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
}

button:hover, .button:hover, .btn:hover {
  background-color: var(--color-secondary);
  color: #fff !important;
}

/* ===== FOOTER ===== */
footer, .site-footer {
  background-color: var(--color-bg);
  color: var(--color-primary);
}

footer a {
  color: var(--color-primary) !important;
}

footer .newsletter {
  background-color: var(--color-primary);
  color: #fff;
}

footer .newsletter input, footer .newsletter button {
  border-radius: 5px;
}

/* ===== FORMULAIRES ===== */
input, textarea {
  border: 1px solid var(--color-accent);
}

input:focus, textarea:focus {
  border-color: var(--color-primary);
}
/* --- Section Produits Emergent --- */
.featured-products {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--background-color);
}

.featured-container {
  max-width: 1200px;
  margin: auto;
}

.featured-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--main-color);
}

.featured-description {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 30px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.featured-product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 15px;
  text-align: center;
}

.featured-product-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.featured-product-title {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
  color: var(--text-color);
}

.featured-product-price {
  font-size: 16px;
  color: var(--main-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.featured-product-compare {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-left: 5px;
}

.featured-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--main-color);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.featured-button:hover {
  background: var(--accent-color);
}
:root {
  --hero-bg-color: {{ settings.hero_bg_color | default: '#1e3c72' }};
  --hero-text-color: {{ settings.hero_text_color | default: '#ffffff' }};
  --footer-bg-color: {{ settings.footer_bg_color | default: '#1e3c72' }};
  --footer-text-color: {{ settings.footer_text_color | default: '#ffffff' }};
}
