/** Shopify CDN: Minification failed

Line 21:18 Expected identifier but found whitespace
Line 21:20 Unexpected "{"
Line 21:30 Expected ":"
Line 22:17 Expected identifier but found whitespace
Line 22:19 Unexpected "{"
Line 22:29 Expected ":"
Line 23:21 Expected identifier but found whitespace
Line 23:23 Unexpected "{"
Line 23:33 Expected ":"
Line 24:15 Expected identifier but found whitespace
... and 23 more hidden warnings

**/
/* ============================================
   TURBO THEME — BASE STYLES
   ============================================ */

:root {
  --color-primary: {{ settings.color_primary }};
  --color-accent: {{ settings.color_accent }};
  --color-background: {{ settings.color_background }};
  --color-text: {{ settings.color_text }};
  --color-border: {{ settings.color_border }};
  --color-button-bg: {{ settings.color_button_bg }};
  --color-button-text: {{ settings.color_button_text }};
  --color-surface: #FFFFFF;
  --color-muted: #6B6B67;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-size-base: {{ settings.font_body_size }}px;

  --page-width: {{ settings.page_width }}px;
  --grid-gap: {{ settings.grid_gap }}px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p { line-height: 1.7; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, video {
  display: block;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

img {
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Images produit : netteté max */
.product-card__media img,
.product-gallery__main img,
.product-gallery__thumb img,
.cart-item__image img,
.cd-upsell__item img {
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button { cursor: pointer; border: none; background: none; }

/* Layout utilities */
.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container { padding: 0 48px; }
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

/* Visibility utilities */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden { display: none !important; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--color-button-bg);
  color: var(--color-button-text);
  border: 2px solid var(--color-button-bg);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.button:hover::after { opacity: 1; }
.button:active { transform: translateY(1px); }

.button--secondary {
  background: transparent;
  color: var(--color-button-bg);
}

.button--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.button--outline:hover {
  border-color: var(--color-text);
}

.button--full { width: 100%; }

.button--loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Skip to content */
.skip-to-content-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--color-background);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-to-content-link:focus {
  top: 0;
  outline: none;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: white;
}

.badge--sale { background: var(--color-accent); }
.badge--new { background: var(--color-primary); color: var(--color-background); }
.badge--sold-out { background: var(--color-muted); }

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Loader */
.loader {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

/* Price */
.price {
  font-family: var(--font-heading);
  font-weight: 600;
}

.price--sale { color: var(--color-accent); }
.price--compare {
  text-decoration: line-through;
  color: var(--color-muted);
  font-weight: 400;
  font-size: 0.875em;
}

/* Rating stars */
.rating {
  display: flex;
  gap: 2px;
  color: #F4A428;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate-fade-in { animation: fadeIn 0.5s ease forwards; }
.animate-scale-in { animation: scaleIn 0.3s ease forwards; }

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Section spacing */
.section { padding: 60px 0; }
.section--small { padding: 40px 0; }
.section--large { padding: 100px 0; }

@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .section--small { padding: 60px 0; }
  .section--large { padding: 140px 0; }
}

/* Section header */
.section-header {
  margin-bottom: 48px;
}

.section-header--center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

/* Responsive grid helpers */
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
/* ========================================
SOLÉA HEADER TEXTE VISIBLE
======================================== */

/* HEADER */

.header-section,
.site-header,
.header {

  background: #000000 !important;

  backdrop-filter: none !important;

  -webkit-backdrop-filter: none !important;
}


/* TEXTE MENU */

.header a,
.site-header a,
.site-nav__link,
.header__menu-item,
.nav a {

  color: #ffffff !important;

  opacity: 1 !important;

  visibility: visible !important;

  text-shadow: 0 0 1px rgba(255,255,255,0.2);

  font-weight: 600 !important;

  letter-spacing: 1px;
}


/* HOVER DORÉ */

.header a:hover,
.site-header a:hover,
.site-nav__link:hover,
.header__menu-item:hover {

  color: #d4b08c !important;
}


/* LOGO */

.header__logo img,
.site-header__logo img {

  filter: brightness(1.1);
}


/* ICONES */

.header__icon,
.icon,
svg {

  color: #ffffff !important;

  fill: #ffffff !important;

  stroke: #ffffff !important;
}


/* MOBILE */

.mobile-menu a,
.drawer-menu a {

  color: #ffffff !important;
}
/* ============================================
   PERFORMANCE — Réduction animations & WebP
   ============================================ */

/* Respecter les préférences d'accessibilité */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile : désactiver effets coûteux */
@media (max-width: 767px) {
  /* Désactiver la 2e image de product card (hover swap inutile sur touch) */
  .product-card__secondary-img {
    display: none !important;
  }

  /* Suppression shimmer/fade animations non essentielles */
  .animate-fade-in,
  .animate-scale-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* GPU hints limités sur mobile pour économiser la mémoire */
  .product-card__media img,
  .product-gallery__main img {
    will-change: auto !important;
  }

  /* Transition bouton simplifiée */
  .button {
    transition: background var(--transition-fast) !important;
  }
}

/* ================================
CORRECTION MOBILE SOLÉA
Header + titres coupés
================================ */

@media screen and (max-width: 768px) {

  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* HEADER MOBILE */
  .site-header,
  .solea-header {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    padding: 8px 12px !important;
    box-sizing: border-box !important;
  }

  .site-header__inner,
  .solea-header__inner {
    min-height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
  }

  /* LOGO */
  .site-header__logo img,
  .solea-header__logo img,
  .header-logo img {
    max-height: 42px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
  }

  /* MENU DESKTOP CACHÉ */
  .site-header__nav,
  .solea-header__nav {
    display: none !important;
  }

  /* ICÔNES */
  .site-header__actions,
  .solea-header__icons {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }

  .header-icon-btn,
  .solea-header__icons a {
    width: 32px !important;
    height: 32px !important;
    font-size: 18px !important;
  }

  /* MOBILE : compte visible */
  .site-header__actions a[href*="account"] {
    display: flex !important;
  }

  /* TITRES HERO / BLOG / PAGES */
  h1,
  .h1,
  .hero h1,
  .banner h1,
  .solea-content h1,
  .article__title,
  .page-title {
    font-size: clamp(32px, 9vw, 46px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.5px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    text-align: center !important;
  }

  /* TEXTES SOUS TITRES */
  p,
  .hero p,
  .banner p,
  .solea-content p {
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    box-sizing: border-box !important;
  }

  /* SECTIONS */
  .container,
  .page-width,
  .wrapper,
  .solea-content,
  .shopify-section {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* BOUTONS */
  .solea-buttons,
  .hero__buttons {
    padding-left: 18px !important;
    padding-right: 18px !important;
    box-sizing: border-box !important;
  }

  .solea-btn-primary,
  .solea-btn-secondary,
  .button,
  .btn {
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
  }
}

/* --- Logo nettet� haute r�solution ---------------------------------------- */
.site-header__logo img,
.mobile-menu__logo {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-font-smoothing: antialiased;
  transform: translateZ(0);
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
}
/* D�sactive le flou de redimensionnement navigateur */
.site-header__logo img {
  will-change: auto;
  filter: none;
}
