/* ============================================================
   RIPCURL MAROC — Main CSS
   ============================================================ */

/* --- VARIABLES -------------------------------------------- */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0f2040;
  --blue:        #1a6b9a;
  --blue-light:  #2589c2;
  --gold:        #ffffff;
  --gold-dark:   #e0e0e0;
  --white:       #ffffff;
  --off-white:   #f7f6f3;
  --light-gray:  #ececec;
  --gray:        #888;
  --dark:        #111111;

  --font-head:   'Bebas Neue', cursive;
  --font-body:   'Barlow', sans-serif;

  --nav-h:       60px;
  --topbar-h:    32px;
  --header-h:    92px; /* topbar 32px + nav 60px */
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --ease-out:    cubic-bezier(0,0,.2,1);
}

/* --- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- LAYOUT ----------------------------------------------- */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-pad { padding: 100px 0; }
.section-pad--sm { padding: 64px 0; }

/* --- TYPOGRAPHY ------------------------------------------- */
.heading-xl {
  font-family: var(--font-head);
  font-size: clamp(56px, 8vw, 120px);
  line-height: .95;
  letter-spacing: .02em;
}
.heading-lg {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: .03em;
}
.heading-md {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: .04em;
}
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all .25s var(--ease);
  border: 2px solid transparent;
}
.btn--gold {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.btn--gold:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ============================================================
   SITE HEADER WRAPPER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* ============================================================
   TOP UTILITY BAR  — ripcurl.eu sand style
   ============================================================ */
.top-bar {
  background: #f2eee7;
  overflow: hidden;
  max-height: 32px;
  transition: max-height .3s var(--ease), opacity .3s var(--ease);
  opacity: 1;
}
.top-bar.hidden { max-height: 0; opacity: 0; }
.top-bar__inner {
  height: 32px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.top-bar__left { display: flex; align-items: center; }
.top-bar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.top-bar__sep {
  font-size: 12px;
  color: #bbb;
  font-weight: 300;
}
.top-bar__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.top-bar__flag { flex-shrink: 0; border-radius: 1px; }
.top-bar__link {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  letter-spacing: .01em;
  line-height: 1;
  transition: opacity .2s;
  white-space: nowrap;
}
.top-bar__link:hover { opacity: .7; }
.top-bar__promo {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  text-align: center;
}
.top-bar__promo strong { font-weight: 700; }

/* ============================================================
   MAIN NAV BAR  — ripcurl.eu white style
   ============================================================ */
.site-nav {
  background: #fff;
  height: 60px;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}
.site-nav.mega-open { border-bottom-color: transparent; }

.nav__inner {
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* --- Left: Logo + Menu ------------------------------------ */
.nav__left {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

/* --- Logo -------------------------------------------------- */
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  display: block;
  width: 121px;
  height: 17px;
}
/* Legacy text logo fallback */
.nav__logo-wrap {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}
.nav__logo-ripcurl {
  font-family: 'Bebas Neue', cursive;
  font-size: 23px;
  letter-spacing: .14em;
  color: #000;
}
.nav__logo-sep {
  width: 1px; height: 14px;
  background: rgba(0,0,0,.2);
  margin: 0 10px;
  align-self: center;
}
.nav__logo-country {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  color: rgba(0,0,0,.45);
  text-transform: uppercase;
  align-self: center;
}

/* --- Nav menu -------------------------------------------- */
.nav__menu {
  display: flex;
  align-items: stretch;
  height: 60px;
  gap: 0;
}
.nav__item {
  position: static;
  display: flex;
  align-items: stretch;
}
.nav__link {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #000;
  transition: color .2s;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transition: transform .22s var(--ease);
  transform-origin: center;
}
.nav__item:hover .nav__link::after { transform: scaleX(1); }
.nav__item.active .nav__link::after { transform: scaleX(1); }

/* --- Right: Search + Icons -------------------------------- */
.nav__right {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}

/* Search button (opens overlay, visible on all screens) */
.nav__icon-btn--search { display: flex; }

/* --- Icon buttons ----------------------------------------- */
.nav__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #000;
  transition: opacity .2s;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
}
.nav__icon-btn:hover { opacity: .7; }
.nav__icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; flex-shrink: 0; }
.nav__cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #c1121f;
  border-radius: 50%;
  padding: 0 4px;
}
.nav__cart-badge:empty,
.nav__cart-badge[data-count="0"] {
  display: none;
}

/* ============================================================
   MINI-CART DRAWER
   ============================================================ */
.minicart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.minicart-backdrop--open { opacity: 1; pointer-events: all; }

.minicart {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: #fff;
  z-index: 1201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
}
.minicart--open { transform: none; }

.minicart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #ededed;
  flex-shrink: 0;
}
.minicart__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.minicart__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #000;
  transition: opacity .2s;
}
.minicart__close:hover { opacity: .5; }

.minicart__body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.minicart__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #888;
  font-size: 15px;
}

.minicart__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  color: #595959;
  font-size: 14px;
}

/* Cart item */
.minicart__item {
  display: flex;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  transition: opacity .2s;
}
.minicart__item-img {
  flex-shrink: 0;
  width: 80px;
  height: 100px;
  background: #f5f5f5;
  overflow: hidden;
}
.minicart__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.minicart__item-placeholder {
  width: 100%;
  height: 100%;
  background: #eee;
}
.minicart__item-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}
.minicart__item-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.minicart__item-name:hover { text-decoration: underline; }
.minicart__item-attrs {
  font-size: 12px;
  color: #888;
}
.minicart__item-price {
  font-size: 12px;
  color: #888;
}
.minicart__item-total {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-top: auto;
}
.minicart__item-remove {
  position: absolute;
  top: 12px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: #aaa;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color .2s;
}
.minicart__item-remove:hover { color: #000; }

/* Footer */
.minicart__foot {
  flex-shrink: 0;
  padding: 20px 24px;
  border-top: 1px solid #ededed;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.minicart__total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.minicart__checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #000;
  transition: background .2s, color .2s;
}
.minicart__checkout-btn:hover { background: #fff; color: #000; }
.minicart__cart-link {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.minicart__cart-link:hover { text-decoration-thickness: 2px; }

@media (max-width: 480px) {
  .minicart { width: 100vw; }
}

/* Hamburger (mobile only) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  color: #000;
  padding: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: all .3s var(--ease);
  transform-origin: center;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 92px;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-overlay__box {
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
  transform: translateY(-12px);
  transition: transform .3s var(--ease) .05s;
}
.search-overlay.open .search-overlay__box { transform: none; }
.search-overlay__form {
  display: flex;
  background: var(--white);
  overflow: hidden;
}
.search-overlay__input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  padding: 18px 20px;
  outline: none;
  color: var(--dark);
}
.search-overlay__input::placeholder { color: #bbb; }
.search-overlay__submit {
  background: var(--dark);
  border: none;
  padding: 0 22px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
}
.search-overlay__submit:hover { background: #333; }
.search-overlay__close {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.search-overlay__close button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.search-overlay__close button:hover { color: var(--white); }

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mega-overlay.open { opacity: 1; pointer-events: all; }

.mega-menu {
  position: fixed;
  top: var(--mega-top, 92px);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 24px 60px rgba(0,0,0,.13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s .22s;
  z-index: 999;
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s 0s;
}

.mega-menu__inner {
  margin: 0 auto;
  padding: 44px 48px 52px;
  display: grid;
  gap: 0 48px;
}
/* Layout variants — colonne 1 étroite (Acheter par), reste 1fr */
.mega-menu[data-cols="8"] .mega-menu__inner { grid-template-columns: repeat(8, 1fr); gap: 0 28px; }
.mega-menu[data-cols="7"] .mega-menu__inner { grid-template-columns: repeat(7, 1fr); gap: 0 32px; }
.mega-menu[data-cols="6"] .mega-menu__inner { grid-template-columns: 150px repeat(5, 1fr); }
.mega-menu[data-cols="5"] .mega-menu__inner { grid-template-columns: 150px repeat(4, 1fr); }
.mega-menu[data-cols="4"] .mega-menu__inner { grid-template-columns: 150px repeat(3, 1fr); }
.mega-menu[data-cols="3"] .mega-menu__inner { grid-template-columns: repeat(3, 1fr); }

.mega-col__title {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}
a.mega-col__title--link { text-decoration: none; transition: color .18s; }
a.mega-col__title--link:hover { color: #000; }
.mega-col__links { display: flex; flex-direction: column; gap: 0; }
.mega-col__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: #222;
  border-bottom: 1px solid transparent;
  transition: color .18s, padding-left .18s;
  line-height: 1.3;
}
.mega-col__link:hover { color: #000; padding-left: 4px; }
.mega-col__link--strong { font-weight: 600; }
.mega-col__link--highlight { color: #c1121f !important; font-weight: 600; }

/* Mega-menu with promo image card */
.mega-menu--has-promo .mega-menu__inner {
  gap: 0 32px;
}
.mega-menu--has-promo[data-cols="3"] .mega-menu__inner { grid-template-columns: 220px repeat(3, 1fr) !important; }
.mega-menu--has-promo[data-cols="4"] .mega-menu__inner { grid-template-columns: 220px repeat(4, 1fr) !important; }
.mega-menu--has-promo[data-cols="5"] .mega-menu__inner { grid-template-columns: 220px 150px repeat(4, 1fr) !important; }
.mega-menu--has-promo[data-cols="6"] .mega-menu__inner { grid-template-columns: 220px 150px repeat(5, 1fr) !important; }

.mega-promo {
  grid-row: 1 / -1;
  align-self: start;
}
.mega-promo__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
  height: 100%;
  background: #000;
  transition: opacity .2s;
}
.mega-promo__card:hover { opacity: .9; }
.mega-promo__img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  min-height: 0;
}
.mega-promo__cta {
  display: block;
  padding: 14px 20px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  border: 1px solid #000;
}
.badge-new {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  padding: 2px 6px;
  flex-shrink: 0;
  line-height: 1.5;
}
.badge-sale {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: #c1121f;
  color: #fff;
  padding: 2px 6px;
  flex-shrink: 0;
  line-height: 1.5;
}

/* Image cards in mega menu */
.mega-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
}
.mega-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}
.mega-card:hover .mega-card__img { transform: scale(1.04); }
.mega-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
}
.mega-card__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 14px 14px;
  color: var(--white);
}
.mega-card__tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--white);
  color: #000;
  padding: 3px 8px;
  margin-bottom: 7px;
}
.mega-card__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.nav__drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(360px, 100vw);
  height: 100%;
  background: #000;
  z-index: 1100;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .36s var(--ease);
  overscroll-behavior: contain;
}
.nav__drawer.open { transform: none; }
.nav__drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity .36s;
}
.nav__drawer-backdrop.open { opacity: 1; pointer-events: all; }
.nav__drawer-head {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #1e1e1e;
  position: sticky;
  top: 0;
  background: #000;
  z-index: 1;
}
.nav__drawer-head-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: .14em;
  color: var(--white);
}
.nav__drawer-close {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.nav__drawer-close:hover { color: var(--white); }
.nav__drawer-body { padding: 8px 0 40px; }
.drawer-item {
  border-bottom: 1px solid #181818;
}
.drawer-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.drawer-item__trigger:hover { color: var(--white); }
.drawer-item__icon {
  transition: transform .3s var(--ease);
  color: rgba(255,255,255,.35);
  flex-shrink: 0;
}
.drawer-item.open .drawer-item__icon { transform: rotate(180deg); }
.drawer-item__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
  background: #0a0a0a;
}
.drawer-item.open .drawer-item__sub { max-height: 2000px; }
.drawer-sub-heading {
  display: block;
  padding: 10px 20px 4px 24px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.drawer-sub-heading:first-child { padding-top: 6px; }
.drawer-sub-link {
  display: block;
  padding: 13px 20px 13px 32px;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid #141414;
  transition: color .2s, padding-left .2s;
}
.drawer-sub-link:hover { color: rgba(255,255,255,.9); padding-left: 36px; }
.drawer-sub-link--highlight { color: #c1121f !important; }
.drawer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 20px 0;
  border-top: 1px solid #1a1a1a;
  margin-top: 16px;
}
.drawer-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  color: rgba(255,255,255,.6);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.drawer-icon-link svg { width: 22px; height: 22px; }
.drawer-icon-link:hover { color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,.15) 0%,
    rgba(10,22,40,.1) 40%,
    rgba(10,22,40,.65) 75%,
    rgba(10,22,40,.9) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: .3s;
}
.hero__content.visible { opacity: 1; transform: none; }

.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hero__eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(68px, 10vw, 140px);
  line-height: .9;
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
.hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: .6;
}
.hero__scroll span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: var(--white);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* promo-bar removed — replaced by .top-bar */

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.categories { background: var(--off-white); }
.categories__header {
  text-align: center;
  padding: 80px 0 48px;
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding-bottom: 3px;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}
.cat-tile__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.cat-tile:hover .cat-tile__img { transform: scale(1.07); }
.cat-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.75) 0%, rgba(10,22,40,.1) 60%);
  transition: background .4s var(--ease);
}
.cat-tile:hover .cat-tile__overlay {
  background: linear-gradient(to top, rgba(10,22,40,.85) 0%, rgba(10,22,40,.2) 60%);
}
.cat-tile__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  transform: translateY(10px);
  transition: transform .4s var(--ease);
}
.cat-tile:hover .cat-tile__body { transform: none; }
.cat-tile__name {
  font-family: var(--font-head);
  font-size: 38px;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 8px;
}
.cat-tile__cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s .1s, transform .3s .1s;
}
.cat-tile:hover .cat-tile__cta { opacity: 1; transform: none; }
.cat-tile__cta::after {
  content: '→';
  transition: transform .25s;
}
.cat-tile:hover .cat-tile__cta::after { transform: translateX(4px); }

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured-products {
  background: var(--white);
  padding: 100px 0;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-header__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
  transition: color .25s;
}
.section-header__link:hover { color: #555; border-color: #555; }

.products-scroll {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}
.products-scroll::-webkit-scrollbar { display: none; }
.products-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 4px;
}

/* --- Product Card ----------------------------------------- */
.product-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--white);
  position: relative;
  cursor: pointer;
}
.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light-gray);
}
.product-card__link {
  display: block;
  height: 100%;
  position: relative;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card__img--main,
.product-card__img--hover {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-card__img--main { transition: transform .6s var(--ease); }
.product-card__img--hover { opacity: 0; transition: opacity .4s; }
.product-card:hover .product-card__img--main  { transform: scale(1.05); }
.product-card:hover .product-card__img--hover { opacity: 1; }
.product-card:hover .product-card__img        { transform: scale(1.05); }
.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.product-card__badge--sale { background: #c1121f; }
.product-card__badge--new  { background: var(--blue); }
.product-card__quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px;
  text-align: center;
  transform: translateY(100%);
  transition: transform .3s var(--ease);
  border: none;
  width: 100%;
}
.product-card:hover .product-card__quick { transform: none; }
.product-card__quick:hover { background: #fff; color: #000; }
.product-card__info { padding: 16px 4px 0; }
.product-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: .02em;
  line-height: 1.3;
}
.product-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.product-card__price del {
  font-weight: 400;
  color: var(--gray);
  font-size: 13px;
  margin-right: 6px;
}
.product-card__price ins {
  text-decoration: none;
  color: #c1121f;
}
.product-card__wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s, transform .25s;
  color: var(--dark);
}
.product-card__wishlist:hover {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.1);
}
.product-card__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.product-card__swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .15s;
}
.product-card__swatch:hover,
.product-card__swatch--active { border-color: #000; }
.product-card__swatch-more {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray);
  line-height: 16px;
  align-self: center;
}
.product-card__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.product-card__size {
  font-size: 10px;
  font-weight: 600;
  color: #555;
  border: 1px solid #ddd;
  padding: 2px 5px;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.product-card__size:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Products Grid (3 col) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
}
.products-grid .product-card { width: auto; }

/* ============================================================
   BRAND STORY BANNER
   ============================================================ */
.brand-story {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.brand-story__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.brand-story__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,.92) 0%,
    rgba(10,22,40,.7) 60%,
    rgba(26,107,154,.5) 100%
  );
}
.brand-story__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.brand-story__title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 100px);
  color: var(--white);
  line-height: .9;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.brand-story__title em {
  color: var(--gold);
  font-style: normal;
}
.brand-story__text {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.brand-story__year {
  position: absolute;
  bottom: 48px; right: 60px;
  font-family: var(--font-head);
  font-size: 180px;
  color: rgba(255,255,255,.05);
  line-height: 1;
  letter-spacing: .02em;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   NEW ARRIVALS
   ============================================================ */
.new-arrivals { background: var(--off-white); }
.new-arrivals .section-label { text-align: center; }
.new-arrivals .heading-lg { text-align: center; margin-bottom: 56px; }

/* ============================================================
   WETSUIT SPLIT
   ============================================================ */
.wetsuit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.wetsuit-split__media {
  position: relative;
  overflow: hidden;
}
.wetsuit-split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.wetsuit-split:hover .wetsuit-split__media img { transform: scale(1.03); }
.wetsuit-split__body {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.wetsuit-split__title {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 72px);
  color: var(--white);
  line-height: .95;
  letter-spacing: .04em;
  margin-bottom: 32px;
}
.wetsuit-split__title span { color: var(--gold); }
.wetsuit-features { margin-bottom: 40px; }
.wetsuit-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.wetsuit-feature:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.wetsuit-feature__icon {
  width: 40px; height: 40px;
  background: rgba(245,200,66,.15);
  border: 1px solid rgba(245,200,66,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.wetsuit-feature__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.wetsuit-feature__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* ============================================================
   LIFESTYLE BANNER
   ============================================================ */
.lifestyle-banner {
  position: relative;
  height: 65vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.lifestyle-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.lifestyle-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,.45);
}
.lifestyle-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.lifestyle-banner__title {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 108px);
  color: var(--white);
  letter-spacing: .05em;
  line-height: .9;
  text-shadow: 0 4px 40px rgba(0,0,0,.4);
  margin-bottom: 24px;
}
.lifestyle-banner__sub {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER — ripcurl.eu style
   ============================================================ */

/* --- Black banner at top --------------------------------- */
.footer-banner {
  background: #000;
  padding: 28px 0;
}
.footer-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-banner__logo img { display: block; height: 17px; width: auto; }
.footer-banner__logo--text {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: .12em;
  color: #fff;
  text-decoration: none;
}
.footer__contact {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #474747;
}
.footer__contact a {
  color: #474747;
  text-decoration: none;
}
.footer__contact a:hover { color: #000; }
.footer-banner__tagline {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
}
.footer-banner__cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #000;
  background: #fff;
  padding: 10px 24px;
  border: 1px solid #fff;
  transition: background .2s, color .2s;
}
.footer-banner__cta:hover {
  background: transparent;
  color: #fff;
}

/* --- Homepage Product Carousel ---------------------------- */
.hp-carousel {
  padding: 40px 0 48px;
  background: #fff;
  overflow: hidden;
}
.hp-carousel__title {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: .08em;
  text-align: center;
  margin: 0 0 24px;
  color: #000;
}
.hp-carousel__inner {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0 60px;
}
.hp-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0;
}
.hp-carousel__track::-webkit-scrollbar { display: none; }
.hp-carousel__card {
  flex: 0 0 calc(25% - 12px);
  min-width: 0;
}
.hp-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.hp-carousel__arrow:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.hp-carousel__arrow:hover svg { stroke: #fff; }
.hp-carousel__arrow--left { left: 8px; }
.hp-carousel__arrow--right { right: 8px; }

@media (max-width: 1024px) {
  .hp-carousel__card { flex: 0 0 calc(33.333% - 11px); }
  .hp-carousel__inner { padding: 0 48px; }
}
@media (max-width: 768px) {
  .hp-carousel__card { flex: 0 0 calc(50% - 8px); }
  .hp-carousel__inner { padding: 0 40px; }
  .hp-carousel__arrow { width: 36px; height: 36px; }
  .hp-carousel__arrow--left { left: 4px; }
  .hp-carousel__arrow--right { right: 4px; }
}
@media (max-width: 480px) {
  .hp-carousel__card { flex: 0 0 75%; }
  .hp-carousel__card:nth-child(n+7) { display: none; }
}

/* --- Popular Categories Carousel ------------------------- */
.hp-popcats {
  padding: 48px 0 56px;
  background: #fff;
  width: 100%;
}
.hp-popcats__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 20px;
  max-width: 100%;
}
.hp-popcats__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: .04em;
  color: #000;
  margin: 0;
}
.hp-popcats__arrows {
  display: flex;
  gap: 6px;
}
.hp-popcats__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.hp-popcats__arrow:hover {
  background: #000;
  color: #fff;
}
.hp-popcats__arrow:hover svg { stroke: #fff; }
.hp-popcats__track {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.hp-popcats__track::-webkit-scrollbar { display: none; }
.hp-popcats__card {
  flex: 0 0 calc(25% - 5px);
  min-width: 0;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
}
.hp-popcats__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #e8e6e2;
}
.hp-popcats__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: filter .5s ease, transform .6s ease;
}
.hp-popcats__card:hover .hp-popcats__img {
  filter: grayscale(100%);
  transform: scale(1.06);
}
.hp-popcats__name {
  display: block;
  text-align: center;
  padding: 14px 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #000;
}

@media (max-width: 1024px) {
  .hp-popcats__card { flex: 0 0 calc(33.333% - 4px); }
}
@media (max-width: 768px) {
  .hp-popcats__card { flex: 0 0 calc(50% - 3px); }
  .hp-popcats__header { padding: 0 16px 16px; }
  .hp-popcats__arrow { width: 34px; height: 34px; }
}
@media (max-width: 480px) {
  .hp-popcats__card { flex: 0 0 75%; }
}

/* --- Parallax Banner — sticky title (like ripcurl.eu) ---- */
.hp-parallax {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 48px 0;
}
.hp-parallax__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-parallax__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hp-parallax__title-wrap {
  position: sticky;
  top: var(--nav-h, 60px);
  z-index: 1;
  padding: 48px 64px 0;
  text-align: center;
}
.hp-parallax__title {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  line-height: .95;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.hp-parallax__cta-wrap {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
}
.hp-parallax__cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, color .25s;
}
.hp-parallax__cta:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .hp-parallax__title-wrap { padding: 32px 16px 0; }
  .hp-parallax__title { font-size: clamp(40px, 12vw, 80px); }
  .hp-parallax__cta-wrap { bottom: 12px; left: 12px; right: 12px; }
  .hp-parallax__cta { padding: 12px 24px; font-size: 12px; width: 100%; justify-content: center; }
}

/* --- Rich Text (centered brand statement) ---------------- */
.hp-richtext {
  padding: 64px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
}
.hp-richtext__text {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.55;
  color: #000;
  letter-spacing: .01em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hp-richtext { padding: 40px 16px; }
  .hp-richtext__text { font-size: 15px; }
}

/* --- Blog Grid ------------------------------------------- */
.hp-blog {
  padding: 48px 48px 64px;
  background: #fff;
}
.hp-blog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.hp-blog__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 8px;
}
.hp-blog__logo {
  height: 16px;
  width: auto;
}
.hp-blog__title {
  font-family: var(--font-body);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}
.hp-blog__cta {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #000;
  color: #000;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, color .25s;
  flex-shrink: 0;
  margin-top: 12px;
}
.hp-blog__cta:hover {
  background: #000;
  color: #fff;
}
.hp-blog__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.hp-blog__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
  overflow: hidden;
}
.hp-blog__card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
}
.hp-blog__card--featured .hp-blog__card-img {
  aspect-ratio: 3 / 2;
}
.hp-blog__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.hp-blog__card:hover .hp-blog__card-img img {
  transform: scale(1.04);
}
.hp-blog__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}
.hp-blog__card-body {
  padding: 16px 0 8px;
}
.hp-blog__card-date {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #595959;
  letter-spacing: .02em;
}
.hp-blog__card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.hp-blog__card-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #000;
  margin: 0;
  text-transform: uppercase;
}
.hp-blog__card--featured .hp-blog__card-title {
  font-size: 18px;
}
.hp-blog__card-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #000;
  border-radius: 50%;
  font-size: 16px;
  color: #000;
  transition: background .25s, color .25s;
}
.hp-blog__card:hover .hp-blog__card-arrow {
  background: #000;
  color: #fff;
}

@media (max-width: 1024px) {
  .hp-blog__grid { grid-template-columns: 1fr 1fr; }
  .hp-blog__card--featured { grid-column: span 2; }
}
@media (max-width: 768px) {
  .hp-blog { padding: 32px 16px 48px; }
  .hp-blog__header { flex-direction: column; gap: 16px; }
  .hp-blog__cta { margin-top: 0; }
  .hp-blog__grid { grid-template-columns: 1fr; }
  .hp-blog__card--featured { grid-column: span 1; }
  .hp-blog__card--featured .hp-blog__card-img { aspect-ratio: 4 / 3; }
}

/* --- Collection Showcase (50/50 split) ------------------- */
.hp-showcase {
  display: flex;
  width: 100%;
  min-height: 520px;
  background: #fff;
}
.hp-showcase__left {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.hp-showcase__img-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.hp-showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}
.hp-showcase__img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding: 40px;
}
.hp-showcase__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  color: #000;
  letter-spacing: .04em;
  margin: 0;
  line-height: 1.1;
}
.hp-showcase__right {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hp-showcase__slider-wrap {
  position: relative;
  width: 100%;
  padding: 24px 16px;
}
.hp-showcase__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.hp-showcase__track::-webkit-scrollbar { display: none; }
.hp-showcase__card {
  flex: 0 0 calc(33.333% - 7px);
  min-width: 0;
}
.hp-showcase__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.hp-showcase__arrow:hover {
  background: #000;
  border-color: #000;
}
.hp-showcase__arrow:hover svg { stroke: #fff; }
.hp-showcase__arrow--left { left: 4px; }
.hp-showcase__arrow--right { right: 4px; }

@media (max-width: 1024px) {
  .hp-showcase__card { flex: 0 0 calc(50% - 5px); }
}
@media (min-width: 1025px) {
  .hp-showcase__card { flex: 0 0 calc(33.333% - 7px); }
}
@media (max-width: 768px) {
  .hp-showcase {
    flex-direction: column;
    min-height: auto;
  }
  .hp-showcase__left {
    width: 100%;
    aspect-ratio: 4/3;
  }
  .hp-showcase__right {
    width: 100%;
  }
  .hp-showcase__card { flex: 0 0 55%; }
}
@media (max-width: 480px) {
  .hp-showcase__card { flex: 0 0 70%; }
}

/* --- Main footer ----------------------------------------- */
.site-footer {
  background: #fbf9f9;
  color: #000;
  font-size: 14px;
}
.footer__main {
  padding: 56px 0 48px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  transition: opacity .2s;
}
.footer__links a:hover {
  opacity: .6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* About column */
.footer__col--about { max-width: 480px; }
.footer__about-text {
  font-size: 14px;
  line-height: 1.7;
  color: #474747;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social-link {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: opacity .2s;
}
.footer__social-link:hover { opacity: .6; }

/* --- Divider + Back to top ------------------------------- */
.footer__divider {
  border-top: 1px solid #ededed;
}
.footer__divider-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 0;
}
.footer__back-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #000;
  background: none;
  border: 1px solid #000;
  padding: 10px 20px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.footer__back-top:hover {
  background: #000;
  color: #fff;
}

/* --- Connect / Newsletter -------------------------------- */
.footer__connect {
  padding: 48px 0;
  border-top: 1px solid #ededed;
}
.footer__connect-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.footer__connect-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 12px;
}
.footer__connect-text {
  font-size: 14px;
  color: #474747;
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer__subscribe-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  padding: 14px 48px;
  border: 1px solid #000;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.footer__subscribe-btn:hover {
  background: transparent;
  color: #000;
}
.footer__subscribe-btn:disabled {
  opacity: .6;
  cursor: wait;
}
.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  max-width: 480px;
}
.newsletter__input {
  flex: 1 1 220px;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-right: none;
  outline: none;
}
.newsletter__input:focus {
  border-color: #000;
  box-shadow: inset 0 0 0 1px #000;
}
.newsletter__form .footer__subscribe-btn {
  height: 48px;
  padding: 0 32px;
}
/* Honeypot : hors écran, jamais visible ni focusable */
.newsletter__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.newsletter__msg {
  flex-basis: 100%;
  margin: 10px 0 0;
  font-size: 13px;
  min-height: 18px;
}
.newsletter__msg--ok  { color: #1a7f37; }
.newsletter__msg--err { color: #c0392b; }
.footer__payments {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__payments-img {
  height: 32px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* --- Legal bottom ---------------------------------------- */
.footer__legal {
  border-top: 1px solid #ededed;
  padding: 20px 0;
}
.footer__legal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__legal-links a {
  font-size: 13px;
  color: #707070;
  transition: color .2s;
}
.footer__legal-links a:hover { color: #000; }
.footer__legal-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__copy {
  font-size: 13px;
  color: #707070;
}
.footer__locale-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  background: #fff;
  border: 1px solid #ededed;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color .2s;
}
.footer__locale-btn:hover { border-color: #000; }

/* --- Footer responsive ----------------------------------- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__col--about { grid-column: span 2; }
  .footer__connect-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .footer-banner__tagline { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__col--about { grid-column: span 1; }
  .footer__connect-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer__legal-inner { flex-direction: column; align-items: flex-start; }
  .footer__legal-right { flex-direction: column; align-items: flex-start; }
  .footer__payments { flex-wrap: wrap; }
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woo-wrapper {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
}
.woocommerce-page .site-nav { background: #fff; }

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product {
  background: var(--white);
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}
.woocommerce ul.products li.product a img {
  transition: transform .5s var(--ease) !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.05); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 12px 0 6px !important;
  color: var(--dark) !important;
}
.woocommerce ul.products li.product .price {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
}
.woocommerce ul.products li.product .button {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 12px 20px !important;
  transition: background .25s !important;
  width: 100% !important;
  margin-top: 12px !important;
}
.woocommerce ul.products li.product .button:hover { background: #333 !important; color: #fff !important; }

/* Breadcrumb */
.woocommerce .woocommerce-breadcrumb {
  font-size: 12px !important;
  color: var(--gray) !important;
  margin-bottom: 32px !important;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--navy) !important; }

/* Shop title */
.woocommerce-products-header__title,
h1.woocommerce-products-header__title {
  font-family: var(--font-head) !important;
  font-size: 52px !important;
  letter-spacing: .04em !important;
  color: var(--navy) !important;
  margin-bottom: 36px !important;
}

/* Page hero (non-front pages) */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 80px);
  color: var(--white);
  letter-spacing: .05em;
}
.page-hero__breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  margin-top: 12px;
}
.page-hero__breadcrumb a { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .wetsuit-split { grid-template-columns: 1fr; }
  .wetsuit-split__body { padding: 60px 48px; }
  .brand-story__year { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; --header-h: 60px; }

  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }

  .top-bar { display: none; }
  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }
  .nav__icon-btn:not(.cart-icon-btn):not(.nav__icon-btn--search) { display: none; }
  .nav__icon-btn.cart-icon-btn { display: flex; }

  .hero__content { padding: 0 24px; }
  .hero__scroll { display: none; }
  .hero__ctas { flex-direction: column; gap: 12px; }
  .hero__ctas .btn { text-align: center; justify-content: center; }

  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .cat-tile { aspect-ratio: 4/5; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  .wetsuit-split__body { padding: 48px 24px; }
  .wetsuit-split__title { font-size: 40px; }

  .newsletter__form { flex-direction: column; }
  .newsletter__input { border-right: 1px solid #000; height: 48px; }
  .newsletter__btn { height: 48px; }

  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .brand-story { height: 60vh; }
}

@media (max-width: 480px) {
  .categories__grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card__name { font-size: 12px; }
  .product-card__price { font-size: 13px; }
}

/* ============================================================
   UTILITIES & ANIMATIONS
   ============================================================ */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-48 { margin-bottom: 48px; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Wave divider */
.wave-divider {
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* ============================================================
   CATEGORY HERO
   ============================================================ */
.cat-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
}
.cat-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 6s ease-out;
}
.cat-hero:hover .cat-hero__bg { transform: scale(1); }
.cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.15) 40%,
    rgba(0,0,0,.65) 80%,
    rgba(0,0,0,.8) 100%
  );
}
.cat-hero__content {
  position: relative;
  z-index: 2;
}
.cat-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.cat-hero__breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.cat-hero__breadcrumb a:hover { color: var(--gold); }
.cat-hero__bc-sep { color: rgba(255,255,255,.3); font-size: 10px; }
.cat-hero__title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 100px);
  color: var(--white);
  letter-spacing: .05em;
  line-height: .9;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.cat-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  margin-top: 12px;
  max-width: 480px;
  line-height: 1.6;
}

/* ============================================================
   SUB-CATEGORY TABS
   ============================================================ */
.subcats {
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  z-index: 90;
}
.subcats__track {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 40px;
}
.subcats__track::-webkit-scrollbar { display: none; }
.subcat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #555;
  position: relative;
  transition: color .2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  flex-shrink: 0;
  text-decoration: none;
}
.subcat-pill:hover { color: #000; }
.subcat-pill.active {
  color: #000;
  font-weight: 600;
  border-bottom-color: #000;
}
.subcat-pill--sale { color: #c1121f !important; }
.subcat-pill--sale.active { border-bottom-color: #c1121f; }
.pill-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  padding: 2px 5px;
  flex-shrink: 0;
}

/* ============================================================
   SHOP TOP BAR
   ============================================================ */
.cat-shop { padding: 40px 0 80px; }
.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.shop-topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-count {
  font-size: 13px;
  color: #888;
  letter-spacing: .03em;
}
.sort-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.sort-select {
  appearance: none;
  background: transparent;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 9px 36px 9px 14px;
  color: var(--dark);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}
.sort-select:hover, .sort-select:focus { border-color: #000; }
.sort-select-wrap svg {
  position: absolute;
  right: 12px;
  pointer-events: none;
  color: #666;
}
.filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.filter-toggle:hover { background: #222; }
.filter-count {
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Active filter chips */
.active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  cursor: pointer;
}
.filter-chip:hover { background: #222; }
.filter-chip__remove { font-size: 14px; line-height: 1; }

/* ============================================================
   SHOP LAYOUT + FILTER PANEL
   ============================================================ */
.shop-layout { position: relative; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
.shop-grid .product-card { width: auto; }

/* Filter panel (slide from left) */
.filter-panel {
  position: fixed;
  top: 0; left: 0;
  width: min(380px, 100vw);
  height: 100%;
  background: var(--white);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform .36s var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
}
.filter-panel.open { transform: none; }
.filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .36s;
}
.filter-backdrop.open { opacity: 1; pointer-events: all; }

.filter-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #ebebeb;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.filter-panel__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
}
.filter-panel__close {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color .2s, background .2s;
  border-radius: 0;
}
.filter-panel__close:hover { color: #000; background: #f5f5f5; }
.filter-panel__body { padding: 8px 24px 40px; flex: 1; }

/* Filter groups */
.filter-group {
  border-bottom: 1px solid #ebebeb;
  padding: 4px 0;
}
.filter-group__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}
.filter-group__toggle svg { transition: transform .3s; color: #aaa; flex-shrink: 0; }
.filter-group.closed .filter-group__toggle svg { transform: rotate(-90deg); }
.filter-group__body { padding-bottom: 16px; }
.filter-group.closed .filter-group__body { display: none; }

/* Checkbox filter */
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 13.5px;
  color: #333;
}
.filter-check input[type="checkbox"] { display: none; }
.filter-check__box {
  width: 18px; height: 18px;
  border: 1.5px solid #ccc;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.filter-check input:checked ~ .filter-check__box {
  background: var(--dark);
  border-color: var(--dark);
}
.filter-check input:checked ~ .filter-check__box::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.filter-check__label { line-height: 1.3; }

/* Size grid */
.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.size-btn {
  padding: 8px 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #444;
  border: 1.5px solid #ddd;
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.size-btn:hover { border-color: #000; color: #000; }
.size-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* Color swatches */
.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.color-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, border-color .2s;
  outline: 2px solid transparent;
  outline-offset: 3px;
}
.color-swatch:hover { transform: scale(1.15); }
.color-swatch.active { outline-color: var(--dark); }

/* Price range */
.price-range__track {
  position: relative;
  height: 4px;
  background: #e0e0e0;
  margin: 20px 0 12px;
}
.price-range__fill {
  position: absolute;
  height: 100%;
  background: var(--dark);
  pointer-events: none;
}
.price-range__input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  background: transparent;
  pointer-events: none;
  outline: none;
}
.price-range__input::-webkit-slider-thumb {
  appearance: none;
  width: 18px; height: 18px;
  background: var(--white);
  border: 2px solid var(--dark);
  border-radius: 50%;
  pointer-events: all;
  cursor: grab;
  transition: transform .2s;
}
.price-range__input::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.2); }
.price-range__labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

/* Empty state */
.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}
.shop-empty__icon { font-size: 48px; margin-bottom: 20px; }
.shop-empty__title {
  font-family: var(--font-head);
  font-size: 36px;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 12px;
}
.shop-empty__text { font-size: 15px; color: var(--gray); max-width: 400px; margin: 0 auto; }

/* Pagination */
.shop-pagination { grid-column: 1/-1; margin-top: 48px; display:flex; justify-content:center; }
.woocommerce-pagination ul { display:flex; gap:6px; list-style:none; padding:0; margin:0; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px;
  font-size:13px; font-weight:600;
  border:1.5px solid #ddd;
  color:#444;
  transition:all .2s;
  text-decoration:none;
}
.woocommerce-pagination ul li a:hover { border-color:#000; color:#000; }
.woocommerce-pagination ul li span.current { background:var(--dark); color:#fff; border-color:var(--dark); }

/* ============================================================
   EXPLORER PAGE STYLES
   ============================================================ */

/* Hero */
.explorer-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}
.explorer-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.explorer-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.1) 40%, rgba(0,0,0,.7) 80%, rgba(0,0,0,.88) 100%);
}
.explorer-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.explorer-hero__title {
  font-family: var(--font-head);
  font-size: clamp(64px, 10vw, 130px);
  color: var(--white);
  line-height: .9;
  letter-spacing: .04em;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.explorer-hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.explorer-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid #ebebeb;
  transition: box-shadow .3s, transform .3s;
}
.value-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-4px); }
.value-card__icon { font-size: 36px; margin-bottom: 20px; }
.value-card__title {
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 12px;
}
.value-card__text { font-size: 14px; line-height: 1.8; color: var(--gray); }

/* Story split */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.story-split__media {
  position: relative;
  overflow: hidden;
}
.story-split__media img { width:100%; height:100%; object-fit:cover; }
.story-split__year {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: var(--font-head);
  font-size: 160px;
  color: rgba(255,255,255,.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.story-split__body {
  background: var(--navy);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-split__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--white);
  line-height: .9;
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.story-split__title span { color: var(--gold); }
.story-split__text { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.8; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
}
.story-stat__num {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 6px;
}
.story-stat__label { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .1em; text-transform: uppercase; }

/* Tech grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tech-card { border: 1px solid #ebebeb; overflow: hidden; }
.tech-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tech-card__media img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.tech-card:hover .tech-card__media img { transform: scale(1.05); }
.tech-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  display: flex;
  align-items: flex-start;
  padding: 16px;
}
.tech-card__tag {
  background: var(--white);
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.tech-card__body { padding: 28px 28px 32px; }
.tech-card__name {
  font-family: var(--font-head);
  font-size: 26px;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 10px;
}
.tech-card__desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.tech-card__features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.tech-feat { font-size: 12px; color: #555; }
.tech-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.tech-card__link:hover { color: #555; border-color: #555; }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.rider-card { overflow: hidden; }
.rider-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.rider-card__media img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.rider-card:hover .rider-card__media img { transform: scale(1.05); }
.rider-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rider-card:hover .rider-card__overlay { opacity: 1; }
.rider-card__cta {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  border-bottom: 1px solid rgba(255,255,255,.6);
  padding-bottom: 2px;
}
.rider-card__info { padding: 16px 0 0; }
.rider-card__name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.rider-card__role { font-size: 12px; color: var(--blue); font-weight: 600; letter-spacing: .06em; margin-bottom: 6px; }
.rider-card__origin {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .04em;
}

/* Destinations */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.dest-card--featured { grid-column: span 2; grid-row: span 1; }
.dest-card { position: relative; overflow: hidden; }
.dest-card__media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.dest-card--featured .dest-card__media { aspect-ratio: 16/9; }
.dest-card__media img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.dest-card:hover .dest-card__media img { transform: scale(1.04); }
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.dest-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  color: var(--white);
}
.dest-card__name {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 6px;
}
.dest-card--featured .dest-card__name { font-size: 40px; }
.dest-card__region {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dest-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.dest-tag {
  font-size: 10px;
  font-weight: 600;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: 3px 8px;
  backdrop-filter: blur(4px);
}

/* Sustainability split */
.sustain-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.sustain-split__body {
  background: var(--off-white);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sustain-split__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--navy);
  line-height: .9;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.sustain-split__title span { color: var(--blue); }
.sustain-split__text { font-size: 15px; color: var(--gray); line-height: 1.8; max-width: 440px; }
.sustain-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 36px; }
.sustain-stat__num {
  font-family: var(--font-head);
  font-size: 44px;
  color: var(--navy);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 6px;
}
.sustain-stat__label { font-size: 12px; color: var(--gray); max-width: 120px; line-height: 1.4; }
.sustain-split__media { overflow: hidden; }
.sustain-split__media img { width:100%; height:100%; object-fit:cover; }

/* ============================================================
   RESPONSIVE — Category & Explorer pages
   ============================================================ */
@media (max-width: 1200px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .dest-card--featured { grid-column: span 2; }
}
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-split, .sustain-split { grid-template-columns: 1fr; }
  .story-split__body, .sustain-split__body { padding: 48px; order: -1; }
  .story-stats { grid-template-columns: repeat(2,1fr); }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cat-hero { height: 44vh; min-height: 300px; padding-bottom: 36px; }
  .subcats__track { padding: 0 20px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .tech-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card--featured { grid-column: span 1; }
  .explorer-hero { padding-bottom: 60px; }
  .explorer-hero__ctas { flex-direction: column; gap: 12px; }
  .story-split__body, .sustain-split__body { padding: 40px 24px; }
  .filter-panel { width: 100vw; }
}

/* ============================================================
   BLOG — ripcurl.eu/blogs/all style
   ============================================================ */

/* --- Blog Header ----------------------------------------- */
/* --- Blog Hero (ripcurl.eu style) ------------------------ */
.blog-hero {
  position: relative;
  height: 420px;
  margin-top: var(--header-h);
  overflow: hidden;
}
.blog-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-hero__title {
  position: absolute;
  bottom: 32px;
  left: 40px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  color: #fff;
  letter-spacing: .04em;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

/* --- Category Tabs --------------------------------------- */
.blog-tabs {
  position: relative;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #ededed;
}
.blog-tabs__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-tabs__list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.blog-tabs__list::-webkit-scrollbar { display: none; }
.blog-tabs__tab {
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #707070;
  white-space: nowrap;
  transition: color .2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.blog-tabs__tab:hover { color: #000; }
.blog-tabs__tab--active {
  color: #000;
  border-bottom-color: #000;
}
.blog-tabs__count {
  font-size: 12px;
  font-weight: 600;
  color: #707070;
  letter-spacing: .06em;
  white-space: nowrap;
  padding-right: 4px;
}

/* --- Blog Grid ------------------------------------------- */
.blog-main {
  background: #fff;
  padding: 48px 0 80px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}

/* --- Blog Card (ripcurl.eu style) ------------------------ */
.blog-card { position: relative; }
.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0ede8;
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-card__date {
  font-size: 11px;
  font-weight: 600;
  color: #acacac;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.blog-card__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #000;
}
.blog-card__excerpt {
  font-size: 13px;
  color: #707070;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__more {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  margin-top: 4px;
}
.blog-card:hover .blog-card__more {
  text-decoration-thickness: 2px;
}

/* --- Pagination ------------------------------------------ */
.blog-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.blog-pagination .nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.blog-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  color: #707070;
  border: 1px solid #ededed;
  transition: all .2s;
}
.blog-pagination .page-numbers:hover {
  border-color: #000;
  color: #000;
}
.blog-pagination .page-numbers.current {
  background: #000;
  color: #fff;
  border-color: #000;
}
.blog-pagination .prev,
.blog-pagination .next {
  border: none;
  color: #000;
  font-size: 20px;
}

/* --- Empty state ----------------------------------------- */
.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: #707070;
  font-size: 16px;
}
.blog-empty .btn { margin-top: 24px; }

/* --- Blog Responsive ------------------------------------- */
@media (max-width: 1024px) {
  .blog-hero { height: 320px; }
  .blog-hero__title { font-size: 48px; bottom: 24px; left: 24px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .blog-tabs__count { display: none; }
}
@media (max-width: 768px) {
  .blog-hero { height: 260px; }
  .blog-hero__title { font-size: 36px; bottom: 20px; left: 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-tabs__tab { padding: 12px 14px; font-size: 11px; }
}

/* ============================================================
   PRODUCT LISTING — ripcurl.eu style (rc- prefix)
   ============================================================ */

/* --- Breadcrumb ------------------------------------------ */
.rc-cat__breadcrumb {
  padding-top: 16px;
  padding-bottom: 8px;
  font-size: 13px;
  color: #707070;
}
.rc-cat__breadcrumb a { color: #707070; transition: color .2s; }
.rc-cat__breadcrumb a:hover { color: #000; }
.rc-bc-sep { margin: 0 6px; color: #acacac; }

/* --- Title ----------------------------------------------- */
.rc-cat__header { padding-top: 16px; padding-bottom: 12px; }
.rc-cat__title {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #000;
}

/* --- Subcategory tabs ------------------------------------ */
.rc-cat__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.rc-cat__tabs::-webkit-scrollbar { display: none; }
.rc-tab {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #707070;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s;
}
.rc-tab:hover { color: #000; }
.rc-tab--active {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* --- Sort/count bar -------------------------------------- */
.rc-topbar {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  background: #fff;
}
.rc-topbar__inner {
  max-width: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 48px;
}
.rc-topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.rc-topbar__sort select,
.rc-topbar .woocommerce-ordering select {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #000;
  cursor: pointer;
  padding: 8px 0;
  -webkit-appearance: none;
}
.rc-topbar .woocommerce-ordering { margin: 0; }

/* --- Main layout: sidebar + grid — FULL WIDTH ------------ */
.rc-cat__main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-bottom: 80px;
  width: 100%;
}

/* --- SIDEBAR FILTERS ------------------------------------- */
.rc-filters {
  align-self: start;
  padding: 24px 32px 24px 48px;
  border-right: 1px solid #ededed;
}
.rc-filters__mobile-header { display: none; }
.rc-filters-overlay { display: none; }
.rc-filter {
  padding: 20px 0;
}
.rc-filter:first-child { padding-top: 0; }
.rc-filter__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 12px;
  border-bottom: 1px solid #000;
  justify-content: flex-start;
}
.rc-filter__toggle svg {
  transition: transform .25s;
  flex-shrink: 0;
  margin-left: auto;
}
.rc-filter__body {
  padding-top: 16px;
}

/* Color swatches in filter — square style like ripcurl.eu */
.rc-filter__colors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}
.rc-color-swatch {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 2px 0;
}
.rc-color-swatch__dot {
  width: 22px;
  height: 22px;
  border-radius: 2px;
  border: 2px solid #ededed;
  flex-shrink: 0;
  transition: border-color .2s;
}
.rc-color-swatch:hover .rc-color-swatch__dot,
.rc-color-swatch input:checked + .rc-color-swatch__dot {
  border-color: #000;
}
.rc-color-swatch__label {
  font-size: 12px;
  color: #000;
  font-weight: 400;
  line-height: 1.2;
}

/* Checkbox filters */
.rc-filter__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
/* Hierarchical category tree filter */
.rc-filter__cat-tree { display: flex; flex-direction: column; gap: 4px; }
.rc-cat-group__children { padding-left: 24px; display: flex; flex-direction: column; gap: 2px; margin-top: 2px; margin-bottom: 6px; }
.rc-check--parent .rc-check__label { font-weight: 600; }
.rc-check--child .rc-check__label { font-size: 12.5px; }
.rc-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 3px 0;
}
.rc-check input { display: none; }
.rc-check__box {
  width: 18px;
  height: 18px;
  border: 1.5px solid #acacac;
  border-radius: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}
.rc-check input:checked + .rc-check__box {
  background: #000;
  border-color: #000;
}
.rc-check input:checked + .rc-check__box::after {
  content: '';
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: -2px;
}
.rc-check__label {
  font-size: 13px;
  color: #000;
}

/* --- PRODUCT GRID — full width --------------------------- */
.rc-products {
  min-width: 0;
  padding: 0 16px 0 0;
  grid-column: span 3;
}
.rc-products__topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 16px;
}
.rc-products__count {
  font-size: 13px;
  color: #707070;
}
.rc-filter-mobile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background: none;
  border: 1px solid #ededed;
  padding: 8px 14px;
  cursor: pointer;
}

/* --- Active filter tags ---------------------------------- */
.rc-active-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.rc-active-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rc-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #000;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 2px;
  cursor: pointer;
  transition: all .2s;
}
.rc-filter-tag:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.rc-filter-tag__x {
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
}
.rc-active-filters__clear {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 6px 4px;
  white-space: nowrap;
  transition: color .2s;
}
.rc-active-filters__clear:hover { color: #000; }

.rc-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 3px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* --- PRODUCT CARD — ripcurl.eu edge-to-edge style -------- */
.rc-card {
  position: relative;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
}
.rc-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f0ede8;
}
.rc-card__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.rc-card__img {
  position: absolute;
  inset: 0;
  /* !important : les styles WooCommerce (ul.products li.product a img { height:auto })
     ecrasent sinon la hauteur — les images non 3/4 ne couvraient plus la boite
     et l'image principale restait visible en bas au survol. */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.rc-card:hover .rc-card__img {
  transform: scale(1.05);
}
.rc-card__img--hover {
  opacity: 0;
  transition: transform .7s var(--ease-out), opacity .35s ease;
  /* Fond opaque : certaines photos sont détourées (fond transparent) —
     sans lui, l'image principale transparaît sous l'image de survol. */
  background: #f0ede8;
}
.rc-card:hover .rc-card__img--hover {
  opacity: 1;
}
.rc-card__img--placeholder {
  background: #f0ede8;
}

/* Badge */
.rc-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}
.rc-card__badge--sale {
  background: #c1121f;
  color: #fff;
}
.rc-card__badge--new {
  background: #000;
  color: #fff;
}

/* Size selector overlay on hover */
.rc-card__sizes {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(36px, 1fr));
  gap: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  z-index: 3;
}
.rc-card:hover .rc-card__sizes {
  opacity: 1;
  transform: none;
}
.rc-card__size {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.rc-card__size:hover {
  background: #000;
  color: #fff;
}

/* Card body */
.rc-card__body {
  padding: 10px 12px 4px;
  background: #fff;
}
.rc-card__name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #000;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 2px;
}
.rc-card__name a {
  color: inherit;
  text-decoration: none;
}
.rc-card__name a:hover { text-decoration: underline; }
.rc-card__color-name {
  font-size: 12px;
  color: #595959;
  margin-bottom: 2px;
}
.rc-card__price {
  font-size: 13px;
  color: #000;
  font-weight: 400;
}
.rc-card__price del {
  color: #767676;
  font-weight: 400;
  margin-right: 6px;
}
.rc-card__price ins {
  text-decoration: none;
  color: #c1121f;
  font-weight: 600;
}

/* Color swatches under card */
.rc-card__swatches {
  display: flex;
  gap: 5px;
  padding: 6px 0 4px;
  flex-wrap: wrap;
}
.rc-card__swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.1);
}
.rc-card__swatch:hover,
.rc-card__swatch--active {
  border-color: #000;
}
.rc-card__swatch[style*="rainbow"],
.pdp__color-dot[style*="rainbow"] {
  background: conic-gradient(red, orange, yellow, green, cyan, blue, violet, red) !important;
}

/* --- Load More Button ------------------------------------- */
.rc-load-more-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.rc-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  border: 2px solid #000;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.rc-load-more:hover {
  background: transparent;
  color: #000;
}
.rc-load-more--loading {
  opacity: .6;
  pointer-events: none;
}

/* --- Pagination (legacy, hidden) ------------------------- */
.rc-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.rc-pagination .woocommerce-pagination {
  display: flex;
  justify-content: center;
}
.rc-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  color: #707070;
  border: 1px solid #ededed;
  transition: all .2s;
}
.rc-pagination .page-numbers:hover { border-color: #000; color: #000; }
.rc-pagination .page-numbers.current { background: #000; color: #fff; border-color: #000; }

/* --- Empty -------------------------------------------- */
.rc-empty {
  text-align: center;
  padding: 80px 0;
  color: #707070;
}

/* --- Responsive ------------------------------------------ */
@media (max-width: 1024px) {
  .rc-cat__main { grid-template-columns: repeat(4, 1fr); }
  .rc-filters { padding: 20px 20px 20px 24px; }
  .rc-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .rc-cat__main { grid-template-columns: 1fr; }
  .rc-topbar { display: none; }
  .rc-filters {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1100;
    padding: 24px;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
    border-right: none;
  }
  .rc-filters--open { display: block; }
  .rc-filters__mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ededed;
  }
  .rc-filters__mobile-title {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: .05em;
  }
  .rc-filters__mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .rc-filters-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 1099;
  }
  .rc-filters-overlay--open { display: block; }
  .rc-products { padding: 0; }
  .rc-products__topbar { display: flex; }
  .rc-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2px !important; }
  .rc-cat__title { font-size: 24px; }
  .rc-tab { font-size: 11px; padding: 10px 12px; }
}

/* ============================================================
   PRODUCT DETAIL PAGE — ripcurl.eu style (pdp- prefix)
   ============================================================ */

.pdp { background: #fff; }

/* --- Breadcrumb ------------------------------------------ */
.pdp__breadcrumb {
  padding: 12px 48px 8px;
  font-size: 13px;
  color: #707070;
}
.pdp__breadcrumb a { color: #707070; }
.pdp__breadcrumb a:hover { color: #000; }
.pdp__bc-sep { margin: 0 6px; color: #acacac; }

/* --- Main: Gallery + Info -------------------------------- */
.pdp__main {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: start;
}

/* --- Gallery: 2-col image grid --------------------------- */
.pdp__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  position: relative;
}
.pdp__gallery-item {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f0ede8;
}
.pdp__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .4s ease;
}
.pdp__gallery-item img:hover {
  transform: scale(1.03);
}
.pdp__gallery-item--hidden {
  display: none;
}
.pdp__gallery-more {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: background .2s;
}
.pdp__gallery-more:hover { background: #333; }

/* --- PDP Lightbox ---------------------------------------- */
.pdp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.pdp-lightbox--open { display: flex; }
.pdp-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  padding: 8px;
}
.pdp-lightbox__close:hover { opacity: .7; }
.pdp-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  padding: 16px;
}
.pdp-lightbox__arrow:hover { opacity: .7; }
.pdp-lightbox__arrow--left { left: 12px; }
.pdp-lightbox__arrow--right { right: 12px; }
.pdp-lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  user-select: none;
}
.pdp-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .1em;
}

/* --- Product Info (sticky right) ------------------------- */
.pdp__info {
  position: sticky;
  top: var(--header-h);
  padding: 32px 48px 48px 40px;
  align-self: start;
}
.pdp__brand-logo {
  margin: 0 0 14px;
}
.pdp__brand-logo img {
  display: block;
  max-height: 42px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pdp__title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.25;
  color: #000;
  margin-bottom: 12px;
}
.pdp__price {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}
.pdp__price del {
  color: #acacac;
  font-weight: 400;
  margin-right: 8px;
}
.pdp__price ins {
  text-decoration: none;
  color: #c1121f;
  font-weight: 700;
}

/* Attribute sections */
.pdp__attr {
  margin-bottom: 24px;
}
.pdp__attr-label {
  font-size: 13px;
  color: #000;
  display: block;
  margin-bottom: 10px;
}
.pdp__attr-label strong { font-weight: 700; }

/* Color dots */
.pdp__color-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pdp__color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ededed;
  cursor: pointer;
  transition: border-color .15s;
  padding: 0;
}
.pdp__color-dot:hover,
.pdp__color-dot--active {
  border-color: #000;
}

/* Size buttons */
.pdp__size-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pdp__sizes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pdp__size-btn {
  min-width: 44px;
  height: 40px;
  border: 1px solid #ededed;
  background: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  transition: all .15s;
}
.pdp__size-btn:hover {
  border-color: #000;
}
.pdp__size-btn--active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Add to cart */
.pdp__cart {
  margin-bottom: 32px;
}
.pdp__add-btn {
  width: 100%;
  height: 48px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid #000;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.pdp__add-btn:hover {
  background: #fff;
  color: #000;
}
.pdp__add-btn:disabled {
  opacity: .7;
  cursor: wait;
}
.pdp__add-btn--added {
  background: #1a7a3a !important;
  border-color: #1a7a3a !important;
  color: #fff !important;
}

/* Complete the look */
.pdp__look {
  border-top: 1px solid #ededed;
  padding-top: 24px;
}
.pdp__look-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pdp__look-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pdp__look-card {
  text-decoration: none;
  color: inherit;
}
.pdp__look-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f0ede8;
  margin-bottom: 8px;
}
.pdp__look-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp__look-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  background: #000;
  color: #fff;
  padding: 3px 8px;
  text-transform: uppercase;
}
.pdp__look-badge--sale { background: #c1121f; }
.pdp__look-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  line-height: 1.3;
  margin-bottom: 2px;
}
.pdp__look-price {
  font-size: 11px;
  color: #474747;
}
.pdp__look-price del { color: #acacac; margin-right: 4px; }
.pdp__look-price ins { text-decoration: none; color: #c1121f; font-weight: 600; }

/* --- Accordions ------------------------------------------ */
.pdp__details {
  width: 100%;
  padding: 40px 48px 48px;
}
.pdp__accordion {
  border-top: 1px solid #e0e0e0;
}
.pdp__accordion:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.pdp__accordion-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 28px 0;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
}
.pdp__accordion-icon {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: #000;
}
.pdp__accordion-body {
  overflow: hidden;
}
.pdp__accordion-content {
  padding: 0 0 32px 36px;
  font-size: 14px;
  line-height: 1.8;
  color: #474747;
}
.pdp__accordion-content ul {
  list-style: disc;
  padding-left: 20px;
}
.pdp__accordion-content li {
  margin-bottom: 6px;
}
.pdp__desc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.pdp__desc-text {
  max-width: 600px;
  max-height: 4.5em;
  overflow: hidden;
  position: relative;
}
.pdp__desc-text--expanded {
  max-height: none;
}
.pdp__desc-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  padding: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
}
.pdp__desc-more:hover {
  text-decoration-thickness: 2px;
}
.pdp__sku {
  font-size: 13px;
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Related Products ------------------------------------ */
.pdp__related {
  padding: 48px 48px 64px;
  border-top: 1px solid #ededed;
}
.pdp__related-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 4px;
}
.pdp__related-sub {
  font-size: 14px;
  color: #707070;
  margin-bottom: 24px;
}
.pdp__related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.pdp__related-card {
  text-decoration: none;
  color: inherit;
}
.pdp__related-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f0ede8;
}
.pdp__related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pdp__related-card:hover .pdp__related-img img {
  transform: scale(1.03);
}
.pdp__related-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  padding: 10px 8px 2px;
  line-height: 1.3;
}
.pdp__related-price {
  font-size: 13px;
  color: #474747;
  padding: 0 8px 12px;
}
.pdp__related-price del { color: #acacac; margin-right: 4px; }
.pdp__related-price ins { text-decoration: none; color: #c1121f; font-weight: 600; }

/* --- PDP Responsive -------------------------------------- */
@media (max-width: 1024px) {
  .pdp__main { grid-template-columns: 1fr 360px; }
  .pdp__info { padding: 24px 24px 40px 24px; }
}
@media (max-width: 768px) {
  .pdp__main { grid-template-columns: 1fr; }
  .pdp__info {
    position: static;
    max-height: none;
    padding: 24px 20px 32px;
  }
  .pdp__gallery { gap: 2px; }
  .pdp__breadcrumb { padding: 12px 20px 8px; }
  .pdp__details { padding: 24px 20px 32px; }
  .pdp__accordion-toggle { font-size: 18px; padding: 22px 0; }
  .pdp__desc-row { flex-direction: column; gap: 16px; }
  .pdp__sku { white-space: normal; }
  .pdp__related { padding: 32px 20px 48px; }
  .pdp__related-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .pdp__look-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CART PAGE — WooCommerce Blocks Override
   ============================================================ */

/* Cart page — clean minimal style like ripcurl.eu */
.woocommerce-cart .page-hero {
  background: #fff;
  padding: calc(var(--header-h) + 12px) 0 16px;
  text-align: left;
  border-bottom: none;
}
.woocommerce-cart .page-hero .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.woocommerce-cart .page-hero__title {
  color: #000;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: .02em;
  margin-bottom: 0;
}
.woocommerce-cart .page-hero__breadcrumb {
  color: #888;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 12px;
}
.woocommerce-cart .page-hero__breadcrumb a { color: #555; }

/* Main layout */
.woocommerce-cart .woo-wrapper { padding-top: 0 !important; padding-bottom: 40px !important; }
.woocommerce-cart .entry-content { padding: 0 0 40px; }
.woocommerce-cart .wp-block-woocommerce-cart.alignwide { margin-top: 0; padding-top: 0; }
.woocommerce-cart .with-scroll-to-top__scroll-point,
.woocommerce-cart .wc-block-components-notices:empty,
.woocommerce-cart .wc-block-components-notice-snackbar-list:empty { display: none !important; height: 0 !important; margin: 0 !important; padding: 0 !important; }

.woocommerce-cart .wp-block-woocommerce-cart {
  font-family: var(--font-body);
}

/* Cart layout — override WooCommerce internal flex */
.wc-block-components-sidebar-layout.wc-block-cart {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
}
.wc-block-components-sidebar-layout.wc-block-cart .wc-block-components-main {
  flex: 1 1 0% !important;
  min-width: 0;
}
.wc-block-components-sidebar-layout.wc-block-cart .wc-block-components-sidebar {
  flex: 0 0 320px !important;
  max-width: 320px;
}

/* Cart items — full-width table */
.wc-block-cart .wc-block-cart-items {
  width: 100% !important;
  border-collapse: collapse;
}

/* Table header */
.wc-block-cart-items__header {
  border-bottom: 2px solid #000;
}
.wc-block-cart-items__header th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #000;
  padding: 0 0 12px;
}
.wc-block-cart-items__header th:last-child { text-align: right; }

/* Cart item row */
.wc-block-cart-items__row {
  border-bottom: 1px solid #ededed;
  padding: 24px 0;
}
.wc-block-cart-items__row td { padding: 20px 8px 20px 0; vertical-align: top; }

/* Product image */
.wc-block-cart-item__image {
  width: 120px !important;
  min-width: 120px;
  vertical-align: top;
  padding-right: 16px !important;
}
.wc-block-cart-item__image img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: 0;
}

/* Product info — take remaining space */
.wc-block-cart-item__product {
  width: auto !important;
}

/* Product name */
.wc-block-components-product-name {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #000 !important;
  text-transform: uppercase;
  text-decoration: none !important;
  letter-spacing: .02em;
  display: block;
  margin-bottom: 4px;
}
.wc-block-components-product-name:hover {
  text-decoration: underline !important;
}

/* Item total — right align */
.wc-block-cart-item__total {
  text-align: right !important;
  white-space: nowrap;
}

/* Product meta (couleur, taille) */
.wc-block-components-product-details {
  margin-top: 6px;
}
.wc-block-components-product-details__name,
.wc-block-components-product-details__value {
  font-size: 12px;
  color: #707070;
}

/* Prices */
.wc-block-cart-item__prices {
  font-size: 14px;
  color: #000;
}
.wc-block-cart-item__prices del {
  color: #acacac;
}
.wc-block-cart-item__prices ins {
  text-decoration: none;
  color: #c1121f;
  font-weight: 600;
}

/* Quantity controls */
.wc-block-cart-item__quantity .wc-block-components-quantity-selector {
  border: 1.5px solid #000;
  border-radius: 0;
  height: 40px;
}
.wc-block-cart-item__quantity .wc-block-components-quantity-selector input {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.wc-block-cart-item__quantity .wc-block-components-quantity-selector__button {
  color: #000;
  font-size: 18px;
}

/* Remove link */
.wc-block-cart-item__remove-link {
  font-size: 0;
  color: #acacac;
  transition: color .2s;
}
.wc-block-cart-item__remove-link:hover { color: #000; }

/* Item total */
.wc-block-cart-item__total {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  vertical-align: top;
  padding-top: 20px;
}

/* Sale badge */
.wc-block-components-product-badge {
  background: #c1121f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  padding: 3px 8px;
}

/* SIDEBAR: Cart Totals */
.wc-block-cart__sidebar {
  background: #f2eee7;
  padding: 28px 24px;
  border: none;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.wc-block-cart__totals-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #000;
}

/* Totals rows */
.wc-block-components-totals-item {
  font-family: var(--font-body);
}
.wc-block-components-totals-item__label {
  font-size: 14px;
  color: #000;
}
.wc-block-components-totals-item__value {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-size: 16px;
  font-weight: 700;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 18px;
  font-weight: 700;
}

/* Checkout button */
.wc-block-cart__submit-button {
  width: 100%;
  height: 50px;
  background: #000 !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  border: 2px solid #000 !important;
  border-radius: 0 !important;
  transition: background .25s, color .25s !important;
}
.wc-block-cart__submit-button:hover {
  background: #fff !important;
  color: #000 !important;
}

/* Coupon panel */
.wc-block-components-panel__button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

/* Empty cart */
/* Hide default WC empty cart — replace with compact custom layout */
.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  padding: 0 !important;
  min-height: 0 !important;
  max-height: 80px !important;
  overflow: hidden !important;
}
.woocommerce-cart .wp-block-woocommerce-empty-cart-block > * { display: none !important; }
.woocommerce-cart .wp-block-woocommerce-empty-cart-block::after {
  content: 'Votre panier est vide';
  display: block !important;
  text-align: center;
  padding: 32px 24px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #666;
}
/* Also force the whole cart block compact */
.woocommerce-cart .wp-block-woocommerce-cart {
  min-height: 0 !important;
}
.woocommerce-cart .rc-empty-cart-cta {
  text-align: center;
  padding: 0 24px 48px;
}
.woocommerce-cart .rc-empty-cart-cta a {
  display: inline-block;
  padding: 14px 40px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 2px solid #000;
  transition: background .25s, color .25s;
}
.woocommerce-cart .rc-empty-cart-cta a:hover {
  background: #fff;
  color: #000;
}
.wc-block-cart--is-empty .wc-block-cart__empty-cart__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 16px;
}
.wc-block-cart--is-empty p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}
.wc-block-cart--is-empty .wc-block-components-button {
  display: inline-block;
  padding: 14px 40px;
  background: #000 !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  border: 2px solid #000 !important;
  border-radius: 0 !important;
  transition: background .25s, color .25s !important;
}
.wc-block-cart--is-empty .wc-block-components-button:hover {
  background: #fff !important;
  color: #000 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .wc-block-cart__main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  .wc-block-cart-item__image { width: 90px !important; min-width: 90px; }
  .wc-block-cart-item__image img { width: 90px; height: 110px; }
  .wc-block-cart__sidebar { padding: 24px 20px; }
  .woocommerce-cart .page-hero .container { padding: 0 16px; }
}

/* =============================================================
   CHECKOUT PAGE — same minimal style as cart
   ============================================================= */

/* Hero: white bg, compact title */
.woocommerce-checkout .page-hero {
  background: #fff;
  padding: calc(var(--header-h) + 12px) 0 16px;
  text-align: left;
  border-bottom: none;
}
.woocommerce-checkout .page-hero .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.woocommerce-checkout .page-hero__title {
  color: #000;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: .02em;
  margin-bottom: 0;
}
.woocommerce-checkout .page-hero__breadcrumb {
  color: #888;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 12px;
}
.woocommerce-checkout .page-hero__breadcrumb a { color: #555; }

/* Remove woo-wrapper padding */
.woocommerce-checkout .woo-wrapper { padding-top: 0 !important; padding-bottom: 40px !important; }
.woocommerce-checkout .entry-content { padding: 0 0 40px; }

/* Checkout layout — form left, summary right */
.wc-block-components-sidebar-layout.wc-block-checkout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 48px;
  flex-wrap: nowrap !important;
}
.wc-block-components-sidebar-layout.wc-block-checkout .wc-block-components-main {
  flex: 1 1 0% !important;
  min-width: 0;
  max-width: 620px;
}
.wc-block-components-sidebar-layout.wc-block-checkout .wc-block-components-sidebar {
  flex: 0 0 480px !important;
  max-width: 480px;
}

/* Form fields */
.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-text-input textarea,
.wc-block-checkout select {
  font-family: var(--font-body) !important;
  border-radius: 0 !important;
  border-color: #ccc !important;
}
.wc-block-checkout .wc-block-components-text-input input:focus,
.wc-block-checkout select:focus {
  border-color: #000 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Section headings */
.wc-block-checkout .wc-block-components-checkout-step__heading {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #000 !important;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Order summary sidebar — override WC blocks defaults */
.wc-block-checkout .wc-block-components-sidebar {
  width: auto !important;
  padding-left: 0 !important;
}
.wc-block-checkout .wc-block-components-sidebar .wc-block-components-order-summary {
  background: #f7f6f3;
  padding: 28px 24px;
  border: 1px solid #e8e5e0;
}
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-order-summary__button-text {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Product lines: override table-cell → flex row with image, info stacked, price right */
.wc-block-checkout .wc-block-components-order-summary-item {
  display: grid !important;
  grid-template-columns: 70px 1fr auto !important;
  grid-template-rows: auto !important;
  gap: 0 14px !important;
  padding: 16px 0 !important;
  align-items: start !important;
}
.wc-block-checkout .wc-block-components-order-summary-item__description,
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__image {
  display: block !important;
  vertical-align: unset !important;
}
.wc-block-checkout .wc-block-components-order-summary-item__image {
  grid-row: 1 / -1 !important;
  width: 70px !important;
  min-width: 70px !important;
  padding: 0 !important;
  margin: 0 !important;
}
.wc-block-checkout .wc-block-components-order-summary-item__image > img {
  width: 70px !important;
  max-width: 70px !important;
  height: 88px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}
.wc-block-checkout .wc-block-components-order-summary-item__description {
  grid-column: 2 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  min-width: 0 !important;
}
.wc-block-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-name {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #000 !important;
  line-height: 1.35 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}
.wc-block-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-metadata {
  font-size: 12px !important;
  color: #666 !important;
  margin-top: 4px !important;
  line-height: 1.4 !important;
}
.wc-block-checkout .wc-block-components-order-summary-item__total-price {
  grid-column: 3 !important;
  grid-row: 1 !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  text-align: right !important;
}
.wc-block-checkout .wc-block-components-order-summary-item__individual-price {
  font-size: 11px !important;
  color: #888 !important;
}
/* Hide the "ÉCONOMISEZ" sale badge in checkout summary */
.wc-block-checkout .wc-block-components-sale-badge {
  display: none !important;
}
.wc-block-checkout .wc-block-components-order-summary-item__quantity {
  background: #000 !important;
  color: #fff !important;
  font-size: 10px !important;
  min-width: 20px !important;
  height: 20px !important;
  line-height: 20px !important;
  border-radius: 50% !important;
  text-align: center !important;
}

/* Coupon input */
.wc-block-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__button {
  border-radius: 0 !important;
}

/* Totals */
.wc-block-checkout .wc-block-components-totals-wrapper {
  padding: 12px 0 !important;
}
.wc-block-checkout .wc-block-components-totals-item__label {
  font-family: var(--font-body);
  font-size: 14px;
  color: #000;
}
.wc-block-checkout .wc-block-components-totals-item__value {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #000;
}
.wc-block-checkout .wc-block-components-totals-footer-item {
  padding-top: 16px !important;
  margin-top: 8px !important;
  border-top: 2px solid #000 !important;
}
.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-size: 16px;
  font-weight: 700;
}
.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 18px;
  font-weight: 700;
}

/* Place order button */
.wc-block-checkout .wc-block-components-checkout-place-order-button {
  width: 100%;
  height: 52px;
  margin-top: 16px;
  background: #000 !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  border: 2px solid #000 !important;
  border-radius: 0 !important;
  transition: background .25s, color .25s !important;
}
.wc-block-checkout .wc-block-components-checkout-place-order-button:hover {
  background: #fff !important;
  color: #000 !important;
}

/* Hide scroll-to-top and empty notices */
.woocommerce-checkout .with-scroll-to-top__scroll-point,
.woocommerce-checkout .wc-block-components-notices:empty { display: none !important; }

/* Spacing entre champ pays et champs suivants (prénom/nom) */
.woocommerce-checkout .wc-block-components-address-form__country {
  margin-bottom: 16px;
}
.woocommerce-checkout .wc-block-components-address-form .wc-block-components-text-input {
  margin-top: 0;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .wc-block-components-sidebar-layout.wc-block-checkout {
    flex-wrap: wrap !important;
  }
  .wc-block-components-sidebar-layout.wc-block-checkout .wc-block-components-main {
    max-width: 100%;
  }
  .wc-block-components-sidebar-layout.wc-block-checkout .wc-block-components-sidebar {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .wc-block-components-sidebar-layout.wc-block-checkout {
    padding: 0 16px;
    gap: 24px;
  }
  .woocommerce-checkout .page-hero .container { padding: 0 16px; }
}

/* =============================================================
   FLASHBOMB FUSION LANDING PAGE
   ============================================================= */

/* --- Hero --- */
.fb-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fb-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fb-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.fb-hero__label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fb-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(80px, 12vw, 160px);
  line-height: .9;
  letter-spacing: .03em;
  color: #c1121f;
  text-shadow: 0 0 40px rgba(230, 57, 70, .4);
  margin: 0;
}
.fb-hero__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 32px;
}
.fb-hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: .02em;
  margin: 0;
  color: #fff;
}

/* --- Intro --- */
.fb-intro {
  background: #000;
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.fb-intro__inner,
.fb-intro.wp-block-group > * {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.fb-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: .03em;
  margin: 0 0 8px;
}
.fb-intro__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: #aaa;
  margin: 0 0 24px;
  text-transform: lowercase;
  font-style: italic;
}
.fb-intro__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin: 0 0 32px;
}
.fb-intro__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Gutenberg button overrides for Flashbomb */
.fb-btn-outline .wp-block-button__link {
  background: transparent !important; color: #fff !important;
  border: 2px solid #fff !important; border-radius: 0 !important;
  padding: 14px 32px; font-size: 13px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; text-decoration: none;
  transition: all .3s ease;
}
.fb-btn-outline .wp-block-button__link:hover { background: #fff !important; color: #000 !important; }
.fb-machine-img.wp-block-image { margin: 0 !important; }
.fb-machine-img img { width: 100%; height: auto; display: block; }
.fb-page .wp-block-group { margin-top: 0; margin-bottom: 0; }

/* --- Buttons --- */
.fb-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
}
.fb-btn--outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.fb-btn--outline:hover {
  background: #fff;
  color: #000;
}
.fb-btn--white {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}
.fb-btn--white:hover {
  background: transparent;
  color: #fff;
}
.fb-btn--outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.fb-btn--outline-white:hover {
  background: #fff;
  color: #000;
}

/* --- Product Carousel --- */
.fb-products {
  background: #000;
  color: #fff;
  padding: 60px 0 80px;
}
.fb-products__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.fb-products__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: .03em;
  margin: 0 0 32px;
}
.fb-carousel {
  position: relative;
}
.fb-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.fb-carousel__track::-webkit-scrollbar { display: none; }

.fb-carousel__arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
}
.fb-carousel__arrow:hover {
  border-color: #fff;
  background: rgba(0,0,0,.9);
}
.fb-carousel__arrow--left  { left: -8px; }
.fb-carousel__arrow--right { right: -8px; }

.fb-pcard {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.fb-pcard__media {
  position: relative;
  width: 280px;
  height: 360px;
  overflow: hidden;
  background: #111;
}
.fb-pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .4s ease;
}
.fb-pcard__hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.fb-pcard:hover .fb-pcard__hover { opacity: 1; }
.fb-pcard:hover .fb-pcard__media img:first-child { opacity: 0; }
.fb-pcard__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  line-height: 1.4;
  color: #fff;
}

/* --- Video --- */
.fb-video {
  width: 100%;
  background: #000;
  line-height: 0;
}
.fb-video video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80vh;
  object-fit: cover;
}

/* --- Hotspot --- */
.fb-hotspot {
  background: #000;
  color: #fff;
  padding: 80px 24px;
}
.fb-hotspot__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fb-hotspot__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: .03em;
  margin: 0 0 24px;
}
.fb-hotspot__text p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
  margin: 0 0 16px;
}
.fb-hotspot__ctas {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.fb-hotspot__media {
  position: relative;
}
.fb-hotspot__media > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.fb-hotspot__features {
  position: absolute;
  inset: 0;
}
.fb-hotspot__dot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(230, 57, 70, .8);
  border: 2px solid #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 0;
  transition: transform .2s;
}
.fb-hotspot__dot:hover,
.fb-hotspot__dot.is-active {
  transform: translate(-50%, -50%) scale(1.2);
  background: #c1121f;
}
.fb-hotspot__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(230, 57, 70, .5);
  animation: fb-pulse 2s infinite;
}
@keyframes fb-pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.fb-hotspot__tip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 24px);
  background: rgba(0,0,0,.9);
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  max-width: 260px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  z-index: 4;
  white-space: normal;
}
.fb-hotspot__tip.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* --- Tech Grid --- */
.fb-techgrid {
  background: #000;
  color: #fff;
  padding: 80px 24px;
}
.fb-techgrid__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.fb-techgrid__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: .03em;
  margin: 0 0 40px;
}
.fb-techgrid__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fb-techcard {
  background: #111;
  overflow: hidden;
}
.fb-techcard__media {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.fb-techcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.fb-techcard:hover .fb-techcard__media img {
  transform: scale(1.05);
}
.fb-techcard__name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin: 20px 20px 8px;
  color: #fff;
}
.fb-techcard__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
  margin: 0 20px 20px;
}

/* --- Machine GIF --- */
.fb-machine {
  background: #000;
  text-align: center;
  padding: 40px 0;
}
.fb-machine img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* --- Innovation Timeline --- */
.fb-timeline {
  background: #000;
  color: #fff;
  padding: 80px 24px 100px;
}
.fb-timeline__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.fb-timeline__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: .03em;
  margin: 0 0 16px;
  max-width: 700px;
}
.fb-timeline__intro {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #aaa;
  max-width: 600px;
  margin: 0 0 40px;
}
.fb-tl-carousel {
  position: relative;
}
.fb-tl-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.fb-tl-carousel__track::-webkit-scrollbar { display: none; }

.fb-tl-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.fb-tl-card__media {
  width: 280px;
  height: 280px;
  overflow: hidden;
  background: #111;
}
.fb-tl-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.fb-tl-card:hover .fb-tl-card__media img {
  transform: scale(1.05);
}
.fb-tl-card__year {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: .02em;
  margin: 16px 0 6px;
  color: #fff;
}
.fb-tl-card__rider {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: #aaa;
  margin: 0;
}

/* --- Hide page hero for Flashbomb template --- */
.page-template-template-flashbomb-fusion .page-hero,
.page-template-template-flashbomb-fusion .woo-wrapper {
  display: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .fb-hotspot__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fb-techgrid__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .fb-hero { min-height: 500px; }
  .fb-intro { padding: 48px 20px; }
  .fb-products { padding: 40px 0 60px; }
  .fb-products__inner { padding: 0 16px; }
  .fb-pcard { flex: 0 0 220px; }
  .fb-pcard__media { width: 220px; height: 280px; }
  .fb-hotspot { padding: 48px 16px; }
  .fb-hotspot__ctas { flex-direction: column; }
  .fb-techgrid { padding: 48px 16px; }
  .fb-techgrid__grid { grid-template-columns: 1fr; }
  .fb-timeline { padding: 48px 16px 60px; }
  .fb-tl-card { flex: 0 0 240px; }
  .fb-tl-card__media { width: 240px; height: 240px; }
  .fb-carousel__arrow { display: none; }
  .fb-intro__ctas { flex-direction: column; align-items: center; }
}

/* ============================================================
   GPS3 WATCH LANDING PAGE — Gutenberg blocks + .gps3- prefix
   Pixel-perfect replica of ripcurl.eu/pages/search-gps3-watch
   ============================================================ */

/* --- Page wrapper --- */
.gps3-page { overflow-x: hidden; }
.gps3-page .wp-block-group { margin-top: 0; margin-bottom: 0; }
.gps3-page .alignfull { width: 100vw; max-width: 100vw; margin-left: calc(-50vw + 50%); }

/* --- HERO (Cover block) --- */
.gps3-hero.wp-block-cover { min-height: 100vh; aspect-ratio: 2/1; }
.gps3-hero > .wp-block-cover__inner-container {
  width: 100% !important; max-width: 100% !important;
  margin: 0 !important; padding: 0 !important;
  display: flex !important; align-items: center; justify-content: flex-start;
}
.gps3-hero__content.wp-block-group {
  max-width: 480px; padding: 0 80px; text-align: left;
  margin: 0 !important;
}
.gps3-hero__title.wp-block-heading {
  font-family: var(--font-heading), "Helvetica Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 140px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #fff;
  margin: 0 0 24px;
}
.gps3-hero__bullets { list-style: none; padding: 0; margin: 0 0 32px; color: #fff; font-size: 16px; line-height: 1.6; }
.gps3-hero__bullets li { margin-bottom: 4px; }
.gps3-hero__ctas.wp-block-buttons { gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.gps3-btn-solid-white .wp-block-button__link {
  background: #fff !important; color: #000 !important; border: 1px solid transparent;
  border-radius: 0 !important; padding: 0 24px; height: 44px; display: inline-flex;
  align-items: center; font-size: 14px; font-weight: 700; text-transform: uppercase;
  text-decoration: none; transition: all .25s;
}
.gps3-btn-solid-white .wp-block-button__link:hover { background: transparent !important; color: #fff !important; border-color: #fff; }
.gps3-btn-outline-white .wp-block-button__link {
  background: transparent !important; color: #fff !important; border: 1px solid #fff !important;
  border-radius: 0 !important; padding: 0 24px; height: 44px; display: inline-flex;
  align-items: center; font-size: 14px; font-weight: 700; text-transform: uppercase;
  text-decoration: none; transition: all .25s;
}
.gps3-btn-outline-white .wp-block-button__link:hover { background: #fff !important; color: #000 !important; }

/* --- HOTSPOT (Watch Features: text left, image right) --- */
.gps3-hotspot { padding: 96px 48px 64px; }
.gps3-hotspot__cols.wp-block-columns { flex-wrap: nowrap; align-items: center; gap: 48px; }
.gps3-hotspot__text { flex: 1; }
.gps3-hotspot__title.wp-block-heading {
  font-family: var(--font-heading), "Helvetica Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 90px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.04em; line-height: 0.95;
  color: #000; margin: 0 0 24px;
}
.gps3-hotspot__list { list-style: none; padding: 0; font-size: 16px; line-height: 1.6; color: #000; }
.gps3-hotspot__list li { margin-bottom: 8px; }
.gps3-hotspot__media { flex: 1; }
.gps3-hotspot__img.wp-block-image { margin: 0; }
.gps3-hotspot__img img { width: 100%; height: auto; }

/* --- PRODUCTS (3 watch variants) --- */
.gps3-products { padding: 48px 48px 64px; }
.gps3-products__title.wp-block-heading {
  font-size: 32px; font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.036em; color: #000; margin: 0 0 32px;
}
.gps3-products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gps3-pcard { position: relative; }
.gps3-pcard__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 12px; font-size: 14px; font-weight: 700; text-transform: uppercase;
}
.gps3-pcard__badge--white { background: #fff; color: #000; }
.gps3-pcard__badge--black { background: #000; color: #fff; }
.gps3-pcard__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #f5f5f5; }
.gps3-pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.gps3-pcard__img2 { position: absolute; inset: 0; opacity: 0; }
.gps3-pcard:hover .gps3-pcard__img2 { opacity: 1; }
.gps3-pcard:hover .gps3-pcard__img1 { opacity: 0; }
.gps3-pcard__info { padding: 16px 0; }
.gps3-pcard__name { font-size: 14px; font-weight: 700; color: #000; margin-bottom: 4px; }
.gps3-pcard__price { font-size: 14px; color: #000; }

/* --- WHAT'S NEW (Feature cards carousel) --- */
.gps3-whatsnew { padding: 48px 40px; }
.gps3-whatsnew__title.wp-block-heading {
  font-size: 38px; font-weight: 700; text-transform: capitalize;
  letter-spacing: -0.03em; color: #000; margin: 0 0 16px;
}
.gps3-whatsnew__intro { font-size: 16px; line-height: 1.5; color: #000; margin: 0 0 32px; max-width: 700px; }

/* Card scroll container (shared by features + app) */
.gps3-card-scroll {
  display: flex; gap: 40px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 0 0 8px;
}
.gps3-card-scroll::-webkit-scrollbar { display: none; }
.gps3-fcard {
  flex: 0 0 calc(25% - 30px); min-width: 260px;
  scroll-snap-align: start;
}
.gps3-fcard > img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
  transition: transform .3s;
}
.gps3-fcard:hover > img { transform: scale(1.05); }
.gps3-fcard__title {
  font-size: 28px; font-weight: 400; text-transform: capitalize;
  letter-spacing: -0.025em; color: #000; margin: 24px 0 16px;
}
.gps3-fcard__desc { font-size: 14px; line-height: 1.25; color: #000; margin: 0; }

/* --- HOW TO GUIDE (50/50 image + text) --- */
.gps3-howto { padding: 0; }
.gps3-howto__cols.wp-block-columns { flex-wrap: nowrap; gap: 0; margin: 0; }
.gps3-howto__media.wp-block-column { flex-basis: 50% !important; }
.gps3-howto__media .wp-block-image { margin: 0; }
.gps3-howto__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform .3s; }
.gps3-howto__media:hover img { transform: scale(1.05); }
.gps3-howto__text.wp-block-column {
  flex-basis: 50% !important; display: flex; flex-direction: column;
  justify-content: center; padding: 24px 120px;
}
.gps3-howto__heading.wp-block-heading {
  font-size: 50px; font-weight: 700; text-transform: uppercase;
  color: #000; margin: 0 0 16px;
}
.gps3-howto__desc { font-size: 14px; line-height: 1.25; color: #000; margin: 0 0 24px; }
.gps3-btn-text .wp-block-button__link {
  background: transparent !important; color: #000 !important;
  border: none !important; border-radius: 0 !important;
  text-decoration: underline; font-size: 14px; font-weight: 700;
  text-transform: uppercase; padding: 0;
}

/* --- COMPARISON TABLE --- */
.gps3-compare { padding: 96px 48px 64px; }
.gps3-compare__title.wp-block-heading {
  font-size: 38px; font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; color: #000; margin: 0 0 32px;
}
.gps3-compare__table.wp-block-table table { border-collapse: collapse; width: 100%; max-width: 900px; }
.gps3-compare__table table th,
.gps3-compare__table table td {
  padding: 12px 16px; font-size: 16px; text-align: left; border: none;
}
.gps3-compare__table table th { font-weight: 700; text-transform: uppercase; border-bottom: 1px solid #ddd; }
.gps3-compare__table table td:first-child { font-weight: 700; }
.gps3-compare__table.is-style-stripes tbody tr:nth-child(odd) { background: #fff; }
.gps3-compare__table.is-style-stripes tbody tr:nth-child(even) { background: #fbf9f9; }

/* --- BANNERS (5 stacked full-width images) --- */
.gps3-banner.wp-block-image { margin: 0 !important; }
.gps3-banner img { width: 100%; height: auto; display: block; transition: transform .3s; }
.gps3-banner:hover img { transform: scale(1.03); }
.gps3-banner.wp-block-image figcaption { display: none; }

/* --- APP SECTION --- */
.gps3-app { padding: 96px 40px 48px; }
.gps3-app__title.wp-block-heading {
  font-size: 38px; font-weight: 700; text-transform: capitalize;
  letter-spacing: -0.03em; color: #000; margin: 0 0 8px;
}
.gps3-app__note { font-size: 16px; color: #000; margin: 0 0 24px; }
.gps3-app .wp-block-buttons { margin-bottom: 40px; }
.gps3-btn-outline-black .wp-block-button__link {
  background: transparent !important; color: #000 !important;
  border: 1px solid #000 !important; border-radius: 0 !important;
  padding: 0 24px; height: 44px; display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  text-decoration: none; transition: all .25s;
}
.gps3-btn-outline-black .wp-block-button__link:hover { background: #000 !important; color: #fff !important; }
.gps3-card-scroll--5 .gps3-fcard { flex: 0 0 calc(20% - 32px); min-width: 220px; }

/* --- GPS3 RESPONSIVE --- */
@media (max-width: 1024px) {
  .gps3-hero .wp-block-cover__inner-container { max-width: 50%; padding: 0 40px; }
  .gps3-hotspot { padding: 48px 24px; }
  .gps3-hotspot__cols.wp-block-columns { flex-direction: column; }
  .gps3-hotspot__title.wp-block-heading { font-size: 3rem; }
  .gps3-products__grid { grid-template-columns: repeat(2, 1fr); }
  .gps3-howto__cols.wp-block-columns { flex-direction: column; }
  .gps3-howto__text.wp-block-column { padding: 32px 24px; }
  .gps3-fcard { flex: 0 0 calc(33% - 27px); min-width: 240px; }
}

@media (max-width: 768px) {
  .gps3-hero .wp-block-cover__inner-container { max-width: 100%; padding: 0 16px; }
  .gps3-hero__title.wp-block-heading { font-size: 2.5rem; }
  .gps3-hotspot__title.wp-block-heading { font-size: 2.2rem; }
  .gps3-products { padding: 32px 16px; }
  .gps3-products__grid { grid-template-columns: 1fr; max-width: 400px; }
  .gps3-whatsnew { padding: 32px 16px; }
  .gps3-whatsnew__title.wp-block-heading { font-size: 1.6rem; }
  .gps3-card-scroll { gap: 16px; }
  .gps3-fcard { flex: 0 0 80vw; min-width: 0; }
  .gps3-fcard__title { font-size: 22px; }
  .gps3-howto__heading.wp-block-heading { font-size: 2rem; }
  .gps3-compare { padding: 48px 16px; }
  .gps3-compare__title.wp-block-heading { font-size: 1.4rem; }
  .gps3-compare__table table th,
  .gps3-compare__table table td { padding: 8px 10px; font-size: 13px; }
  .gps3-app { padding: 48px 16px; }
  .gps3-app__title.wp-block-heading { font-size: 1.4rem; }
  .gps3-card-scroll--5 .gps3-fcard { flex: 0 0 80vw; }
}

/* ============================================================
   TEAM PAGE — .team- prefix
   Replica of ripcurl.eu/pages/team
   ============================================================ */
.team-page { padding-top: var(--header-h, 92px); }
.team-page .wp-block-group { margin-top: 0; margin-bottom: 0; }

/* --- Intro --- */
.team-intro { padding: 40px 48px 40px; }
.team-intro__title.wp-block-heading {
  font-size: 50px; font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; color: #000; margin: 0 0 24px;
}
.team-intro__text { font-size: 14px; line-height: 1.25; color: #000; max-width: 800px; margin: 0 auto 12px !important; }

/* --- Bento Gallery --- */
.team-bento { padding: 0 0 4px; }
.team-bento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 172px);
  gap: 4px;
}
.team-bento__item { overflow: hidden; }
.team-bento__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-bento__item:hover img { transform: scale(1.05); }
.team-bento__large-left  { grid-column: 1 / 3; grid-row: 1 / 3; }
.team-bento__sm-bl       { grid-column: 1; grid-row: 3; }
.team-bento__sm-br       { grid-column: 2; grid-row: 3; }
.team-bento__sm-tl       { grid-column: 3; grid-row: 1; }
.team-bento__sm-tr       { grid-column: 4; grid-row: 1; }
.team-bento__large-right { grid-column: 3 / 5; grid-row: 2 / 4; }

/* --- Athletes Accordion --- */
.team-accordion { position: relative; }
.team-acc__item { border-top: 1px solid #ddd; }
.team-acc__header {
  display: flex; align-items: center; gap: 24px;
  width: 100%; padding: 24px 48px; border: 0; background: #fff;
  cursor: pointer; text-align: left; transition: background .3s, color .3s;
}
.team-acc__header:hover,
.team-acc__item.is-open .team-acc__header {
  background: #162B64; color: #fff;
}
.team-acc__toggle {
  font-size: 32px; font-weight: 300; line-height: 1; flex-shrink: 0; width: 32px; text-align: center;
}
.team-acc__name {
  font-size: clamp(2rem, 4vw, 64px); font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.04em; margin: 0; line-height: 1;
}
.team-acc__body { background: #162B64; color: #fff; overflow: hidden; }
.team-acc__content {
  display: flex; gap: 48px; padding: 0 48px 48px; align-items: flex-start;
}
.team-acc__media { flex: 0 0 50%; max-width: 800px; }
.team-acc__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.team-acc__info { flex: 1; padding-top: 8px; }
.team-acc__heading { font-size: 26px; font-weight: 700; line-height: 1.1; margin: 0 0 16px; color: #fff; }
.team-acc__bio { font-size: 14px; line-height: 1.5; margin: 0 0 24px; color: rgba(255,255,255,.85); }
.team-acc__btn {
  display: inline-flex; align-items: center; height: 44px; padding: 0 24px;
  border: 1px solid #fff; color: #fff; background: transparent;
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  text-decoration: none; transition: all .25s;
}
.team-acc__btn:hover { background: #fff; color: #162B64; }

/* --- Blog Tiles --- */
.team-blog { padding: 40px 40px 96px; }
.team-blog__heading.wp-block-heading {
  font-size: 38px; font-weight: 700; text-transform: capitalize;
  letter-spacing: -0.03em; color: #000; margin: 0 0 8px;
}
.team-blog__desc { font-size: 16px; color: #000; margin: 0 0 32px; }
.team-tiles {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px;
}
.team-tile {
  position: relative; overflow: hidden; height: 500px;
}
.team-tile--span-6 { grid-column: span 6; }
.team-tile--span-3 { grid-column: span 3; }
.team-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-tile:hover img { transform: scale(1.05); }
.team-tile__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
}
.team-tile__date { font-size: 12px; color: #fff; margin-bottom: 8px; }
.team-tile__title { font-size: 20px; font-weight: 700; color: #fff; margin: 0; line-height: 1.2; }

/* --- Team Responsive --- */
@media (max-width: 1024px) {
  .team-bento__grid { grid-template-rows: repeat(3, 140px); }
  .team-acc__content { flex-direction: column; gap: 24px; }
  .team-acc__media { flex: none; max-width: 100%; }
  .team-acc__name { font-size: 2.5rem; }
  .team-tiles { grid-template-columns: repeat(6, 1fr); }
  .team-tile--span-3 { grid-column: span 3; }
  .team-tile { height: 350px; }
}

@media (max-width: 768px) {
  .team-intro { padding: 24px 16px; }
  .team-intro__title.wp-block-heading { font-size: 2rem; }
  .team-bento__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(6, 120px); }
  .team-bento__large-left  { grid-column: 1 / 3; grid-row: 1 / 3; }
  .team-bento__sm-bl       { grid-column: 1; grid-row: 3; }
  .team-bento__sm-br       { grid-column: 2; grid-row: 3; }
  .team-bento__sm-tl       { grid-column: 1; grid-row: 4; }
  .team-bento__sm-tr       { grid-column: 2; grid-row: 4; }
  .team-bento__large-right { grid-column: 1 / 3; grid-row: 5 / 7; }
  .team-acc__header { padding: 16px; gap: 16px; }
  .team-acc__name { font-size: 1.6rem; }
  .team-acc__content { padding: 0 16px 32px; }
  .team-acc__heading { font-size: 20px; }
  .team-blog { padding: 24px 16px 48px; }
  .team-blog__heading.wp-block-heading { font-size: 1.6rem; }
  .team-tiles { grid-template-columns: 1fr; }
  .team-tile--span-6, .team-tile--span-3 { grid-column: span 1; }
  .team-tile { height: 300px; }
}

/* --- Sitemap Page ----------------------------------------- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 64px;
}
.sitemap-col__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
}
.sitemap-col__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-col__links li {
  padding: 5px 0;
}
.sitemap-col__links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: #444;
  transition: color .2s;
}
.sitemap-col__links a:hover { color: #000; }
.sitemap-col__links ul {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 4px 0 8px;
}
.sitemap-col__links ul a { font-size: 13px; color: #777; }
.sitemap-col__links ul a:hover { color: #000; }

@media (max-width: 1024px) {
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 768px) {
  .sitemap-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* --- Editorial Pages (About, Planet, B-Corp, etc.) -------- */

.ep-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 450px;
  overflow: hidden;
  background: #000;
}
.ep-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ep-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px;
}
.ep-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 100px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: .95;
  margin: 0 0 16px;
  letter-spacing: 2px;
}
.ep-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 20px);
  color: rgba(255,255,255,.9);
  max-width: 700px;
  line-height: 1.5;
  margin: 0;
}

.ep-section {
  padding: 72px 64px;
  max-width: 960px;
  margin: 0 auto;
}
.ep-section--wide { max-width: 1300px; }
.ep-section--full { max-width: 100%; padding-left: 48px; padding-right: 48px; }
.ep-section--center { text-align: center; }
.ep-section--dark { background: #000; color: #fff; max-width: 100%; }
.ep-section--sand { background: #f2eee7; max-width: 100%; }

.ep-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 28px;
  line-height: 1;
}
.ep-section--dark h2 { color: #fff; }
.ep-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 16px;
  letter-spacing: .5px;
}
.ep-section p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: #474747;
  margin: 0 0 20px;
}
.ep-section--dark p { color: rgba(255,255,255,.8); }
.ep-section p:last-child { margin-bottom: 0; }

.ep-lead {
  font-size: clamp(18px, 2vw, 24px) !important;
  font-weight: 500;
  color: #000 !important;
}

.ep-fullimg {
  width: 100%;
  overflow: hidden;
}
.ep-fullimg img {
  width: 100%;
  height: auto;
  display: block;
}

/* Two-column split: image + text */
.ep-split {
  display: flex;
  min-height: 450px;
}
.ep-split--reverse { flex-direction: row-reverse; }
.ep-split__img {
  flex: 1;
  overflow: hidden;
}
.ep-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ep-split__text {
  flex: 1;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ep-split__text--dark { background: #000; color: #fff; }
.ep-split__text--dark p { color: rgba(255,255,255,.8); }
.ep-split__text--sand { background: #f2eee7; }

/* Grid layouts */
.ep-grid {
  display: grid;
  gap: 24px;
  padding: 0;
}
.ep-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ep-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ep-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ep-card {
  overflow: hidden;
  position: relative;
}
.ep-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.ep-card:hover img { transform: scale(1.04); }
.ep-card__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 12px;
  color: #000;
  letter-spacing: .5px;
}

/* CTA button */
.ep-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border: 2px solid #000;
  color: #000;
  background: transparent;
  transition: background .2s, color .2s;
  margin-top: 24px;
}
.ep-btn:hover { background: #000; color: #fff; }
.ep-btn--white { border-color: #fff; color: #fff; }
.ep-btn--white:hover { background: #fff; color: #000; }
.ep-btn--filled { background: #000; color: #fff; }
.ep-btn--filled:hover { background: #333; }

/* Quote block */
.ep-quote {
  padding: 64px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ep-quote blockquote {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: #222;
  margin: 0 0 20px;
}
.ep-quote cite {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
}

/* Steps / Process */
.ep-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.ep-step__icon {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 16px;
}
.ep-step__num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 8px;
}
/* Green variant for recycle steps */
.ep-section.ep-section--green { background: #338d43 !important; max-width: 100% !important; }
.ep-section--green h2,
.ep-section--green h4,
.ep-section--green p,
.ep-section--green .ep-step__num { color: #fff !important; }
.ep-section--green .ep-step p { color: rgba(255,255,255,.85) !important; }
.ep-step h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: .5px;
}
.ep-step p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* FAQ accordion */
.ep-faq {
  max-width: 900px;
  margin: 0 auto;
}
.ep-faq__item {
  border-bottom: 1px solid #ddd;
}
.ep-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.ep-faq__q svg { flex-shrink: 0; transition: transform .3s; }
.ep-faq__item.open .ep-faq__q svg { transform: rotate(180deg); }
.ep-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.ep-faq__item.open .ep-faq__a { max-height: 500px; }
.ep-faq__a p {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Stats counter */
.ep-stat {
  text-align: center;
  padding: 20px;
}
.ep-stat__num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.ep-section--dark .ep-stat__num { color: #fff; }
.ep-stat__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  margin-top: 8px;
}

/* Logos grid */
.ep-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.ep-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
  transition: filter .3s, opacity .3s;
}
.ep-logos img:hover { filter: grayscale(0); opacity: 1; }

/* Team page: hero goes behind header */
.team-page .ep-hero,
.team-page .ath-slider { margin-top: calc(-1 * var(--header-h)); padding-top: 0; }

@media (max-width: 1024px) {
  .ep-hero { height: 60vh; }
  .ep-hero__overlay { padding: 32px; }
  .ep-split { flex-direction: column !important; }
  .ep-split__img { min-height: 300px; }
  .ep-split__text { padding: 48px 32px; }
  .ep-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ep-steps { grid-template-columns: repeat(2, 1fr); }
  .ep-section { padding: 48px 32px; }
}
@media (max-width: 768px) {
  .ep-hero { height: 50vh; min-height: 350px; }
  .ep-hero__overlay { padding: 24px 16px; }
  .ep-section { padding: 40px 16px; }
  .ep-split__text { padding: 32px 16px; }
  .ep-grid--2, .ep-grid--3 { grid-template-columns: 1fr; }
  .ep-grid--4 { grid-template-columns: 1fr 1fr; }
  .ep-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ep-quote { padding: 40px 16px; }
}

/* --- Athlete Profile Page -------------------------------- */

/* Slider */
.ath-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 550px;
  overflow: hidden;
  background: #000;
}
.ath-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.ath-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.ath-slider__slide--active {
  opacity: 1;
  z-index: 2;
}
.ath-slider__slide img,
.ath-slider__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ath-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 45%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 64px;
  pointer-events: none;
}
.ath-slider__name {
  font-family: var(--font-heading);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 700;
  color: #fff;
  line-height: .9;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.ath-slider__controls {
  position: absolute;
  bottom: 32px;
  right: 64px;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.ath-slider__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.ath-slider__btn:hover {
  background: rgba(255,255,255,.35);
}
.ath-slider__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.ath-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background .3s, transform .3s;
}
.ath-slider__dot--active {
  background: #fff;
  transform: scale(1.3);
}

/* Intro lead text */
.ath-intro {
  padding: 72px 64px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.ath-intro__lead {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Bio paragraph */
.ath-bio {
  padding: 48px 64px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ath-bio p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: #474747;
  margin: 0;
}

/* Full-width image */
.ath-fullimg {
  width: 100%;
  overflow: hidden;
}
.ath-fullimg img {
  width: 100%;
  height: auto;
  display: block;
}

/* Gallery grid */
.ath-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
  padding: 4px 0;
}
.ath-gallery__item {
  overflow: hidden;
  aspect-ratio: 1;
}
.ath-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.ath-gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.ath-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.ath-gallery__item:hover img {
  transform: scale(1.05);
}

/* Stats — black bg */
.ath-stats {
  display: flex;
  gap: 64px;
  padding: 80px 64px;
  background: #000;
  color: #fff;
}
.ath-stats__col {
  flex: 1;
  max-width: 700px;
  margin: 0 auto;
}
.ath-stats__heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 36px;
  color: #fff;
  letter-spacing: 2px;
}
.ath-stats__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-family: var(--font-body);
}
.ath-stats__label {
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}
.ath-stats__value {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-align: right;
}

/* Achievements — split layout */
.ath-achieve {
  display: flex;
  gap: 0;
  min-height: 550px;
}
.ath-achieve__img {
  flex: 1;
  overflow: hidden;
}
.ath-achieve__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ath-achieve__content {
  flex: 1;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f2eee7;
}
.ath-achieve__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 32px;
  color: #000;
  letter-spacing: 1px;
}
.ath-achieve__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ath-achieve__list li {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
  color: #222;
}
.ath-achieve__list li:last-child {
  border-bottom: none;
}

/* Team page reset */
.team-page { margin-top: 0; }
.team-page .ath-slider { margin-top: calc(-1 * var(--header-h)); padding-top: 0; }

@media (max-width: 1024px) {
  .ath-slider { height: 75vh; }
  .ath-slider__overlay { padding: 48px 32px; }
  .ath-slider__controls { right: 32px; bottom: 24px; }
  .ath-stats { flex-direction: column; gap: 48px; padding: 48px 32px; }
  .ath-achieve { flex-direction: column; }
  .ath-achieve__img { min-height: 350px; }
  .ath-gallery { grid-template-columns: repeat(2, 1fr); }
  .ath-intro { padding: 48px 32px; }
}
@media (max-width: 768px) {
  .ath-slider { height: 65vh; min-height: 400px; }
  .ath-slider__overlay { padding: 24px 16px; }
  .ath-slider__name { letter-spacing: 0; }
  .ath-slider__controls { right: 16px; bottom: 16px; }
  .ath-slider__dots { bottom: 20px; }
  .ath-bio { padding: 32px 16px; }
  .ath-intro { padding: 32px 16px; }
  .ath-stats { padding: 32px 16px; }
  .ath-achieve__content { padding: 32px 16px; }
  .ath-gallery { grid-template-columns: 1fr 1fr; }
  .ath-gallery__item--wide { grid-column: span 2; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.rc-contact__inner { max-width: 1000px; margin: 0 auto; padding: 0 24px 80px; }
.rc-contact__header { text-align: center; padding: 40px 0 48px; }
.rc-contact__title { font-family: var(--font-heading); font-size: 36px; letter-spacing: .04em; }
.rc-contact__subtitle { font-family: var(--font-body); font-size: 15px; color: #666; margin-top: 8px; }

.rc-contact__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; }

/* Form */
.rc-contact__form { display: flex; flex-direction: column; gap: 20px; }
.rc-contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rc-contact__field { display: flex; flex-direction: column; gap: 6px; }
.rc-contact__field label {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: #555;
}
.rc-contact__field input,
.rc-contact__field select,
.rc-contact__field textarea {
  font-family: var(--font-body); font-size: 14px; padding: 12px 14px;
  border: 1.5px solid #ddd; border-radius: 0; background: #fff;
  transition: border-color .2s;
}
.rc-contact__field input:focus,
.rc-contact__field select:focus,
.rc-contact__field textarea:focus { border-color: #000; outline: none; }
.rc-contact__field textarea { resize: vertical; min-height: 120px; }

.rc-contact__btn {
  display: inline-block; padding: 14px 40px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  color: #fff; background: #000; border: none; cursor: pointer;
  transition: background .2s;
}
.rc-contact__btn:hover { background: #333; }

.rc-contact__error {
  padding: 12px 16px; background: #fef2f2; border: 1px solid #fca5a5;
  color: #991b1b; font-size: 14px; margin-bottom: 8px;
}

.rc-contact__success {
  text-align: center; padding: 60px 20px;
}
.rc-contact__success h2 { font-family: var(--font-heading); font-size: 28px; margin: 16px 0 8px; }
.rc-contact__success p { color: #666; margin-bottom: 24px; }

/* Info sidebar */
.rc-contact__info { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.rc-contact__info-block h3 {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px;
}
.rc-contact__info-block p { font-size: 14px; color: #555; line-height: 1.6; }
.rc-contact__info-block a { color: #000; text-decoration: underline; }
.rc-contact__info-block a:hover { text-decoration: none; }
.rc-contact__socials { display: flex; gap: 16px; }
.rc-contact__socials a { font-size: 13px; color: #000; text-decoration: underline; }

@media (max-width: 768px) {
  .rc-contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .rc-contact__row { grid-template-columns: 1fr; }
  .rc-contact__title { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════════════════════════ */
.rc-thankyou { max-width: 900px; margin: 0 auto; padding: 40px 24px 80px; }

.rc-thankyou__header { text-align: center; padding: 20px 0 40px; }
.rc-thankyou__header h1 { font-family: var(--font-heading); font-size: 32px; letter-spacing: .03em; margin: 16px 0 8px; }
.rc-thankyou__header p { font-size: 15px; color: #555; }
.rc-thankyou__header--failed h1 { color: #dc2626; }

.rc-thankyou__cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px;
}
.rc-thankyou__card {
  background: #f7f6f3; padding: 18px 20px; display: flex; flex-direction: column; gap: 4px;
}
.rc-thankyou__card-label { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #888; }
.rc-thankyou__card strong { font-size: 14px; }

.rc-thankyou__details { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; margin-bottom: 40px; }
.rc-thankyou__section h2 {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #888;
  padding-bottom: 12px; border-bottom: 1px solid #eee; margin-bottom: 16px;
}

.rc-thankyou__items { display: flex; flex-direction: column; gap: 16px; }
.rc-thankyou__item { display: flex; gap: 14px; align-items: flex-start; }
.rc-thankyou__item-img { flex-shrink: 0; width: 60px; background: #f5f5f5; }
.rc-thankyou__item-img img { width: 60px; height: 75px; object-fit: cover; display: block; }
.rc-thankyou__item-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.rc-thankyou__item-name { font-size: 13.5px; font-weight: 600; }
.rc-thankyou__item-meta { font-size: 12px; color: #777; }
.rc-thankyou__item-qty { font-size: 12px; color: #999; }
.rc-thankyou__item-price { font-size: 13.5px; font-weight: 600; white-space: nowrap; }

.rc-thankyou__totals { border-top: 1px solid #eee; margin-top: 20px; padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.rc-thankyou__total-row { display: flex; justify-content: space-between; font-size: 13.5px; color: #555; }
.rc-thankyou__total-row--grand { font-weight: 700; font-size: 15px; color: #000; padding-top: 10px; border-top: 1px solid #ddd; margin-top: 4px; }

.rc-thankyou__address { font-size: 14px; line-height: 1.7; color: #444; margin-bottom: 16px; }
.rc-thankyou__info-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 6px 0; border-bottom: 1px solid #f0f0f0; }
.rc-thankyou__info-label { color: #888; }

.rc-thankyou__notice {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 20px;
  padding: 14px 16px; background: #fffbeb; border: 1px solid #fde68a;
  font-size: 13.5px; line-height: 1.5;
}
.rc-thankyou__notice svg { flex-shrink: 0; margin-top: 1px; color: #d97706; }

.rc-thankyou__actions { display: flex; gap: 16px; justify-content: center; padding-top: 20px; }
.rc-thankyou__btn {
  display: inline-block; padding: 14px 36px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  color: #fff; background: #000; border: 2px solid #000; cursor: pointer; transition: all .2s;
}
.rc-thankyou__btn:hover { background: #333; border-color: #333; }
.rc-thankyou__btn--outline { background: transparent; color: #000; }
.rc-thankyou__btn--outline:hover { background: #000; color: #fff; }

@media (max-width: 768px) {
  .rc-thankyou__cards { grid-template-columns: 1fr 1fr; }
  .rc-thankyou__details { grid-template-columns: 1fr; gap: 32px; }
  .rc-thankyou__actions { flex-direction: column; align-items: center; }
}

/* ───────────────────────────────────────────────────
   ÉVÉNEMENTS — grille page "Évènements"
   ─────────────────────────────────────────────────── */
.events-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}
.events-page__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  letter-spacing: 2px;
  margin: 0 0 48px;
  text-transform: uppercase;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.event-card {
  background: #fff;
  border: 1px solid #eaeaea;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}
.event-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.event-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #f5f5f5;
}
.event-card__body {
  padding: 24px;
}
.event-card__date {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 8px;
}
.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.2;
}
.event-card__desc {
  font-size: .9375rem;
  line-height: 1.6;
  color: #444;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card__cta {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid #000;
}

@media (max-width: 1024px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; gap: 20px; }
  .events-page { padding: 40px 16px; }
}

/* ───────────────────────────────────────────────────
   ÉVÉNEMENT — page détail (single)
   ─────────────────────────────────────────────────── */
.event-single { color: #000; }

/* HERO */
.event-hero {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-color: #0a1628;
  display: flex;
  align-items: flex-end;
  padding: 80px 24px 80px;
  color: #fff;
}
.event-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}
.event-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.event-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.event-hero__cta {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 18px 40px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fff;
  transition: background 0.25s, color 0.25s;
}
.event-hero__cta:hover {
  background: transparent;
  color: #fff;
}

/* COUNTDOWN */
.event-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 640px;
  width: 100%;
}
.event-countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 20px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.event-countdown__num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  font-weight: 700;
}
.event-countdown__label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.85;
}

/* OVERVIEW */
.event-overview {
  padding: 80px 24px;
  background: #fff;
  text-align: center;
}
.event-overview .container { max-width: 860px; }
.event-overview__location {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #000;
}
.event-overview__period {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 32px;
}
.event-overview__desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #444;
}
.event-overview__desc p { margin: 0 0 16px; }

/* ACCORDÉONS */
.event-accordions {
  padding: 40px 24px 100px;
  background: #f7f6f3;
}
.event-accordions .container { max-width: 860px; }
.event-accordions__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 40px;
}
.event-accordion {
  background: #fff;
  border: 1px solid #e5e5e5;
  margin-bottom: 12px;
  overflow: hidden;
}
.event-accordion__summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  user-select: none;
  transition: background 0.2s;
}
.event-accordion__summary::-webkit-details-marker { display: none; }
.event-accordion__summary:hover { background: #fafafa; }
.event-accordion__icon {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease;
}
.event-accordion[open] .event-accordion__icon { transform: rotate(45deg); }
.event-accordion__body {
  padding: 0 32px 32px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
.event-accordion__body p { margin: 0 0 14px; }
.event-accordion__body strong { color: #000; }
.event-accordion__body a { color: #000; text-decoration: underline; }
.event-accordion__body img { max-width: 100%; height: auto; margin: 16px 0; }
.event-accordion__body ul, .event-accordion__body ol { padding-left: 24px; margin: 0 0 14px; }
.event-accordion__body li { margin-bottom: 6px; }

@media (max-width: 768px) {
  .event-hero { min-height: 70vh; padding: 60px 16px; }
  .event-hero__content { gap: 24px; }
  .event-countdown { gap: 8px; }
  .event-countdown__item { padding: 14px 4px; }
  .event-overview { padding: 60px 16px; }
  .event-accordions { padding: 30px 16px 80px; }
  .event-accordion__summary { padding: 18px 20px; font-size: 1rem; }
  .event-accordion__body { padding: 0 20px 24px; }
}

/* ───────────────────────────────────────────────────
   MAGASINS — Store Locator (page /magasins/)
   Layout split : liste gauche (scrollable) + map droite (sticky)
   ─────────────────────────────────────────────────── */
.stores-page {
  background: #fff;
  padding-top: 92px; /* offset pour le header fixed */
}

.stores-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  height: calc(100vh - 92px);
  min-height: 640px;
}

.stores-sidebar {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-right: 1px solid #e5e5e5;
  overflow: hidden;
}
.stores-sidebar__list {
  flex: 1;
  overflow-y: auto;
  position: relative;
}

.stores-search {
  position: relative;
  padding: 20px 24px 12px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}
.stores-search__input {
  width: 100%;
  height: 44px;
  padding: 0 16px 0 44px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #000;
  background: #f7f6f3;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.stores-search__input::placeholder { color: #999; }
.stores-search__input:focus {
  border-color: #000;
  background: #fff;
}
.stores-search__icon {
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-20%);
  color: #666;
  pointer-events: none;
}
.stores-count {
  margin: 0;
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.stores-sidebar::-webkit-scrollbar { width: 8px; }
.stores-sidebar::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

.stores-map-wrap {
  position: relative;
  background: #eee;
}
.stores-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.stores-map .leaflet-top,
.stores-map .leaflet-bottom {
  z-index: 400;
}

.stores-group-title {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 24px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #000;
}
.stores-group-title:first-child { margin-top: 0; }
.store-card {
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}
.store-card:hover {
  background: #fafafa;
}
.store-card.is-active {
  background: #f7f6f3;
  border-left: 4px solid #000;
}

.store-card__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.store-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  color: #000;
  flex: 1;
}
.store-card__toggle-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: #555;
  margin-left: 12px;
}
.store-card.is-active .store-card__toggle-icon::after {
  content: '';
}

.store-card__body {
  padding: 0 28px 24px;
  display: none;
}
.store-card.is-active .store-card__body {
  display: block;
}

.store-card__address {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}
.store-card__address > div {
  margin-bottom: 2px;
}
.store-card__phone {
  margin-top: 6px;
}
.store-card__phone a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #000;
}
.store-card__directions {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
}
.store-card__directions:hover {
  color: #555;
  border-color: #555;
}
.store-card__hours {
  font-size: 0.8125rem;
  color: #555;
  background: #fff;
  padding: 12px 16px;
  border: 1px solid #eee;
}
.store-card__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
}
.store-card__day {
  font-weight: 600;
  color: #000;
}
.store-card__time {
  font-variant-numeric: tabular-nums;
}
.stores-empty {
  text-align: center;
  color: #666;
  padding: 60px 24px;
  font-size: 0.9375rem;
}

@media (max-width: 1024px) {
  .stores-layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .stores-sidebar {
    order: 2;
    border-right: none;
    max-height: 600px;
  }
  .stores-map-wrap {
    order: 1;
    height: 400px;
    position: relative;
  }
  .stores-map {
    position: relative;
    height: 400px;
  }
}
@media (max-width: 640px) {
  .stores-map-wrap, .stores-map { height: 340px; }
  .stores-search { padding: 16px 16px 10px; }
  .stores-count { padding: 8px 16px; }
  .store-card__toggle { padding: 20px 20px 16px; }
  .store-card__body { padding: 0 20px 20px; }
  .store-card__title { font-size: 1.0625rem; }
}

/* =============================================================
   MON COMPTE — My Account (Premium Minimal)
   ============================================================= */

/* ---- Page hero (minimal, light, centered) -------------- */
.woocommerce-account .page-hero {
  background: #fff;
  padding: 0;
  margin: 0;
  min-height: calc(var(--header-h) + 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ebebeb;
  text-align: center;
  box-sizing: border-box;
  padding-top: var(--header-h);
}
.woocommerce-account .page-hero .container {
  max-width: 1180px;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce-account .page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: .06em;
  color: #0a0a0a;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
.woocommerce-account .page-hero__breadcrumb { display: none; }

/* ---- Wrapper ------------------------------------------- */
.woocommerce-account .woo-wrapper {
  background: #fff;
  padding-top: 0 !important;
  padding-bottom: 80px !important;
}
.woocommerce-account .entry-content {
  padding: 0 !important;
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.woocommerce-account article { margin: 0; }
.woocommerce-account .entry-content .woo-wrapper {
  background: transparent;
  padding: 0 !important;
}
.woocommerce-account .entry-content .woo-wrapper .container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* ---- Main grid ----------------------------------------- */
.woocommerce-account .woocommerce {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 40px 0;
  font-family: var(--font-body);
  color: #0a0a0a;
}
.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* override WC default float layout */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
}
.woocommerce-account .woocommerce-MyAccount-content { min-width: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation { grid-column: 1; grid-row: 1; }
.woocommerce-account .woocommerce-MyAccount-content { grid-column: 2; grid-row: 1; }

/* ---- Sidebar navigation (clean, minimal) --------------- */
.woocommerce-MyAccount-navigation {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  align-self: start;
  border-right: 1px solid #ebebeb;
  padding-right: 28px;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-MyAccount-navigation ul li { margin: 0; }
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 13px 0 13px 18px;
  margin-left: -20px;
  color: #707070;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s, border-color .2s;
  border-left: 2px solid transparent;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  color: #0a0a0a;
}
.woocommerce-MyAccount-navigation ul li.is-active > a {
  color: #0a0a0a;
  border-left-color: #0a0a0a;
  font-weight: 700;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ebebeb;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #999;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  color: #c1121f;
}

/* ---- Content area -------------------------------------- */
.woocommerce-MyAccount-content {
  font-family: var(--font-body);
  color: #333;
  line-height: 1.65;
}
.woocommerce-MyAccount-content h2 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0 0 28px;
}

/* ---- Dashboard welcome (custom template) --------------- */
.woocommerce-MyAccount-content .rc-account-welcome {
  margin: 0 0 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ebebeb;
}
.woocommerce-MyAccount-content .rc-account-welcome__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}
.woocommerce-MyAccount-content h2.rc-account-welcome__name {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: .04em;
  color: #0a0a0a;
  margin: 0 0 14px;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  border: none;
}
.woocommerce-MyAccount-content .rc-account-welcome__sub {
  font-size: 15px;
  line-height: 1.7;
  color: #707070;
  margin: 0;
  max-width: 620px;
}

/* ---- Dashboard quick access cards ---------------------- */
.rc-account-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.rc-account-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  border: 1px solid #ebebeb;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: border-color .22s, transform .22s;
  min-height: 160px;
}
.rc-account-card:hover {
  border-color: #0a0a0a;
  transform: translateY(-2px);
}
.rc-account-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #999;
}
.rc-account-card__value {
  font-family: var(--font-heading);
  font-size: 36px;
  letter-spacing: .04em;
  color: #0a0a0a;
  margin-top: 8px;
  line-height: 1;
  font-weight: 400;
}
.rc-account-card__meta {
  font-size: 13px;
  color: #707070;
  margin-top: 6px;
}
.rc-account-card__arrow {
  margin-top: auto;
  padding-top: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.rc-account-card:hover .rc-account-card__arrow { gap: 12px; }

/* recent orders block on dashboard */
.woocommerce-MyAccount-content .rc-account-recent {
  margin-top: 8px;
}
.woocommerce-MyAccount-content h3.rc-account-recent__title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0 0 18px;
  padding: 0 0 12px;
  border: none;
  border-bottom: 1.5px solid #0a0a0a;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.rc-account-recent__title a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #707070;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rc-account-recent__title a:hover { color: #0a0a0a; }
.rc-account-recent__empty {
  padding: 40px 24px;
  text-align: center;
  color: #999;
  font-size: 14px;
  border: 1px dashed #e5e5e5;
}

/* ---- Notices ------------------------------------------- */
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info {
  list-style: none;
  margin: 0 0 28px;
  padding: 14px 20px 14px 18px;
  font-size: 14px;
  border: none;
  border-left: 3px solid #0a0a0a;
  background: #f7f6f3;
  color: #0a0a0a;
}
.woocommerce-account .woocommerce-error { border-color: #c1121f; background: #fff5f5; }
.woocommerce-account .woocommerce-message { border-color: #2d6a4f; background: #f0faf5; }
.woocommerce-account .woocommerce-info { border-color: #0a5c99; background: #f0f3f8; }
.woocommerce-account .woocommerce-error li,
.woocommerce-account .woocommerce-message li,
.woocommerce-account .woocommerce-info li { margin: 0; padding: 0; }

/* ---- Override WC default table border ------------------ */
.woocommerce-account .woocommerce table.shop_table,
.woocommerce-account table.woocommerce-orders-table,
.woocommerce-account table.woocommerce-table--order-details {
  border: none !important;
  border-collapse: collapse;
  border-radius: 0;
}
.woocommerce-account .woocommerce table.shop_table th,
.woocommerce-account .woocommerce table.shop_table td {
  border-color: transparent;
}

/* ---- Orders page header -------------------------------- */
.woocommerce-MyAccount-content .rc-orders-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid #0a0a0a;
}
.woocommerce-MyAccount-content h2.rc-orders-header__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0;
  padding: 0;
  border: none;
}
.rc-orders-header__count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #999;
  margin: 0;
}

/* ---- Orders table (clean, airy) ------------------------ */
.woocommerce-account table.woocommerce-orders-table,
.rc-account-recent table.woocommerce-orders-table,
.rc-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #333;
  table-layout: auto;
}
.woocommerce-account table.woocommerce-orders-table thead tr {
  border-bottom: 1px solid #e5e5e5;
}
.woocommerce-account table.woocommerce-orders-table thead th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #999;
  padding: 0 16px 14px 0;
  text-align: left;
  white-space: nowrap;
}
.woocommerce-account table.woocommerce-orders-table tbody tr {
  border-bottom: 1px solid #ebebeb;
  transition: background .15s;
}
.woocommerce-account table.woocommerce-orders-table tbody tr:hover {
  background: #fafaf9;
}
.woocommerce-account table.woocommerce-orders-table tbody td {
  padding: 22px 16px 22px 0;
  vertical-align: middle;
}

/* order number — bold, hash-prefix */
.woocommerce-account table.woocommerce-orders-table .woocommerce-orders-table__cell-order-number {
  font-family: var(--font-body);
}
.woocommerce-account table.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
  font-weight: 700;
  color: #0a0a0a;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .01em;
}
.woocommerce-account table.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* date column — muted */
.woocommerce-account table.woocommerce-orders-table .woocommerce-orders-table__cell-order-date {
  color: #707070;
  font-size: 13px;
  white-space: nowrap;
}

/* total column — two-line layout */
.woocommerce-account table.woocommerce-orders-table .woocommerce-orders-table__cell-order-total {
  white-space: nowrap;
}
.rc-orders-total__amount {
  display: block;
  font-weight: 700;
  color: #0a0a0a;
  font-size: 15px;
  line-height: 1.2;
}
.rc-orders-total__amount .woocommerce-Price-currencySymbol {
  font-weight: 700;
  font-size: 12px;
  color: #707070;
  margin-right: 4px;
}
.rc-orders-total__items {
  display: block;
  font-size: 11px;
  color: #999;
  margin-top: 3px;
  letter-spacing: .02em;
}

/* status badges — bordered pills */
.woocommerce-account mark.order-status {
  background: transparent;
  padding: 5px 12px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  display: inline-block;
  line-height: 1.3;
  white-space: nowrap;
  border-radius: 0;
}
.woocommerce-account mark.order-status.status-processing { color: #0a5c99; }
.woocommerce-account mark.order-status.status-completed { color: #2d6a4f; background: rgba(45,106,79,.06); }
.woocommerce-account mark.order-status.status-cancelled { color: #c1121f; }
.woocommerce-account mark.order-status.status-on-hold { color: #856404; }
.woocommerce-account mark.order-status.status-pending { color: #707070; }
.woocommerce-account mark.order-status.status-refunded { color: #707070; background: #f5f5f5; }
.woocommerce-account mark.order-status.status-failed { color: #c1121f; background: rgba(193,18,31,.06); }
.woocommerce-account mark.order-status.status-draft,
.woocommerce-account mark.order-status.status-checkout-draft { color: #999; }

/* action button */
.woocommerce-account table.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions {
  text-align: right;
  white-space: nowrap;
}
.woocommerce-account table.woocommerce-orders-table .button {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: transparent;
  color: #0a0a0a;
  border: 1.5px solid #0a0a0a;
  padding: 10px 22px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, color .2s;
  white-space: nowrap;
  border-radius: 0;
}
.woocommerce-account table.woocommerce-orders-table .button:hover {
  background: #0a0a0a;
  color: #fff;
}

/* subtle left status indicator on the row */
.woocommerce-account table.woocommerce-orders-table tbody tr {
  position: relative;
}
.woocommerce-account table.woocommerce-orders-table tbody tr > *:first-child {
  position: relative;
}
.woocommerce-account table.woocommerce-orders-table tbody tr > *:first-child::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: transparent;
  transition: background .2s;
}
.woocommerce-account table.woocommerce-orders-table tbody tr.woocommerce-orders-table__row--status-processing > *:first-child::before { background: #0a5c99; }
.woocommerce-account table.woocommerce-orders-table tbody tr.woocommerce-orders-table__row--status-completed > *:first-child::before { background: #2d6a4f; }
.woocommerce-account table.woocommerce-orders-table tbody tr.woocommerce-orders-table__row--status-cancelled > *:first-child::before { background: #c1121f; }
.woocommerce-account table.woocommerce-orders-table tbody tr.woocommerce-orders-table__row--status-on-hold > *:first-child::before { background: #856404; }
.woocommerce-account table.woocommerce-orders-table tbody tr.woocommerce-orders-table__row--status-pending > *:first-child::before { background: #bbb; }

/* ---- Orders pagination --------------------------------- */
.rc-orders-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #ebebeb;
}
.rc-orders-pagination__btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-decoration: none;
  padding: 12px 22px;
  border: 1.5px solid #0a0a0a;
  transition: background .2s, color .2s;
}
.rc-orders-pagination__btn:hover { background: #0a0a0a; color: #fff; }
.rc-orders-pagination__btn--prev { margin-right: auto; }
.rc-orders-pagination__btn--next { margin-left: auto; }
.rc-orders-pagination__info {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
}

/* ---- Empty state (no orders) --------------------------- */
.rc-orders-empty {
  text-align: center;
  padding: 72px 40px 80px;
  border: 1px dashed #e5e5e5;
  margin-top: 8px;
}
.rc-orders-empty__icon {
  color: #c0c0c0;
  margin-bottom: 24px;
  display: inline-flex;
}
.woocommerce-MyAccount-content h3.rc-orders-empty__title {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0 0 14px;
  padding: 0;
  border: none;
  font-weight: 400;
}
.rc-orders-empty__text {
  font-size: 14px;
  color: #707070;
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 380px;
}
.rc-orders-empty__btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  background: #0a0a0a;
  border: 1.5px solid #0a0a0a;
  padding: 15px 36px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.rc-orders-empty__btn:hover { background: #fff; color: #0a0a0a; }

/* ---- Addresses ----------------------------------------- */
/* override WC float-based u-columns */
.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.woocommerce-account .woocommerce-Addresses.col2-set::before,
.woocommerce-account .woocommerce-Addresses.col2-set::after { display: none; }
.woocommerce-account .woocommerce-Address,
.woocommerce-account .woocommerce-Addresses .u-column1,
.woocommerce-account .woocommerce-Addresses .u-column2 {
  float: none !important;
  width: auto !important;
  border: 1px solid #ebebeb;
  padding: 32px 32px 28px;
  margin: 0;
}

/* paragraph above the grid */
.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type {
  font-size: 14px;
  color: #707070;
  margin: 0 0 8px;
  line-height: 1.6;
}

.woocommerce-account .woocommerce-Address-title.title,
.woocommerce-account .woocommerce-Address-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #0a0a0a;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0;
  padding: 0;
  border: none;
  flex: 1 1 auto;
  min-width: 0;
}
.woocommerce-account .woocommerce-Address-title .edit {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-decoration: underline;
  text-underline-offset: 3px;
  flex-shrink: 0;
  white-space: nowrap;
}
/* shorten long "Modifier Adresse de facturation" via CSS trick — hide original, inject "Modifier" */
.woocommerce-account .woocommerce-Address-title .edit {
  font-size: 0;
}
.woocommerce-account .woocommerce-Address-title .edit::before {
  content: 'Modifier';
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.woocommerce-account .woocommerce-Address address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* ---- Forms (edit account, edit address) ---------------- */
.woocommerce-account .woocommerce-MyAccount-content fieldset {
  border: 1px solid #ebebeb;
  padding: 24px 28px 28px;
  margin: 28px 0;
}
.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #0a0a0a;
  padding: 0 10px;
}
.woocommerce-account .woocommerce-MyAccount-content .form-row {
  margin-bottom: 22px;
}
.woocommerce-account .woocommerce-MyAccount-content .form-row label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 8px;
}
.woocommerce-account .woocommerce-MyAccount-content .form-row-first,
.woocommerce-account .woocommerce-MyAccount-content .form-row-last {
  width: 48.5%;
  display: inline-block;
  vertical-align: top;
}
.woocommerce-account .woocommerce-MyAccount-content .form-row-first { margin-right: 3%; }
.woocommerce-account .woocommerce-MyAccount-content .input-text,
.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
.woocommerce-account .woocommerce-MyAccount-content input[type="number"],
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #0a0a0a;
  background: #fff;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.woocommerce-account .woocommerce-MyAccount-content input:focus,
.woocommerce-account .woocommerce-MyAccount-content select:focus,
.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
  border-color: #0a0a0a;
}
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"],
.woocommerce-account .woocommerce-MyAccount-content input[type="submit"] {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: #0a0a0a;
  color: #fff;
  border: 1.5px solid #0a0a0a;
  padding: 15px 38px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, color .2s;
  border-radius: 0;
  -webkit-appearance: none;
  margin-top: 8px;
}
.woocommerce-account .woocommerce-MyAccount-content .button:hover,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-account .woocommerce-MyAccount-content input[type="submit"]:hover {
  background: #fff;
  color: #0a0a0a;
}

/* required asterisk */
.woocommerce-account abbr[title] { color: #c1121f; text-decoration: none; }

/* ---- View order ---------------------------------------- */
.woocommerce-account .woocommerce-order-details__title,
.woocommerce-account .woocommerce-customer-details h2 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #0a0a0a;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #0a0a0a;
  margin: 32px 0 24px;
}
.woocommerce-account table.woocommerce-table--order-details,
.woocommerce-account table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 32px;
}
.woocommerce-account table.woocommerce-table--order-details thead th,
.woocommerce-account table.shop_table thead th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0a0a0a;
  padding: 0 0 14px;
  border-bottom: 1.5px solid #0a0a0a;
  text-align: left;
}
.woocommerce-account table.woocommerce-table--order-details tbody td,
.woocommerce-account table.shop_table tbody td {
  padding: 18px 0;
  border-bottom: 1px solid #ebebeb;
  vertical-align: middle;
}
.woocommerce-account table.woocommerce-table--order-details tfoot td,
.woocommerce-account table.woocommerce-table--order-details tfoot th,
.woocommerce-account table.shop_table tfoot td,
.woocommerce-account table.shop_table tfoot th {
  padding: 12px 0;
  font-size: 13px;
  border-top: 1px solid #ebebeb;
  text-align: right;
}
.woocommerce-account table.shop_table tfoot th { text-align: left; }
.woocommerce-account table.woocommerce-table--order-details tfoot .order-total th,
.woocommerce-account table.woocommerce-table--order-details tfoot .order-total td,
.woocommerce-account table.shop_table tfoot .order-total th,
.woocommerce-account table.shop_table tfoot .order-total td {
  font-weight: 700;
  font-size: 16px;
  border-top: 1.5px solid #0a0a0a;
  padding-top: 16px;
}

/* ---- Login form (logged out) --------------------------- */
.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) {
  max-width: 440px;
  margin: 0 auto;
  padding: 56px 40px 72px;
}
.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) > h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: .06em;
  color: #0a0a0a;
  margin: 0 0 36px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.woocommerce-account .woocommerce-form-login {
  background: transparent;
  padding: 0;
}
.woocommerce-account .woocommerce-form-login .form-row {
  margin-bottom: 22px;
}
.woocommerce-account .woocommerce-form-login .form-row label:not(.woocommerce-form-login__rememberme) {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 8px;
}
.woocommerce-account .woocommerce-form-login .woocommerce-Input,
.woocommerce-account .woocommerce-form-login input[type="text"],
.woocommerce-account .woocommerce-form-login input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #0a0a0a;
  background: #fff;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.woocommerce-account .woocommerce-form-login input:focus {
  border-color: #0a0a0a;
}
.woocommerce-account .woocommerce-form-login .password-input {
  position: relative;
  display: block;
}
.woocommerce-account .woocommerce-form-login .password-input input {
  padding-right: 44px;
}
.woocommerce-account .woocommerce-form-login .show-password-input {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 4px;
}
.woocommerce-account .woocommerce-form-login .form-row:has(button[type="submit"]) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.woocommerce-account .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #707070;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  margin: 0;
}
.woocommerce-account .woocommerce-form-login__rememberme input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #0a0a0a;
}
.woocommerce-account .woocommerce-form-login__submit {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: #0a0a0a;
  color: #fff;
  border: 1.5px solid #0a0a0a;
  padding: 15px 36px;
  cursor: pointer;
  transition: background .2s, color .2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.woocommerce-account .woocommerce-form-login__submit:hover {
  background: #fff;
  color: #0a0a0a;
}
.woocommerce-account .woocommerce-LostPassword {
  margin-top: 20px;
  text-align: center;
}
.woocommerce-account .woocommerce-LostPassword a {
  font-size: 12px;
  color: #707070;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.woocommerce-account .woocommerce-LostPassword a:hover { color: #0a0a0a; }

/* ---- Responsive ---------------------------------------- */
@media (max-width: 1024px) {
  .woocommerce-account .woocommerce {
    padding: 36px 24px 0;
  }
  .woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
    grid-template-columns: 180px 1fr;
    gap: 40px;
  }
  .woocommerce-account .page-hero .container { padding: 0 24px; }
  .rc-account-cards { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .rc-account-card { padding: 24px 20px 20px; min-height: 140px; }
  .rc-account-card__value { font-size: 30px; }
  .woocommerce-account .woocommerce-Addresses { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .woocommerce-account .page-hero {
    padding: calc(var(--header-h) + 24px) 0 18px;
  }
  .woocommerce-account .page-hero .container { padding: 0 20px; }
  .woocommerce-account .woocommerce {
    padding: 28px 20px 0;
  }
  .woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
    border-right: none;
    border-bottom: 1px solid #ebebeb;
    padding-right: 0;
    padding-bottom: 12px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 18px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    padding: 10px 0;
    margin-left: 0;
    border-left: none;
    border-bottom: 2px solid transparent;
    font-size: 11px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active > a {
    border-left: none;
    border-bottom-color: #0a0a0a;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .rc-account-welcome { margin-bottom: 32px; padding-bottom: 28px; }
  .rc-account-welcome__name { font-size: 36px; }
  .rc-account-cards { grid-template-columns: 1fr; }
  .rc-account-card { padding: 24px 22px; min-height: 0; }
  .woocommerce-account .woocommerce-MyAccount-content .form-row-first,
  .woocommerce-account .woocommerce-MyAccount-content .form-row-last {
    width: 100%;
    display: block;
    margin-right: 0;
  }
  .woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) {
    padding: 36px 24px 56px;
  }
}

/* =============================================================
   PROMOTIONS — surligne menu rouge (le reste réutilise .rc-cat*)
   ============================================================= */
.nav__menu .nav__item a[href*="/promotions"],
.nav__drawer a[href*="/promotions"] {
  color: #c1121f;
}

