/** Shopify CDN: Minification failed

Line 546:89 Expected "}" to go with "{"

**/
/* =============================================================
   OLYMPIC FAN GEAR — Brand Stylesheet
   Thème Fabric personnalisé | Version 1.0 | Mai 2026
   Palette : Noir #0A0A0A | Or #F4C300 | Rouge #DF0024
   ============================================================= */

/* ── 0. CSS VARIABLE OVERRIDES (Fabric CSS system) ──────────── */
/*
   Fabric génère ses styles via des variables CSS depuis settings_data.json.
   Cette section surclasse les variables au niveau root pour garantir
   que la palette OFG s'applique partout, même sur les composants
   qui n'héritent pas du bon color-scheme.
*/
:root {
  /* Fonts */
  --font-heading--family: 'Oswald', var(--font-heading--family, sans-serif);
  --font-body--family:    'Inter',  var(--font-body--family, sans-serif);

  /* Force gold CTA au niveau global (fallback si scheme non appliqué) */
  --color-primary-button-background:       #F4C300;
  --color-primary-button-text:             #0A0A0A;
  --color-primary-button-border:           #F4C300;
  --color-primary-button-hover-background: #0A0A0A;
  --color-primary-button-hover-text:       #F4C300;
  --color-primary-button-hover-border:     #F4C300;
}

/* Oswald sur tous les titres — surclasse Geist avec specificité maximale */
h1, h2, h3, h4,
.h1, .h2, .h3, .h4,
[class*="heading"],
[style*="--font-size--h"],
.cart-drawer__heading,
.product-information h1,
.section h2,
hero-section h1,
hero-section h2 {
  font-family: 'Oswald', sans-serif !important;
}

/* Inter sur le corps de texte */
body,
p, span, li, td, input, textarea, select, button,
.cart-drawer__content,
.product-description {
  font-family: 'Inter', sans-serif;
}

/* Bouton Add to Cart — ciblage spécifique Fabric */
add-to-cart-component button,
product-form button[type="submit"],
.button.button-primary,
[class*="add-to-cart"] button {
  background-color: var(--color-primary-button-background) !important;
  color:            var(--color-primary-button-text) !important;
  border-color:     var(--color-primary-button-border) !important;
  font-family: 'Oswald', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

add-to-cart-component button:hover,
product-form button[type="submit"]:hover {
  background-color: var(--color-primary-button-hover-background) !important;
  color:            var(--color-primary-button-hover-text) !important;
  transform: translateY(-1px);
}

/* ── 1. TYPOGRAPHIE GLOBALE ─────────────────────────────────── */
h1, h2, h3,
.h1, .h2, .h3,
[class*="heading"],
.ofg-heading {
  font-family: var(--ofg-font-heading) !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body,
p,
.ofg-body {
  font-family: var(--ofg-font-body);
}

/* ── 2. BOUTON CTA PRIMAIRE — Or sur Noir ──────────────────── */
.button-primary,
button[class*="button-primary"],
.btn-primary {
  background-color: var(--ofg-gold) !important;
  color: var(--ofg-black) !important;
  border-color: var(--ofg-gold) !important;
  font-family: var(--ofg-font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: background-color var(--ofg-transition),
              color var(--ofg-transition),
              transform 0.12s ease;
}

.button-primary:hover,
button[class*="button-primary"]:hover {
  background-color: var(--ofg-black) !important;
  color: var(--ofg-gold) !important;
  border-color: var(--ofg-gold) !important;
  transform: translateY(-1px);
}

/* Add to Cart — style olympique */
.add-to-cart,
[data-add-to-cart],
product-form button[type="submit"] {
  background-color: var(--ofg-gold) !important;
  color: var(--ofg-black) !important;
  border: 2px solid var(--ofg-gold) !important;
  font-family: var(--ofg-font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: all var(--ofg-transition);
}

.add-to-cart:hover,
product-form button[type="submit"]:hover {
  background-color: var(--ofg-black) !important;
  color: var(--ofg-gold) !important;
}

/* ── 3. BADGES PRODUIT ──────────────────────────────────────── */
.ofg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ofg-font-heading);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  line-height: 1.2;
  white-space: nowrap;
}

.ofg-badge--sale {
  background-color: var(--ofg-red);
  color: var(--ofg-white);
}

.ofg-badge--new {
  background-color: var(--ofg-gold);
  color: var(--ofg-black);
}

.ofg-badge--bestseller {
  background-color: var(--ofg-black);
  color: var(--ofg-gold);
  border: 1px solid var(--ofg-gold);
}

.ofg-badge--lowstock {
  background-color: #FF6B35;
  color: var(--ofg-white);
}

.ofg-badge--soldout {
  background-color: var(--ofg-gray-text);
  color: var(--ofg-white);
}

.ofg-badges-stack {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: var(--layer-flat, 1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── 4. CARTES PRODUIT ──────────────────────────────────────── */
.product-card,
[class*="product-card"] {
  transition: transform var(--ofg-transition),
              box-shadow var(--ofg-transition);
  border-radius: 4px;
  overflow: hidden;
}

.product-card:hover,
[class*="product-card"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244, 195, 0, 0.15);
}

/* Prix barré */
.price--sale .price-item--regular,
s.price-item,
[class*="compare-at"] {
  color: var(--ofg-gray-text);
  text-decoration: line-through;
}

.price--sale .price-item--sale,
.price-item--sale {
  color: var(--ofg-red);
  font-weight: 600;
}

/* ── 5. TRUST BADGES ────────────────────────────────────────── */
.ofg-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--ofg-gray-border);
  border-bottom: 1px solid var(--ofg-gray-border);
  margin: 16px 0;
}

.ofg-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--ofg-gray-text);
  font-family: var(--ofg-font-body);
}

.ofg-trust-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ofg-gold-dark);
}

/* ── 6. FREE SHIPPING BAR (CART DRAWER) ─────────────────────── */
.ofg-shipping-bar {
  padding: 12px 16px;
  background: var(--ofg-gray-bg);
  border-bottom: 1px solid var(--ofg-gray-border);
}

.ofg-shipping-bar__text {
  font-size: 0.78rem;
  font-family: var(--ofg-font-body);
  color: var(--ofg-black);
  margin-bottom: 8px;
  text-align: center;
}

.ofg-shipping-bar__text strong {
  color: var(--ofg-gold-dark);
  font-weight: 600;
}

.ofg-shipping-bar__text--complete {
  color: #1E7E34;
  font-weight: 600;
}

.ofg-shipping-bar__track {
  width: 100%;
  height: 6px;
  background: var(--ofg-gray-border);
  border-radius: 99px;
  overflow: hidden;
}

.ofg-shipping-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ofg-gold) 0%, var(--ofg-gold-dark) 100%);
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ofg-shipping-bar__fill--complete {
  background: linear-gradient(90deg, #1E7E34 0%, #28a745 100%);
}

/* ── 7. SIZE CHART ACCORDION ────────────────────────────────── */
.ofg-size-chart {
  border: 1px solid var(--ofg-gray-border);
  border-radius: 4px;
  margin: 16px 0;
  overflow: hidden;
}

.ofg-size-chart__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: var(--ofg-gray-bg);
  border: none;
  cursor: pointer;
  font-family: var(--ofg-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ofg-black);
  text-align: left;
  transition: background-color var(--ofg-transition);
}

.ofg-size-chart__toggle:hover {
  background: var(--ofg-gray-border);
}

.ofg-size-chart__toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.ofg-size-chart[open] .ofg-size-chart__toggle svg {
  transform: rotate(180deg);
}

.ofg-size-chart__body {
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.2s ease;
}

.ofg-size-chart[open] .ofg-size-chart__body {
  max-height: 600px;
  padding: 16px;
}

.ofg-size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  font-family: var(--ofg-font-body);
}

.ofg-size-table th {
  background: var(--ofg-black);
  color: var(--ofg-gold);
  font-family: var(--ofg-font-heading);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.7rem;
  padding: 8px 10px;
  text-align: center;
  border: 1px solid #333;
}

.ofg-size-table td {
  padding: 7px 10px;
  text-align: center;
  border: 1px solid var(--ofg-gray-border);
  color: var(--ofg-black);
}

.ofg-size-table tr:nth-child(even) td {
  background: var(--ofg-gray-bg);
}

.ofg-size-table tr:hover td {
  background: var(--ofg-gold-light);
}

/* ── 8. MARQUEE — BANDE OLYMPIQUE ──────────────────────────── */
.ofg-marquee-bar {
  background: var(--ofg-black);
  padding: 12px 0;
  overflow: hidden;
  border-top: 2px solid var(--ofg-gold);
  border-bottom: 2px solid var(--ofg-gold);
}

.ofg-marquee-bar__track {
  display: flex;
  gap: 48px;
  animation: ofg-marquee 20s linear infinite;
  white-space: nowrap;
}

.ofg-marquee-bar__text {
  font-family: var(--ofg-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ofg-gold);
}

@keyframes ofg-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 9. SECTION NEWSLETTER ──────────────────────────────────── */
.ofg-newsletter {
  background: var(--ofg-black);
  padding: 60px 24px;
  text-align: center;
}

.ofg-newsletter__title {
  font-family: var(--ofg-font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--ofg-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.ofg-newsletter__subtitle {
  font-family: var(--ofg-font-body);
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.ofg-newsletter__form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.ofg-newsletter__input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border: 1px solid rgba(244,195,0,0.4);
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  color: var(--ofg-white);
  font-family: var(--ofg-font-body);
  font-size: 0.9rem;
}

.ofg-newsletter__input::placeholder {
  color: rgba(255,255,255,0.4);
}

.ofg-newsletter__input:focus {
  outline: none;
  border-color: var(--ofg-gold);
  background: rgba(255,255,255,0.08);
}

.ofg-newsletter__btn {
  padding: 12px 24px;
  background: var(--ofg-gold);
  color: var(--ofg-black);
  border: none;
  border-radius: 3px;
  font-family: var(--ofg-font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ofg-transition);
}

.ofg-newsletter__btn:hover {
  background: var(--ofg-white);
  transform: translateY(-1px);
}

/* ── 10. RINGS DÉCORATIFS ───────────────────────────────────── */
.ofg-rings {
  display: flex;
  align-items: center;
  gap: -8px;
  margin: 16px auto;
  justify-content: center;
}

.ofg-rings__ring {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid;
  margin-right: -8px;
  flex-shrink: 0;
}

.ofg-rings__ring:nth-child(1) { border-color: var(--ofg-ring-blue); }
.ofg-rings__ring:nth-child(2) { border-color: var(--ofg-ring-yellow); margin-top: 10px; }
.ofg-rings__ring:nth-child(3) { border-color: var(--ofg-ring-black); }
.ofg-rings__ring:nth-child(4) { border-color: var(--ofg-ring-green); margin-top: 10px; }
.ofg-rings__ring:nth-child(5) { border-color: var(--ofg-ring-red); margin-right: 0; }

/* ── 11. ANNOUNCEMENT BAR ───────────────────────────────────── */
.announcement-bar,
[class*="announcement"] {
  background: var(--ofg-gold) !important;
  color: var(--ofg-black) !important;
}

.announcement-bar a,
[class*="announcement"] a {
  color: var(--ofg-black) !important;
  font-family: var(--ofg-font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
}

/* ── 12. STOCK INDICATOR ────────────────────────────────────── */
.ofg-stock-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-family: var(--ofg-font-body);
  margin: 8px 0;
}

.ofg-stock-indicator__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ofg-stock-indicator--instock .ofg-stock-indicator__dot  { background: #28a745; }
.ofg-stock-indicator--lowstock .ofg-stock-indicator__dot { background: #FF6B35; animation: ofg-pulse 1.2s infinite; }
.ofg-stock-indicator--outofstock .ofg-stock-indicator__dot { background: var(--ofg-gray-text); }

.ofg-stock-indicator--lowstock .ofg-stock-indicator__text { color: #FF6B35; font-weight: 