/** Shopify CDN: Minification failed

Line 188:1 Expected "}" to go with "{"

**/
/* --- CONFIGURATION WARDASTUDIO (PURE BRUTALISM) --- */
:root {
  --color-warda-red: #FF0000;
  --color-warda-black: #000000;
  --font-warda-mono: 'Courier New', Courier, monospace;
}

/* 1. FOND NOIR ABSOLU - AUCUN DEGRADE */
body, .gradient, .page-container, .main-content {
  background: var(--color-warda-black) !important;
  color: #ffffff !important;
  cursor: crosshair;
  -webkit-font-smoothing: none; /* Rendu brut pour les polices */
}

/* 2. NAVBAR BRUTE - SUPPRESSION DU DEGRADE MOCHE */
.site-header, header {
  background: var(--color-warda-black) !important;
  border-bottom: 1px solid #333333 !important; /* Ligne stricte */
/* Rendre le logo blanc (s'il était noir et caché dans le fond noir) sans utiliser de glow laid */
.site-header__brand img {
  filter: invert(1) !important;
}

.site-header__nav-link, .header__menu-item {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-warda-mono);
  font-size: 0.85rem;
}

/* Rétablissement de la couleur de l'image de fond et optimisation du centrage */
.landing-hero {
  background-position: center center !important; /* Centrer sur l'image */
}

/* 3. TITRES AGRESSIFS - AUCUN GLOW, JUSTE DU CONTRASTE */
h1, h2, h3, .h1, .h2 {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.9;
  text-shadow: none !important; /* Suppression du rouge brillant */
  margin-bottom: 0.5em;
  color: #ffffff !important;
}

/* 4. CUSTOM SCROLLBAR (BRUTE) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000000; border-left: 1px solid #333; }
::-webkit-scrollbar-thumb { background: var(--color-warda-red); border-radius: 0px; } /* Pas d'arrondi ni de glow */

/* 5. BOUTONS STRICTEMENT BRUTALISTES (BLOC SOLIDE) */
.button, .shopify-payment-button__button, .btn {
  background-color: var(--color-warda-black) !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  border-radius: 0px !important;
  transition: transform 0.1s linear, background-color 0.1s linear;
  box-shadow: 6px 6px 0px var(--color-warda-red) !important; /* Ombre de bloc solide, sans flou */
  padding: 14px 28px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-warda-mono);
}

.button:hover, .shopify-payment-button__button:hover, .btn:hover {
  background-color: #ffffff !important;
  color: var(--color-warda-black) !important;
  box-shadow: 8px 8px 0px var(--color-warda-red) !important; /* L'ombre solide grandit */
  transform: translate(-2px, -2px);
}

.button:active, .shopify-payment-button__button:active, .btn:active {
  transform: translate(6px, 6px);
  box-shadow: 0px 0px 0px var(--color-warda-red) !important; /* Le bouton s'enfonce dans l'ombre */
}

/* 6. IMAGES & CARTES (BORDERS RAW, AUCUN GLOW) */
.media, .card__media, .product__media img {
  border: 1px solid #333333;
  box-shadow: none !important; /* Suppression des halos autour des images */
  filter: grayscale(20%) contrast(120%); /* Color grading plus sombre et texturé */
  transition: filter 0.2s ease;
}

.media:hover, .card__media:hover, .product__media img:hover {
  filter: grayscale(0%) contrast(130%);
}

/* Focus brut (Accessibilité) */
*:focus-visible {
  outline: 2px solid var(--color-warda-red) !important;
  outline-offset: 0px !important;
  box-shadow: none !important;
}

/* =========================================
   OPTIMISATIONS MOBILES (iPhone SE -> 17 Pro Max)
   ========================================= */

@media screen and (max-width: 767px) {
  body, html { overflow-x: hidden; }
  
  .page-width { padding-left: 1rem !important; padding-right: 1rem !important; }

  /* Navbar Mobile Layout Fix */
  .site-header__inner {
    flex-direction: column !important;
    align-items: center !important;
    padding: 1.5rem 1rem 1rem !important;
    gap: 1.5rem !important;
  }

  .site-header__nav {
    justify-content: center !important;
    margin: 0 !important;
    width: 100% !important;
    gap: 1.5rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid #333333 !important;
  }

  .site-header__nav-link {
    font-size: 0.75rem !important;
  }
  
  /* Ajustement Mobile pour bien voir les modèles (Snakeskin) */
  .landing-hero {
    background-position: center top !important; /* Décaler vers le haut pour voir les visages sur un écran vertical */
  }

  /* Typographie Mobile Scale */
  h1, .h1 { font-size: clamp(2.5rem, 10vw, 4rem) !important; letter-spacing: -2px; }
  h2, .h2 { font-size: clamp(1.8rem, 7vw, 2.5rem) !important; }

  /* Transformation des images Produit en Slider (Scroll Snap) */
  .product-page__media {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 15px !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 10px;
  }
  .product-page__media::-webkit-scrollbar {
    display: none; /* Cache la barre de défilement pour un look clean */
  }
  .product-page__frame {
    flex: 0 0 100% !important;
    scroll-snap-align: start;
    border: 1px solid #333333;
  }

  /* Boutons Mobile (Full width & Touch friendly) */
  .button, .shopify-payment-button__button, .btn {
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 1rem;
    box-shadow: 4px 4px 0px var(--color-warda-red) !important;
  }

  .button:hover, .shopify-payment-button__button:hover, .btn:hover {
    box-shadow: 4px 4px 0px var(--color-warda-red) !important;
    transform: none;
  }
  
  .button:active, .shopify-payment-button__button:active, .btn:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--color-warda-red) !important;
  }

  /* Désactiver le curseur PC */
  body, .gradient, .page-container { cursor: auto; }
}

@media screen and (max-width: 400px) {
  /* Extra optimisation iPhone SE */
  h1, .h1 { font-size: 2.2rem !important; word-break: break-word; }
  .button, .shopify-payment-button__button { padding: 14px 16px !important; }
}