.elementor-kit-397{--e-global-color-primary:#FF4015;--e-global-color-secondary:#E9E7E1;--e-global-color-text:#8C8C8F;--e-global-color-accent:#141416;--e-global-color-c-concrete-800:#1F1F22;--e-global-color-c-concrete-600:#3A3A3E;--e-global-color-c-legends:#FF4015;--e-global-color-c-passion:#FF2D6F;--e-global-color-c-pop:#2E7BFF;--e-global-color-c-playground:#19C37D;--e-global-color-c-colors:#A855F7;--e-global-color-c-le-lignon:#FFD400;--e-global-color-c-logo-red:#E20613;--e-global-color-b7c3005:#000000;--e-global-typography-primary-font-family:"AGENCY FB";--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"GENERAL SANS";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"GENERAL SANS";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"SPACE MONO";--e-global-typography-accent-font-weight:400;--e-global-typography-t-mono-bold-font-family:"SPACE MONO";--e-global-typography-t-mono-bold-font-weight:700;--e-global-typography-t-sans-bold-font-family:"GENERAL SANS";--e-global-typography-t-sans-bold-font-weight:700;background-repeat:no-repeat;}.elementor-kit-397 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1280px;}.e-con{--container-max-width:1280px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ==========================================================================
   Street Core 219 — CSS du design system (hors Tailwind)
   Source : wp-theme-streetcore219/assets/src/tailwind-entry.css
   Adapté pour Elementor Custom Code : valeurs de couleur en dur (pas de
   dépendance aux custom properties Tailwind qui n'existent plus), accent de
   collection recâblé sur les classes natives WooCommerce product_cat-{slug}
   au lieu de l'ancien attribut data-collection custom (docs/03-mapping.md §A).
   ========================================================================== */

/* ── Base ─────────────────────────────────────────────────────────────── */
html {
  background-color: #141416;
  color: #E9E7E1;
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  overflow-x: hidden;
  overscroll-behavior: none;
}

:focus-visible {
  outline: 2px solid #FF4015;
  outline-offset: 3px;
}

::selection {
  background: #FF4015;
  color: #E9E7E1;
}

/* ── Accent de collection (via classes natives WooCommerce) ─────────────
   WooCommerce pose déjà product_cat-{slug} sur les articles de boucle. */
.product_cat-legends    { --collection-accent: #FF4015; }
.product_cat-passion    { --collection-accent: #FF2D6F; }
.product_cat-pop        { --collection-accent: #2E7BFF; }
.product_cat-playground { --collection-accent: #19C37D; }
.product_cat-colors     { --collection-accent: #A855F7; }
.product_cat-le-lignon  { --collection-accent: #FFD400; }

/* ── Filets (hairlines) ───────────────────────────────────────────────── */
.hairline   { border: 1px solid #3A3A3E; }
.hairline-t { border-top: 1px solid #3A3A3E; }
.hairline-b { border-bottom: 1px solid #3A3A3E; }
.hairline-l { border-left: 1px solid #3A3A3E; }
.hairline-r { border-right: 1px solid #3A3A3E; }

/* ── Grain / texture béton ────────────────────────────────────────────── */
.grain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

.scanlines {
  background-image: repeating-linear-gradient(
    0deg,
    rgba(233, 231, 225, 0.05) 0px,
    rgba(233, 231, 225, 0.05) 1px,
    transparent 1px,
    transparent 3px
  );
}

.halftone {
  background-image: radial-gradient(circle, rgba(233, 231, 225, 0.12) 1px, transparent 1.2px);
  background-size: 7px 7px;
}

/* ── Halos néon ───────────────────────────────────────────────────────── */
.glow-border {
  box-shadow:
    0 0 0 1px var(--glow, #FF4015),
    0 0 20px -4px var(--glow, #FF4015);
  transition: box-shadow 0.35s ease;
}
.glow-border-hover {
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.glow-border-hover:hover,
.glow-border-hover:focus-within {
  box-shadow:
    0 0 0 1px var(--glow, #FF4015),
    0 0 28px -6px var(--glow, #FF4015),
    0 0 56px -16px var(--glow, #FF4015);
}

.glow-text {
  text-shadow:
    0 0 8px color-mix(in srgb, var(--glow, #FF4015) 80%, transparent),
    0 0 26px color-mix(in srgb, var(--glow, #FF4015) 45%, transparent);
}

@keyframes neon-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 6px var(--glow, #FF4015), 0 0 16px var(--glow, #FF4015);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 2px var(--glow, #FF4015);
  }
}
.pulse-dot { animation: neon-pulse 1.8s ease-in-out infinite; }

/* ── Texte glitch ─────────────────────────────────────────────────────── */
/* Usage : <span class="glitch" data-text="MOT">MOT</span> */
.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: inherit;
  background: transparent;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.glitch::before {
  color: #2E7BFF;
  transform: translate(0, 0);
  animation: glitch-slice-1 5s infinite steps(1, end);
  z-index: -1;
}
.glitch::after {
  color: #FF2D6F;
  transform: translate(0, 0);
  animation: glitch-slice-2 5s infinite steps(1, end);
  z-index: -1;
}
@keyframes glitch-slice-1 {
  0%, 92%, 100% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
  93% { clip-path: inset(10% 0 65% 0); transform: translate(-3px, 1px); }
  95% { clip-path: inset(55% 0 10% 0); transform: translate(3px, -1px); }
  97% { clip-path: inset(25% 0 45% 0); transform: translate(-2px, 0); }
}
@keyframes glitch-slice-2 {
  0%, 91%, 100% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
  92% { clip-path: inset(60% 0 5% 0); transform: translate(3px, 0); }
  94% { clip-path: inset(5% 0 70% 0); transform: translate(-3px, 1px); }
  96% { clip-path: inset(35% 0 30% 0); transform: translate(2px, -1px); }
}

/* ── Coins HUD ────────────────────────────────────────────────────────── */
.hud-corners { position: relative; }
.hud-corners::before,
.hud-corners::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--glow, #FF4015);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  pointer-events: none;
}
.hud-corners::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.hud-corners::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}
.hud-corners:hover::before,
.hud-corners:hover::after,
.hud-corners:focus-within::before,
.hud-corners:focus-within::after {
  opacity: 1;
  width: 18px;
  height: 18px;
}

/* ── Boutons néon (fill-sweep) ────────────────────────────────────────── */
.btn-neon {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.btn-neon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glow, #FF4015);
  transform: translateX(-102%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn-neon:hover::before,
.btn-neon:focus-visible::before {
  transform: translateX(0);
}
.btn-neon:hover,
.btn-neon:focus-visible {
  border-color: var(--glow, #FF4015) !important;
  box-shadow: 0 0 24px -6px var(--glow, #FF4015);
}

/* ── Boutons pleins : halo au survol ──────────────────────────────────── */
.btn-fill-glow {
  transition: box-shadow 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
.btn-fill-glow:hover,
.btn-fill-glow:focus-visible {
  box-shadow: 0 0 28px -4px var(--glow, #FF4015);
  filter: brightness(1.08);
}

/* ── Chevron de scroll ────────────────────────────────────────────────── */
@keyframes chevron-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 1; }
}
.scroll-chevron { animation: chevron-bounce 1.8s ease-in-out infinite; }

/* ── Texte hue-cycling (marquee / accents) ───────────────────────────── */
@keyframes hue-cycle {
  0% { color: #FF4015; }
  20% { color: #FF2D6F; }
  40% { color: #2E7BFF; }
  60% { color: #19C37D; }
  80% { color: #A855F7; }
  100% { color: #FF4015; }
}
.text-cycle { animation: hue-cycle 9s linear infinite; }

/* ── Contenu WYSIWYG légal/générique ─────────────────────────────────── */
.prose-legal h2 {
  font-family: "Anton", "Impact", sans-serif;
  text-transform: uppercase;
  color: #E9E7E1;
  font-size: 1.5rem;
  line-height: 1.1;
  margin-top: 2rem;
}
.prose-legal h3 {
  font-family: "Anton", "Impact", sans-serif;
  text-transform: uppercase;
  color: #E9E7E1;
  font-size: 1.15rem;
  line-height: 1.2;
  margin-top: 1.5rem;
}
.prose-legal a {
  color: #FF4015;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose-legal ul,
.prose-legal ol {
  padding-left: 1.25rem;
}
.prose-legal ul { list-style: disc; }
.prose-legal ol { list-style: decimal; }
.prose-legal strong { color: #E9E7E1; }

/* ── Fallback sans JS ─────────────────────────────────────────────────── */
.no-js [data-hero-clip] {
  clip-path: inset(0 0% 0 0) !important;
}

/* ── Mouvement réduit ─────────────────────────────────────────────────── */
@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;
  }
}

/* Classes utilitaires minimales requises par header-nav.js (tiroir mobile +
   icone burger) -- equivalent des classes Tailwind du site d'origine,
   recreees a la main puisque Tailwind n'est plus utilise. */

.hidden { display: none; }

.opacity-0 { opacity: 0; }

.translate-x-full { transform: translateX(100%); }
.translate-x-0 { transform: translateX(0); }

.translate-y-\[6px\] { transform: translateY(6px); }
.-translate-y-\[6px\] { transform: translateY(-6px); }

.rotate-45 { transform: rotate(45deg); }
.-rotate-45 { transform: rotate(-45deg); }

/* Transition fluide sur les barres du burger et le tiroir */
[data-drawer-bar] { transition: transform 0.3s ease, opacity 0.3s ease; }
[data-drawer] { transition: transform 0.3s ease; }


.site-nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

body {
  padding-top: 64px;
}

.woocommerce-product-gallery {
  opacity: 1 !important;
}

.sc219-hero-offset {
  margin-top: -64px;
}

/* ==========================================================================
   Street Core 219 — Cart / Checkout / My Account
   Restyles native WooCommerce Cart & Checkout Blocks + classic My Account
   markup to match the brand design system. Scoped via WooCommerce's own
   body classes (.woocommerce-cart / .woocommerce-checkout / .woocommerce-account)
   so it never leaks onto other pages.
   ========================================================================== */

/* ── Hide default WP page-title bar on these 3 pages, add our own ───────── */
.woocommerce-cart .page-header,
.woocommerce-checkout .page-header,
.woocommerce-account .page-header {
  display: none;
}

.woocommerce-cart #content,
.woocommerce-checkout #content,
.woocommerce-account #content {
  background: #141416;
  padding-top: 0;
}

.woocommerce-cart .page-content::before,
.woocommerce-checkout .page-content::before,
.woocommerce-account .page-content::before {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF4015;
  padding: 80px 24px 8px;
}
.woocommerce-cart .page-content::after,
.woocommerce-checkout .page-content::after,
.woocommerce-account .page-content::after {
  content: '';
}
.woocommerce-cart .page-content { position: relative; }
.woocommerce-cart .page-content::before { content: 'Cart'; }
.woocommerce-checkout .page-content::before { content: 'Checkout'; }
.woocommerce-account .page-content::before { content: 'My Account'; }

.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-account .page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

/* ── Base typography inside these pages ──────────────────────────────────── */
.woocommerce-cart .wp-block-woocommerce-cart,
.woocommerce-checkout .wp-block-woocommerce-checkout,
.woocommerce-account .woocommerce {
  font-family: 'General Sans', sans-serif;
  color: #E9E7E1;
}

.woocommerce-cart .wc-block-cart__empty-cart__title,
.woocommerce-cart h2.wp-block-heading,
.woocommerce-checkout h2.wp-block-heading,
.woocommerce-account h2 {
  font-family: 'Agency FB', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #E9E7E1;
  line-height: 1.1;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

/* ── Cart line items / Checkout order summary rows ───────────────────────── */
.wc-block-cart-items,
.wc-block-cart-items__header,
.wc-block-cart-items__row {
  border-color: #3A3A3E !important;
}
.wc-block-cart-item__wrap,
.wc-block-components-order-summary-item {
  border-bottom: 1px solid #3A3A3E;
  padding: 24px 0;
}
.wc-block-components-product-name {
  font-family: 'Agency FB', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #E9E7E1;
  text-decoration: none;
}
.wc-block-components-product-metadata,
.wc-block-components-product-metadata__description {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #8C8C8F;
}
.wc-block-components-product-price,
.wc-block-components-formatted-money-amount,
.woocommerce-Price-amount {
  font-family: 'Space Mono', monospace;
  color: #E9E7E1;
}

/* Quantity .elementor-kit-397 */
.wc-block-components-quantity-.elementor-kit-397 {
  border: 1px solid #3A3A3E;
  background: transparent;
}
.wc-block-components-quantity-.elementor-kit-397__input {
  background: transparent;
  color: #E9E7E1;
  font-family: 'Space Mono', monospace;
}
.wc-block-components-quantity-.elementor-kit-397__button {
  color: #8C8C8F;
}
.wc-block-components-quantity-.elementor-kit-397__button:hover {
  color: #FF4015;
}

/* Remove item link */
.wc-block-cart-item__remove-link {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8C8C8F;
}
.wc-block-cart-item__remove-link:hover { color: #FF4015; }

/* ── Order summary / totals sidebar ──────────────────────────────────────── */
.wc-block-components-panel,
.wc-block-components-totals-wrapper,
.wc-block-cart__totals-title,
.wp-block-woocommerce-cart-order-summary-block,
.wp-block-woocommerce-checkout-order-summary-block {
  border-color: #3A3A3E !important;
  background: #1F1F22;
}
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8C8C8F;
}
.wc-block-components-totals-item--full-width .wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: #E9E7E1;
  font-size: 16px;
}

/* Coupon form */
.wc-block-components-totals-coupon__button,
.wc-block-components-panel__button {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8C8C8F;
}
.wc-block-components-totals-coupon__content .wc-block-components-text-input input {
  background: transparent;
  border: 1px solid #3A3A3E;
  color: #E9E7E1;
}

/* ── Buttons: proceed to checkout / place order / apply coupon ──────────── */
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-totals-coupon__button,
.woocommerce-button.button {
  font-family: 'Space Mono', monospace !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: transparent !important;
  color: #E9E7E1 !important;
  border: 1px solid #E9E7E1 !important;
  border-radius: 0 !important;
  padding: 16px 32px !important;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.woocommerce-button.button:hover {
  background: #FF4015 !important;
  border-color: #FF4015 !important;
  color: #141416 !important;
}

/* ── Text inputs (checkout address fields, account forms) ───────────────── */
.wc-block-components-text-input input,
.wc-block-components-textarea input,
.wc-block-components-address-form input,
.wc-block-components-address-form select,
.woocommerce-Input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-account .woocommerce-Input {
  background: transparent !important;
  border: 1px solid #3A3A3E !important;
  border-radius: 0 !important;
  color: #E9E7E1 !important;
  font-family: 'General Sans', sans-serif !important;
  padding: 12px !important;
}
.wc-block-components-text-input input:focus,
.woocommerce-Input:focus {
  outline: 2px solid #FF4015;
  outline-offset: 2px;
  border-color: #FF4015 !important;
}
.wc-block-components-text-input label,
.woocommerce form .form-row label {
  font-family: 'Space Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8C8C8F !important;
}

/* Radio / select (shipping methods, payment methods) */
.wc-block-components-radio-control__label,
.wc-block-components-payment-method-label {
  font-family: 'General Sans', sans-serif;
  color: #E9E7E1;
}
.wc-block-components-radio-control__input {
  accent-color: #FF4015;
}

/* ── Empty cart state ─────────────────────────────────────────────────────── */
.wc-block-cart__empty-cart__title {
  color: #E9E7E1;
}
.wp-block-woocommerce-empty-cart-block hr {
  border-color: #3A3A3E;
}
.wc-block-grid__product-title {
  font-family: 'Agency FB', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #E9E7E1;
}
.wc-block-grid__product-price {
  font-family: 'Space Mono', monospace;
  color: #8C8C8F;
}

/* ── My Account ───────────────────────────────────────────────────────────── */
.woocommerce-account .woocommerce-MyAccount-navigation {
  border-right: 1px solid #3A3A3E;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid #3A3A3E;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 16px 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8C8C8F;
  text-decoration: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  color: #FF4015;
}
.woocommerce-account .woocommerce-MyAccount-content { color: #8C8C8F; }
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  max-width: 420px;
}
.woocommerce-account a { color: #FF4015; }

/* ── Notices (errors/success) ────────────────────────────────────────────── */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info,
.wc-block-components-notice-banner {
  background: #1F1F22 !important;
  border: 1px solid #3A3A3E !important;
  border-left: 3px solid #FF4015 !important;
  color: #E9E7E1 !important;
  font-family: 'General Sans', sans-serif;
  list-style: none;
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'AGENCY FB';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://starsport.ch/wp-content/uploads/2026/08/AgencyFB-Bold.woff') format('woff');
}
/* End Custom Fonts CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'GENERAL SANS';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://starsport.ch/wp-content/uploads/2026/08/GeneralSans-Regular.woff') format('woff');
}
@font-face {
	font-family: 'GENERAL SANS';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://starsport.ch/wp-content/uploads/2026/08/GeneralSans-Medium.woff') format('woff');
}
@font-face {
	font-family: 'GENERAL SANS';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://starsport.ch/wp-content/uploads/2026/08/GeneralSans-Bold.woff') format('woff');
}
/* End Custom Fonts CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'SPACE MONO';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://starsport.ch/wp-content/uploads/2026/08/SpaceMono-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'SPACE MONO';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://starsport.ch/wp-content/uploads/2026/08/SpaceMono-Bold.ttf') format('truetype');
}
/* End Custom Fonts CSS */