/*
Theme Name: Atelier Running
Theme URI: https://atelier-running.fr
Author: ALX3D
Author URI: https://atelier-running.fr
Description: Theme WooCommerce sur mesure pour L'Atelier Running (porte-dossard + cartes 3D), inspire des univers fixetondossard et carte3d.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: atelier-running
*/

:root {
  --ar-bg: #f6f6f4;
  --ar-bg-soft: #ffffff;
  --ar-ink: #17181b;
  --ar-muted: #17181b;
  --ar-line: #dfdfdf;
  --ar-brand: #ff3131;
  --ar-brand-dark: #cf2020;
  --ar-ok: #1f8b4c;
  --ar-shadow: 0 16px 36px rgba(15, 17, 20, 0.1);
  --ar-radius: 18px;
  --ar-max: 1160px;
  --ar-h1-size: clamp(1.8rem, 3vw, 2.45rem);
  --ar-h1-line: 1.08;
  --ar-h1-letter: -0.015em;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--ar-ink);
  background:
    radial-gradient(circle at 10% 0%, #ffffff 0%, var(--ar-bg) 52%),
    linear-gradient(120deg, #f7f7f7 0%, #f4f4f4 100%);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.ar-container {
  width: min(var(--ar-max), 92%);
  margin: 0 auto;
}

.ar-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(7px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--ar-line);
}

.ar-header-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav actions";
  align-items: center;
  gap: 14px;
  min-height: 62px;
}

.ar-brand {
  grid-area: brand;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}

.ar-brand-name {
  font-size: 1.52rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.ar-brand-note {
  font-size: 0.6rem;
  color: #3d424a;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
}

.ar-brand-note-accent {
  color: #e24747;
}

.ar-nav-toggle {
  grid-area: toggle;
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid #17181b;
  border-radius: 6px;
  background: #fff;
  color: #17181b;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.42rem 0.62rem;
  cursor: pointer;
}

.ar-nav-toggle-icon {
  position: relative;
  width: 15px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.ar-nav-toggle-icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  border-top: 2px solid currentColor;
}

.ar-main-nav {
  grid-area: nav;
}

.ar-main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ar-main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #3a3f47;
}

.ar-header-actions {
  grid-area: actions;
  display: flex;
  gap: 10px;
}

.ar-header-actions .ar-btn {
  border-color: transparent;
}

.ar-header-actions .ar-btn:hover {
  border-color: transparent;
}

.ar-btn,
.button,
.single_add_to_cart_button,
.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #17181b;
  background: #fff;
  color: #17181b;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.48rem 0.78rem;
  line-height: 1.2;
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
  cursor: pointer;
  box-shadow: none;
}

.ar-btn-primary,
.single_add_to_cart_button {
  background: #fff;
  border-color: #17181b;
  color: #17181b;
  box-shadow: none;
}

.ar-btn-primary:hover,
.single_add_to_cart_button:hover {
  color: #ff3131;
  border-color: #ff3131;
  background: #fff;
}

.ar-btn-outline,
.button {
  background: #fff;
  border-color: #17181b;
  color: var(--ar-ink);
}

.ar-btn-outline:hover,
.button:hover {
  color: #ff3131;
  border-color: #ff3131;
}

.woocommerce-price-suffix {
  white-space: nowrap;
}

.ar-main {
  min-height: 60vh;
  padding: 36px 0 54px;
}

.ar-page-hero {
  margin-bottom: 28px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--ar-line);
  border-radius: var(--ar-radius);
  box-shadow: var(--ar-shadow);
}

.ar-legal-hero {
  position: relative;
  width: 100vw;
  margin: 0 0 34px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 34px 0 30px;
}

.ar-legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #f5ecec 0%, #f8f2f2 100%);
  border-top: 1px solid #ead8d8;
  border-bottom: 1px solid #ead8d8;
}

.ar-legal-hero-inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.ar-legal-eyebrow {
  margin: 0 0 8px;
  color: #273247;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ar-legal-title {
  margin: 0;
  font-size: var(--ar-h1-size);
  line-height: var(--ar-h1-line);
  letter-spacing: var(--ar-h1-letter);
  color: #1c2330;
}

.ar-legal-lead {
  margin: 12px 0 0;
  max-width: 78ch;
  color: #34445e;
  font-size: clamp(1.02rem, 1.1vw, 1.2rem);
  line-height: 1.45;
}

.ar-legal-page {
  max-width: 900px;
  margin: 0 auto 34px;
  background: #fff;
  border: 1px solid #e1e5ec;
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 3px 10px rgba(17, 24, 39, 0.05);
}

.ar-legal-content {
  color: #212d40;
  line-height: 1.7;
}

.ar-legal-content > *:first-child {
  margin-top: 0;
}

.ar-legal-content h2 {
  margin: 26px 0 10px;
  font-size: clamp(1.15rem, 1.55vw, 1.5rem);
  line-height: 1.22;
  color: #17181b;
}

.ar-legal-content h3 {
  margin: 20px 0 8px;
  font-size: clamp(1.02rem, 1.22vw, 1.2rem);
  line-height: 1.3;
  color: #17181b;
}

.ar-legal-content p,
.ar-legal-content li {
  font-size: clamp(0.97rem, 1.05vw, 1.06rem);
}

.ar-legal-content ul,
.ar-legal-content ol {
  margin: 0 0 12px 1.1rem;
  padding: 0;
}

.ar-legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 16px;
}

.ar-legal-content th,
.ar-legal-content td {
  border: 1px solid #e1e5ec;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.ar-contact-page {
  width: min(1120px, 92vw);
  margin: 0 auto 34px;
}

.ar-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: start;
}

.ar-contact-copy {
  background: #fff;
  border: 1px solid #e1e5ec;
  border-radius: 6px;
  padding: 26px;
  box-shadow: 0 3px 10px rgba(17, 24, 39, 0.05);
}

.ar-contact-copy h2 {
  margin-top: 0;
}

.ar-contact-form-wrap {
  background: #fff;
  border: 1px solid #e1e5ec;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(17, 24, 39, 0.05);
}

.ar-contact-fallback p {
  margin: 0 0 10px;
}

.ar-contact-fallback p:last-child {
  margin-bottom: 0;
}

.ar-contact-form-wrap .forminator-ui.forminator-custom-form[data-design="default"] .forminator-button.forminator-button-submit,
.ar-contact-form-wrap .forminator-ui#forminator-module-86.forminator-design--default .forminator-button-submit {
  background: #fff !important;
  border: 2px solid #17181b !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  color: #17181b !important;
  font-family: inherit !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  height: auto !important;
  line-height: 1.1 !important;
  min-height: 48px !important;
  min-width: 170px !important;
  padding: 0.78rem 1.2rem !important;
  text-align: center !important;
  text-shadow: none !important;
  transition: all 0.2s ease !important;
  width: auto !important;
}

.ar-contact-form-wrap .forminator-ui.forminator-custom-form[data-design="default"] .forminator-button.forminator-button-submit:hover,
.ar-contact-form-wrap .forminator-ui.forminator-custom-form[data-design="default"] .forminator-button.forminator-button-submit:focus,
.ar-contact-form-wrap .forminator-ui#forminator-module-86.forminator-design--default .forminator-button-submit:hover,
.ar-contact-form-wrap .forminator-ui#forminator-module-86.forminator-design--default .forminator-button-submit:focus {
  background: #fff !important;
  border-color: #ff3131 !important;
  color: #ff3131 !important;
}

.ar-contact-form-wrap .forminator-ui.forminator-custom-form[data-design="default"] .forminator-button.forminator-button-submit:active,
.ar-contact-form-wrap .forminator-ui#forminator-module-86.forminator-design--default .forminator-button-submit:active {
  transform: translateY(1px);
}

@media (max-width: 980px) {
  .ar-contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ar-contact-copy,
  .ar-contact-form-wrap {
    padding: 18px;
  }
}

.ar-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px 6px;
  font-size: 0.92rem;
  color: var(--ar-muted);
}

.ar-breadcrumb a {
  color: var(--ar-muted);
  text-decoration: none;
}

.ar-breadcrumb a:hover,
.ar-breadcrumb a:focus-visible {
  color: #17181b;
  text-decoration: underline;
}

.ar-breadcrumb-sep {
  color: #8e929a;
}

.ar-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ar-brand);
  font-weight: 800;
  margin: 0 0 8px;
}

.ar-category-description p:last-child,
.ar-category-description-text p:last-child {
  margin-bottom: 0;
}

.ar-category-bib-hero {
  margin-bottom: 64px;
}

.ar-bib-parent-top {
  width: min(1120px, 92vw);
  margin: 0 auto 10px;
}

.ar-bib-parent-top .ar-breadcrumb {
  margin: 0 0 10px;
}

.ar-bib-parent-top .ar-bib-hero-brand {
  margin: 0;
}

.ar-bib-child-top {
  width: min(1120px, 92vw);
  margin: 0 auto 10px;
}

.ar-bib-child-top .ar-breadcrumb {
  margin: 0 0 10px;
}

.ar-bib-child-top .ar-bib-hero-brand {
  margin: 0;
}

.ar-bib-parent-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 34px 0 30px;
  margin-bottom: 72px;
}

.ar-bib-parent-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f3f4f6;
  border-top: 1px solid #e3e5e8;
  border-bottom: 1px solid #e3e5e8;
}

.ar-bib-child-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 34px 0 28px;
  margin-bottom: 56px;
}

.ar-bib-child-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f3f4f6;
  border-top: 1px solid #e3e5e8;
  border-bottom: 1px solid #e3e5e8;
}

.ar-bib-child-hero .ar-category-bib-grid {
  width: min(1120px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

.ar-category-bib-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.ar-bib-parent-hero .ar-bib-parent-hero-grid {
  width: min(1120px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

.ar-bib-parent-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.ar-bib-parent-hero .ar-bib-hero-title-col,
.ar-bib-parent-hero .ar-bib-hero-content-col {
  min-width: 0;
}

.ar-bib-hero-copy,
.ar-bib-hero-card {
  padding: 26px;
}

.ar-bib-hero-copy {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 6px 6px;
}

.ar-bib-hero-card {
  background: #fff;
  border: 1px solid var(--ar-line);
  border-radius: 28px;
  box-shadow: var(--ar-shadow);
}

.ar-bib-hero-brand {
  margin: 0 0 44px 6px;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
}

.ar-bib-hero-brand-black {
  color: #1d1f25;
}

.ar-bib-hero-brand-red {
  color: #ff3131;
}

.ar-bib-hero-title {
  margin: 0;
  font-size: var(--ar-h1-size);
  line-height: var(--ar-h1-line);
  letter-spacing: var(--ar-h1-letter);
}

.ar-bib-hero-accent {
  color: #ff3131;
}

.ar-bib-hero-lead {
  color: var(--ar-muted);
  font-size: 1.12rem;
  margin: 6px 0 0;
  max-width: 58ch;
}

.ar-bib-hero-lead p {
  margin: 0 0 10px;
}

.ar-bib-hero-lead p:last-child {
  margin-bottom: 0;
}

.ar-bib-hero-lead strong {
  font-weight: 800;
}

.ar-bib-child-hero .ar-bib-hero-lead strong {
  font-weight: 700;
}

.ar-single-bib-hero .ar-bib-hero-lead strong {
  font-weight: 700;
}

.ar-bib-hero-lead em {
  color: #ff3131;
  font-style: normal;
}

.ar-bib-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ar-bib-hero-proof {
  margin: 14px 0 0;
  color: #1f8b4c;
  font-weight: 800;
  font-size: 1rem;
}

.ar-local-pickup-note {
  margin: 10px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #17181b;
}

.ar-bib-hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 14px 0 18px;
}

.ar-bib-hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.32rem 0.64rem;
  border: 1px solid #d9e0ea;
  border-radius: 999px;
  background: #edf2f8;
  color: #2f3e53;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.ar-bib-hero-chips li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff3131;
  flex: 0 0 6px;
}

.ar-bib-hero-bullets {
  margin: 14px 0 18px;
  padding: 0 0 0 1.1rem;
  display: grid;
  gap: 10px;
  color: #2f3e53;
}

.ar-bib-hero-bullets li {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.5;
  font-weight: 600;
}

.ar-bib-hero-reassurance {
  margin: 14px 0 0;
  color: #2f3e53;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
}

.ar-bib-anti-pin {
  margin: 18px 0 20px;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid #e4e6ea;
  border-radius: 12px;
  background: #fbfbfa;
}

.ar-bib-anti-pin h2 {
  margin: 0 0 14px;
  color: #111111;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.2;
}

.ar-bib-anti-pin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 981px) {
  .ar-bib-anti-pin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

.ar-bib-anti-pin-card {
  border: 1px solid #e8e0d5;
  border-radius: 12px;
  background: #ffffff;
  padding: 14px;
}

.ar-bib-anti-pin-card h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 1.02rem;
  line-height: 1.25;
}

.ar-bib-anti-pin-card p {
  margin: 0;
  color: #4a4e57;
  font-size: 0.96rem;
  line-height: 1.45;
}

.ar-bib-anti-pin-transition {
  margin: 14px 0 0;
  color: #1f2530;
  font-size: 1rem;
  font-weight: 600;
}

.ar-bib-hold-proof {
  margin: clamp(40px, 5vw, 56px) 0 0;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid #e5e1d8;
  border-radius: 12px;
  background: #f3ede2;
}

.ar-bib-hold-proof h2 {
  margin: 0 0 12px;
  color: #111111;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.ar-bib-hold-proof-intro {
  margin: 0 0 14px;
  color: #4a4e57;
  font-size: 0.98rem;
  line-height: 1.5;
}

.ar-bib-hold-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ar-bib-hold-proof-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 6px 2px;
}

.ar-bib-hold-proof-card h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 1.01rem;
  line-height: 1.25;
}

.ar-bib-hold-proof-card p {
  margin: 0;
  color: #4a4e57;
  font-size: 0.96rem;
  line-height: 1.45;
}

.ar-bib-hold-proof-reassurance {
  margin: 18px 0 0;
  color: #111111;
  font-size: clamp(1.18rem, 1.9vw, 1.4rem);
  font-weight: 700;
  text-align: center;
}

.ar-bib-hold-proof-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.ar-bib-hold-proof-actions .ar-btn {
  width: min(100%, 320px);
  justify-content: center;
}

.ar-bib-hold-proof-actions .ar-btn-primary {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.ar-bib-switch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.ar-bib-switch-col {
  border: 1px solid #e3d9c6;
  border-radius: 12px;
  background: #f8f3ea;
  padding: 14px;
}

.ar-bib-switch-col-positive {
  background: #fff8ea;
  border-color: #d4be8e;
  box-shadow: 0 8px 20px rgba(28, 30, 36, 0.08);
}

.ar-bib-switch-col h3 {
  margin: 0 0 12px;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ar-bib-switch-symbol {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 1.05rem;
  line-height: 1;
  font-size: 0.74rem;
  font-weight: 700;
}

.ar-bib-switch-symbol::before {
  display: block;
}

.ar-bib-switch-symbol-negative {
  border: 1px solid #c86565;
  color: #b64d4d;
  background: rgba(198, 101, 101, 0.08);
}

.ar-bib-switch-symbol-negative::before {
  content: "×";
  transform: translateY(-0.02em);
}

.ar-bib-switch-symbol-positive {
  border: 1px solid #5f8f64;
  color: #3f7247;
  background: rgba(95, 143, 100, 0.08);
}

.ar-bib-switch-symbol-positive::before {
  content: "✓";
  transform: translateY(-0.02em);
}

.ar-bib-switch-list {
  margin: 0;
  padding: 0 0 0 18px;
  color: #3f434a;
}

.ar-bib-switch-list li {
  margin: 0 0 8px;
  line-height: 1.45;
}

.ar-bib-switch-list li:last-child {
  margin-bottom: 0;
}

.ar-bib-switch-badge {
  display: inline-flex;
  align-items: center;
  margin: -2px 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #d9c8a9;
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.ar-bib-switch-benefits .ar-bib-hold-proof-reassurance {
  margin-top: 26px;
}

.ar-bib-switch-micro-proof {
  margin: 10px 0 0;
  text-align: center;
  color: #5f636b;
  font-size: 0.85rem;
  line-height: 1.35;
}

@media (min-width: 981px) {
  .ar-bib-switch-col h3,
  .ar-category-children-bib .ar-card h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .ar-bib-hold-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .ar-bib-switch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

.ar-bib-hero-visual {
  border: 1px solid #d7dde3;
  border-radius: 22px;
  padding: 16px;
  background: #f6f8fa;
  position: relative;
}

.ar-bib-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1c0c0;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 16px;
  font-weight: 800;
  color: #3f5f83;
  background: #fff;
  position: absolute;
  top: 14px;
  right: 14px;
}

.ar-bib-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #d4dce5;
}

.ar-bib-hero-image-fallback {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ar-muted);
  font-weight: 600;
  border-radius: 14px;
  border: 1px dashed #cbd4df;
  background: #fff;
  padding: 16px;
}

.ar-bib-mini-specs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ar-bib-mini-specs div {
  text-align: center;
  background: #f8f8f8;
  border: 1px solid #e2e2e2;
  border-radius: 14px;
  padding: 10px 8px;
  line-height: 1.08;
  color: #505662;
}

.ar-bib-mini-specs strong {
  display: block;
  color: #2d3340;
  margin-bottom: 0;
}

.ar-bib-specs-section {
  width: min(1120px, 92vw);
  margin: clamp(40px, 5vw, 56px) auto 0;
}

.ar-bib-specs-shell {
  background: #fff;
  border: 1px solid #e2e6eb;
  border-radius: 12px;
  padding: 18px 22px;
}

.ar-bib-specs-shell h2 {
  margin: 0 0 12px;
}

.ar-bib-specs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.ar-bib-specs-list li {
  position: relative;
  padding-left: 14px;
  color: #17181b;
}

.ar-bib-specs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff3131;
}

.ar-bib-specs-list strong {
  font-weight: 700;
}

.ar-category-bib-faq {
  margin-top: clamp(40px, 5vw, 56px);
}

.ar-category-bib-faq h2 {
  margin-bottom: 12px;
}

.ar-faq-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.ar-faq-inline li {
  display: grid;
  grid-template-columns: 34px minmax(240px, 38%) 1fr;
  align-items: start;
  column-gap: 14px;
  row-gap: 4px;
  background: #fff;
  border: 1px solid var(--ar-line);
  border-radius: 8px;
  padding: 15px 19px;
  font-size: 0.95rem;
}

.ar-faq-icon {
  line-height: 1.2;
  font-size: 0.95rem;
  display: inline-grid;
  place-items: center;
  width: 34px;
  margin-top: 2px;
}

.ar-faq-question {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.ar-faq-answer {
  margin: 0;
  display: block;
}

.woocommerce .woocommerce-breadcrumb {
  display: none;
}

.ar-category-children {
  margin: clamp(40px, 5vw, 56px) 0 0;
}

.ar-category-children h2 {
  margin-bottom: 12px;
}

.ar-category-children-lead {
  margin: 0 0 14px;
  color: var(--ar-muted);
  max-width: 56ch;
}

.ar-category-children-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ar-category-children-grid.is-two {
  grid-template-columns: repeat(2, minmax(280px, 380px));
  justify-content: center;
  column-gap: 72px;
}

.ar-category-children-bib .ar-card {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0;
}

.ar-category-collection-thumb {
  position: relative;
  display: block;
  border: none;
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  margin-bottom: 12px;
  background: transparent;
}

.ar-category-collection-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.ar-category-children-bib .ar-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.ar-category-collection-note {
  margin: 0 0 12px;
  color: #4a4e57;
  font-size: 0.95rem;
  line-height: 1.45;
}

.ar-title-accent {
  color: #ff3131;
}

.ar-category-bib-compare,
.ar-category-bib-print,
.ar-category-bib-why,
.ar-category-bib-benefits {
  margin: clamp(40px, 5vw, 56px) 0 0;
}

.ar-bib-switch-benefits,
.ar-category-children-bib,
.ar-category-bib-compare,
.ar-bib-specs-section,
.ar-category-bib-faq,
.ar-category-bib-print {
  width: min(1120px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

.ar-category-bib-situation {
  width: min(1120px, 92vw);
  margin: clamp(40px, 5vw, 56px) auto 0;
}

.ar-category-bib-situation-card {
  max-width: none;
  margin: 0 auto;
  background: #f9fbfd;
  border: 1px solid var(--ar-line);
  border-radius: 16px;
  padding: 14px;
}

.ar-category-bib-situation-media {
  max-width: 820px;
  margin: 0 auto;
  border: none;
  background: transparent;
  padding: 0;
}

.ar-category-bib-situation-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 24px;
}

.ar-category-bib-situation-main {
  margin: 0;
}

.ar-category-bib-situation-main .ar-bib-gallery-trigger-main {
  border-radius: 10px;
  overflow: hidden;
}

.ar-category-bib-situation-thumbs {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ar-bib-gallery-thumb {
  padding: 0;
  border: 1px solid #d7dce3;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.ar-bib-gallery-thumb.is-active {
  border-color: #ff3131;
}

.ar-bib-gallery-thumb:hover {
  transform: translateY(-1px);
}

.ar-bib-gallery-thumb-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ar-bib-gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
}

.ar-category-bib-situation-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
}

.ar-category-bib-situation-fallback {
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--ar-muted);
  font-weight: 600;
  text-align: center;
  padding: 16px;
}

.ar-category-bib-situation-copy {
  margin: 0 0 10px;
}

.ar-category-bib-situation-copy p {
  margin: 0;
  color: var(--ar-muted);
}

.ar-category-bib-situation-tagline {
  margin: 12px 0 0;
  text-align: center;
  line-height: 1.35;
}

.ar-bib-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.ar-bib-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.72);
}

.ar-bib-gallery-dialog {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1120px);
  margin: 4vh auto;
  min-height: 84vh;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 14px;
}

.ar-bib-gallery-main-image {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(8, 10, 14, 0.32);
}

.ar-bib-gallery-nav,
.ar-bib-gallery-close {
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.ar-bib-gallery-nav {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.ar-bib-gallery-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
}

.ar-no-scroll {
  overflow: hidden;
}

#ar-bib-collections,
#ar-bib-products,
#ar-bib-benefits,
#ar-bib-faq {
  scroll-margin-top: 104px;
}

.ar-category-bib-benefits h2,
.ar-category-bib-compare h2,
.ar-category-bib-print h2,
.ar-category-bib-why h2 {
  margin-bottom: 16px;
}

.ar-bib-section-title {
  margin: 0 0 14px;
  color: #111111;
  font-size: clamp(1.42rem, 2.2vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
}

.ar-bib-hold-proof .ar-bib-section-title,
.ar-category-children-bib .ar-bib-section-title,
.ar-category-bib-compare .ar-bib-section-title,
.ar-bib-specs-shell .ar-bib-section-title,
.ar-category-bib-faq .ar-bib-section-title {
  margin: 0 0 14px;
  color: #111111;
  font-size: clamp(1.42rem, 2.2vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
}

.ar-category-bib-situation-copy .ar-bib-section-title {
  text-align: center;
  margin-bottom: 6px;
}

.ar-category-children-bib {
  border: none;
  border-radius: 0;
  /* background: var(--ar-bg); */
  box-shadow: none;
  padding: 0;
}

.ar-category-children-bib .ar-btn-primary {
  box-shadow: none;
}

.ar-bib-subcat-hero {
  border: 1px solid var(--ar-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--ar-shadow);
}

.ar-bib-subcat-hero h1 {
  margin-bottom: 8px;
  font-size: var(--ar-h1-size);
  line-height: var(--ar-h1-line);
  letter-spacing: var(--ar-h1-letter);
}

.ar-bib-child-hero .ar-bib-hero-lead {
  max-width: 68ch;
  line-height: 1.65;
}

.ar-bib-subcat-products {
  margin: 30px 0 64px;
  background: var(--ar-bg);
  padding: 14px 0 0;
}

.ar-bib-subcat-warning {
  margin: 18px 0 16px;
  padding: 12px 14px;
  border-left: 4px solid #ff3131;
  background: #fff3f3;
  color: #17181b;
  border-radius: 8px;
  font-weight: 600;
}

.ar-bib-subcat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ar-bib-subcat-card {
  border: none;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  padding: 14px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ar-bib-subcat-thumb {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #f1f3f6;
  margin-bottom: 12px;
}

.ar-bib-subcat-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.ar-bib-subcat-thumb-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(23, 24, 27, 0.42);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0;
  z-index: 1;
  transition: opacity 170ms ease;
}

.ar-bib-subcat-thumb:hover .ar-bib-subcat-thumb-overlay,
.ar-bib-subcat-thumb:focus-visible .ar-bib-subcat-thumb-overlay {
  opacity: 1;
}

.ar-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.ar-product-badge--red {
  background: rgba(245, 247, 251, 0.9);
  color: #17181b;
  border: 1px solid rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(1px);
  box-shadow: 0 2px 8px rgba(15, 20, 30, 0.12);
}

.ar-product-badge--white-dot {
  background: rgba(255, 255, 255, 0.96);
  color: #17181b;
  border: 1px solid #d8dde4;
  gap: 6px;
}

.ar-product-badge--white-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff3131;
}

.ar-product-badge--white-red-blackdot {
  background: rgba(255, 255, 255, 0.96);
  color: #ff3131;
  border: 1px solid #d8dde4;
  gap: 6px;
}

.ar-product-badge--white-red-blackdot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #17181b;
}

.ar-product-badge--black {
  background: #17181b;
  color: #fff;
  border: 1px solid #17181b;
}

.ar-product-badge--ribbon {
  border-radius: 5px !important;
  background: #ff3131 !important;
  color: #fff !important;
  border: 1px solid #ff3131 !important;
  padding: 0 9px !important;
}

.ar-bib-subcat-thumb .ar-product-badge,
.woocommerce ul.products li.product .ar-product-badge {
  position: absolute !important;
  top: 10px;
  display: inline-flex !important;
  min-height: 28px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  z-index: 3 !important;
}

.ar-product-badge--pos-left {
  left: 10px !important;
  right: auto !important;
  transform: none !important;
}

.ar-product-badge--pos-center {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

.ar-product-badge--pos-right {
  right: 10px !important;
  left: auto !important;
  transform: none !important;
}

.ar-product-badge--text-black {
  color: #17181b !important;
}

.ar-product-badge--text-red {
  color: #ff3131 !important;
}

.ar-product-badge--text-white {
  color: #ffffff !important;
}

.ar-product-badge--text-gray {
  color: #e5e7eb !important;
}

.ar-product-badge--bg-white {
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: #d8dde4 !important;
}

.ar-product-badge--bg-red {
  background: #ff3131 !important;
  border-color: #ff3131 !important;
}

.ar-product-badge--bg-black {
  background: #17181b !important;
  border-color: #17181b !important;
}

.ar-product-badge--bg-transparent {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

.ar-product-badge--bg-red.ar-product-badge--text-red,
.ar-product-badge--bg-black.ar-product-badge--text-black {
  color: #fff !important;
}

.ar-bib-subcat-thumb .ar-product-badge--ribbon,
.woocommerce ul.products li.product .ar-product-badge--ribbon {
  border-radius: 5px !important;
  background: #ff3131 !important;
  color: #fff !important;
  border: 1px solid #ff3131 !important;
  padding: 0 9px !important;
}

.ar-bib-subcat-title {
  margin: 0 0 8px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.ar-bib-subcat-title a {
  color: inherit;
  text-decoration: none;
  transition: color 140ms ease;
}

.ar-bib-subcat-title a:hover,
.ar-bib-subcat-title a:focus-visible {
  color: #ff3131;
}

.ar-bib-subcat-price {
  margin-top: auto;
  margin-bottom: 12px;
}

.ar-bib-subcat-price,
.ar-bib-subcat-price .price,
.ar-bib-subcat-price .woocommerce-Price-amount,
.ar-bib-subcat-price bdi {
  color: #cf2020;
  font-weight: 700;
}

.ar-bib-subcat-price .price .woocommerce-price-suffix {
  font-size: 0.72em;
  font-weight: 700;
  color: #17181b;
  margin-left: 5px;
}

.ar-bib-subcat-actions {
  margin-top: 0;
}

.ar-bib-subcat-actions .button,
.ar-bib-subcat-actions .add_to_cart_button,
.ar-bib-subcat-actions .wp-element-button {
  background: #fff !important;
  color: #17181b !important;
  border: 1px solid #17181b !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  font-weight: 700;
  padding: 0.48rem 0.78rem;
  text-decoration: none;
}

.ar-bib-subcat-actions .button:hover,
.ar-bib-subcat-actions .add_to_cart_button:hover,
.ar-bib-subcat-actions .wp-element-button:hover {
  background: #fff !important;
  color: #ff3131 !important;
  border-color: #ff3131 !important;
}

.ar-related-products {
  margin: 36px 0 64px;
}

.ar-related-products h2 {
  margin: 0 0 16px;
}

.ar-category-bib-compare-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: start;
}

.ar-category-bib-compare-visual {
  margin: 0 0 18px;
}

.ar-category-bib-compare-visual img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.ar-category-bib-compare-grid .ar-category-bib-compare-visual {
  margin: 0;
}

.ar-category-bib-compare-grid .ar-comparison {
  margin: 0;
}

.ar-category-bib-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.ar-category-bib-benefits-shell {
  background: #fff;
  border: 1px solid var(--ar-line);
  border-radius: 16px;
  padding: 4px;
  box-shadow: var(--ar-shadow);
}

.ar-category-bib-benefits-grid .ar-card {
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 19px 18px;
  position: relative;
}

.ar-category-bib-benefits-grid .ar-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  right: 0;
  width: 1px;
  background: #d8dbe0;
}

.ar-category-bib-benefits-grid .ar-card h3 {
  margin-bottom: 8px;
}

.ar-category-bib-benefits-grid .ar-card p {
  margin: 0;
  color: #3f434a;
}

.ar-comparison {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--ar-line);
  border-radius: 16px;
  padding: 12px;
}

.ar-comparison table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.ar-comparison th,
.ar-comparison td {
  border-bottom: 1px solid #ececec;
  text-align: left;
  padding: 10px 12px;
}

.ar-comparison th {
  font-size: 0.9rem;
  color: #3f434a;
}

.ar-comparison th:nth-child(2),
.ar-comparison td:nth-child(2) {
  background: #f6f8fb;
}

.ar-comparison th:nth-child(2) {
  border-left: 2px solid #d6deea;
  border-right: 2px solid #d6deea;
}

.ar-comparison td:nth-child(2) {
  border-left: 2px solid #e3e8f1;
  border-right: 2px solid #e3e8f1;
}

.ar-comparison-row-install td:nth-child(2),
.ar-comparison-row-install td:nth-child(3) {
  font-weight: 700;
}

.ar-comparison td.ok {
  color: #1f8b4c;
  font-weight: 700;
}

.ar-comparison td.no {
  color: #2f5f8b;
  font-weight: 700;
}

.ar-craft-note {
  background: #f5f7fa;
  border: 1px solid #e3e7ec;
  border-radius: 12px;
  padding: 18px 22px;
  text-align: left;
}

.ar-craft-note-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 42%);
  gap: 24px;
  align-items: center;
}

.ar-craft-note-copy {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ar-craft-note-copy .ar-bib-section-title {
  margin-bottom: 12px;
}

.ar-craft-note-subtitle {
  margin: 0 0 12px;
  color: #43464d;
  line-height: 1.45;
}

.ar-craft-note-list {
  margin: 0;
  padding: 0 0 0 18px;
  color: #3f434a;
}

.ar-craft-note-list li {
  margin: 0 0 8px;
  line-height: 1.45;
}

.ar-craft-note-list li:last-child {
  margin-bottom: 0;
}

.ar-craft-note-actions {
  margin-top: 20px;
}

.ar-craft-note-visual {
  margin: 0;
}

.ar-craft-note-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #d8dee6;
}

.ar-craft-note-caption {
  margin: 10px 0 0;
  color: #545a66;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: left;
}

.ar-craft-note-visual-fallback {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #5d6470;
  border: 1px dashed #ccd3dd;
  border-radius: 10px;
  background: #fff;
  padding: 14px;
}

.ar-craft-note p {
  margin: 0;
  color: #43464d;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .ar-craft-note-grid {
    grid-template-columns: 1fr;
  }

  .ar-craft-note-visual {
    order: 2;
  }
}

.ar-craft-signature {
  color: #ff3131;
  font-weight: 700;
}

.ar-category-bib-why {
  background: linear-gradient(135deg, #1f1a16 0%, #32281f 100%);
  border-radius: 20px;
  padding: 24px;
  color: #fff;
}

.ar-category-bib-why h2 {
  color: #fff;
}

.ar-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.ar-why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
  color: #f0e4da;
}

.ar-why-emoji {
  width: 1.2em;
  text-align: center;
  flex: 0 0 1.2em;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  line-height: 1.1;
}

.ar-home-intro-title h1,
.ar-page-hero h1,
.woocommerce div.product .product_title {
  font-size: var(--ar-h1-size);
  line-height: var(--ar-h1-line);
  letter-spacing: var(--ar-h1-letter);
}

h2 {
  margin-bottom: 16px;
}

.ar-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ar-home-hub {
  margin-bottom: 38px;
}

.ar-home-card {
  border: 1px solid var(--ar-line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--ar-shadow);
}

.ar-home-card-media {
  display: block;
  background: #f3f4f6;
}

.ar-home-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.ar-home-card-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: #17181b;
  font-weight: 700;
}

.ar-home-card-body {
  padding: 20px;
}

.ar-home-card-body h2 {
  margin-bottom: 10px;
}

.ar-home-card-body p {
  margin: 0 0 14px;
}

.ar-home-brand-black {
  color: #1d1f25;
  font-weight: 900;
}

.ar-home-brand-red {
  color: #ff3131;
  font-weight: 900;
}

.ar-home-v1 {
  margin-bottom: 36px;
}

.ar-home-v1-hero {
  margin-bottom: 30px;
  padding: 24px;
  border: 1px solid var(--ar-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--ar-shadow);
}

.ar-home-v1-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.ar-home-v1-tab {
  border: 1px solid var(--ar-line);
  border-radius: 999px;
  background: #fff;
  color: #17181b;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.ar-home-v1-tab.is-active {
  border-color: #ff3131;
  color: #ff3131;
}

.ar-home-v1-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.ar-home-v1-copy h1 {
  margin-bottom: 12px;
}

.ar-home-v1-copy p {
  margin: 0 0 16px;
  max-width: 60ch;
}

.ar-home-v1-media img,
.ar-home-v1-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.ar-home-v1-placeholder {
  display: grid;
  place-items: center;
  background: #eceef2;
  color: #17181b;
  font-weight: 700;
}

.ar-home-v1-universes {
  margin-bottom: 24px;
}

.ar-home-v1-card {
  border: 1px solid var(--ar-line);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
}

.ar-home-v1-card p {
  margin: 0 0 12px;
}

.ar-home-v1-proof-item {
  border-left: 3px solid #2f6ea3;
  background: #edf4fb;
  padding: 16px;
  border-radius: 0 10px 10px 0;
}

.ar-home-v1-proof-item h3 {
  margin-bottom: 8px;
}

.ar-home-v1-proof-item p {
  margin: 0;
}

.ar-home-v1-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ar-home-v1-conversion .ar-home-v1-hero {
  background:
    radial-gradient(circle at 90% -20%, rgba(255, 49, 49, 0.08), transparent 52%),
    #fff;
}

.ar-home-v1-conversion .ar-home-v1-card {
  border-color: #e6dada;
}

.ar-home-v1-marque .ar-home-v1-hero {
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 110, 163, 0.08), transparent 45%),
    #fff;
}

.ar-home-v2 {
  display: grid;
  gap: 24px;
  margin-bottom: 34px;
}

.ar-home-v2-hero {
  border: 1px solid var(--ar-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--ar-shadow);
  padding: 22px;
}

.ar-home-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.ar-home-v2-copy h1,
.ar-home-v2-copy h2 {
  margin-bottom: 12px;
}

.ar-home-v2-copy p {
  margin: 0 0 14px;
  max-width: 62ch;
}

.ar-home-v2-media img,
.ar-home-v2-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.ar-home-v2-placeholder {
  background: #eceef2;
  color: #17181b;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.ar-home-v2-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ar-home-v2-future {
  border: 1px dashed #c8ced8;
  border-radius: 14px;
  background: #f7f9fc;
  padding: 12px 14px;
}

.ar-home-v2-future p {
  margin: 0;
}

.ar-home-v2-marque .ar-home-v2-hero {
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 110, 163, 0.08), transparent 48%),
    #fff;
}

.ar-home-v2-conversion .ar-home-v2-hero {
  background:
    radial-gradient(circle at 90% -20%, rgba(255, 49, 49, 0.08), transparent 52%),
    #fff;
}

.ar-home-vol {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  gap: 30px;
}

.ar-home-vol-hero {
  display: grid;
  gap: 0;
}

.ar-home-intro-band {
  position: relative;
  width: auto;
  margin: 0 0 14px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 34px 0 28px;
  overflow-x: clip;
}

.ar-home-intro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f3f4f6;
  border-top: 1px solid #e3e5e8;
  border-bottom: 1px solid #e3e5e8;
}

.ar-home-vol-intro--b::before {
  background: #f8f9fc;
}

.ar-home-vol-intro--a {
  padding-top: 34px;
  padding-bottom: 28px;
}

.ar-home-vol-intro--a::before {
  background:
    linear-gradient(180deg, #f5ecec 0%, #f8f2f2 100%);
  border-top: 1px solid #ead8d8;
  border-bottom: 1px solid #ead8d8;
}

.ar-home-intro-grid {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(420px, 1.55fr);
  gap: 34px;
  align-items: start;
}

.ar-home-intro-title h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #1c2330;
}

.ar-home-intro-accent {
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff3131 0%, #2f6ea3 100%);
}

.ar-home-intro-copy {
  padding-top: 2px;
}

.ar-home-intro-copy p {
  margin: 0 0 6px;
  max-width: 74ch;
  color: #253246;
  font-size: clamp(1.04rem, 1.18vw, 1.55rem);
  line-height: 1.36;
}

.ar-home-intro-copy p:first-of-type {
  font-weight: 600;
  color: #233148;
}

.ar-home-intro-copy p:last-child {
  margin: 0;
  color: #49566a;
}

.ar-intro-red {
  color: #ff3131;
}

.ar-home-vol-copy {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 0 0 12px;
}

.ar-home-vol-copy h1,
.ar-home-vol-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 3.3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ar-home-vol-copy p {
  margin: 0 0 18px;
  max-width: 62ch;
  font-size: clamp(1rem, 1.35vw, 1.32rem);
}

.ar-home-vol-media {
  width: 100%;
  position: relative;
}

.ar-home-vol-media img,
.ar-home-vol-placeholder {
  width: 100%;
  height: clamp(220px, 34vw, 420px);
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.ar-home-vol-placeholder {
  display: grid;
  place-items: center;
  background: #eceef2;
  color: #17181b;
  font-weight: 700;
}

.ar-home-vol-media-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  margin: 0;
  padding: 0.38rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(3px);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ar-home-vol-ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #e6e8ec;
  border-bottom: 1px solid #e6e8ec;
  background: #f8f9fb;
}

.ar-home-vol-ticker--card {
  border-top: 1px solid #eceff3;
  border-bottom: 1px solid #eceff3;
  background: #fbfcfe;
}

.ar-home-vol-ticker--card .ar-home-vol-ticker-track {
  font-size: 0.84rem;
  padding: 9px 0;
}

.ar-home-vol-ticker-track {
  display: inline-flex;
  gap: 34px;
  white-space: nowrap;
  padding: 12px 0;
  min-width: 200%;
  animation: arTicker 24s linear infinite;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2a2d33;
}

.ar-home-vol-ticker-track span::before {
  content: "•";
  color: #ff3131;
  margin-right: 10px;
}

.ar-home-vol--bottom .ar-home-vol-copy {
  padding-top: 12px;
}

.ar-home-vol-btn-tests {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ar-home-vol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.48rem 0.78rem;
  border-radius: 8px;
  transition: all 150ms ease;
}

.ar-home-vol-btn--black {
  border: 1px solid #0f1114;
  background: #0f1114;
  color: #fff;
}

.ar-home-vol-btn--black:hover {
  background: #23262d;
  border-color: #23262d;
  color: #fff;
}

.ar-home-vol-btn--ghost {
  border: 1px solid #c9ced8;
  background: transparent;
  color: #17181b;
}

.ar-home-vol-btn--ghost:hover {
  border-color: #17181b;
}

.ar-home-vol-btn--soft {
  border: 1px solid #d7dce5;
  background: #f4f6f9;
  color: #17181b;
}

.ar-home-vol-btn--soft:hover {
  background: #eceff4;
}

.ar-home-vol-btn--line {
  border: 1px solid #17181b;
  background: #fff;
  color: #17181b;
  border-radius: 6px;
}

.ar-home-vol-btn--line:hover {
  color: #ff3131;
  border-color: #ff3131;
}

.ar-home-vol-btn--charcoal {
  border: 1px solid #2a2d33;
  background: #2a2d33;
  color: #fff;
}

.ar-home-vol-btn--charcoal:hover {
  background: #343844;
  border-color: #343844;
  color: #fff;
}

.ar-home-vol-btn--invert {
  border: 1px solid #17181b;
  background: #fff;
  color: #17181b;
}

.ar-home-vol-btn--invert:hover {
  background: #17181b;
  color: #fff;
}

.ar-home-atelier {
  width: min(1160px, 94vw);
  margin: 0 auto 44px;
  display: grid;
  gap: 28px;
}

.ar-home-atelier-intro {
  margin-top: 6px;
  margin-bottom: 12px;
}

.ar-home-atelier-universes {
  display: grid;
  gap: 16px;
  margin-bottom: 10px;
}

.ar-home-atelier-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 18px;
}

.ar-home-atelier-visual {
  position: relative;
  display: block;
  min-height: 320px;
}

.ar-home-atelier-visual--dark {
  background: linear-gradient(160deg, #11141a 0%, #1b1e24 100%);
}

.ar-home-atelier-visual--light {
  background: linear-gradient(180deg, #f5ecec 0%, #f8f2f2 100%);
}

.ar-home-atelier-visual img {
  width: min(640px, 100%);
  max-height: 320px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 26px 24px 18px;
}

.ar-home-atelier-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.ar-home-atelier-visual--light .ar-home-atelier-placeholder {
  color: #17181b;
}

.ar-home-atelier-copy {
  padding: 20px 22px 22px;
}

.ar-home-atelier-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
}

.ar-home-atelier-copy p {
  margin: 0 0 14px;
  color: #333b48;
  max-width: 62ch;
}

.ar-home-atelier-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #6c7380;
}

.ar-home-atelier-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.ar-home-atelier-highlights article {
  border: 1px solid #d4dbe6;
  border-radius: 14px;
  background: #edf1f7;
  padding: 18px 16px;
}

.ar-home-atelier-highlights h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
  line-height: 1.12;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.ar-home-split {
  --ar-home-ui-radius: 12px;
  width: min(1160px, 94vw);
  margin: 0 auto 66px;
  display: grid;
  gap: 42px;
  overflow-x: clip;
}

.ar-home-split-hero-main {
  position: relative;
  width: 100%;
  margin: 0;
  background: #f8f7f4;
  border: 1px solid #ebe6dc;
  border-radius: var(--ar-home-ui-radius);
  overflow: hidden;
}

.ar-home-split-hero-main-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 34px clamp(16px, 3vw, 24px) 30px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(18px, 2.6vw, 32px);
  align-items: stretch;
}

.ar-home-split-hero-main-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  min-height: 100%;
  gap: clamp(22px, 3vw, 38px);
  min-width: 0;
}

.ar-home-split-hero-main-copy-top,
.ar-home-split-hero-main-copy-bottom {
  min-width: 0;
}

.ar-home-split-hero-main-copy-bottom {
  margin-top: auto;
  padding-top: clamp(16px, 2.1vw, 28px);
}

.ar-home-split-hero-main-kicker {
  margin: 0 0 10px;
  color: #6b6b6b;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ar-home-split-hero-main-copy h2 {
  margin: 0 0 14px;
  color: #111111;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.ar-home-split-hero-main-copy p {
  margin: 0 0 18px;
  color: #404040;
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.45;
  max-width: 58ch;
}

.ar-home-split-hero-main-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.ar-home-split-hero-main-copy p.ar-home-split-hero-main-micro {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  color: #6b6b6b;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: normal;
  transform: none;
}

.ar-home-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.76rem 1.22rem;
  border-radius: var(--ar-home-ui-radius);
  border: 1px solid #111111;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.ar-home-hero-btn--primary {
  background: #111111;
  color: #ffffff;
}

.ar-home-hero-btn--primary:hover,
.ar-home-hero-btn--primary:focus-visible {
  background: #272727;
  border-color: #272727;
  color: #ffffff;
}

.ar-home-hero-btn--secondary {
  background: transparent;
  color: #111111;
}

.ar-home-hero-btn--secondary:hover,
.ar-home-hero-btn--secondary:focus-visible {
  background: #ffffff;
  color: #111111;
}

.ar-home-split-hero-main-badges {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ar-home-split-hero-main-badges li {
  margin: 0;
  padding: 0.4rem 0.68rem;
  border: 1px solid #ddd6c7;
  border-radius: 999px;
  background: #fffdf9;
  color: #494949;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.1;
}

.ar-home-split-hero-main-media {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 560px;
  justify-self: stretch;
  min-height: 0;
}

.ar-home-split-hero-main-visual {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--ar-home-ui-radius);
  border: 1px solid #ddd7ca;
  text-decoration: none;
  background: #e7eaef;
}

.ar-home-split-hero-main-visual--bib {
  aspect-ratio: 4 / 3;
}

.ar-home-split-hero-main-visual--map {
  aspect-ratio: 3 / 4;
}

.ar-home-split-hero-main-visual--single {
  aspect-ratio: auto;
  height: clamp(500px, 44vw, 600px);
}

.ar-home-split-hero-main-visual-label {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.34rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(245, 247, 251, 0.84);
  color: #17181b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}

.ar-home-split-hero-main-visual img,
.ar-home-split-hero-main-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.ar-home-split-hero-main-placeholder {
  display: grid;
  place-items: center;
  color: #111111;
  font-weight: 700;
}

.ar-home-split-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media (max-width: 1280px) {
  .ar-home-split-hero-main-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  }
}

@media (max-width: 1120px) {
  .ar-home-split-hero-main-inner {
    grid-template-columns: 1fr;
  }

  .ar-home-split-hero-main-media {
    max-width: none;
    justify-self: stretch;
  }

  .ar-home-split-hero-main-copy {
    min-height: 0;
    gap: 0;
    justify-content: flex-start;
  }

  .ar-home-split-hero-main-copy-bottom {
    margin-top: 10px;
    padding-top: 0;
  }
}

.ar-home-split-hero img,
.ar-home-split-hero-placeholder {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
  display: block;
}

.ar-home-split-hero-placeholder {
  display: grid;
  place-items: center;
  background: #e9ebef;
  color: #17181b;
  font-weight: 700;
}

.ar-home-benefits {
  margin-top: 18px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid #e5e1d8;
  border-radius: var(--ar-home-ui-radius);
  background: #f8f7f4;
}

.ar-home-benefits-head h2 {
  margin: 0 0 8px;
  color: #111111;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.ar-home-benefits-head p {
  margin: 0;
  color: #6b6b6b;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 72ch;
}

.ar-home-benefits-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.ar-home-benefits-card {
  border: 1px solid #e2ddd2;
  border-radius: var(--ar-home-ui-radius);
  background: #fffdf9;
  padding: 14px 14px 13px;
}

.ar-home-benefits-card h3 {
  margin: 0 0 6px;
  color: #111111;
  font-size: 1.05rem;
  line-height: 1.25;
}

.ar-home-benefits-icon {
  margin-right: 0.45rem;
}

.ar-home-benefits-card p {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.95rem;
  line-height: 1.4;
}

.ar-home-benefits-cta-wrap {
  margin: 16px 0 0;
}

.ar-home-benefits .ar-home-hero-btn {
  border-radius: var(--ar-home-ui-radius);
}

@media (min-width: 740px) {
  .ar-home-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (min-width: 1160px) {
  .ar-home-benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
}

.ar-home-social-proof {
  margin-top: 16px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid #e5e1d8;
  border-radius: 12px;
  background: #f8f7f4;
}

.ar-home-social-proof-head h2 {
  margin: 0 0 12px;
  color: #111111;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  line-height: 1.15;
}

.ar-home-social-proof-head p {
  margin: 0;
  color: #6b6b6b;
  font-size: 1rem;
  line-height: 1.45;
}

.ar-home-social-proof-meta {
  margin: 10px 0 0;
  color: #6b6b6b;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
}

.ar-home-social-proof-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ar-home-social-proof-card {
  border: 1px solid #e2ddd2;
  border-radius: 12px;
  background: #fffdf9;
  padding: 17px 16px;
}

.ar-home-social-proof-stars {
  margin: 0 0 6px;
  font-size: 0.95rem;
  line-height: 1;
}

.ar-home-social-proof-quote {
  margin: 0;
  color: #111111;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.48;
}

.ar-home-social-proof-cta-wrap {
  margin: 20px 0 0;
}

@media (min-width: 860px) {
  .ar-home-social-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

.ar-home-brand-story {
  margin-top: 16px;
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid #e2d8c4;
  border-radius: var(--ar-home-ui-radius);
  background: #f3ede2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ar-home-brand-story-copy h2 {
  margin: 0 0 10px;
  color: #111111;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  line-height: 1.15;
}

.ar-home-brand-story-copy p {
  margin: 0 0 10px;
  color: #2f3133;
  font-size: 1rem;
  line-height: 1.48;
}

.ar-home-brand-story-copy p:last-child {
  margin-bottom: 0;
}

.ar-home-brand-story-kicker {
  margin: 0 0 8px;
  color: #6b6b6b;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.ar-home-brand-story-media {
  border: 1px solid #ddd3c2;
  border-radius: var(--ar-home-ui-radius);
  overflow: hidden;
  background: #ebe6dc;
}

.ar-home-brand-story-media img,
.ar-home-brand-story-placeholder {
  display: block;
  width: 100%;
  height: clamp(260px, 44vw, 420px);
  object-fit: cover;
  object-position: center;
}

.ar-home-brand-story-placeholder {
  display: grid;
  place-items: center;
  color: #111111;
  font-weight: 700;
}

@media (min-width: 980px) {
  .ar-home-brand-story {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    align-items: center;
    gap: clamp(20px, 2.8vw, 32px);
  }
}

.ar-home-map-teaser {
  margin-top: 16px;
  padding: clamp(16px, 2.1vw, 24px);
  border: 1px solid #e9e5dc;
  border-radius: var(--ar-home-ui-radius);
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ar-home-map-teaser-copy h2 {
  margin: 0 0 10px;
  color: #111111;
  font-size: clamp(1.35rem, 2.16vw, 1.75rem);
  line-height: 1.15;
}

.ar-home-map-teaser-copy p {
  margin: 0 0 10px;
  color: #2f3133;
  font-size: 1rem;
  line-height: 1.48;
}

.ar-home-map-teaser-copy p:last-child {
  margin-bottom: 0;
}

.ar-home-map-teaser-cta-wrap {
  margin-top: 4px;
  margin-bottom: 0;
}

.ar-home-map-teaser-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.22rem;
  border: 1px solid #111111;
  border-radius: var(--ar-home-ui-radius);
  background: transparent;
  color: #111111;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.ar-home-map-teaser-btn:hover,
.ar-home-map-teaser-btn:focus-visible {
  color: #ffffff;
  border-color: #111111;
  background: #111111;
}

.ar-home-map-teaser-note {
  margin: 8px 0 0;
  color: #6b6b6b;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
}

.ar-home-map-teaser-media {
  border: 1px solid #e3ddd2;
  border-radius: var(--ar-home-ui-radius);
  overflow: hidden;
  background: #f5f3ee;
  display: grid;
  place-items: center;
}

.ar-home-map-teaser-media img,
.ar-home-map-teaser-placeholder {
  display: block;
  width: 100%;
  height: clamp(250px, 42vw, 400px);
  object-fit: contain;
  object-position: center center;
}

.ar-home-map-teaser-placeholder {
  display: grid;
  place-items: center;
  color: #111111;
  font-weight: 700;
}

@media (min-width: 980px) {
  .ar-home-map-teaser {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    gap: clamp(20px, 2.8vw, 32px);
  }
}

.ar-home-faq {
  margin-top: 16px;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid #e9e5dc;
  border-radius: var(--ar-home-ui-radius);
  background: #ffffff;
}

.ar-home-faq h2 {
  margin: 0 0 14px;
  color: #111111;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.15;
}

.ar-home-faq-list {
  display: grid;
  gap: 10px;
}

.ar-home-faq-item {
  border: 1px solid #e2ddd3;
  border-radius: var(--ar-home-ui-radius);
  background: #fdfcf9;
  overflow: clip;
}

.ar-home-faq-item summary {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 13px 44px 13px 14px;
  color: #111111;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
}

.ar-home-faq-item summary::-webkit-details-marker {
  display: none;
}

.ar-home-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b6b6b;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 160ms ease, color 160ms ease;
}

.ar-home-faq-item[open] summary::after {
  content: "−";
  color: #111111;
}

.ar-home-faq-answer {
  padding: 0 14px 14px;
}

.ar-home-faq-answer p {
  margin: 0;
  color: #3b3d42;
  font-size: 0.96rem;
  line-height: 1.52;
}

.ar-home-faq-cta-wrap {
  margin: 16px 0 0;
  text-align: center;
}

.ar-home-split-intro {
  margin-bottom: 22px;
}

.ar-home-split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 24px;
  margin-bottom: 18px;
  align-items: stretch;
  min-width: 0;
}

.ar-home-split-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d8dde4;
  border-radius: 0;
  background: #fff;
}

.ar-home-split-media {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.ar-home-split-media--dark {
  background: #d7d9dd;
}

.ar-home-split-media--light {
  background: linear-gradient(180deg, #f3f4f6 0%, #eceff3 100%);
}

.ar-home-split-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 54%;
  display: block;
  margin: 0 auto;
}

.ar-home-split-media--dark img {
  object-position: center 56%;
}

.ar-home-split-media--light img {
  object-position: center 50%;
}

.ar-home-split-media-label {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.34rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(245, 247, 251, 0.84);
  color: #17181b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}

.ar-home-split-placeholder {
  min-height: 0;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.ar-home-split-media--light .ar-home-split-placeholder {
  color: #17181b;
}

.ar-home-split-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 22px;
}

.ar-home-split-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.62rem, 2.3vw, 2.05rem);
}

.ar-home-split-features {
  margin: 0 0 14px;
  padding-left: 1.05rem;
  color: #2f3d52;
}

.ar-home-split-features li {
  margin-bottom: 0.36rem;
  line-height: 1.4;
}

.ar-home-split-features li:last-child {
  margin-bottom: 0;
}

.ar-home-split-copy .ar-home-vol-btn {
  margin-top: auto;
  align-self: flex-start;
}

.ar-home-split-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ff3131;
}

.ar-home-split-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ar-home-split-highlights article {
  display: flex;
  flex-direction: column;
  border: 1px solid #d8dde4;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(17, 24, 39, 0.05);
  padding: 20px 18px;
}

.ar-home-split-highlights h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.12;
  font-weight: 600;
  color: #17181b;
}

.ar-home-split-highlights p {
  margin: 0;
  color: #374454;
}

.ar-home-split-highlights .ar-home-split-kicker {
  color: #ff3131;
  margin-bottom: 12px;
}

.ar-home-split-why {
  margin-top: 8px;
  border-radius: 6px;
  border: 1px solid #2f3a4a;
  background: linear-gradient(140deg, #12161e 0%, #1b2533 62%, #243246 100%);
  padding: 22px 24px;
}

.ar-home-split-why h2 {
  color: #ffffff;
}

.ar-home-split-why .ar-why-list {
  gap: 10px;
}

.ar-home-split-why .ar-why-list li {
  color: #e7edf6;
}

.ar-home-split-teaser {
  border: 1px solid #d8dde4;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(17, 24, 39, 0.05);
  padding: 20px 18px;
}

.ar-home-split-teaser h3 {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
}

.ar-home-split-teaser p {
  margin: 0;
  color: #374454;
}

.ar-home-split-reassurance {
  margin-top: 2px;
}

.ar-home-split .ar-home-vol-ticker-track {
  animation: none;
  min-width: 100%;
  justify-content: center;
  gap: 20px;
  padding: 8px 10px;
}

.ar-home-split .ar-home-vol-ticker--card .ar-home-vol-ticker-track {
  font-size: 0.8rem;
}

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

.ar-card {
  background: var(--ar-bg-soft);
  border: 1px solid var(--ar-line);
  border-radius: var(--ar-radius);
  padding: 20px;
}

.ar-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.ar-kpi {
  background: #f3f4f5;
  border: 1px solid #e4e5e7;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.ar-product-shell {
  border: 1px solid var(--ar-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--ar-shadow);
  overflow: hidden;
}

.ar-product-top {
  display: grid;
  gap: 24px;
  padding: 24px;
}

.ar-product-shell.is-bib .ar-product-top {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 34px;
}

.ar-product-shell.is-bib {
  border: none;
  box-shadow: none;
  background: transparent;
}

.ar-single-bib-hero {
  margin-bottom: 56px;
}

.ar-single-bib-hero .ar-bib-parent-hero-grid {
  display: block;
}

.ar-single-bib-hero .ar-bib-hero-title-col {
  width: 100%;
}

.ar-single-bib-hero .ar-bib-hero-title {
  font-size: clamp(2rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.ar-bib-hero-title-black {
  color: #111111;
}

.ar-bib-hero-title-red {
  color: #ff3131;
}

.ar-bib-hero-title-sep,
.ar-bib-hero-title-suffix {
  color: #111111;
}

.ar-single-bib-hero .ar-bib-hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  max-width: 760px;
}

.ar-single-bib-hero .ar-bib-hero-pills li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #e1e5eb;
  border-radius: 999px;
  background: #f3f5f8;
  color: #2f3e53;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.ar-single-bib-hero .ar-bib-hero-pills li::before {
  display: inline-block;
}

.ar-single-bib-hero .ar-bib-hero-pills li:nth-child(1)::before {
  content: "🧵";
}

.ar-single-bib-hero .ar-bib-hero-pills li:nth-child(2)::before {
  content: "🧲";
}

.ar-single-bib-hero .ar-bib-hero-pills li:nth-child(3)::before {
  content: "⚡";
}

.ar-single-bib-hero .ar-bib-hero-pills li:nth-child(4)::before {
  content: "♻️";
}

.ar-map-single-top {
  margin-bottom: 14px;
}

.ar-single-map-hero {
  margin-bottom: 34px;
}

.ar-product-shell.is-map .ar-product-top {
  grid-template-columns: 1fr;
  background:
    linear-gradient(150deg, rgba(0, 0, 0, 0.03), transparent 60%),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.012) 0,
      rgba(0, 0, 0, 0.012) 1px,
      transparent 1px,
      transparent 68px
    );
}

.ar-product-media {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.ar-bib-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ar-bib-product-gallery-trigger {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.ar-bib-product-main {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: transparent;
  margin-bottom: 12px;
}

.ar-bib-product-main-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ar-bib-image-thumbs .ar-bib-gallery-thumb {
  padding: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: transform 160ms ease;
}

.ar-bib-image-thumbs .ar-bib-gallery-thumb.is-active {
  outline: 2px solid #ff3131;
  outline-offset: -2px;
}

.ar-bib-image-thumbs .ar-bib-gallery-thumb:hover {
  transform: translateY(-1px);
}

.ar-bib-image-thumbs .ar-bib-gallery-thumb-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Fiche produit porte-dossard: affichage carré sans recadrage destructif */
.ar-bib-product-gallery .ar-bib-product-main-image {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}

.ar-bib-product-gallery .ar-bib-gallery-main-image {
  width: min(84vh, 84vw);
  max-width: 100%;
  max-height: min(84vh, 84vw);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  justify-self: center;
  margin-inline: auto;
}

.ar-bib-image-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d9dde3;
  background: #fff;
}

.ar-bib-image-grid-item {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ar-bib-image-grid-placeholder {
  min-height: 140px;
  display: grid;
  place-items: center;
  color: #17181b;
  background: #f5f6f8;
  font-weight: 600;
}

.ar-product-shell.is-map .ar-product-media {
  display: none;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.ar-product-shell.is-map .summary form.cart {
  display: block;
  margin-bottom: 22px !important;
}

.ar-product-shell.is-map .summary form.cart .quantity {
  display: none !important;
}

.ar-product-shell.is-map .summary .quantity,
.ar-product-shell.is-map form.cart .quantity,
.ar-product-shell.is-map form.cart input.qty {
  display: none !important;
}

.ar-product-shell.is-map .summary form.cart .variations {
  margin-bottom: 16px;
}

.ar-product-shell.is-map .summary .single_variation_wrap {
  display: grid;
  gap: 14px;
}

.ar-map-product-hint {
  margin: 0;
  color: #4e5563;
  font-size: 0.98rem;
}

.ar-map-configurator {
  margin: 10px 0 2px;
  /* border: 1px solid #dadde3; */
  background: #fff;
  /* padding: 16px; */
  display: grid;
  gap: 14px;
  align-items: start;
}

.single_variation_wrap .ar-map-configurator {
  width: 100%;
  max-width: 100%;
}

.ar-map-config-inline-error {
  margin: 2px 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #c61f1f;
  font-weight: 600;
}

.ar-map-config-inline-error[hidden] {
  display: none !important;
}

.ar-map-configurator h3 {
  margin: 0;
  font-size: 1.2rem;
}

.ar-map-config-format {
  margin: 0;
  font-size: 0.94rem;
  color: #3d4452;
}

.ar-map-config-sections {
  display: grid;
  gap: 12px;
  align-content: start;
}

.ar-map-config-fieldset {
  margin: 0;
  padding: 12px;
  border: 1px solid #e2e5ea;
  background: #fbfcfd;
  display: grid;
  gap: 10px;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.ar-map-config-fieldset.is-active {
  border-color: #ff3131;
  background: #fff;
}

.ar-map-config-fieldset.is-collapsed > :not(legend) {
  display: none;
}

.ar-map-config-fieldset.is-collapsed {
  display: none;
}

.ar-map-config-fieldset legend {
  padding: 0 6px;
  font-weight: 700;
  color: #17181b;
  cursor: pointer;
  user-select: none;
}

.ar-map-config-fieldset legend:focus-visible {
  outline: 2px solid #ff3131;
  outline-offset: 2px;
}

.ar-map-config-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ar-map-config-pill {
  position: relative;
}

.ar-map-config-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.ar-map-config-pill span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c8cfda;
  background: #f5f7fa;
  color: #283246;
  border-radius: 999px;
  padding: 7px 12px;
  line-height: 1.2;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.ar-map-config-pill input:checked + span {
  border-color: #ff3131;
  color: #ff3131;
  background: #fff;
}

.ar-map-theme-section {
  display: grid;
  gap: 8px;
}

.ar-map-theme-heading {
  margin: 0;
  font-size: 0.86rem;
  color: #4a5160;
}

.ar-map-theme-heading strong {
  color: #2f3643;
}

.ar-map-theme-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ar-map-theme-card {
  position: relative;
  display: block;
}

.ar-map-theme-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ar-map-theme-card-inner {
  display: grid;
  gap: 8px;
  border: 1px solid #d4dae3;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.ar-map-theme-card input:checked + .ar-map-theme-card-inner {
  border-color: #ff3131;
  box-shadow: 0 0 0 1px #ff3131 inset;
}

.ar-map-theme-thumb {
  position: relative;
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  border: 1px solid #b9c0cb;
  overflow: hidden;
}

.ar-map-theme-card input:checked + .ar-map-theme-card-inner .ar-map-theme-thumb {
  border-color: #ff3131;
  box-shadow: 0 0 0 1px #ff3131 inset;
}

.ar-map-theme-thumb-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.ar-map-theme-thumb::before {
  content: "";
  position: absolute;
  inset: 16% 16%;
  border: 1px solid #8c95a4;
}

.ar-map-theme-thumb-route {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.ar-map-theme-thumb-route::before {
  content: "";
  position: absolute;
  left: 46%;
  top: 18%;
  width: 4%;
  height: 64%;
  border-radius: 999px;
  transform: rotate(20deg);
  background: #ff3131;
}

.ar-map-theme-thumb.has-photo .ar-map-theme-thumb-route {
  display: none;
}

.ar-map-theme-thumb.is-all-black {
  background: #1a1a1a;
}

.ar-map-theme-thumb.is-all-black::before {
  background: #1d1f25;
}

.ar-map-theme-thumb.is-all-white {
  background: #f4f3ef;
}

.ar-map-theme-thumb.is-all-white::before {
  background: #f8f8f6;
}

.ar-map-theme-thumb.is-black-white {
  background: #1a1a1a;
}

.ar-map-theme-thumb.is-black-white::before {
  background: #f6f7f8;
}

.ar-map-theme-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #17181b;
}

.ar-map-tech-fields {
  display: none;
}

.ar-map-config-select,
.ar-map-configurator input[type="text"] {
  width: 100%;
  border: 1px solid #cfd5e0;
  border-radius: 6px;
  min-height: 40px;
  padding: 8px 10px;
  font-size: 0.95rem;
  background: #fff;
}

.ar-map-config-help {
  margin: 0;
  font-size: 0.84rem;
  color: #60697a;
}

[data-info-custom-wrap][hidden],
.ar-map-config-info-col.is-custom-label.is-hidden {
  display: none !important;
}

.ar-map-config-info-col.is-custom-label {
  display: none !important;
}

.ar-map-config-info-row.is-custom .ar-map-config-info-col.is-custom-label {
  display: grid !important;
}

.ar-map-config-actions {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.ar-map-config-next,
.ar-map-config-prev {
  border: 1px solid #cfd5e0;
  background: #f8fafc;
  color: #4a5568;
  border-radius: 6px;
  padding: 6px 11px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}

.ar-map-config-prev {
  color: #5f6878;
}

.ar-map-config-next:hover {
  border-color: #ff3131;
  color: #ff3131;
  background: #fff;
}

.ar-map-config-prev:hover {
  border-color: #9aa4b5;
  color: #2f3643;
  background: #fff;
}

.ar-map-config-next:focus-visible,
.ar-map-config-prev:focus-visible {
  outline: 2px solid #ff3131;
  outline-offset: 2px;
}

.ar-map-config-infos {
  display: grid;
  gap: 14px;
  --ar-map-field-width: 320px;
}

.ar-map-config-guidance {
  width: 100%;
  border: 1px solid #e6ebf2;
  background: #fafcfe;
  border-radius: 8px;
  padding: 8px 10px;
}

.ar-map-config-guidance-title {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2f3643;
  cursor: pointer;
  user-select: none;
}

.ar-map-config-guidance-title:focus-visible {
  outline: 2px solid #b7c6d9;
  outline-offset: 2px;
  border-radius: 4px;
}

.ar-map-config-guidance-body {
  margin-top: 6px;
  display: grid;
  gap: 3px;
}

.ar-map-config-guidance-line {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.35;
  color: #5d6778;
}

.ar-map-config-field {
  display: grid;
  gap: 6px;
  width: min(100%, var(--ar-map-field-width));
  /* padding: 10px; */
  /* border: 1px solid #e4e8ee; */
  background: #ffffff;
}

.ar-map-config-field + .ar-map-config-field {
  padding-top: 12px;
  border-top: 1px solid #dbe3ef;
}

.ar-map-config-field.is-hidden {
  display: none;
}

.ar-map-config-field-grid {
  display: grid;
  gap: 10px;
  align-items: end;
}

.ar-map-config-field-grid.is-two {
  grid-template-columns: 1fr 1fr;
}

.ar-map-config-field-cell {
  display: grid;
  gap: 5px;
}

.ar-map-config-field-label {
  font-size: 0.77rem;
  font-weight: 700;
  color: #5c6575;
}

.ar-map-required-star {
  color: #d62828;
  margin-left: 2px;
  font-weight: 700;
}

.ar-map-config-control {
  position: relative;
  width: 100%;
}

.ar-map-config-input {
  width: 100%;
}

.ar-map-config-slot-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.ar-map-config-slot-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  flex: 0 0 auto;
}

.ar-map-config-slot-options {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  justify-content: flex-start;
  min-width: 0;
}

.ar-map-config-slot-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: #edf3fb;
  color: #2f5f96;
  border-radius: 999px;
  padding: 4px 8px;
  line-height: 1.2;
  font-size: 0.73rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease;
}

.ar-map-config-slot-button:hover {
  color: #244f83;
  background: #e1ebf8;
}

.ar-map-config-slot-button.is-selected,
.ar-map-config-slot-button[aria-pressed="true"] {
  color: #166534;
  background: #dcfce7;
  border-color: #22c55e;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.18);
}

.ar-map-config-slot-button.is-hidden {
  display: none !important;
}

.ar-map-config-slot-button.is-disabled,
.ar-map-config-slot-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ar-map-config-slot-button:focus-visible {
  outline: 2px solid #9aa4b5;
  outline-offset: 2px;
}

.ar-map-help {
  position: relative;
  display: inline-flex;
  margin-left: 6px;
  vertical-align: middle;
}

.ar-map-config-control.has-help .ar-map-config-input {
  padding-right: 38px;
}

.ar-map-config-control.has-help .ar-map-help {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  margin-left: 0;
}

.ar-map-config-control.has-help .ar-map-help-tooltip {
  left: auto;
  right: 0;
}

.ar-map-help-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid #ccd3df;
  border-radius: 999px;
  background: #f3f6fb;
  color: #5c6575;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  cursor: help;
}

.ar-map-help-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 15;
  width: max-content;
  max-width: 260px;
  padding: 8px 10px;
  border: 1px solid #d5dbe5;
  border-radius: 8px;
  background: #ffffff;
  color: #2f3643;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(23, 24, 27, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ar-map-help:hover .ar-map-help-tooltip,
.ar-map-help:focus-within .ar-map-help-tooltip {
  opacity: 1;
  visibility: visible;
}

.ar-map-help:focus-visible .ar-map-help-bubble {
  outline: 2px solid #9aa4b5;
  outline-offset: 2px;
}

.ar-map-config-preview-wrap {
  /* border: 1px solid #e2e6ec; */
  background: #fff;
  /* padding: 12px; */
  padding: 10px 14px 10px 10px;
  box-sizing: border-box;
  display: grid;
  gap: 8px;
}

.ar-map-config-preview-title {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: #323846;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ar-map-config-preview {
  --ar-map-preview-bg: #1a1a1a;
  --ar-map-preview-roads: #2d2f35;
  --ar-map-preview-gpx: #ff3131;
  --ar-map-preview-text: #f2f3f4;
  --ar-map-map-x: 26%;
  --ar-map-map-y: 30%;
  --ar-map-map-width: 51%;
  --ar-map-map-height: 51%;
  --ar-map-gpx-x: 26%;
  --ar-map-gpx-y: 30%;
  --ar-map-gpx-width: 51%;
  --ar-map-gpx-height: 51%;
  --ar-map-year-x: 4%;
  --ar-map-year-y: 18%;
  --ar-map-year-shift-x: 0;
  --ar-map-chrono-x: 4%;
  --ar-map-chrono-y: 14%;
  --ar-map-chrono-shift-x: 0;
  --ar-map-info-y: 86%;
  --ar-map-info-1: 26%;
  --ar-map-info-2: 77%;
  --ar-map-info-3: 51%;
  --ar-map-year-size: 2%;
  --ar-map-chrono-size: 3.2%;
  --ar-map-info-size: 1.3%;
  --ar-map-year-color: #ff3131;
  --ar-map-chrono-color: #ff3131;
  --ar-map-info-color: #f2f3f4;
  --ar-map-info-label-color: #f2f3f4;
  --ar-map-info-value-color: #f2f3f4;
  --ar-map-year-font-family: "Montserrat", sans-serif;
  --ar-map-chrono-font-family: "Montserrat", sans-serif;
  --ar-map-info-font-family: "Montserrat", sans-serif;
  --ar-map-year-weight: 700;
  --ar-map-chrono-weight: 700;
  --ar-map-info-weight: 700;
  --ar-map-info-label-family: "Montserrat", sans-serif;
  --ar-map-info-label-weight: 700;
  --ar-map-info-value-family: "Montserrat", sans-serif;
  --ar-map-info-value-weight: 700;
  position: relative;
  border: 1px solid #ced3dc;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  background: var(--ar-map-preview-bg);
  overflow: hidden;
}

.ar-map-config-watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 5;
  color: rgba(17, 24, 27, 0.15);
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-17deg);
  mix-blend-mode: multiply;
}

.ar-map-config-preview.has-card-image .ar-map-config-map-layer {
  display: none;
}

.ar-map-config-theme-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ar-map-config-preview.is-square {
  aspect-ratio: 1 / 1;
  max-width: none;
}

.ar-map-config-preview.is-a4-landscape,
.ar-map-config-preview.is-portrait {
  aspect-ratio: 29.7 / 21;
  max-width: none;
}

.ar-map-config-preview.is-a4-portrait,
.ar-map-config-preview.is-tall {
  aspect-ratio: 21 / 29.7;
  max-width: 700px;
}

.ar-map-config-map-layer {
  position: absolute;
  left: var(--ar-map-map-x);
  top: var(--ar-map-map-y);
  width: var(--ar-map-map-width);
  height: var(--ar-map-map-height);
  background:
    repeating-linear-gradient(
      35deg,
      var(--ar-map-preview-roads) 0 1px,
      transparent 1px 10px
    ),
    repeating-linear-gradient(
      -35deg,
      var(--ar-map-preview-roads) 0 1px,
      transparent 1px 14px
    );
  opacity: 0.44;
  z-index: 1;
}

.ar-map-config-card-image {
  position: absolute;
  left: var(--ar-map-map-x);
  top: var(--ar-map-map-y);
  width: var(--ar-map-map-width);
  height: var(--ar-map-map-height);
  object-fit: contain;
  z-index: 2;
}

.ar-map-config-gpx-image {
  position: absolute;
  left: var(--ar-map-gpx-x);
  top: var(--ar-map-gpx-y);
  width: var(--ar-map-gpx-width);
  height: var(--ar-map-gpx-height);
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
}

.ar-map-config-route {
  position: absolute;
  left: var(--ar-map-gpx-x);
  top: var(--ar-map-gpx-y);
  width: var(--ar-map-gpx-width);
  height: var(--ar-map-gpx-height);
  z-index: 3;
}

.ar-map-config-route path {
  stroke: var(--ar-map-preview-gpx);
  stroke-width: 3.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}

/* Finisher: le preview n'affiche que le thème (pas de couche GPX). */
.ar-map-config-preview .ar-map-config-route,
.ar-map-config-preview .ar-map-config-gpx-image {
  display: none !important;
}

.ar-map-config-year {
  position: absolute;
  left: var(--ar-map-year-x);
  top: var(--ar-map-year-y);
  transform: translateX(var(--ar-map-year-shift-x));
  z-index: 4;
  margin: 0;
  color: var(--ar-map-year-color);
  font-family: var(--ar-map-year-font-family);
  font-size: var(--ar-map-year-size);
  font-weight: var(--ar-map-year-weight);
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.ar-map-config-chrono {
  position: absolute;
  left: var(--ar-map-chrono-x);
  top: var(--ar-map-chrono-y);
  transform: translateX(var(--ar-map-chrono-shift-x));
  z-index: 4;
  margin: 0;
  color: var(--ar-map-chrono-color);
  font-family: var(--ar-map-chrono-font-family);
  font-size: var(--ar-map-chrono-size);
  font-weight: var(--ar-map-chrono-weight);
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.ar-map-config-meta {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.ar-map-config-meta-item {
  position: absolute;
  top: var(--ar-map-info-y);
  left: var(--ar-map-info-1);
  margin: 0;
  font-family: var(--ar-map-info-font-family);
  font-size: var(--ar-map-info-size);
  font-weight: var(--ar-map-info-weight);
  color: var(--ar-map-info-color);
  line-height: 1.2;
  white-space: nowrap;
}

.ar-map-config-meta-item.is-left {
  transform: translateX(0);
  text-align: left;
}

.ar-map-config-meta-item.is-right {
  transform: translateX(-100%);
  text-align: right;
}

.ar-map-config-meta-item.is-center {
  transform: translateX(-50%);
  text-align: center;
}

.ar-map-config-meta-item.is-absolute {
  transform: translateX(0);
  text-align: left;
}

.ar-map-config-meta-label {
  color: var(--ar-map-info-label-color);
  font-family: var(--ar-map-info-label-family);
  font-weight: var(--ar-map-info-label-weight);
}

.ar-map-config-meta-value {
  color: var(--ar-map-info-value-color);
  font-family: var(--ar-map-info-value-family);
  font-weight: var(--ar-map-info-value-weight);
}

.ar-map-config-pill.is-disabled span {
  opacity: 0.45;
  cursor: not-allowed;
}

.ar-map-config-preview-note {
  margin: 0;
  font-size: 0.78rem;
  color: #616978;
}

.ar-map-config-summary {
  border-top: 1px solid #eceff4;
  padding-top: 10px;
  display: grid;
  gap: 8px;
}

.ar-map-config-summary-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a5160;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ar-map-config-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.ar-map-config-summary-item {
  display: grid;
  grid-template-columns: minmax(96px, 120px) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  line-height: 1.35;
}

.ar-map-config-summary-key {
  color: #616978;
  font-weight: 600;
}

.ar-map-config-summary-value {
  color: #17181b;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.ar-map-config-summary-value--infos {
  white-space: pre-line;
  line-height: 1.45;
}

.ar-map-config-summary-edit {
  border: 0;
  background: transparent;
  color: #ff3131;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}

.ar-map-config-summary-edit:hover {
  color: #d72626;
}

.ar-map-validation-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 10px;
}

.ar-map-validation-modal[hidden] {
  display: none !important;
}

.ar-map-validation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.62);
}

.ar-map-validation-dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 980px);
  max-height: calc(100vh - 20px);
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #d2d8e2;
  background: #fff;
  padding: 14px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto auto auto;
  gap: 10px;
  box-sizing: border-box;
}

.ar-map-validation-dialog h4 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.25;
}

.ar-map-validation-copy {
  margin: 0;
  color: #4a5260;
  font-size: 0.92rem;
}

.ar-map-validation-preview-frame {
  min-height: 0;
  border: 1px solid #d2d8e2;
  border-radius: 8px;
  background: #f6f8fb;
  padding: 6px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ar-map-validation-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border: 0;
  border-radius: 4px;
  background: transparent;
}

.ar-map-validation-email-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #374151;
}

.ar-map-validation-email {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cbd3df;
  border-radius: 8px;
  padding: 8px 10px;
}

.ar-map-validation-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  font-size: 0.85rem;
  color: #313946;
}

.ar-map-validation-check input {
  margin-top: 2px;
}

.ar-map-validation-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.ar-map-validation-cancel,
.ar-map-validation-confirm {
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.ar-map-validation-cancel {
  border: 1px solid #cdd5df;
  color: #374151;
  background: #fff;
}

.ar-map-validation-confirm {
  border: 1px solid #17181b;
  color: #fff;
  background: #17181b;
}

.ar-map-validation-confirm:disabled {
  opacity: 0.62;
  cursor: wait;
}

.ar-map-validation-status {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4b5563;
  min-height: 1.2em;
}

.ar-map-validation-status.is-error {
  color: #c81e1e;
}

.ar-map-validation-status.is-success {
  color: #166534;
}

@media (max-width: 720px) {
  .ar-map-validation-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 12px;
  }

  .ar-map-validation-actions {
    justify-content: stretch;
  }

  .ar-map-validation-cancel,
  .ar-map-validation-confirm {
    width: 100%;
  }
}

@media (min-width: 1080px) {
  .ar-map-configurator {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    column-gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .ar-map-configurator h3,
  .ar-map-config-format {
    grid-column: 1 / -1;
  }

  .ar-map-config-sections {
    grid-column: 1;
    grid-row: 4;
    align-self: start;
  }

  .ar-map-config-preview-wrap {
    grid-column: 2;
    grid-row: 4;
    position: sticky;
    top: 18px;
    /* padding: 16px; */
    padding: 10px 14px 10px 10px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .single-product.ar-family-map .summary .ar-map-configurator {
    width: min(1120px, 74vw);
    max-width: none;
  }
}

@media (max-width: 900px) {
  .ar-map-config-info-line--bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .ar-map-theme-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ar-map-config-info-line--bottom {
    grid-template-columns: 1fr;
  }

  .ar-map-config-info-col--suffix,
  .ar-map-config-info-count-col {
    max-width: none;
  }
}

.ar-product-copy {
  display: grid;
  gap: 14px;
}

.ar-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.ar-list li {
  margin-bottom: 7px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ar-list-emoji {
  width: 1.2em;
  line-height: 1.2;
  transform: translateY(1px);
}

.ar-note {
  padding: 12px 14px;
  border-left: 4px solid var(--ar-brand);
  background: #fff3f3;
  color: #3a3a3a;
  font-size: 0.93rem;
}

.ar-after-product {
  margin-top: 36px;
  border-top: 1px solid var(--ar-line);
  padding: 20px 24px;
}

.single-product .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
}

.single-product .related.products ul.products.columns-1,
.single-product .related.products ul.products.columns-2,
.single-product .related.products ul.products.columns-3,
.single-product .related.products ul.products.columns-4,
.single-product .related.products ul.products.columns-5,
.single-product .related.products ul.products.columns-6 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.single-product .related.products ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  clear: none !important;
  min-width: 0;
  border: none;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.single-product .related.products ul.products li.product.first,
.single-product .related.products ul.products li.product.last,
.single-product .related.products ul.products[class*="columns-"] li.product.first,
.single-product .related.products ul.products[class*="columns-"] li.product.last {
  clear: none !important;
  margin-right: 0 !important;
}

.single-product .related.products ul.products li.product img {
  border-radius: 6px;
  overflow: hidden;
  transition: transform 180ms ease, filter 180ms ease;
}

.single-product .related.products ul.products li.product a.woocommerce-LoopProduct-link,
.single-product .related.products ul.products li.product a.woocommerce-loop-product__link {
  position: relative;
  display: block;
}

.single-product .related.products ul.products li.product a.woocommerce-LoopProduct-link::after,
.single-product .related.products ul.products li.product a.woocommerce-loop-product__link::after {
  content: "Voir la fiche produit";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(23, 24, 27, 0.42);
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.single-product .related.products ul.products li.product a.woocommerce-LoopProduct-link:hover img,
.single-product .related.products ul.products li.product a.woocommerce-LoopProduct-link:focus-visible img,
.single-product .related.products ul.products li.product a.woocommerce-loop-product__link:hover img,
.single-product .related.products ul.products li.product a.woocommerce-loop-product__link:focus-visible img {
  filter: brightness(0.82);
}

.single-product .related.products ul.products li.product a.woocommerce-LoopProduct-link:hover::after,
.single-product .related.products ul.products li.product a.woocommerce-LoopProduct-link:focus-visible::after,
.single-product .related.products ul.products li.product a.woocommerce-loop-product__link:hover::after,
.single-product .related.products ul.products li.product a.woocommerce-loop-product__link:focus-visible::after {
  opacity: 1;
}

.single-product .related.products ul.products li.product h2.woocommerce-loop-product__title {
  margin: 0 0 8px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.single-product .related.products ul.products li.product a {
  text-decoration: none;
}

.single-product .related.products ul.products li.product a:hover h2.woocommerce-loop-product__title,
.single-product .related.products ul.products li.product a:focus-visible h2.woocommerce-loop-product__title {
  color: #ff3131;
}

.single-product .related.products ul.products li.product .price {
  margin-top: auto;
  margin-bottom: 12px;
  color: var(--ar-brand-dark);
  font-weight: 700;
}

.single-product .related.products ul.products li.product .price .woocommerce-price-suffix {
  font-size: 0.72em;
  font-weight: 700;
  color: #17181b;
  margin-left: 5px;
}

.single-product .related.products ul.products li.product .button,
.single-product .related.products ul.products li.product .add_to_cart_button,
.single-product .related.products ul.products li.product .wp-element-button {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  line-height: 1.1;
  background: #fff !important;
  color: #17181b !important;
  border: 1px solid #17181b !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  font-weight: 700;
  padding: 0.48rem 0.78rem;
}

.single-product .related.products ul.products li.product .added_to_cart {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: #17181b;
  text-decoration: none;
  font-weight: 700;
}

.single-product .related.products ul.products li.product .added_to_cart:hover,
.single-product .related.products ul.products li.product .added_to_cart:focus-visible {
  color: #ff3131;
}

.single-product .related.products ul.products li.product .button:hover,
.single-product .related.products ul.products li.product .add_to_cart_button:hover,
.single-product .related.products ul.products li.product .wp-element-button:hover {
  background: #fff !important;
  color: #ff3131 !important;
  border-color: #ff3131 !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--ar-brand-dark);
  font-size: 1.55rem;
  font-weight: 800;
}

.single-product .summary p.price,
.single-product .summary span.price {
  color: #ff3131;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  line-height: 1.06;
  margin-bottom: 8px;
}

.single-product .summary p.price .woocommerce-Price-amount,
.single-product .summary span.price .woocommerce-Price-amount {
  color: #ff3131;
  font-size: 1.74rem;
  font-weight: 700;
}

.single-product .summary p.price del .woocommerce-Price-amount,
.single-product .summary span.price del .woocommerce-Price-amount {
  color: #8b94a3;
  font-size: 1.2rem;
  font-weight: 600;
}

.single-product .summary p.price .woocommerce-price-suffix,
.single-product .summary span.price .woocommerce-price-suffix {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ff3131;
  margin-left: 3px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.single-product .summary form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px !important;
}

.ar-bib-cart-wrap form.cart {
  margin: 0;
}

.single-product .summary .quantity .qty {
  min-width: 72px;
  height: 44px;
  border: 1px solid #d5dbe3;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #17181b;
  background: #fff;
}

.single-product .summary .single_add_to_cart_button,
.single-product .summary button.single_add_to_cart_button,
.single-product .summary form.cart .button,
.single-product .summary .wp-element-button {
  background: #fff !important;
  color: #17181b !important;
  border: 1px solid #17181b !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  font-weight: 700;
  padding: 0.48rem 0.78rem;
}

.single-product .summary .single_add_to_cart_button:hover,
.single-product .summary button.single_add_to_cart_button:hover,
.single-product .summary form.cart .button:hover,
.single-product .summary .wp-element-button:hover {
  background: #fff !important;
  color: #ff3131 !important;
  border-color: #ff3131 !important;
}

.single-product .summary .wc-stripe-payment-request-wrapper,
.single-product .summary .wc-stripe-payment-request-button-separator {
  margin-top: 0;
}

.single-product .summary .wc-stripe-payment-request-wrapper {
  display: block !important;
  width: 100% !important;
  margin-top: 8px !important;
  padding-top: 14px !important;
  border-top: 1px solid var(--ar-line) !important;
}

#wc-stripe-express-checkout-element {
  margin-top: 3em !important;
}

.single-product .summary .wc-stripe-payment-request-button-separator {
  margin: 0 0 10px !important;
  padding: 0 !important;
}

.ar-bib-sales-copy {
  margin-right: 8px;
  padding: 2px 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.ar-bib-sales-copy p {
  margin: 0 0 8px;
}

.ar-bib-sales-copy .ar-bib-sales-intro {
  font-weight: 700;
}

.ar-bib-product-specs {
  margin-top: 14px;
  background: #fafbfc;
  border: 1px solid #e8ecf1;
  border-radius: 10px;
  padding: 11px 13px;
}

.ar-bib-product-specs h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  color: #ff3131;
}

.ar-bib-product-specs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.ar-bib-product-specs-list li {
  position: relative;
  padding-left: 12px;
  color: #202532;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 7px;
}

.ar-bib-product-specs-list li:last-child {
  margin-bottom: 0;
}

.ar-bib-product-specs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff3131;
}

.ar-bib-product-specs-list strong {
  font-weight: 700;
}

.ar-bib-buy-proof {
  margin: 10px 0 0;
  color: #4b5260;
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 500;
}

.ar-bib-how-it-works {
  margin-top: 38px;
  border: 1px solid #e2e5ea;
  border-radius: 12px;
  background: #f6f7f8;
  padding: 24px;
}

.ar-bib-how-it-works .ar-bib-section-title {
  margin-bottom: 14px;
}

.ar-bib-how-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ar-bib-how-steps li {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid #e7e9ee;
  border-radius: 10px;
  background: #ffffff;
  color: #252934;
  font-size: 0.94rem;
  line-height: 1.45;
  box-shadow: 0 1px 4px rgba(17, 24, 39, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ar-bib-how-step-index {
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
  flex: 0 0 auto;
}

.ar-bib-how-step-text {
  flex: 1 1 auto;
}

.ar-bib-race-note {
  margin-top: 32px;
  border: 1px solid #e2e5ea;
  border-radius: 12px;
  background: #f3f4f6;
  padding: 22px 24px;
}

.ar-bib-race-note .ar-bib-section-title {
  margin-bottom: 10px;
}

.ar-bib-race-note p {
  margin: 0;
  color: #2f3440;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
}

.ar-bib-race-note-icon {
  display: inline-flex;
  margin-right: 8px;
  vertical-align: -0.05em;
}

@media (max-width: 980px) {
  .ar-single-bib-hero .ar-bib-hero-title {
    font-size: clamp(1.8rem, 7.8vw, 2.1rem);
  }

  .ar-single-bib-hero .ar-bib-hero-pills {
    margin-top: 20px;
    gap: 8px;
    max-width: none;
  }

  .ar-single-bib-hero .ar-bib-hero-pills li {
    font-size: 0.84rem;
    padding: 5px 10px;
  }

  .ar-bib-how-steps {
    grid-template-columns: 1fr;
  }

  .ar-bib-how-it-works {
    margin-top: 32px;
    padding: 20px;
  }

  .ar-bib-race-note {
    margin-top: 28px;
    padding: 18px 20px;
  }
}

.ar-list-check li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  align-items: normal;
  display: block;
}

.ar-list-check {
  margin-left: 15px;
}

.ar-list-check .ar-list-emoji {
  position: absolute;
  left: 0;
  top: 0.06em;
  width: auto;
  transform: none;
}

.ar-list-check li strong {
  white-space: nowrap;
}

.woocommerce-product-gallery {
  margin-bottom: 0;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  padding: 14px;
  border: 1px solid var(--ar-line);
  border-radius: 14px;
  background: #fff;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  position: relative !important;
  display: block;
}

.woocommerce[class*="columns-"] ul.products li.product,
.woocommerce-page[class*="columns-"] ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  margin-right: 0 !important;
  float: none !important;
  clear: none !important;
}

.woocommerce ul.products li.product .button {
  margin-top: 10px;
}

.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price .woocommerce-Price-amount,
.woocommerce ul.products li.product .price bdi {
  color: #cf2020;
  font-weight: 700;
}

.woocommerce ul.products li.product .price .woocommerce-price-suffix {
  font-size: 0.72em;
  font-weight: 700;
  color: #17181b;
  margin-left: 5px;
}

.ar-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ar-post-card {
  border: 1px solid var(--ar-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.ar-post-body {
  padding: 16px;
}

.ar-site-footer {
  border-top: 1px solid var(--ar-line);
  padding: 28px 0;
  background: #fff;
}

.ar-foot-wrap {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.ar-foot-small {
  font-size: 0.9rem;
  color: var(--ar-muted);
}

.ar-foot-seo {
  margin: 2px 0 4px;
  max-width: 700px;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.55;
}

.ar-foot-small a {
  color: inherit;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
}

.ar-foot-small a:hover,
.ar-foot-small a:focus-visible {
  color: #ff3131;
}

.ar-foot-small a.ar-foot-alx3d-link,
.ar-foot-small a.ar-foot-alx3d-link:visited {
  color: #ff3131;
  font-weight: 700;
}

.ar-foot-small a.ar-foot-alx3d-link:hover,
.ar-foot-small a.ar-foot-alx3d-link:focus-visible {
  color: #d72626;
}

.ar-site-footer nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.ar-site-footer nav li {
  display: inline-flex;
  align-items: center;
}

.ar-site-footer nav li + li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.95em;
  background: #d3d7de;
  margin: 0 10px;
}

.ar-site-footer nav a {
  text-decoration: none;
  color: #22252c;
  font-weight: 600;
}

.ar-site-footer nav a:hover,
.ar-site-footer nav a:focus-visible {
  color: #ff3131;
}

@media (max-width: 980px) {
  body.ar-mobile-menu-open {
    overflow: hidden;
  }

  .ar-header-wrap {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "actions actions";
    gap: 10px 12px;
    padding: 8px 0;
  }

  .ar-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .ar-main-nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 180ms ease, opacity 140ms ease;
  }

  .ar-main-nav.is-open {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
  }

  .ar-main-nav ul {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 4px 0 0;
    border-top: 1px solid #e5e9f0;
  }

  .ar-main-nav li {
    width: 100%;
    border-bottom: 1px solid #e9edf3;
  }

  .ar-main-nav a {
    display: block;
    width: 100%;
    padding: 9px 0;
    font-size: 0.94rem;
    color: #3a3f47;
  }

  .ar-header-actions {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 180ms ease, opacity 140ms ease;
    display: block;
    margin-top: 0;
    justify-content: flex-start;
    gap: 0;
  }

  .ar-header-actions.is-open {
    max-height: 200px;
    opacity: 1;
    pointer-events: auto;
  }

  .ar-header-actions .ar-btn {
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
    font-weight: 600;
    color: #24272c;
  }

  .ar-header-actions .ar-btn + .ar-btn {
    border-top: 1px solid #e9edf3;
  }

  .ar-header-actions .ar-btn:hover,
  .ar-header-actions .ar-btn:focus-visible {
    color: #ff3131;
    border-color: transparent;
    background: transparent;
  }

  .ar-site-footer nav ul {
    justify-content: flex-start;
  }

  .ar-product-shell.is-bib .ar-product-top,
  .ar-product-shell.is-map .ar-product-top,
  .ar-grid-2,
  .ar-home-v1-grid,
  .ar-home-v2-grid,
  .ar-category-bib-grid,
  .ar-category-bib-compare-grid,
  .ar-category-bib-benefits-grid,
  .ar-bib-subcat-grid,
  .ar-category-children-grid,
  .ar-blog-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .single-product .related.products ul.products,
  .single-product .related.products ul.products[class*="columns-"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .ar-bib-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ar-home-v1-hero {
    padding: 18px;
  }

  .ar-home-v2-hero {
    padding: 18px;
  }

  .ar-home-vol {
    gap: 24px;
  }

  .ar-home-vol-copy {
    width: min(1100px, 92vw);
    padding-bottom: 10px;
  }

  .ar-home-intro-band {
    margin-bottom: 6px;
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .ar-home-intro-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ar-home-intro-title h1,
  .ar-home-intro-copy p {
    max-width: 100%;
  }

  .ar-home-intro-copy {
    padding-top: 0;
  }

  .ar-home-intro-copy p {
    font-size: 1.04rem;
    line-height: 1.4;
  }

  .ar-legal-hero {
    margin-bottom: 24px;
    padding: 24px 0 20px;
  }

  .ar-legal-page {
    padding: 20px 16px;
    margin-bottom: 24px;
  }

  .ar-home-vol-copy p {
    font-size: 1rem;
  }

  .ar-home-vol-media img,
  .ar-home-vol-placeholder {
    height: clamp(200px, 52vw, 300px);
  }

  .ar-home-vol-media-label {
    top: 10px;
    left: 10px;
    padding: 0.32rem 0.52rem;
    font-size: 0.74rem;
  }

  .ar-home-vol-ticker-track {
    gap: 22px;
    font-size: 0.8rem;
    padding: 10px 0;
  }

  .ar-home-atelier {
    gap: 20px;
  }

  .ar-home-atelier-intro {
    margin-top: 2px;
  }

  .ar-home-atelier-visual,
  .ar-home-atelier-placeholder {
    min-height: 220px;
  }

  .ar-home-atelier-visual img {
    max-height: 220px;
    padding: 18px 16px 12px;
  }

  .ar-home-atelier-highlights {
    grid-template-columns: 1fr;
  }

  .ar-home-split {
    gap: 18px;
  }

  .ar-home-split-hero-main-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px 20px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .ar-home-split-hero-main-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
    margin-bottom: 10px;
  }

  .ar-home-split-hero-main-copy p {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .ar-home-split-hero-main-actions {
    margin-bottom: 4px;
  }

  .ar-home-split-hero-main-copy p.ar-home-split-hero-main-micro {
    margin-bottom: 14px;
    font-size: 12.5px;
  }

  .ar-home-hero-btn {
    width: 100%;
  }

  .ar-home-split-hero-main-badges {
    gap: 7px;
  }

  .ar-home-split-hero-main-badges li {
    font-size: 0.8rem;
  }

  .ar-home-split-hero-main-visual,
  .ar-home-split-hero-main-visual--map,
  .ar-home-split-hero-main-visual--single {
    aspect-ratio: 4 / 3;
  }

  .ar-home-split-hero-main-visual--single {
    aspect-ratio: auto;
    height: clamp(320px, 62vw, 460px);
  }

  .ar-home-split-intro {
    margin-bottom: 8px;
  }

  .ar-home-split-grid,
  .ar-home-split-highlights,
  .ar-home-split-reassurance-grid {
    grid-template-columns: 1fr;
  }

  .ar-home-split-media,
  .ar-home-split-placeholder {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .ar-home-split-media img {
    height: 100%;
    max-height: none;
  }

  .ar-home-split-hero img,
  .ar-home-split-hero-placeholder {
    height: clamp(220px, 48vw, 300px);
  }

  .ar-faq-inline li {
    grid-template-columns: 28px 1fr;
  }

  .ar-faq-answer {
    grid-column: 2 / -1;
  }

  .ar-bib-parent-hero {
    padding: 24px 0 22px;
    margin-bottom: 56px;
  }

  .ar-bib-child-hero {
    padding: 24px 0 20px;
    margin-bottom: 44px;
  }

  .ar-bib-parent-hero .ar-bib-parent-hero-grid,
  .ar-bib-child-hero .ar-bib-parent-hero-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ar-bib-anti-pin {
    margin-top: 14px;
    padding: 16px;
  }

  .ar-bib-anti-pin-grid {
    gap: 10px;
  }

  .ar-bib-specs-list {
    grid-template-columns: 1fr;
  }

  .ar-bib-child-top .ar-bib-hero-brand {
    margin-bottom: 8px;
  }

  .ar-category-bib-situation-media {
    padding: 0;
  }

  .ar-category-bib-situation-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ar-category-bib-situation-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 10px;
  }

  .ar-bib-gallery-dialog {
    max-width: 94vw;
    min-height: 88vh;
    grid-template-columns: 40px 1fr 40px;
    gap: 8px;
  }

  .ar-bib-gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.55rem;
  }

  .ar-category-bib-benefits-grid .ar-card {
    border-right: none;
    border-bottom: none;
  }

  .ar-category-bib-benefits-grid .ar-card:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 12px;
    right: 12px;
    width: auto;
    height: 1px;
  }

  .ar-bib-mini-specs {
    grid-template-columns: 1fr;
  }

  .ar-category-children-bib {
    padding: 18px;
  }

  .ar-category-children-grid.is-two {
    grid-template-columns: 1fr;
    column-gap: 28px;
  }

  .ar-category-collection-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(23, 24, 27, 0.44) 0%, rgba(23, 24, 27, 0.08) 72%, rgba(23, 24, 27, 0.02) 100%);
  }
}

@media (max-width: 920px) {
  .ar-bib-subcat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ar-bib-subcat-grid {
    grid-template-columns: 1fr;
  }
}

.ar-map-waiting {
  position: relative;
  width: 100vw;
  margin: 0 0 34px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 44px 0;
  background: linear-gradient(180deg, #f7f8fb 0%, #f4f6fb 100%);
  border-top: 1px solid #e5e9f3;
  border-bottom: 1px solid #e5e9f3;
}

.ar-map-waiting-head {
  width: min(1120px, 92vw);
  margin: 0 auto 18px;
}

.ar-map-waiting-head h1 {
  margin: 0;
}

.ar-map-waiting-top {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.ar-map-waiting-copy {
  margin-top: 20px;
}

.ar-map-brand {
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}

.ar-map-brand-black {
  color: #17181b;
}

.ar-map-brand-red {
  color: #ff3131;
}

.ar-map-waiting-lead {
  margin: 0 0 12px;
  color: #2a3344;
  max-width: 65ch;
}

.ar-map-waiting-points {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #2a3344;
}

.ar-map-waiting-points li + li {
  margin-top: 6px;
}

.ar-map-waiting-plugin {
  border-left: 1px solid #d8dfea;
  padding-left: 24px;
}

.ar-map-waiting-contact {
  width: min(1120px, 92vw);
  margin: 22px auto 0;
  padding: 16px 18px;
  border: 1px solid #d8dde8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.ar-map-waiting-contact-title {
  margin: 0 0 6px;
  font-weight: 700;
  color: #17181b;
}

.ar-map-waiting-contact .ar-map-waiting-contact-kicker {
  margin: 0 0 8px;
  color: #ff3131;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 800;
}

.ar-map-waiting-contact p {
  margin: 0;
  color: #2a3344;
}

.ar-map-waiting-contact a {
  color: #17181b;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.ar-map-waiting-contact a:hover {
  color: #ff3131;
}

.ar-map-waiting-images {
  position: relative;
  width: 100vw;
  margin: 0 0 34px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 26px 0 44px;
  background: #fff;
  border-top: 1px solid #e7ebf3;
  border-bottom: 1px solid #e7ebf3;
}

.ar-map-waiting-images-inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.ar-map-waiting-gallery {
  width: min(80%, 960px);
  margin: 0 auto;
}

.ar-map-waiting-main {
  margin: 0;
}

.ar-map-waiting-main .ar-bib-gallery-trigger {
  width: 100%;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.ar-map-waiting-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.ar-map-waiting-thumbs-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ar-map-waiting-thumbs-row .ar-bib-gallery-thumb {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.ar-map-waiting-thumbs-row .ar-bib-gallery-thumb-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.ar-map-waiting-placeholder {
  aspect-ratio: 4 / 3;
  width: 100%;
  display: grid;
  place-items: center;
  border: 1px dashed #b7c1d5;
  background: #eef2fa;
  color: #2a3344;
  font-weight: 700;
  text-align: center;
  padding: 16px;
}

.alx3d-c3dwl-wrap {
  margin-top: 20px;
}

.ar-map-waiting-plugin-note {
  margin: 50px 0 0;
  color: #2a3344;
}

.ar-map-waiting-plugin .alx3d-c3dwl-form button,
.ar-map-waiting-plugin .alx3d-c3dwl-btn {
  border-radius: 6px;
}

.alx3d-c3dwl-wrap h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.alx3d-c3dwl-wrap p {
  margin: 0 0 10px;
  color: #2a3344;
}

.alx3d-c3dwl-msg {
  margin: 0 0 10px;
  font-weight: 700;
  color: #22314d;
}

.alx3d-c3dwl-msg.is-success {
  color: #0f7a39;
}

.alx3d-c3dwl-msg.is-error {
  color: #b02020;
}

.alx3d-c3dwl-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.alx3d-c3dwl-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c7cfde;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 1rem;
}

.alx3d-c3dwl-form button {
  min-height: auto;
  padding: 0.48rem 0.78rem;
  border: 1px solid #17181b;
  border-radius: 6px;
  background: #fff;
  color: #17181b;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.alx3d-c3dwl-form button:hover {
  border-color: #ff3131;
  background: #fff;
  color: #ff3131;
}

.alx3d-c3dwl-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0;
  color: #4b5568;
  font-size: 0.92rem;
}

.alx3d-c3dwl-consent input {
  margin-top: 3px;
}

@media (max-width: 820px) {
  .ar-map-waiting-head h1 {
    white-space: normal;
  }

  .ar-map-waiting-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ar-map-waiting-plugin {
    border-left: 0;
    padding-left: 0;
  }

  .ar-map-waiting-copy {
    margin-top: 0;
  }

  .ar-map-waiting-contact {
    margin-top: 16px;
    padding: 14px 14px;
  }

  .ar-map-waiting-main-image {
    aspect-ratio: 4 / 3;
  }

  .ar-map-waiting-gallery {
    width: 100%;
  }

  .ar-map-waiting-thumbs-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .alx3d-c3dwl-form {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 821px) {
  .ar-map-waiting-head h1 {
    white-space: nowrap;
  }
}
