/* ================================================================
   ParkShop FR — Parkside Design System v4
   Fonts: HelveticaNeue (body), Transducer (headings/buttons)
   Colors: #1e4b32 green, #00ff99 power-green, #1c1c1c near-black
================================================================ */

/* --- Self-hosted fonts ---------------------------------------- */
@font-face {
  font-family: 'HelveticaNeue';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('/fonts/HelveticaNeue-Regular.woff2') format('woff2'),
       url('/fonts/HelveticaNeue-Regular.woff')  format('woff');
}
@font-face {
  font-family: 'HelveticaNeue';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url('/fonts/HelveticaNeue-Italic.woff2') format('woff2');
}
@font-face {
  font-family: 'HelveticaNeue';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('/fonts/HelveticaNeue-Bold.woff2') format('woff2'),
       url('/fonts/HelveticaNeue-Bold.woff')  format('woff');
}
@font-face {
  font-family: 'Transducer';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('/fonts/Transducer-Bold.woff2') format('woff2'),
       url('/fonts/Transducer-Bold.woff')  format('woff');
}
@font-face {
  font-family: 'TransducerExtended';
  font-style: normal; font-weight: 900; font-display: swap;
  src: url('/fonts/TransducerExtended-ExtraBold.woff2') format('woff2'),
       url('/fonts/TransducerExtended-ExtraBold.woff')  format('woff');
}

/* --- Variables ------------------------------------------------- */
:root {
  --ps-green-dark:    #1e4b32;
  --ps-green-base:    #143c28;
  --ps-green-power:   #00ff99;
  --ps-green-hover:   #48f2bf;
  --ps-green-light:   #e8f5e9;
  --ps-black:         #1c1c1c;
  --ps-gray-dark:     #232d32;
  --ps-gray-medium:   #626262;
  --ps-gray-base:     #cccfd1;
  --ps-gray-soft:     #dee2e4;
  --ps-gray-light:    #edeff0;
  --ps-gray-lightest: #f2f3f4;
  --ps-white:         #ffffff;
  --ps-red:           #cd2828;
  --ps-border:        #dee2e4;
}

/* --- Reset & base ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; padding: 0; margin: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; max-width: 100%; }
body {
  font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
  font-weight: 400; font-size: 1rem; line-height: 1.5;
  color: var(--ps-black);
  background: var(--ps-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 140px;
  overflow-x: hidden;
}
/* Hide top bar on mobile — matches Parkside behaviour */
@media (max-width: 768px) {
  .ps-header__top { display: none; }
  body { padding-top: 104px; } /* 60 main + 44 catnav */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { margin: 0; }
h1,h2,h3,h4 {
  font-family: 'TransducerExtended', 'Transducer', 'HelveticaNeue', sans-serif;
  font-weight: 900;
}

/* ================================================================
   PARKSIDE BUTTON — parallelogram clip-path
================================================================ */
.ps-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ps-green-power);
  color: var(--ps-black);
  border: none; cursor: pointer;
  padding: 15px 42px 15px 24px;
  clip-path: polygon(0% 0%, 100% 0, calc(100% - 20px) 100%, 0% 100%);
  font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
  font-weight: 700; font-size: 1rem; line-height: 1.5;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background .2s ease;
  white-space: nowrap;
}
.ps-btn:hover { background: var(--ps-green-hover); color: var(--ps-black); }
.ps-btn--outline {
  background: transparent;
  position: relative;
  outline: 2px solid var(--ps-black); outline-offset: -2px;
}
.ps-btn--outline::after {
  content: ""; position: absolute;
  top: 0; right: 10px; width: 2px; height: 100%;
  background: var(--ps-black); transform: skew(-19.5deg);
}
.ps-btn--outline:hover { background: rgba(0,0,0,.05); }
.ps-btn--full { width: 100%; }

/* ================================================================
   HEADER — exact Parkside layout
================================================================ */
.ps-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transform: translateY(0); transition: transform .3s ease;
}
.site-header.nav-hidden .ps-header,
.ps-header.nav-hidden { transform: translateY(-100%); }

/* Top bar */
.ps-header__top {
  background: var(--ps-green-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ps-header__top-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: flex-end; align-items: center;
  height: 36px;
}
.ps-header__top-nav {
  display: flex; align-items: center; gap: 20px;
}
.ps-header__top-nav a {
  color: rgba(255,255,255,.7); font-size: .78rem;
  transition: color .15s;
}
.ps-header__top-nav a:hover { color: var(--ps-green-power); }
.ps-header__top-sep { color: rgba(255,255,255,.25); }
.ps-header__top-lang { color: rgba(255,255,255,.7); font-size: .78rem; }

/* Main bar */
.ps-header__main {
  background: var(--ps-white);
  border-bottom: 1px solid var(--ps-border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.ps-header__main-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 180px 1fr 120px;
  align-items: center;
  height: 60px; gap: 20px;
}
.ps-header__logo { display: flex; align-items: center; }
.ps-header__logo img { height: 40px; width: auto; }

/* Search bar */
.ps-header__search {
  display: flex; align-items: center;
  border: 1.5px solid var(--ps-border);
  background: var(--ps-gray-lightest);
  transition: border-color .2s;
}
.ps-header__search:focus-within { border-color: var(--ps-green-dark); }
.ps-header__search input {
  flex: 1; border: none; background: transparent;
  padding: 9px 14px; font-size: .88rem;
  color: var(--ps-black); outline: none;
  font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
}
.ps-header__search input::placeholder { color: var(--ps-gray-medium); }
.ps-header__search button {
  background: var(--ps-green-dark); border: none;
  color: var(--ps-white); padding: 9px 16px;
  cursor: pointer; transition: background .2s;
  display: flex; align-items: center;
}
.ps-header__search button:hover { background: var(--ps-green-power); color: var(--ps-black); }

/* Actions */
.ps-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.ps-header__mobile-search {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: none;
  color: var(--ps-black); cursor: pointer;
}
.ps-header__cart {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: var(--ps-black); transition: color .15s;
}
.ps-header__cart:hover { color: var(--ps-green-dark); }
.ps-header__cart-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--ps-red); color: #fff;
  font-size: .6rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Category nav */
.ps-header__catnav {
  background: var(--ps-green-dark);
}
.ps-header__catnav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  overflow-x: auto; scrollbar-width: none;
}
.ps-header__catnav-inner::-webkit-scrollbar { display: none; }
.ps-header__catnav-inner a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  color: rgba(255,255,255,.78);
  font-size: .82rem; font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.ps-header__catnav-inner a:hover,
.ps-header__catnav-inner a.active {
  color: #fff;
  border-bottom-color: #CD2828;
}
.ps-header__catnav-inner i { font-size: .75rem; }

/* Legacy aliases — site-header div wraps ps-header, keep it fixed */
.navbar { display: none !important; }
.site-header {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transform: translateY(0);
  transition: transform .3s ease;
}
.site-header.nav-hidden { transform: translateY(-100%); }
/* Prevent the wrapper from adding height to page flow */
.site-header + * { margin-top: 0; }

/* ================================================================
   HERO BANNER
================================================================ */
.hero-banner {
  background: var(--ps-green-dark);
  color: var(--ps-white); padding: 56px 0 48px;
}
.hero-banner h1 {
  font-family: 'TransducerExtended', sans-serif;
  font-size: 2.8rem; font-weight: 900; margin-bottom: 12px;
  line-height: 1.1; letter-spacing: .02em;
}
.hero-banner h1 span { color: var(--ps-green-power); }
.hero-banner p { font-size: 1rem; opacity: .8; margin-bottom: 28px; }
.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ps-green-power); color: var(--ps-black);
  padding: 15px 40px 15px 24px;
  clip-path: polygon(0% 0%, 100% 0, calc(100% - 20px) 100%, 0% 100%);
  font-weight: 700; font-size: .95rem; transition: background .2s;
  font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
}
.hero-btn:hover { background: var(--ps-green-hover); color: var(--ps-black); }
.hero-stats { display: flex; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
.hero-stat-item { font-size: .82rem; color: rgba(255,255,255,.6); }
.hero-stat-item strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--ps-green-power); }

/* ================================================================
   SECTION HEADERS
================================================================ */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--ps-gray-soft);
}
.section-title {
  font-family: 'Transducer', 'HelveticaNeue', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--ps-black);
  margin: 0; display: flex; align-items: center; gap: 8px;
}
.section-title i { color: var(--ps-green-dark); }
.section-title span { font-size: .8rem; font-weight: 400; font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif; color: var(--ps-gray-medium); }
.voir-tout-btn { font-size: .82rem; font-weight: 600; color: var(--ps-green-dark); }
.voir-tout-btn:hover { color: var(--ps-green-base); }

/* ================================================================
   PRODUCT GRID
================================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--ps-border);
  border: 1px solid var(--ps-border);
}

/* ================================================================
   PRODUCT CARD
================================================================ */
.product-card {
  display: flex; flex-direction: column;
  background: var(--ps-white);
  text-decoration: none; color: var(--ps-black);
  padding: 8px 8px 0;
  transition: box-shadow .2s;
}
.product-card:hover { box-shadow: inset 0 0 0 2px var(--ps-black); z-index: 1; }
.product-card__img-wrap {
  position: relative; aspect-ratio: 4/3;
  background: var(--ps-white); overflow: hidden;
}
.product-card__img {
  width: 100%; height: 100%; object-fit: contain; padding: 12px;
  transition: transform .3s;
}
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--ps-red); color: #fff;
  font-size: .7rem; font-weight: 700; padding: 3px 8px;
}
.product-card__platform {
  position: absolute; bottom: 6px; right: 6px;
  background: var(--ps-green-dark); color: #fff;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .7rem;
}
.product-card__body { padding: 12px 8px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card__title {
  font-size: .85rem; font-weight: 400; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.price-old { font-size: .78rem; color: var(--ps-gray-medium); text-decoration: line-through; }
.price-now { font-size: 1.2rem; font-weight: 700; color: var(--ps-black); }
.product-card__cta {
  display: block; background: var(--ps-green-power); color: var(--ps-black);
  text-align: center; padding: 9px 12px;
  font-size: .8rem; font-weight: 700; margin-top: 8px;
  clip-path: polygon(0% 0%, 100% 0, calc(100% - 12px) 100%, 0% 100%);
  transition: background .15s;
}
.product-card:hover .product-card__cta { background: var(--ps-green-hover); }

/* ================================================================
   PROOF STRIP
================================================================ */
.proof-strip { background: var(--ps-green-dark); color: var(--ps-white); padding: 48px 0; margin-top: 48px; }
.proof-strip .stat-value { font-family: 'TransducerExtended', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--ps-green-power); }
.proof-strip .stat-label { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 4px; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: #111; color: rgba(255,255,255,.65); padding: 48px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-tagline { font-size: .82rem; line-height: 1.6; color: rgba(255,255,255,.45); }
.footer-payments { display: flex; gap: 8px; margin-top: 16px; }
.footer-payments img { height: 22px; opacity: .5; }
.footer-heading { font-family: 'Transducer', 'HelveticaNeue', sans-serif; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.footer-link { display: block; color: rgba(255,255,255,.55); font-size: .82rem; margin-bottom: 8px; transition: color .15s; }
.footer-link:hover { color: var(--ps-green-power); }
.footer-socials { display: flex; gap: 8px; margin-bottom: 16px; }
.footer-social { width: 32px; height: 32px; border-radius: 2px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .85rem; opacity: .7; transition: opacity .15s; }
.footer-social:hover { opacity: 1; }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-text { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom-right { display: flex; gap: 20px; font-size: .78rem; color: rgba(255,255,255,.3); }

/* ================================================================
   PRODUCT DETAIL PAGE
================================================================ */
.pd-breadcrumb { background: var(--ps-gray-light); border-bottom: 1px solid var(--ps-border); padding: 10px 0; font-size: .82rem; color: var(--ps-gray-medium); }
.pd-breadcrumb a { color: var(--ps-gray-medium); margin-right: 6px; }
.pd-breadcrumb a:hover { color: var(--ps-green-dark); }
.pd-breadcrumb i { font-size: .6rem; margin-right: 6px; }
.pd-section { padding: 40px 0 64px; }

/* Image */
.pd-img-box { position: relative; background: var(--ps-white); border: 1px solid var(--ps-border); overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.pd-img-box img { max-height: 100%; max-width: 100%; object-fit: contain; padding: 24px; cursor: zoom-in; transition: transform .3s; }
.pd-img-box img:hover { transform: scale(1.04); }
.pd-badge,
.pd-discount-badge-img {
  position: absolute; top: 12px; left: 12px;
  background: var(--ps-red); color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: 4px 10px; z-index: 2;
  font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
}
.pd-thumbs { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.pd-thumb { width: 72px; height: 54px; object-fit: contain; padding: 4px; background: var(--ps-white); border: 2px solid var(--ps-border); cursor: pointer; transition: border-color .15s; }
.pd-thumb.active, .pd-thumb:hover { border-color: var(--ps-black); }

/* Stars */
.pd-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 8px; }
.pd-stars i { color: #f59e0b; font-size: .8rem; }
.pd-stars i.empty { color: var(--ps-gray-soft); }
.pd-stars span { font-size: .8rem; color: var(--ps-gray-medium); margin-left: 6px; }

/* Title */
.pd-title {
  font-family: 'Transducer', 'HelveticaNeue', sans-serif;
  font-size: 1.5rem; font-weight: 700; margin: 0 0 12px;
  line-height: 1.25; letter-spacing: .01em;
}

/* Badges */
.pd-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pd-badge-green { display: inline-flex; align-items: center; gap: 5px; background: #e8f5e9; color: var(--ps-green-dark); font-size: .75rem; font-weight: 700; padding: 4px 10px; border: 1px solid rgba(30,75,50,.2); }

/* Price */
.pd-price-box { background: var(--ps-gray-lightest); border: 1px solid var(--ps-border); padding: 20px 24px; margin-bottom: 24px; }
.pd-price-old { font-size: .95rem; color: var(--ps-gray-medium); text-decoration: line-through; margin-right: 10px; }
.pd-price-now {
  font-family: 'TransducerExtended', sans-serif;
  font-size: 2.2rem; font-weight: 900; color: var(--ps-black); letter-spacing: -.01em;
}
.pd-discount-badge { display: inline-block; background: var(--ps-red); color: #fff; font-size: .78rem; font-weight: 700; padding: 3px 8px; margin-left: 10px; vertical-align: middle; }
.pd-savings { font-size: .82rem; color: var(--ps-green-dark); margin-top: 8px; font-weight: 600; }

/* CTA */
.pd-cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pd-btn-buy {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ps-green-power); color: var(--ps-black);
  font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: .02em;
  padding: 16px 42px 16px 24px; border: none; cursor: pointer;
  clip-path: polygon(0% 0%, 100% 0, calc(100% - 20px) 100%, 0% 100%);
  text-decoration: none; transition: background .2s;
}
.pd-btn-buy:hover { background: var(--ps-green-hover); color: var(--ps-black); }
.pd-btn-cart {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--ps-black);
  border: none; position: relative;
  outline: 2px solid var(--ps-black); outline-offset: -2px;
  font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
  font-weight: 700; font-size: .9rem;
  padding: 13px 42px 13px 20px;
  clip-path: polygon(0% 0%, 100% 0, calc(100% - 20px) 100%, 0% 100%);
  width: 100%; cursor: pointer; transition: background .15s;
}
.pd-btn-cart::after { content: ""; position: absolute; top: 0; right: 10px; width: 2px; height: 100%; background: var(--ps-black); transform: skew(-19.5deg); }
.pd-btn-cart:hover { background: var(--ps-gray-light); }

/* Trust */
.pd-trust { display: flex; gap: 20px; flex-wrap: wrap; font-size: .78rem; color: var(--ps-gray-medium); margin-bottom: 12px; }
.pd-trust i { color: var(--ps-green-dark); margin-right: 4px; }
.pd-payments { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; }

/* Info rows */
.pd-infobox { border-top: 1px solid var(--ps-border); margin-top: 4px; }
.pd-infobox-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--ps-border); font-size: .85rem; }
.pd-infobox-row > i { color: var(--ps-green-dark); margin-top: 2px; flex-shrink: 0; }
.pd-infobox-row strong { display: block; font-weight: 700; margin-bottom: 2px; }
.pd-infobox-row span { color: var(--ps-gray-medium); }

/* How it works */
.pd-how { background: var(--ps-gray-light); padding: 32px; margin: 48px 0; text-align: center; }
.pd-how h3 { font-family: 'Transducer', sans-serif; font-size: 1rem; font-weight: 700; margin: 0 0 24px; text-transform: uppercase; letter-spacing: .08em; }
.pd-how-steps { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.pd-how-step { flex: 1; min-width: 140px; max-width: 200px; }
.pd-how-num { width: 44px; height: 44px; background: var(--ps-green-dark); color: var(--ps-green-power); font-family: 'TransducerExtended', sans-serif; font-size: 1.1rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; clip-path: polygon(0% 0%, 100% 0, calc(100% - 8px) 100%, 0% 100%); }
.pd-how-title { font-family: 'Transducer', sans-serif; font-weight: 700; font-size: .88rem; margin-bottom: 4px; }
.pd-how-desc { font-size: .78rem; color: var(--ps-gray-medium); }
.pd-how-arrow { color: var(--ps-gray-base); font-size: .9rem; flex-shrink: 0; }

/* Tabs */
.pd-tabs { margin-top: 48px; }
.pd-tabs-nav { display: flex; border-bottom: 1px solid var(--ps-gray-base); margin-bottom: 32px; }
.pd-tab-btn { background: none; border: none; cursor: pointer; padding: 12px 24px; font-size: .9rem; font-weight: 700; color: var(--ps-gray-medium); font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif; border-bottom: 3px solid transparent; margin-bottom: -1px; transition: color .15s, border-color .15s; }
.pd-tab-btn.active, .pd-tab-btn:hover { color: var(--ps-green-dark); border-bottom-color: var(--ps-green-dark); }
.pd-tab-pane { display: none; }
.pd-tab-pane.active { display: block; }

/* Description bullets — Parkside parallelogram style */
.pd-description { font-size: .9rem; line-height: 1.8; color: #444; margin-bottom: 24px; }
.pd-description ul { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 12px 0; }
.pd-description li { position: relative; padding-left: 28px; font-size: .9rem; }
.pd-description li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 7px; background: var(--ps-green-power); clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%); }
.pd-specs { width: 100%; border-collapse: collapse; font-size: .85rem; margin-top: 20px; }
.pd-specs tr { border-bottom: 1px solid var(--ps-border); }
.pd-specs td { padding: 10px 12px; vertical-align: top; }
.pd-specs td:first-child { font-weight: 600; width: 40%; background: var(--ps-gray-lightest); color: var(--ps-gray-medium); }

/* FAQ */
.pd-faq-item { border-bottom: 1px solid var(--ps-gray-light); }
.pd-faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 16px 0; font-size: .9rem; font-weight: 700; color: var(--ps-black); text-align: left; gap: 12px; font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif; }
.pd-faq-q i { color: var(--ps-gray-medium); flex-shrink: 0; transition: transform .2s; }
.pd-faq-a { display: none; padding: 0 0 16px; font-size: .88rem; color: #555; line-height: 1.75; }

/* Sticky CTA */
.pd-sticky { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ps-green-dark); padding: 12px 0; z-index: 900; display: none; }
.pd-sticky.visible { display: block; }
.pd-sticky-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pd-sticky-title { flex: 1; font-size: .88rem; font-weight: 600; color: var(--ps-white); min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-sticky-price { font-family: 'TransducerExtended', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--ps-green-power); flex-shrink: 0; }

/* ================================================================
   CART PAGE
================================================================ */
.cp-cart-wrap { max-width: 1100px; margin: 0 auto; padding: 40px 24px 80px; }
.cp-cart-header { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.cp-cart-title { font-family: 'TransducerExtended', sans-serif; font-size: 1.6rem; font-weight: 900; margin: 0; }
.cp-cart-badge { background: var(--ps-green-dark); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 10px; }
.cp-cart-empty { text-align: center; padding: 80px 24px; color: var(--ps-gray-medium); }
.cp-cart-empty-icon { font-size: 3.5rem; color: var(--ps-gray-base); margin-bottom: 20px; }
.cp-cart-empty h2 { font-family: 'Transducer', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--ps-black); margin-bottom: 8px; }
.cp-cart-empty p { margin-bottom: 24px; }
.cp-cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
@media (max-width: 900px) { .cp-cart-layout { grid-template-columns: 1fr; } .cp-cart-summary--desktop { display: none !important; } }
@media (min-width: 901px) { .cp-cart-summary--mobile { display: none !important; } }
.cp-cart-items { background: var(--ps-white); border: 1px solid var(--ps-border); }
.cp-cart-item { display: flex; align-items: center; gap: 16px; padding: 20px; }
.cp-cart-item--border { border-bottom: 1px solid var(--ps-border); }
.cp-cart-item-img-wrap { flex-shrink: 0; width: 80px; height: 80px; background: var(--ps-gray-lightest); border: 1px solid var(--ps-border); display: flex; align-items: center; justify-content: center; }
.cp-cart-item-img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cp-cart-item-info { flex: 1; min-width: 0; }
.cp-cart-item-title { display: block; font-weight: 600; font-size: .9rem; color: var(--ps-black); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cp-cart-item-title:hover { color: var(--ps-green-dark); }
.cp-cart-item-delivery { font-size: .78rem; color: var(--ps-green-dark); display: block; margin-bottom: 6px; }
.cp-cart-item-price { display: flex; align-items: baseline; gap: 8px; }
.cp-price-now { font-family: 'Transducer', sans-serif; font-size: 1.1rem; font-weight: 700; }
.cp-price-old { font-size: .82rem; color: var(--ps-gray-medium); text-decoration: line-through; }
.cp-btn-remove { background: none; border: none; cursor: pointer; color: var(--ps-gray-medium); font-size: .9rem; padding: 8px; transition: color .15s; }
.cp-btn-remove:hover { color: var(--ps-red); }
.cp-cart-continue { display: inline-flex; align-items: center; gap: 6px; color: var(--ps-gray-medium); font-size: .85rem; margin-top: 16px; transition: color .15s; }
.cp-cart-continue:hover { color: var(--ps-green-dark); }
.cp-cart-summary { background: var(--ps-white); border: 1px solid var(--ps-border); padding: 24px; }
.cp-summary-label { font-family: 'Transducer', sans-serif; font-weight: 700; font-size: .9rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--ps-border); }
.cp-summary-row { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: 10px; }
.cp-summary-row--green { color: var(--ps-green-dark); font-weight: 600; }
.cp-summary-divider { border-top: 1px solid var(--ps-border); margin: 12px 0; }
.cp-summary-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; }
.cp-text-green { color: var(--ps-green-dark); }
.cp-savings-badge { background: var(--ps-green-light); color: var(--ps-green-dark); font-size: .78rem; padding: 8px 12px; margin-bottom: 16px; }
.cp-btn-checkout {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ps-green-power); color: var(--ps-black);
  font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
  font-weight: 700; font-size: .95rem;
  padding: 14px 40px 14px 20px;
  clip-path: polygon(0% 0%, 100% 0, calc(100% - 16px) 100%, 0% 100%);
  text-decoration: none; width: 100%; border: none; cursor: pointer;
  transition: background .2s;
}
.cp-btn-checkout:hover { background: var(--ps-green-hover); color: var(--ps-black); }
.cp-trust-strip { display: flex; justify-content: center; gap: 16px; font-size: .72rem; color: var(--ps-gray-medium); margin-top: 12px; }
.cp-trust-strip i { color: var(--ps-green-dark); }
.cp-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--ps-green-power); color: var(--ps-black); padding: 13px 36px 13px 20px; font-weight: 700; clip-path: polygon(0% 0%, 100% 0, calc(100% - 16px) 100%, 0% 100%); transition: background .2s; font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif; }
.cp-btn-primary:hover { background: var(--ps-green-hover); color: var(--ps-black); }
.cp-trustpilot-box { background: var(--ps-white); border: 1px solid var(--ps-border); padding: 20px; margin-top: 12px; text-align: center; }
.cp-tp-label { font-size: .72rem; color: var(--ps-gray-medium); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
.cp-tp-stars { display: flex; justify-content: center; gap: 2px; margin-bottom: 6px; }
.cp-tp-score { font-size: .88rem; font-weight: 600; margin-bottom: 4px; }
.cp-tp-count { font-size: .75rem; color: var(--ps-gray-medium); }

/* ================================================================
   SEARCH OVERLAY
================================================================ */
.search-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 9999; align-items: flex-start; justify-content: center; padding-top: 100px; }
.search-overlay.open { display: flex; }
.search-box { background: var(--ps-white); width: 100%; max-width: 600px; box-shadow: 0 16px 48px rgba(0,0,0,.25); }
.search-box-header { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--ps-border); color: var(--ps-gray-medium); }
.search-box-header input { flex: 1; border: none; outline: none; font-size: .95rem; color: var(--ps-black); font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif; }
.search-close { background: none; border: none; font-size: 1.1rem; color: var(--ps-gray-medium); cursor: pointer; }
.search-results { max-height: 400px; overflow-y: auto; }
.search-empty { padding: 24px; text-align: center; color: var(--ps-gray-medium); font-size: .88rem; }
.search-result-item { display: flex; align-items: center; gap: 12px; padding: 12px 18px; text-decoration: none; color: var(--ps-black); border-bottom: 1px solid var(--ps-border); transition: background .15s; }
.search-result-item:hover { background: var(--ps-gray-lightest); }
.search-result-item img { width: 48px; height: 48px; object-fit: contain; background: var(--ps-gray-lightest); padding: 4px; }
.search-result-title { font-size: .88rem; font-weight: 600; }
.search-result-cat { font-size: .75rem; color: var(--ps-gray-medium); }
.search-result-price { font-size: .9rem; font-weight: 700; }
.search-result-old { font-size: .75rem; color: var(--ps-gray-medium); text-decoration: line-through; }

/* ================================================================
   PAGES & UTILS
================================================================ */
.page-section { padding: 48px 0; max-width: 800px; }
.page-section h1 { font-family: 'TransducerExtended', sans-serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 24px; }
.page-section h2 { font-family: 'Transducer', sans-serif; font-size: 1.1rem; font-weight: 700; margin: 28px 0 10px; color: var(--ps-green-dark); }
.page-section p, .page-section li { font-size: .92rem; line-height: 1.75; color: #444; }
.thanks-section { padding: 64px 0; text-align: center; }
.thanks-icon { font-size: 4rem; color: var(--ps-green-dark); margin-bottom: 20px; }
.thanks-title { font-family: 'TransducerExtended', sans-serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 12px; }
.thanks-sub { color: var(--ps-gray-medium); }
.pd-breadcrumb-wrap { padding: 12px 0; font-size: .82rem; color: var(--ps-gray-medium); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 992px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 768px) {
  .ps-header__search { display: none !important; }
  .ps-header__mobile-search { display: flex !important; }
  .ps-header__main-inner { grid-template-columns: 1fr auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-banner h1 { font-size: 1.8rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-title { font-size: 1.25rem; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .product-card__body { padding: 8px 8px 12px; }
}

/* ================================================================
   TRUST ELEMENTS
================================================================ */

/* Review bar (product page) */
.pd-review-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; margin-bottom: 8px;
}
.pd-review-bar img { flex-shrink: 0; }
.pd-review-bar__text { font-size: .82rem; color: var(--ps-gray-medium); }
.pd-review-bar__text strong { color: var(--ps-black); }

/* Delivery logos (product page) */
.pd-delivery-logos {
  background: var(--ps-gray-lightest);
  border: 1px solid var(--ps-border);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.pd-delivery-logos__label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--ps-gray-medium);
  margin-bottom: 10px;
}
.pd-delivery-logos__label i { color: var(--ps-green-dark); margin-right: 4px; }
.pd-delivery-logos__logos {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.pd-delivery-logos__logos img {
  opacity: .85; filter: grayscale(20%);
  transition: opacity .15s;
}
.pd-delivery-logos__logos img:hover { opacity: 1; }

/* Footer trust strip */
.footer-trust-strip {
  background: var(--ps-gray-lightest);
  border-top: 1px solid var(--ps-border);
  border-bottom: 1px solid var(--ps-border);
}
.footer-trust-strip__inner {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.footer-trust-strip__item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 24px;
  font-size: .82rem; color: var(--ps-gray-medium);
}
.footer-trust-strip__item img { opacity: .75; filter: grayscale(30%); }
.footer-trust-strip__item i { color: var(--ps-green-dark); font-size: .9rem; }
.footer-trust-strip__item--rating { gap: 8px; }
.footer-trust-strip__sep {
  width: 1px; height: 28px; background: var(--ps-border);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer-trust-strip__inner { gap: 8px; }
  .footer-trust-strip__sep { display: none; }
  .footer-trust-strip__item { padding: 6px 12px; font-size: .76rem; }
}

/* Trustpilot row (product page) */
.pd-trustpilot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--ps-gray-lightest);
  border: 1px solid var(--ps-border);
  margin-bottom: 10px;
}
.pd-trustpilot__stars { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--ps-gray-medium); }
.pd-trustpilot__stars img { flex-shrink: 0; }
.pd-trustpilot__logo { opacity: .8; }

/* ================================================================
   PRODUCT PAGE — CLEAN TRUST STRIP
================================================================ */
.pd-trust-strip {
  border: 1px solid var(--ps-border);
  margin-bottom: 16px;
  overflow: hidden;
}
.pd-trust-strip__row {
  display: flex; align-items: center;
  gap: 16px; padding: 10px 14px;
  flex-wrap: wrap;
}
.pd-trust-strip__row + .pd-trust-strip__row {
  border-top: 1px solid var(--ps-border);
  background: var(--ps-gray-lightest);
  font-size: .76rem; color: var(--ps-gray-medium);
}
.pd-trust-strip__row + .pd-trust-strip__row i { color: var(--ps-green-dark); }
.pd-trust-strip__stars {
  display: flex; align-items: center; gap: 7px;
  font-size: .78rem; color: var(--ps-gray-medium); flex: 1;
}
.pd-trust-strip__stars strong { color: var(--ps-black); }
.pd-trust-strip__payments {
  display: flex; align-items: center; gap: 6px;
}
.pd-trust-strip__laposte {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
}
.pd-trust-strip__row--delivery span {
  display: flex; align-items: center; gap: 5px;
}

/* ================================================================
   PRODUCT TRUST STRIP (clean layout)
================================================================ */
.pd-trust-strip {
  border: 1px solid var(--ps-border);
  background: var(--ps-gray-lightest);
  margin-bottom: 16px;
  overflow: hidden;
}
.pd-trust-strip__row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  gap: 12px; flex-wrap: wrap;
}
.pd-trust-strip__row + .pd-trust-strip__row {
  border-top: 1px solid var(--ps-border);
}
.pd-trust-strip__stars {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--ps-gray-medium);
}
.pd-trust-strip__payments {
  display: flex; align-items: center; gap: 6px;
}
.pd-trust-strip__row--delivery {
  font-size: .75rem; color: var(--ps-gray-medium);
  background: var(--ps-white);
  gap: 16px;
}
.pd-trust-strip__row--delivery i { color: var(--ps-green-dark); margin-right: 3px; }
.pd-trust-strip__laposte {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
}

/* ================================================================
   OUTLET — MOBILE OPTIMIZATIONS
================================================================ */

/* Hero */
@media (max-width: 768px) {
  .ol-hero { padding: 32px 0 0; }
  .ol-hero__title { font-size: 2.2rem; }
  .ol-hero__sub { font-size: .9rem; }
  .ol-hero__eyebrow { font-size: .68rem; padding: 5px 14px 5px 10px; }
  .ol-hero__cta { font-size: .9rem; padding: 14px 36px 14px 20px; width: 100%; justify-content: center; }
  .ol-countdown { gap: 6px; }
  .ol-countdown__block { min-width: 46px; padding: 6px 8px; }
  .ol-countdown__num { font-size: 1.3rem; }
  .ol-countdown__label { font-size: .7rem; width: 100%; margin-bottom: 4px; }
  .ol-watchers { font-size: .78rem; width: 100%; }

  /* Hero grid — 2x2 on mobile */
  .ol-hero__grid { grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 28px; }
  .ol-hero__item { padding: 12px 10px 10px; }
  .ol-hero__item__now { font-size: 1.05rem; }
  .ol-hero__item__name { font-size: .75rem; }
  .ol-hero__item__cta { font-size: .72rem; padding: 7px; }

  /* Stats — 2x2 */
  .ol-stats__inner { grid-template-columns: repeat(2,1fr); gap: 0; }
  .ol-stats__item { padding: 12px 10px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.1); }
  .ol-stats__item:nth-child(2n) { border-right: none; }
  .ol-stats__item:nth-child(3), .ol-stats__item:nth-child(4) { border-bottom: none; }
  .ol-stats__num { font-size: 1.5rem; }

  /* Urgency */
  .ol-urgency { font-size: .78rem; padding: 9px 16px; }

  /* Filter */
  .ol-filter__btn { padding: 10px 14px; font-size: .78rem; }

  /* Section head */
  .ol-section-head { margin-bottom: 16px; }
  .ol-section-head__tag { font-size: .68rem; }

  /* Product grid — 2 column on mobile, no featured cards */
  .ol-grid { grid-template-columns: repeat(2,1fr); }
  .ol-card { grid-column: span 1 !important; } /* override featured */
  .ol-card--featured .ol-card__body::before { font-size: .6rem; }
  .ol-card--featured .ol-card__name { font-size: .88rem; }
  .ol-card--featured .ol-card__price { font-size: 1.4rem; }
  .ol-card__body { padding: 10px 10px 12px; gap: 4px; }
  .ol-card__name { font-size: .8rem; }
  .ol-card__price { font-size: 1.2rem; }
  .ol-card__was { font-size: .7rem; }
  .ol-card__saving { font-size: .7rem; }
  .ol-card__cta { padding: 8px; font-size: .75rem; }
  .ol-card__disc { font-size: .66rem; padding: 3px 10px 3px 6px; }

  /* Sticky bar */
  .ol-sticky__inner { padding: 8px 14px; gap: 10px; }
  .ol-sticky__text { font-size: .78rem; }
  .ol-sticky__time { font-size: .95rem; }
  .ol-sticky__cta { font-size: .8rem; padding: 9px 26px 9px 14px; }
  .ol-sticky__countdown { display: none; } /* save space on tiny screens */

  /* CTA band */
  .ol-cta-band h2 { font-size: 1.5rem; }
  .ol-cta-band p { font-size: .88rem; }
}

/* Small phones */
@media (max-width: 380px) {
  .ol-hero__title { font-size: 1.9rem; }
  .ol-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .ol-card__body { padding: 8px; }
  .ol-card__name { font-size: .75rem; }
  .ol-card__price { font-size: 1.1rem; }
  .ol-card__cta { display: none; } /* hide CTA on tiny screens, tap whole card */
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .ol-hero__title { font-size: 3rem; }
  .ol-hero__grid { grid-template-columns: repeat(4,1fr); }
  .ol-grid { grid-template-columns: repeat(12,1fr); }
  .ol-card { grid-column: span 4; }
  .ol-card--featured { grid-column: span 6; }
  .ol-stats__inner { grid-template-columns: repeat(4,1fr); }
}

/* Touch-device tap improvements */
@media (hover: none) {
  .ol-card:hover { box-shadow: none; }
  .ol-card:active { box-shadow: inset 0 0 0 2px var(--ps-black); }
  .ol-card__cta { background: var(--ps-green-power) !important; }
}

/* ── Outlet grid: full-bleed on mobile ── */
@media (max-width: 768px) {
  #ol-products { padding: 28px 0 60px; }
  #ol-products > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }
  .ol-section-head { padding: 0 14px; }
  .ol-filter { margin-bottom: 16px; }
  .ol-filter__inner { padding: 0 14px; }
  .ol-grid { border-left: none; border-right: none; }
  /* CTA band full width */
  .ol-cta-band { padding: 40px 16px; }
  .ol-cta-band .ol-hero__cta { width: 100%; justify-content: center; }
}

/* ================================================================
   OUTLET MOBILE — Complete UX overhaul
   Design principles:
   - Product grid fills the screen edge-to-edge
   - Cards are compact, image-first, scan-friendly
   - Hero collapses to a tight top banner
   - One thumb CTA, high contrast discount badge
   - No clutter: hide non-essential text on small screens
================================================================ */

@media (max-width: 767px) {

  /* ── Hero: compact top banner ── */
  .ol-hero--full { padding: 24px 0 0; }
  .ol-hero__eyebrow { font-size: .65rem; padding: 4px 12px 4px 8px; margin-bottom: 12px; }
  .ol-hero__title { font-size: 1.75rem; line-height: 1.05; margin-bottom: 10px; }
  .ol-hero__sub { font-size: .82rem; margin-bottom: 16px; color: rgba(255,255,255,.55); }

  /* Countdown — single row, compact */
  .ol-countdown { gap: 4px; margin-bottom: 14px; flex-wrap: nowrap; }
  .ol-countdown__label { display: none; }
  .ol-countdown__block { min-width: 40px; padding: 5px 8px; }
  .ol-countdown__num { font-size: 1.1rem; }
  .ol-countdown__unit { font-size: .55rem; }
  .ol-countdown__sep { font-size: 1.1rem; margin-bottom: 10px; }

  /* Watchers — single line */
  .ol-watchers { font-size: .75rem; padding: 5px 10px; margin-bottom: 18px; }

  /* CTA — full width */
  .ol-hero__cta { width: 100%; justify-content: center; font-size: .9rem; padding: 13px 32px 13px 20px; }

  /* Hero grid — horizontal scroll strip instead of grid */
  .ol-hero__grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2px;
    margin-top: 20px;
    padding-bottom: 0;
  }
  .ol-hero__grid::-webkit-scrollbar { display: none; }
  .ol-hero__item {
    flex: 0 0 48vw;
    scroll-snap-align: start;
    min-width: 0;
    padding: 10px 10px 8px;
  }
  .ol-hero__item__name { font-size: .72rem; }
  .ol-hero__item__now { font-size: 1rem; }
  .ol-hero__item__cta { font-size: .7rem; padding: 6px; }

  /* Hide stats entirely on mobile — noise */
  .ol-stats--desktop { display: none !important; }

  /* Urgency — shorter */
  .ol-urgency { font-size: .75rem; padding: 8px 12px; }

  /* Products section — no top padding, grid immediately */
  #ol-products { padding: 20px 0 80px; }
  #ol-products > .container {
    padding: 0 !important;
    max-width: 100% !important;
  }
  .ol-section-head { padding: 0 12px; margin-bottom: 12px; }
  .ol-section-head__tag { font-size: .65rem; padding: 5px 14px 5px 10px; }
  .ol-section-head__count { font-size: .75rem; }

  /* Filter — compact pill style */
  .ol-filter { margin-bottom: 12px; }
  .ol-filter__inner { padding: 0 12px; gap: 6px; display: flex; }
  .ol-filter__btn {
    padding: 7px 12px;
    font-size: .72rem;
    border: 1px solid var(--ps-border);
    border-bottom: 2px solid transparent;
    background: var(--ps-white);
    border-radius: 0;
    white-space: nowrap;
  }
  .ol-filter__btn i { display: none; } /* icon takes too much space */
  .ol-filter__btn.active { background: var(--ps-green-dark); color: #fff; border-color: var(--ps-green-dark); }

  /* Product grid — 2 col, clean, edge-to-edge */
  .ol-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1px !important;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }

  /* ALL cards same size on mobile — no featured */
  .ol-card { grid-column: span 1 !important; }
  .ol-card--featured .ol-card__body::before { display: none; }

  /* Card: image top, info bottom, super clean */
  .ol-card__img { aspect-ratio: 1/1; } /* square on mobile = more product visible */
  .ol-card__img img { padding: 10px; }

  .ol-card__body { padding: 8px 8px 10px; gap: 3px; }
  .ol-card__name { font-size: .75rem; -webkit-line-clamp: 2; line-height: 1.3; }
  .ol-card__was { display: none; } /* hide "Prix d'origine" on mobile */
  .ol-card__price { font-size: 1.15rem; margin-top: 2px; }
  .ol-card__saving { display: none; } /* hide savings text on mobile */
  .ol-card__cta {
    padding: 7px 8px;
    font-size: .72rem;
    margin-top: 6px;
    clip-path: none; /* remove parallelogram on mobile — looks odd small */
    background: var(--ps-green-dark);
    color: #fff;
    text-align: center;
    display: block;
  }
  .ol-card:active .ol-card__cta { background: var(--ps-green-base); }

  /* Discount badge — compact */
  .ol-card__disc {
    font-size: .65rem;
    padding: 3px 10px 3px 6px;
    clip-path: none;
    background: var(--ps-red);
  }

  /* Sticky bar — slimmer */
  .ol-sticky__inner { padding: 8px 12px; gap: 8px; }
  .ol-sticky__text { font-size: .75rem; }
  .ol-sticky__text strong { display: none; } /* just icon + "Offres flash" */
  .ol-sticky__countdown { display: none; }
  .ol-sticky__cta {
    font-size: .8rem;
    padding: 10px 28px 10px 14px;
    clip-path: none;
    flex-shrink: 0;
  }

  /* CTA band */
  .ol-cta-band { padding: 36px 16px; }
  .ol-cta-band h2 { font-size: 1.4rem; margin-bottom: 8px; }
  .ol-cta-band p { font-size: .82rem; margin-bottom: 20px; }
  .ol-cta-band .ol-hero__cta {
    width: 100%; justify-content: center;
    clip-path: none; padding: 14px 20px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .ol-hero__title { font-size: 1.5rem; }
  .ol-card__name { font-size: .7rem; }
  .ol-card__price { font-size: 1rem; }
}

/* ================================================================
   OUTLET — MOBILE UX OVERHAUL (max-width: 768px)
   Philosophy: speed > decoration. Show products fast, tap easy.
================================================================ */
@media (max-width: 768px) {

  /* ── Hero: slim & focused ── */
  .ol-hero--full { padding: 24px 0 0; }
  .ol-hero__eyebrow { font-size: .65rem; padding: 4px 12px; margin-bottom: 12px; }
  .ol-hero__title { font-size: 1.9rem; line-height: 1.05; margin-bottom: 10px; }
  .ol-hero__sub { font-size: .82rem; margin-bottom: 16px; color: rgba(255,255,255,.55); }

  /* Countdown: compact single row */
  .ol-countdown { gap: 5px; margin-bottom: 14px; align-items: center; }
  .ol-countdown__label { font-size: .65rem; }
  .ol-countdown__block { min-width: 40px; padding: 5px 7px; }
  .ol-countdown__num { font-size: 1.1rem; }
  .ol-countdown__unit { font-size: .55rem; }
  .ol-countdown__sep { font-size: 1rem; margin-bottom: 8px; }

  /* Watchers: single line */
  .ol-watchers { font-size: .72rem; padding: 5px 10px; margin-bottom: 18px; width: auto; display: inline-flex; }

  /* CTA: full width, big tap target */
  .ol-hero__cta { width: 100%; justify-content: center; padding: 15px 20px; font-size: .92rem; clip-path: none; border-radius: 0; }

  /* Hero grid: hide on mobile — too cluttered, show products below instead */
  .ol-hero__grid { display: none; }

  /* ── Stats: hidden on mobile (noise) ── */
  .ol-stats--desktop { display: none; }

  /* ── Urgency: tighter ── */
  .ol-urgency { font-size: .75rem; padding: 8px 12px; line-height: 1.4; }

  /* ── Section head ── */
  .ol-section-head { padding: 0 12px; margin-bottom: 12px; }
  .ol-section-head__tag { font-size: .65rem; padding: 4px 14px 4px 10px; }
  .ol-section-head__line { display: none; }

  /* ── Filter: icon-only on mobile ── */
  .ol-filter { margin-bottom: 0; position: sticky; top: 104px; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
  .ol-filter__inner { padding: 0 8px; gap: 0; }
  .ol-filter__btn { padding: 10px 10px; font-size: .72rem; }
  /* Hide label text, keep icon */
  .ol-filter__btn .btn-label { display: none; }

  /* ── Products: 2-col compact grid ── */
  #ol-products { padding: 0 0 80px; }
  #ol-products > .container { padding: 0 !important; max-width: 100% !important; }
  .ol-section-head { padding: 16px 12px 8px; }

  .ol-grid { grid-template-columns: repeat(2,1fr); gap: 1px; border-left: none; border-right: none; border-radius: 0; }

  /* All cards same size on mobile — no featured */
  .ol-card, .ol-card--featured { grid-column: span 1 !important; }

  /* Card: clean & minimal */
  .ol-card__img { aspect-ratio: 1/1; } /* Square crop — looks better in 2col */
  .ol-card--featured .ol-card__img { aspect-ratio: 1/1; }
  .ol-card__img img { padding: 10px; }

  .ol-card__body { padding: 8px 10px 10px; gap: 3px; }
  .ol-card__disc { font-size: .65rem; padding: 3px 8px 3px 6px; }

  /* Hide noise on mobile */
  .ol-card__was,
  .ol-card__saving,
  .ol-card--featured .ol-card__body::before { display: none; }

  .ol-card__name {
    font-size: .78rem; font-weight: 600; line-height: 1.3;
    -webkit-line-clamp: 2;
    min-height: 2em;
  }
  .ol-card__price {
    font-size: 1.15rem;
    margin-top: 4px;
  }
  /* CTA becomes a thin bar */
  .ol-card__cta {
    padding: 7px 8px;
    font-size: .72rem;
    clip-path: none;
    text-align: center;
    margin-top: 6px;
  }

  /* ── Sticky bar: minimal ── */
  .ol-sticky__inner { padding: 9px 14px; gap: 10px; flex-wrap: nowrap; }
  .ol-sticky__text { font-size: .75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ol-sticky__countdown { display: none; }
  .ol-sticky__cta { font-size: .8rem; padding: 9px 24px 9px 14px; clip-path: none; white-space: nowrap; flex-shrink: 0; }

  /* ── CTA band ── */
  .ol-cta-band { padding: 36px 16px; }
  .ol-cta-band h2 { font-size: 1.4rem; margin-bottom: 8px; }
  .ol-cta-band p { font-size: .82rem; margin-bottom: 20px; }
  .ol-cta-band .ol-hero__cta { clip-path: none; width: 100%; justify-content: center; font-size: .88rem; }
}

/* ── Small phones ── */
@media (max-width: 380px) {
  .ol-hero__title { font-size: 1.6rem; }
  .ol-card__price { font-size: 1rem; }
  .ol-card__name { font-size: .72rem; }
  .ol-card__cta { font-size: .68rem; padding: 6px; }
}

/* ── Filter label hide/show ── */
@media (max-width: 600px) {
  .ol-filter__btn .btn-label { display: none; }
}

/* ── Show old price on mobile cards ── */
@media (max-width: 768px) {
  .ol-card__was { display: block; font-size: .7rem; color: var(--ps-gray-medium); }
  .ol-card__was span { text-decoration: line-through; }
  /* Stack: old price line, then big current price */
  .ol-card__price { font-size: 1.1rem; margin-top: 2px; }
}

/* ── Filter: always show labels, just compact on mobile ── */
@media (max-width: 768px) {
  .ol-filter__btn .btn-label { display: inline !important; }
  .ol-filter { position: sticky; top: 104px; z-index: 100; background: var(--ps-white); box-shadow: 0 2px 6px rgba(0,0,0,.08); }
  .ol-filter__inner { padding: 0 4px; }
  .ol-filter__btn {
    padding: 10px 8px;
    font-size: .7rem;
    white-space: nowrap;
    border-bottom-width: 2px;
  }
  .ol-filter__btn i { margin-right: 3px; font-size: .7rem; }
}
@media (max-width: 480px) {
  .ol-filter__btn { padding: 9px 6px; font-size: .65rem; }
  .ol-filter__btn i { display: none; }
}

/* ================================================================
   PRODUCT PAGE — UNIFIED TRUST PANEL (Parkside style)
================================================================ */
.pd-trust-panel {
  border: 1px solid var(--ps-border);
  margin-bottom: 20px;
  overflow: hidden;
}

/* Top row: rating + payments */
.pd-trust-panel__top {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--ps-gray-lightest);
  border-bottom: 1px solid var(--ps-border);
  gap: 12px; flex-wrap: wrap;
}
.pd-trust-panel__rating {
  display: flex; align-items: center; gap: 7px;
  font-size: .78rem; color: var(--ps-gray-medium);
}
.pd-trust-panel__rating strong { color: var(--ps-black); }
.pd-trust-panel__payments {
  display: flex; align-items: center; gap: 6px;
}

/* Icons row */
.pd-trust-panel__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ps-white);
}
.pd-trust-panel__icon {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; padding: 12px 8px;
  text-align: center;
  border-right: 1px solid var(--ps-border);
  font-size: .72rem; color: var(--ps-gray-medium);
  line-height: 1.3;
}
.pd-trust-panel__icon:last-child { border-right: none; }
.pd-trust-panel__icon i {
  font-size: 1.1rem; color: var(--ps-green-dark);
  margin-bottom: 2px;
}
.pd-trust-panel__icon strong { color: var(--ps-black); }

/* Mobile: 2x2 grid */
@media (max-width: 600px) {
  .pd-trust-panel__icons { grid-template-columns: repeat(2, 1fr); }
  .pd-trust-panel__icon:nth-child(2) { border-right: none; }
  .pd-trust-panel__icon:nth-child(3), .pd-trust-panel__icon:nth-child(4) {
    border-top: 1px solid var(--ps-border);
  }
  .pd-trust-panel__top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pd-trust-panel__rating { flex-wrap: wrap; }
}

/* ================================================================
   CART — MOBILE FIXES
================================================================ */
@media (max-width: 768px) {
  /* Full width, no side padding */
  .cp-cart-wrap { padding: 20px 0 100px; }

  /* Header */
  .cp-cart-header { padding: 0 14px; margin-bottom: 16px; }
  .cp-cart-title { font-size: 1.2rem; }

  /* Cart items — stack cleanly */
  .cp-cart-items { border-left: none; border-right: none; border-radius: 0; }
  .cp-cart-item { padding: 14px; gap: 12px; align-items: flex-start; }

  /* Image: square, white bg */
  .cp-cart-item-img-wrap {
    width: 72px; height: 72px; flex-shrink: 0;
  }
  .cp-cart-item-img { width: 100%; height: 100%; }

  /* Info */
  .cp-cart-item-info { flex: 1; min-width: 0; }
  .cp-cart-item-title { font-size: .82rem; white-space: normal; line-height: 1.35; }
  .cp-cart-item-delivery { font-size: .72rem; }
  .cp-price-now { font-size: 1rem; }
  .cp-price-old { font-size: .75rem; }

  /* Remove button: top right */
  .cp-cart-item-remove { align-self: flex-start; }
  .cp-btn-remove { padding: 4px 8px; }

  /* Continue link */
  .cp-cart-continue { padding: 0 14px; margin-top: 12px; font-size: .82rem; }

  /* Desktop summary hidden, mobile shown */
  .cp-cart-layout { grid-template-columns: 1fr; }

  /* Mobile summary: clean card */
  .cp-cart-summary--mobile {
    margin: 12px 14px 0;
    border: 1px solid var(--ps-border);
    border-radius: 0;
  }
  .cp-summary-label { font-size: .8rem; }
  .cp-summary-row { font-size: .82rem; }
  .cp-summary-total { font-size: .95rem; }

  /* CTA: full width, big tap target */
  .cp-btn-checkout {
    font-size: .9rem; padding: 14px 20px;
    clip-path: none; border-radius: 0;
  }

  /* Trust strip */
  .cp-trust-strip { gap: 10px; font-size: .68rem; }
}

@media (max-width: 380px) {
  .cp-cart-item-img-wrap { width: 60px; height: 60px; }
  .cp-cart-item-title { font-size: .78rem; }
}

/* ── How-it-works: vertical layout, num left of title+desc ── */
.pd-how-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  max-width: 420px;
  margin: 0 auto;
}
.pd-how-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  flex: none;
  min-width: unset;
  max-width: unset;
}
.pd-how-num {
  flex-shrink: 0;
  margin: 0;
}
.pd-how-step > div:not(.pd-how-num) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pd-how-arrow {
  display: none; /* hide horizontal arrows */
}

/* ── How-it-works: vertical only on mobile ── */
@media (min-width: 769px) {
  .pd-how-steps {
    flex-direction: row !important;
    align-items: center !important;
    max-width: none !important;
  }
  .pd-how-step {
    display: block !important;
    text-align: center !important;
    flex: 1 !important;
  }
  .pd-how-num { margin: 0 auto 10px !important; }
  .pd-how-step > div:not(.pd-how-num) { display: block !important; }
  .pd-how-arrow { display: block !important; }
}

/* ── How-it-works mobile: title above desc ── */
@media (max-width: 768px) {
  .pd-how-step { align-items: flex-start; }
  .pd-how-title { font-weight: 700; font-size: .9rem; }
  .pd-how-desc  { font-size: .78rem; color: var(--ps-gray-medium); }
}

/* ── pd-how-text: title + desc stacked ── */
.pd-how-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── Search overlay: no top padding on mobile ── */
@media (max-width: 768px) {
  .search-overlay { padding-top: 0; }
}

/* ── Header padding fixes on mobile ── */
@media (max-width: 768px) {
  .ps-header__main-inner { padding: 0 10px; }
  .ps-header__catnav-inner { padding: 0; }
}

/* ── Sticky CTA: title + price stacked on mobile ── */
@media (max-width: 768px) {
  .pd-sticky-inner {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .pd-sticky-title-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }
  .pd-sticky-title {
    font-size: .8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pd-sticky-price {
    font-size: .95rem;
    color: var(--ps-green-power);
    font-family: 'TransducerExtended', sans-serif;
    font-weight: 900;
  }
}

/* ── Cart wrap padding on mobile ── */
@media (max-width: 768px) {
  .cp-cart-wrap { padding: 20px 0 0; }
}
