/* ============================================================
   PulseRecover — Global Styles
   Imports Design-System tokens + adds component overrides
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&display=swap');

:root {
  /* Foundation */
  --pr-bg-base: #FAF9F6;
  --pr-bg-secondary: #F5F2EC;
  --pr-bg-tertiary: #EDE8DE;
  --pr-text-primary: #1A1A1A;
  --pr-text-secondary: #5F5F60;
  --pr-text-tertiary: #8A8A8C;
  --pr-border: #E5E1DA;
  --pr-border-strong: #D6D0C4;

  /* Accent — Terracotta */
  --pr-accent-50: #FBF1ED;
  --pr-accent-100: #F5DDD2;
  --pr-accent-200: #ECBBA6;
  --pr-accent-300: #E29A79;
  --pr-accent-400: #D87856;
  --pr-accent-500: #C85A3A;
  --pr-accent-600: #A84629;
  --pr-accent-700: #8A3621;
  --pr-accent-800: #6B2918;
  --pr-accent-900: #4B1C11;

  /* Ink */
  --pr-ink-50: #F4F4F3;
  --pr-ink-100: #E5E4E2;
  --pr-ink-200: #C9C7C3;
  --pr-ink-300: #A6A4A0;
  --pr-ink-400: #7C7A77;
  --pr-ink-500: #5F5F60;
  --pr-ink-600: #404043;
  --pr-ink-700: #2A2A2D;
  --pr-ink-800: #1A1A1A;
  --pr-ink-900: #0E0E0F;

  /* Semantic */
  --pr-success: #2D6A4F;
  --pr-success-bg: #E4EFE8;
  --pr-warning: #B07A1E;
  --pr-warning-bg: #F6EEDB;
  --pr-error: #9D2933;
  --pr-error-bg: #F4DDDF;
  --pr-info: #2C5C7A;
  --pr-info-bg: #E1EBF1;

  /* Shadows */
  --pr-elev-1: 0 1px 2px rgba(36,24,12,0.04), 0 1px 1px rgba(36,24,12,0.03);
  --pr-elev-2: 0 4px 12px rgba(36,24,12,0.06), 0 1px 2px rgba(36,24,12,0.04);
  --pr-elev-3: 0 12px 32px rgba(36,24,12,0.10), 0 2px 6px rgba(36,24,12,0.05);

  --pr-focus-ring: 0 0 0 3px rgba(200,90,58,0.35);

  /* Motion */
  --pr-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --pr-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Figtree', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--pr-text-primary);
  background: var(--pr-bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font-family: inherit; }

img { max-width: 100%; display: block; }

/* ===================== TYPE HELPERS ===================== */
.pr-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--pr-accent-600);
}
.pr-display { font-weight: 700; font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.02em; }
.pr-h1 { font-weight: 700; font-size: clamp(36px, 4.5vw, 48px); line-height: 1.15; letter-spacing: -0.02em; }
.pr-h2 { font-weight: 700; font-size: clamp(28px, 3.2vw, 36px); line-height: 1.2; letter-spacing: -0.01em; }
.pr-h3 { font-weight: 600; font-size: 24px; line-height: 32px; letter-spacing: -0.01em; }
.pr-h4 { font-weight: 600; font-size: 20px; line-height: 28px; }
.pr-body-lg { font-size: 18px; line-height: 28px; }
.pr-small { font-size: 14px; line-height: 20px; color: var(--pr-text-secondary); }
.pr-caption { font-size: 12px; line-height: 16px; color: var(--pr-text-tertiary); font-weight: 500; }

/* ===================== LAYOUT ===================== */
.pr-container { max-width: 1280px; margin: 0 auto; padding-left: clamp(16px, 4vw, 32px); padding-right: clamp(16px, 4vw, 32px); }

/* ===================== TOP-BAR ===================== */
.pr-topbar {
  background: var(--pr-ink-800);
  color: var(--pr-bg-base);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.01em;
}
.pr-topbar .sep { color: var(--pr-ink-400); margin: 0 12px; }

/* ===================== HEADER ===================== */
.pr-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pr-border);
}
.pr-header-inner {
  height: 72px;
  display: flex; align-items: center; gap: 32px;
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.pr-logo { height: 28px; }
.pr-nav { display: flex; gap: 28px; flex: 1; }
.pr-nav a {
  font-size: 15px; font-weight: 500; color: var(--pr-text-primary);
  display: inline-flex; align-items: center; gap: 4px; cursor: pointer;
  padding: 12px 4px; position: relative; min-height: 44px;
}
.pr-nav a:hover { color: var(--pr-accent-600); text-decoration: none; }
.pr-nav a.active { color: var(--pr-accent-600); }
.pr-header-actions { display: flex; align-items: center; gap: 4px; }
.pr-icon-btn {
  width: 40px; height: 40px; border-radius: 8px; border: none; background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer; color: var(--pr-text-primary);
  transition: background 120ms;
}
.pr-icon-btn:hover { background: var(--pr-bg-secondary); }
.pr-cart-badge {
  position: absolute; top: 6px; right: 6px;
  background: var(--pr-accent-500); color: white;
  font-size: 10px; font-weight: 700; line-height: 1;
  padding: 2px 5px; border-radius: 9999px; min-width: 16px; text-align: center;
}

/* mobile menu toggle */
.pr-mobile-toggle { display: none; }
@media (max-width: 1023px) {
  .pr-header-inner { height: 56px; gap: 8px; }
  .pr-nav { display: none; }
  .pr-mobile-toggle { display: inline-flex; }
  .pr-logo { height: 22px; margin: 0 auto; }
  .pr-header-actions .pr-lang { display: none; }
}

/* ===================== MEGA MENU ===================== */
.pr-mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--pr-bg-base); border-bottom: 1px solid var(--pr-border);
  box-shadow: var(--pr-elev-2);
  padding: 32px 0;
  display: none;
}
.pr-mega.open { display: block; }
.pr-mega-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px);
  display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 48px;
}
.pr-mega h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--pr-text-tertiary);
  margin: 0 0 16px;
}
.pr-mega ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pr-mega li a {
  font-size: 15px; color: var(--pr-text-primary); display: inline-flex; align-items: center; gap: 6px;
}
.pr-mega li a:hover { color: var(--pr-accent-600); text-decoration: none; }
.pr-mega-feature {
  background: var(--pr-bg-secondary); border-radius: 12px; padding: 20px;
  display: flex; gap: 16px; align-items: center;
}
.pr-mega-feature-img {
  width: 120px; height: 120px; border-radius: 8px;
  background: linear-gradient(135deg, #E29A79, #C85A3A);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 13px; font-weight: 600; text-align: center; padding: 8px;
}

/* ===================== MOBILE DRAWER ===================== */
.pr-drawer-overlay {
  position: fixed; inset: 0; background: rgba(26,26,26,0.5); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity 200ms;
}
.pr-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.pr-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 320px; max-width: 90vw;
  background: var(--pr-bg-base); z-index: 100;
  transform: translateX(-100%);
  transition: transform 240ms var(--pr-ease-out);
  display: flex; flex-direction: column;
  box-shadow: var(--pr-elev-3);
}
.pr-drawer.open { transform: translateX(0); }
.pr-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--pr-border);
}
.pr-drawer-body { padding: 16px 8px; overflow-y: auto; flex: 1; }
.pr-drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; font-size: 16px; font-weight: 600;
  color: var(--pr-text-primary); border-radius: 8px;
}
.pr-drawer-link:hover { background: var(--pr-bg-secondary); text-decoration: none; }

/* ===================== BUTTONS ===================== */
.pr-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  height: 44px; padding: 0 20px; border-radius: 8px; border: none;
  cursor: pointer; white-space: nowrap;
  transition: background 120ms, color 120ms, transform 120ms, box-shadow 120ms;
  text-decoration: none;
}
.pr-btn:hover { text-decoration: none; }
.pr-btn:active { transform: translateY(1px); }
.pr-btn:focus-visible { outline: none; box-shadow: var(--pr-focus-ring); }

.pr-btn-primary { background: var(--pr-accent-500); color: white; }
.pr-btn-primary:hover { background: var(--pr-accent-600); }
.pr-btn-primary:active { background: var(--pr-accent-700); }

.pr-btn-secondary { background: transparent; color: var(--pr-text-primary); border: 1px solid var(--pr-text-primary); }
.pr-btn-secondary:hover { background: var(--pr-text-primary); color: white; }

.pr-btn-ghost { background: transparent; color: var(--pr-accent-600); }
.pr-btn-ghost:hover { background: var(--pr-accent-50); }

.pr-btn-link { background: transparent; color: var(--pr-accent-600); padding: 8px 0; height: auto; min-height: 40px; }
.pr-btn-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.pr-btn-sm { height: 36px; padding: 0 14px; font-size: 14px; }
.pr-btn-lg { height: 52px; padding: 0 24px; font-size: 16px; }
.pr-btn-full { width: 100%; }

/* ===================== BADGES ===================== */
.pr-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; padding: 4px 8px;
  border-radius: 4px; line-height: 1.3;
}
.pr-badge-dark { background: var(--pr-ink-800); color: white; }
.pr-badge-accent { background: var(--pr-accent-500); color: white; }
.pr-badge-sale { background: var(--pr-accent-50); color: var(--pr-accent-700); }
.pr-badge-eco { background: var(--pr-success-bg); color: var(--pr-success); }

/* ===================== PRODUCT CARD ===================== */
.pr-product-card {
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: var(--pr-elev-1);
  position: relative; cursor: pointer;
  transition: transform 200ms var(--pr-ease-out), box-shadow 200ms;
  display: flex; flex-direction: column;
}
.pr-product-card:hover {
  transform: translateY(-4px); box-shadow: var(--pr-elev-2); text-decoration: none;
}
.pr-product-card:hover .pr-quick-add { opacity: 1; pointer-events: auto; }
.pr-product-card:hover .pr-product-img-alt { opacity: 1; }
.pr-product-card-img {
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500;
  position: relative; overflow: hidden;
}
.pr-product-img-alt {
  position: absolute; inset: 0; opacity: 0; transition: opacity 240ms;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(0,0,0,0.18));
  display: flex; align-items: flex-end; justify-content: flex-start; padding: 14px;
  font-size: 12px; color: rgba(255,255,255,0.95);
}
.pr-product-card-body { padding: 14px 16px 16px; }
.pr-swatches { display: flex; gap: 6px; margin-bottom: 8px; }
.pr-swatch {
  width: 14px; height: 14px; border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.08);
}
.pr-product-meta {
  font-size: 12px; color: var(--pr-text-secondary);
  display: flex; align-items: center; gap: 6px; margin-bottom: 4px;
}
.pr-product-meta b { color: var(--pr-text-primary); font-weight: 600; }
.pr-product-name { font-size: 15px; font-weight: 600; color: var(--pr-text-primary); line-height: 1.25; }
.pr-product-sub { font-size: 13px; color: var(--pr-text-secondary); margin-top: 2px; }
.pr-product-price { font-size: 16px; font-weight: 700; color: var(--pr-text-primary); margin-top: 10px; }
.pr-product-price s { color: var(--pr-text-tertiary); font-weight: 500; margin-left: 6px; }
.pr-product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
}
.pr-quick-add {
  position: absolute; right: 12px; bottom: 12px;
  background: var(--pr-ink-800); color: white;
  font-size: 13px; font-weight: 600; padding: 10px 14px;
  min-height: 40px; border-radius: 10px;
  opacity: 0; pointer-events: none; transition: opacity 200ms, transform 200ms, background 120ms;
  display: inline-flex; align-items: center; gap: 6px; border: none; cursor: pointer;
}
.pr-quick-add:hover { background: var(--pr-accent-600); transform: translateY(-2px); }
@media (hover: none) {
  .pr-quick-add { opacity: 1; pointer-events: auto; }
}

.pr-stars { display: inline-flex; color: var(--pr-accent-500); letter-spacing: 1px; font-size: 13px; line-height: 1; }
.pr-stars .empty { color: var(--pr-border); }

/* ===================== INPUTS ===================== */
.pr-input, .pr-select, .pr-textarea {
  width: 100%; font-family: inherit; font-size: 15px;
  height: 48px; padding: 0 16px;
  background: white; color: var(--pr-text-primary);
  border: 1px solid var(--pr-border); border-radius: 8px;
  outline: none; transition: border-color 120ms, box-shadow 120ms;
}
.pr-textarea { height: auto; min-height: 120px; padding: 12px 16px; line-height: 22px; }
.pr-input:focus, .pr-select:focus, .pr-textarea:focus {
  border-color: var(--pr-accent-500); box-shadow: var(--pr-focus-ring);
}
.pr-input::placeholder, .pr-textarea::placeholder { color: var(--pr-text-tertiary); }

.pr-label { font-size: 14px; font-weight: 500; color: var(--pr-text-primary); display: block; margin-bottom: 8px; }
.pr-helper { font-size: 13px; color: var(--pr-text-secondary); margin-top: 6px; }

.pr-checkbox { display: inline-flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; line-height: 20px; color: var(--pr-text-primary); }
.pr-checkbox input { width: 18px; height: 18px; accent-color: var(--pr-accent-500); margin-top: 1px; flex-shrink: 0; }

/* ===================== SECTIONS ===================== */
.pr-section { padding: clamp(48px, 8vw, 96px) 0; }
.pr-section-sm { padding: clamp(32px, 5vw, 64px) 0; }
.pr-section-secondary { background: var(--pr-bg-secondary); }
.pr-section-tertiary { background: var(--pr-bg-tertiary); }
.pr-section-accent { background: var(--pr-accent-50); }
.pr-section-dark { background: var(--pr-ink-800); color: var(--pr-bg-secondary); }

.pr-section-head { text-align: center; margin-bottom: 48px; }
.pr-section-head .pr-eyebrow { margin-bottom: 12px; display: block; }
.pr-section-head h2 { margin: 0 auto 12px; max-width: 720px; }
.pr-section-head p { color: var(--pr-text-secondary); max-width: 600px; margin: 0 auto; font-size: 17px; line-height: 26px; }

/* ===================== GRIDS ===================== */
.pr-grid { display: grid; gap: 24px; }
.pr-grid-2 { grid-template-columns: repeat(2, 1fr); }
.pr-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pr-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pr-grid-5 { grid-template-columns: repeat(5, 1fr); }
.pr-grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1023px) {
  .pr-grid-4, .pr-grid-5, .pr-grid-6 { grid-template-columns: repeat(3, 1fr); }
  .pr-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .pr-grid-2, .pr-grid-3, .pr-grid-4, .pr-grid-5, .pr-grid-6 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===================== FOOTER ===================== */
.pr-footer { background: var(--pr-ink-800); color: var(--pr-ink-300); padding: 64px 0 24px; margin-top: 64px; }
.pr-footer h4 {
  color: white; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin: 0 0 16px;
}
.pr-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pr-footer li a { color: var(--pr-ink-300); font-size: 14px; }
.pr-footer li a:hover { color: white; text-decoration: none; }
.pr-footer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; padding-bottom: 32px; }
@media (max-width: 1023px) { .pr-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 639px) { .pr-footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.pr-footer-newsletter {
  background: var(--pr-ink-700); border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.pr-footer-newsletter input {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  color: white; height: 44px; padding: 0 14px; border-radius: 8px;
  font-family: inherit; font-size: 14px;
}
.pr-footer-newsletter input::placeholder { color: var(--pr-ink-400); }

.pr-footer-trust {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--pr-ink-700); border-bottom: 1px solid var(--pr-ink-700);
  font-size: 13px; color: var(--pr-ink-300);
}
.pr-footer-trust .item { display: inline-flex; align-items: center; gap: 8px; }

.pr-footer-payments { display: flex; gap: 8px; flex-wrap: wrap; }
.pr-footer-payments span {
  background: var(--pr-ink-700); color: var(--pr-ink-200);
  padding: 6px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
}

.pr-footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 20px; font-size: 13px; color: var(--pr-ink-300);
}
.pr-footer-bottom a:hover { color: white; }
.pr-footer-social { display: flex; gap: 12px; }
.pr-footer-social a {
  width: 36px; height: 36px; border-radius: 9999px;
  background: var(--pr-ink-700); display: inline-flex; align-items: center; justify-content: center;
  color: var(--pr-ink-200);
}
.pr-footer-social a:hover { background: var(--pr-accent-500); color: white; }

/* ===================== HERO ===================== */
.pr-hero {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 8vw, 96px);
}
@media (max-width: 1023px) {
  .pr-hero { grid-template-columns: 1fr; gap: 32px; }
  .pr-hero-img { order: -1; aspect-ratio: 16/10 !important; }
}
.pr-hero-img {
  aspect-ratio: 5/6; border-radius: 20px; overflow: hidden; position: relative;
  background: linear-gradient(155deg, #E29A79 0%, #C85A3A 60%, #8A3621 100%);
  box-shadow: var(--pr-elev-3);
}
.pr-hero-img .img-label {
  position: absolute; bottom: 20px; left: 24px; right: 24px;
  color: rgba(255,255,255,0.85); font-size: 12px;
}
.pr-hero-img::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 28% 22%, rgba(255,255,255,0.30) 0%, transparent 50%);
}

/* ===================== CATEGORY TILE ===================== */
.pr-cat-tile {
  display: block; aspect-ratio: 1/1.1; border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform 240ms var(--pr-ease-out), box-shadow 240ms;
  background: var(--pr-bg-secondary);
}
.pr-cat-tile:hover { transform: translateY(-4px); box-shadow: var(--pr-elev-2); text-decoration: none; }
.pr-cat-tile-img {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500;
}
.pr-cat-tile-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(26,26,26,0) 0%, rgba(26,26,26,0.55) 100%);
  color: white; display: flex; justify-content: space-between; align-items: center;
}
.pr-cat-tile-label .name { font-size: 18px; font-weight: 600; }
.pr-cat-tile-label .count { font-size: 13px; opacity: 0.85; }

/* ===================== ACCORDION ===================== */
.pr-accordion { border: 1px solid var(--pr-border); border-radius: 12px; overflow: hidden; background: white; }
.pr-accordion-item { border-top: 1px solid var(--pr-border); }
.pr-accordion-item:first-child { border-top: none; }
.pr-accordion-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; font-size: 16px; font-weight: 500; color: var(--pr-text-primary);
  text-align: left; font-family: inherit;
}
.pr-accordion-trigger:hover { background: var(--pr-bg-base); }
.pr-accordion-trigger:focus-visible { outline: none; box-shadow: var(--pr-focus-ring) inset; }
.pr-accordion-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--pr-text-secondary); transition: transform 200ms; }
.pr-accordion-item.open .pr-accordion-icon { transform: rotate(45deg); }
.pr-accordion-panel {
  max-height: 0; overflow: hidden; transition: max-height 320ms var(--pr-ease-out);
}
.pr-accordion-item.open .pr-accordion-panel { max-height: 800px; }
.pr-accordion-panel-inner { padding: 0 20px 20px; font-size: 15px; line-height: 24px; color: var(--pr-ink-600); }

/* ===================== FEATURE STRIP ===================== */
.pr-feature-strip {
  background: var(--pr-bg-secondary);
  border-top: 1px solid var(--pr-border); border-bottom: 1px solid var(--pr-border);
}
.pr-feature-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 32px 0;
}
@media (max-width: 1023px) { .pr-feature-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.pr-feature-strip-item { display: flex; flex-direction: column; gap: 10px; }
.pr-feature-strip-item .icon { color: var(--pr-accent-600); }
.pr-feature-strip-item h5 { margin: 0; font-size: 15px; font-weight: 700; color: var(--pr-text-primary); }
.pr-feature-strip-item p { margin: 0; font-size: 13px; color: var(--pr-text-secondary); line-height: 1.45; }

/* ===================== BREADCRUMB ===================== */
.pr-breadcrumb { font-size: 13px; color: var(--pr-text-secondary); padding: 16px 0; display: flex; gap: 6px; flex-wrap: wrap; }
.pr-breadcrumb a { color: var(--pr-text-secondary); }
.pr-breadcrumb a:hover { color: var(--pr-accent-600); }
.pr-breadcrumb .sep { color: var(--pr-text-tertiary); }
.pr-breadcrumb .current { color: var(--pr-text-primary); font-weight: 500; }

/* ===================== TRUST BADGES ===================== */
.pr-trust-row {
  display: flex; flex-direction: column; gap: 12px;
  padding: 16px; background: var(--pr-bg-secondary); border-radius: 8px;
}
.pr-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--pr-text-primary);
}
.pr-trust-item .icon { color: var(--pr-accent-600); flex-shrink: 0; }

/* ===================== REVIEW DISTRIBUTION ===================== */
.pr-review-summary {
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start;
  padding: 24px; background: var(--pr-bg-secondary); border-radius: 12px;
}
@media (max-width: 767px) { .pr-review-summary { grid-template-columns: 1fr; gap: 16px; } }
.pr-review-bar { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--pr-text-secondary); margin-bottom: 6px; }
.pr-review-bar .track { flex: 1; height: 6px; background: var(--pr-border); border-radius: 9999px; overflow: hidden; }
.pr-review-bar .fill { height: 100%; background: var(--pr-accent-500); border-radius: 9999px; }

/* ===================== REVIEW CARD ===================== */
.pr-review {
  background: white; border: 1px solid var(--pr-border); border-radius: 12px;
  padding: 20px;
}
.pr-review-head { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.pr-review-avatar {
  width: 40px; height: 40px; border-radius: 9999px;
  background: var(--pr-accent-100); color: var(--pr-accent-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.pr-verified {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--pr-success-bg); color: var(--pr-success);
  font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 9999px;
}

/* ===================== STEP INDICATOR ===================== */
.pr-steps { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; font-size: 14px; }
.pr-steps .step { display: flex; align-items: center; gap: 8px; color: var(--pr-text-tertiary); }
.pr-steps .step .num {
  width: 28px; height: 28px; border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pr-bg-secondary); color: var(--pr-text-secondary); font-weight: 600; font-size: 13px;
}
.pr-steps .step.active { color: var(--pr-text-primary); font-weight: 600; }
.pr-steps .step.active .num { background: var(--pr-accent-500); color: white; }
.pr-steps .step.done .num { background: var(--pr-success); color: white; }
.pr-steps .arrow { color: var(--pr-text-tertiary); }

/* ===================== STICKY ATC (Mobile) ===================== */
.pr-sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--pr-bg-base); border-top: 1px solid var(--pr-border);
  padding: 10px 16px; display: none; align-items: center; gap: 12px;
  box-shadow: var(--pr-elev-3);
}
@media (max-width: 1023px) { .pr-sticky-atc.visible { display: flex; } }
.pr-sticky-atc .thumb { width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0; }
.pr-sticky-atc .name { font-size: 14px; font-weight: 600; line-height: 1.2; }
.pr-sticky-atc .price { font-size: 12px; color: var(--pr-text-secondary); }

/* ===================== SKIP LINK ===================== */
.pr-skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--pr-accent-500); color: white;
  padding: 10px 16px; font-weight: 600;
  border-radius: 0 0 8px 0;
}
.pr-skip-link:focus { left: 0; }

/* ===================== UTILITIES ===================== */
.pr-divider { height: 1px; background: var(--pr-border); border: none; margin: 24px 0; }
.pr-tag {
  display: inline-flex; align-items: center; padding: 4px 10px;
  background: var(--pr-bg-secondary); color: var(--pr-text-secondary);
  border-radius: 9999px; font-size: 12px; font-weight: 500;
}
.pr-tag-accent { background: var(--pr-accent-50); color: var(--pr-accent-700); }

/* placeholder image bg variations */
.bg-img-1 { background: linear-gradient(135deg, #B6BFA8 0%, #8A9479 100%); }
.bg-img-2 { background: linear-gradient(135deg, #C85A3A 0%, #8A3621 100%); }
.bg-img-3 { background: linear-gradient(135deg, #5F5F60 0%, #2A2A2D 100%); }
.bg-img-4 { background: linear-gradient(135deg, #A6A4A0 0%, #7C7A77 100%); }
.bg-img-5 { background: linear-gradient(135deg, #EDE8DE 0%, #D6D0C4 100%); color: #5F5F60 !important; }
.bg-img-6 { background: linear-gradient(135deg, #1A1A1A 0%, #404043 100%); }
.bg-img-7 { background: linear-gradient(135deg, #D87856 0%, #C85A3A 100%); }
.bg-img-8 { background: linear-gradient(135deg, #D6A56A 0%, #A68142 100%); }
.bg-img-9 { background: linear-gradient(135deg, #F5DDD2 0%, #E29A79 100%); color: #6B2918 !important; }
.bg-img-10 { background: linear-gradient(135deg, #B6BFA8 0%, #5F5F60 100%); }

/* ===================== QUANTITY STEPPER ===================== */
.pr-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--pr-border); border-radius: 8px; overflow: hidden;
  background: white; height: 48px;
}
.pr-qty button {
  width: 44px; height: 100%; border: none; background: transparent; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; color: var(--pr-text-primary);
  transition: background 120ms;
}
.pr-qty button:hover { background: var(--pr-bg-secondary); }
.pr-qty input {
  width: 44px; height: 100%; border: none; background: transparent;
  text-align: center; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--pr-text-primary);
  outline: none; padding: 0;
}
.pr-qty input:focus { background: var(--pr-bg-secondary); }
.pr-qty-sm { height: 36px; }
.pr-qty-sm button { width: 32px; }
.pr-qty-sm input { width: 36px; font-size: 14px; }

.pr-variant-swatch {
  width: 36px; height: 36px; border-radius: 9999px; border: 2px solid transparent;
  cursor: pointer; padding: 0; transition: border-color 120ms, box-shadow 120ms;
  outline: 2px solid var(--pr-border); outline-offset: -2px;
}
.pr-variant-swatch.active { outline-color: var(--pr-accent-500); outline-width: 2px; outline-offset: 2px; }
.pr-variant-swatch:hover { transform: scale(1.06); }

.pr-variant-pill {
  height: 40px; padding: 0 16px; border-radius: 8px;
  border: 1px solid var(--pr-border-strong); background: white; color: var(--pr-text-primary);
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all 120ms;
}
.pr-variant-pill:hover { border-color: var(--pr-text-primary); }
.pr-variant-pill.active { background: var(--pr-text-primary); color: white; border-color: var(--pr-text-primary); }

/* ===================== PDP — Gallery + Buybox ===================== */
.pr-pdp-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 1023px) { .pr-pdp-grid { grid-template-columns: 1fr; gap: 32px; } }

.pr-gallery { position: sticky; top: 96px; }
.pr-gallery-main {
  position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  display: flex; align-items: flex-end; padding: 20px;
  color: rgba(255,255,255,0.85); font-size: 13px;
}
.pr-gallery-zoom, .pr-gallery-fav {
  position: absolute; right: 16px; width: 44px; height: 44px;
  background: rgba(255,255,255,0.92); border: none; border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  color: var(--pr-text-primary); transition: background 120ms;
}
.pr-gallery-zoom { top: 16px; }
.pr-gallery-fav { top: 68px; }
.pr-gallery-zoom:hover, .pr-gallery-fav:hover { background: white; }
.pr-gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 12px; }
.pr-gallery-thumb {
  aspect-ratio: 1/1; border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; padding: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 500;
  transition: border-color 120ms;
}
.pr-gallery-thumb.active { border-color: var(--pr-accent-500); }

.pr-buybox { padding-top: 4px; }
.pr-trust-list { list-style: none; padding: 16px 0 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pr-trust-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--pr-text-primary); }
.pr-trust-list li i { color: var(--pr-accent-600); flex-shrink: 0; width: 18px; height: 18px; }

/* ===================== Trust Cards ===================== */
.pr-trust-card {
  background: var(--pr-bg-secondary); border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.pr-trust-card > i { width: 32px; height: 32px; color: var(--pr-accent-600); }
.pr-trust-card h4 { margin: 0; font-size: 17px; font-weight: 700; }
.pr-trust-card p { margin: 0; font-size: 14px; line-height: 22px; color: var(--pr-text-secondary); }

.pr-benefit-card {
  background: white; border: 1px solid var(--pr-border); border-radius: 12px;
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.pr-benefit-card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--pr-accent-50); color: var(--pr-accent-700);
  display: inline-flex; align-items: center; justify-content: center;
}
.pr-benefit-card h4 { margin: 0; font-size: 16px; font-weight: 700; }
.pr-benefit-card p { margin: 0; font-size: 14px; line-height: 22px; color: var(--pr-text-secondary); }

/* ===================== Use Case ===================== */
.pr-usecase { background: white; border-radius: 14px; overflow: hidden; box-shadow: var(--pr-elev-1); }
.pr-usecase-img {
  aspect-ratio: 16/10; position: relative; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.95); font-size: 13px;
}
.pr-usecase-img .play {
  width: 54px; height: 54px; border-radius: 9999px;
  background: rgba(255,255,255,0.94); color: var(--pr-text-primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.pr-usecase-img .dur {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.65); color: white; padding: 2px 8px; border-radius: 4px; font-size: 12px;
}
.pr-usecase h4 { margin: 16px 20px 6px; font-size: 16px; font-weight: 700; }
.pr-usecase p { margin: 0 20px 20px; font-size: 14px; line-height: 22px; color: var(--pr-text-secondary); }

/* ===================== Specs Table ===================== */
.pr-specs { width: 100%; border-collapse: collapse; background: white; border-radius: 12px; overflow: hidden; }
.pr-specs th, .pr-specs td { text-align: left; padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--pr-border); }
.pr-specs th { font-weight: 600; color: var(--pr-text-primary); width: 30%; background: var(--pr-bg-secondary); }
.pr-specs td { color: var(--pr-text-secondary); line-height: 22px; }
.pr-specs tr:last-child th, .pr-specs tr:last-child td { border-bottom: none; }

/* ===================== Mag Cross-link ===================== */
.pr-magcross {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; border-radius: 16px; overflow: hidden;
  background: var(--pr-accent-50); transition: transform 200ms, box-shadow 200ms;
}
.pr-magcross:hover { transform: translateY(-3px); box-shadow: var(--pr-elev-2); text-decoration: none; }
.pr-magcross .img { aspect-ratio: 4/3; }
.pr-magcross .body { padding: 28px 32px; align-self: center; }
@media (max-width: 767px) { .pr-magcross { grid-template-columns: 1fr; } }

/* ===================== Review Bars ===================== */
.pr-reviews-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 767px) { .pr-reviews-head { grid-template-columns: 1fr; } }
.pr-rating-bars { display: flex; flex-direction: column; gap: 8px; }
.pr-rating-bars .bar-row { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.pr-rating-bars .lbl { width: 32px; color: var(--pr-text-secondary); }
.pr-rating-bars .bar { flex: 1; height: 8px; background: white; border-radius: 9999px; overflow: hidden; }
.pr-rating-bars .bar span { display: block; height: 100%; background: var(--pr-accent-500); border-radius: 9999px; }
.pr-rating-bars .pct { width: 40px; text-align: right; color: var(--pr-text-secondary); font-weight: 600; }

/* ===================== Shop Toolbar / Filter ===================== */
.pr-shop-toolbar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 12px 16px; background: var(--pr-bg-secondary); border-radius: 10px;
}
.pr-filter-group h5 {
  margin: 0 0 12px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--pr-text-primary);
}
.pr-filter-group { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 1023px) {
  .pr-filter-side { display: none; }
  .pr-pdp-grid + .pr-shop-toolbar { display: none; }
}

/* ===================== CART (Warenkorb) ===================== */
.pr-cart-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 1023px) { .pr-cart-grid { grid-template-columns: 1fr; gap: 24px; } }

.pr-cart-item {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 20px; align-items: center;
  padding: 20px; background: white; border: 1px solid var(--pr-border); border-radius: 12px;
}
.pr-cart-thumb {
  width: 96px; height: 96px; border-radius: 10px;
  display: flex; align-items: flex-end; justify-content: flex-start; padding: 8px;
  color: rgba(255,255,255,0.85); font-size: 11px; font-weight: 500;
}
.pr-cart-thumb:hover { text-decoration: none; }
.pr-cart-name {
  font-size: 16px; font-weight: 600; color: var(--pr-text-primary); line-height: 1.3;
  display: block;
}
.pr-cart-name:hover { color: var(--pr-accent-600); text-decoration: none; }
.pr-cart-sub { font-size: 13px; color: var(--pr-text-secondary); margin: 4px 0 12px; }
.pr-cart-mobile-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.pr-cart-remove { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; }
.pr-cart-price { font-size: 17px; font-weight: 700; color: var(--pr-text-primary); white-space: nowrap; }

@media (max-width: 639px) {
  .pr-cart-item { grid-template-columns: 64px 1fr; gap: 12px; padding: 14px; }
  .pr-cart-thumb { width: 64px; height: 64px; }
  .pr-cart-price { grid-column: 1 / -1; text-align: right; }
}

.pr-summary-card {
  background: var(--pr-bg-secondary); border-radius: 14px; padding: 24px;
  position: sticky; top: 96px;
}
.pr-summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 15px; padding: 6px 0; color: var(--pr-text-primary); }
.pr-summary-row span:last-child { font-weight: 600; }
.pr-summary-total { font-size: 20px; font-weight: 700; padding: 8px 0; }
.pr-summary-total span:last-child { font-weight: 800; }

.pr-shipping-progress { padding: 8px 0 4px; }
.pr-shipping-bar { width: 100%; height: 6px; background: var(--pr-border); border-radius: 9999px; overflow: hidden; }
.pr-shipping-bar span { display: block; height: 100%; background: var(--pr-accent-500); border-radius: 9999px; transition: width 240ms; }

.pr-coupon { display: flex; gap: 8px; }
.pr-coupon input { height: 40px; font-size: 14px; padding: 0 12px; }

.pr-empty-state {
  text-align: center; padding: 80px 24px;
  background: white; border: 1px solid var(--pr-border); border-radius: 16px;
}
.pr-empty-icon {
  width: 80px; height: 80px; border-radius: 9999px;
  background: var(--pr-accent-50); color: var(--pr-accent-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.pr-empty-icon i { width: 36px; height: 36px; }

/* ===================== CHECKOUT ===================== */
.pr-checkout-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start;
  padding: 32px 0 64px;
}
@media (max-width: 1023px) { .pr-checkout-grid { grid-template-columns: 1fr; gap: 24px; } }

.pr-checkout-main {
  background: white; border: 1px solid var(--pr-border); border-radius: 14px;
  padding: 32px;
}
@media (max-width: 639px) { .pr-checkout-main { padding: 20px; border-radius: 10px; } }

.pr-checkout-summary {
  background: var(--pr-bg-secondary); border-radius: 14px; padding: 24px;
  position: sticky; top: 96px;
}
.pr-summary-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.pr-summary-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; }
.pr-summary-item-thumb {
  width: 56px; height: 56px; border-radius: 8px; position: relative;
}
.pr-summary-item-badge {
  position: absolute; top: -8px; right: -8px;
  background: var(--pr-ink-800); color: white; font-size: 11px; font-weight: 700;
  width: 22px; height: 22px; border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--pr-bg-secondary);
}
.pr-summary-item-name { font-size: 14px; font-weight: 600; color: var(--pr-text-primary); line-height: 1.3; }
.pr-summary-item-sub { font-size: 12px; color: var(--pr-text-secondary); margin-top: 2px; }
.pr-summary-item-price { font-size: 14px; font-weight: 700; color: var(--pr-text-primary); white-space: nowrap; }

.pr-form-row { display: flex; flex-direction: column; margin-bottom: 16px; }
.pr-form-grid { display: flex; gap: 16px; }
@media (max-width: 639px) { .pr-form-grid { flex-direction: column; gap: 0; } }
.pr-input.error, .pr-select.error { border-color: var(--pr-error); box-shadow: 0 0 0 3px rgba(157,41,51,0.18); }

.pr-radio-cards { display: flex; flex-direction: column; gap: 10px; }
.pr-radio-card {
  display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; align-items: center;
  padding: 18px 20px; background: white; border: 1.5px solid var(--pr-border);
  border-radius: 12px; cursor: pointer; transition: all 160ms;
}
.pr-radio-card:hover { border-color: var(--pr-border-strong); background: var(--pr-bg-base); }
.pr-radio-card.active { border-color: var(--pr-accent-500); background: var(--pr-accent-50); box-shadow: 0 0 0 3px rgba(200,90,58,0.12); }
.pr-radio-card input[type=radio] { display: none; }
.pr-radio-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--pr-bg-secondary); color: var(--pr-text-primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.pr-radio-card.active .pr-radio-card-icon { background: var(--pr-accent-100); color: var(--pr-accent-700); }
.pr-radio-card-title { font-size: 15px; font-weight: 600; color: var(--pr-text-primary); }
.pr-radio-card-desc { font-size: 13px; color: var(--pr-text-secondary); margin-top: 2px; }
.pr-radio-card-price { font-size: 15px; font-weight: 700; color: var(--pr-text-primary); white-space: nowrap; }
.pr-radio-card-sm { grid-template-columns: 1fr; }

.pr-checkout-actions {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--pr-border);
}
@media (max-width: 639px) { .pr-checkout-actions { flex-direction: column-reverse; } .pr-checkout-actions > * { width: 100%; } }

.pr-checkout-legal {
  background: var(--pr-bg-secondary); border-radius: 12px;
  padding: 20px; margin-top: 24px;
}
.pr-helper-box {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--pr-info-bg); color: var(--pr-info);
  padding: 14px 16px; border-radius: 10px; font-size: 14px; line-height: 22px;
  margin-top: 16px;
}
.pr-helper-box b { color: var(--pr-info); }

/* Step indicator override for checkout */
#checkout-root .pr-steps { margin-bottom: 32px; }

/* ===================== CONFIRMATION ===================== */
.pr-confirmation { text-align: center; padding: 24px 0 32px; }
.pr-confirmation-icon {
  width: 88px; height: 88px; border-radius: 9999px;
  background: var(--pr-success-bg); color: var(--pr-success);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.pr-order-no {
  display: inline-block; background: var(--pr-bg-secondary);
  padding: 8px 16px; border-radius: 9999px; font-size: 14px; color: var(--pr-text-secondary);
  margin-bottom: 32px;
}
.pr-order-no b { color: var(--pr-text-primary); font-weight: 700; }
.pr-confirmation-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 0 auto 16px; text-align: left;
}
@media (max-width: 767px) { .pr-confirmation-grid { grid-template-columns: 1fr; } }
.pr-confirmation-card {
  background: white; border: 1px solid var(--pr-border); border-radius: 12px;
  padding: 20px;
}
.pr-confirmation-card h4 { margin: 0 0 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--pr-text-tertiary); }
.pr-confirmation-card p { margin: 0; font-size: 15px; line-height: 22px; color: var(--pr-text-primary); }

.pr-next-steps { list-style: none; counter-reset: step; padding: 0; margin: 0 0 24px; text-align: left; }
.pr-next-steps li {
  counter-increment: step;
  padding: 14px 20px 14px 56px; background: var(--pr-bg-secondary); border-radius: 10px;
  position: relative; margin-bottom: 10px; font-size: 15px; line-height: 22px; color: var(--pr-text-primary);
}
.pr-next-steps li::before {
  content: counter(step); position: absolute; left: 16px; top: 14px;
  width: 28px; height: 28px; border-radius: 9999px;
  background: var(--pr-accent-500); color: white; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* a11y motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   SCROLL-REVEAL ANIMATIONS — robuste Version mit !important auf .is-visible
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal="up"], [data-reveal=""], [data-reveal]:not([data-reveal=*]) { transform: translateY(32px); }
[data-reveal="down"] { transform: translateY(-32px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"] { transform: scale(0.92); }
[data-reveal="zoom-out"] { transform: scale(1.06); }
[data-reveal="rotate"] { transform: rotate(-3deg) translateY(20px); }
[data-reveal="fade"] { transform: none; }
[data-reveal="blur"] { filter: blur(12px); transform: translateY(16px); }
[data-reveal].is-visible {
  opacity: 1 !important;
  transform: translate3d(0,0,0) scale(1) rotate(0) !important;
  filter: blur(0) !important;
}
[data-reveal-delay="100"].is-visible { transition-delay: 100ms; }
[data-reveal-delay="200"].is-visible { transition-delay: 200ms; }
[data-reveal-delay="300"].is-visible { transition-delay: 300ms; }
[data-reveal-delay="400"].is-visible { transition-delay: 400ms; }
[data-reveal-delay="500"].is-visible { transition-delay: 500ms; }
[data-reveal-delay="700"].is-visible { transition-delay: 700ms; }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
[data-stagger].is-visible > * { opacity: 1 !important; transform: none !important; }
[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 70ms; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 140ms; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 210ms; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 280ms; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 350ms; }
[data-stagger].is-visible > *:nth-child(7) { transition-delay: 420ms; }
[data-stagger].is-visible > *:nth-child(8) { transition-delay: 490ms; }
[data-stagger].is-visible > *:nth-child(n+9) { transition-delay: 560ms; }

/* abwechslungsreichere stagger-varianten */
[data-stagger="scale"] > * { transform: translateY(20px) scale(0.94); }
[data-stagger="left"] > * { transform: translateX(-32px); }
[data-stagger="right"] > * { transform: translateX(32px); }

/* split-text headline reveal (per-word) */
.pr-split-line { display: inline-block; overflow: hidden; vertical-align: top; }
.pr-split-word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.is-visible .pr-split-word { transform: translateY(0); }

/* count-up stat */
.pr-stat-num { font-variant-numeric: tabular-nums; display: inline-block; }

/* magnetic-card subtle tilt */
.pr-magnet {
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

/* parallax wrapper */
.pr-parallax {
  will-change: transform;
  transition: transform 80ms linear;
}

/* marquee for studio-logos */
.pr-marquee {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.pr-marquee-track {
  display: flex; gap: 32px;
  width: max-content;
  animation: prMarquee 38s linear infinite;
}
.pr-marquee:hover .pr-marquee-track { animation-play-state: paused; }
@keyframes prMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* page transition on click */
body.pr-leaving main { opacity: 0; transform: translateY(8px); transition: opacity 220ms, transform 220ms; }

/* scroll-progress bar (top) */
.pr-scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--pr-accent-400), var(--pr-accent-700));
  z-index: 100; transition: width 80ms linear;
  pointer-events: none;
}

/* hero text initial entrance — skip h1 if it has data-split (handled per-word) */
.pr-hero .pr-eyebrow, .pr-hero p, .pr-hero > div > div {
  animation: prRise 800ms var(--pr-ease-out) both;
}
.pr-hero h1:not([data-split]) {
  animation: prRise 800ms var(--pr-ease-out) both;
  animation-delay: 140ms;
}
.pr-hero .pr-eyebrow { animation-delay: 60ms; }
.pr-hero p { animation-delay: 320ms; }
.pr-hero > div > div:last-child:not(.pr-hero-img) { animation-delay: 480ms; }
@keyframes prRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pr-hero-img {
  animation: prImgIn 1000ms var(--pr-ease-out) both;
  animation-delay: 100ms;
}
@keyframes prImgIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* category tile shimmer + hover lift */
.pr-cat-tile { isolation: isolate; }
.pr-cat-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 600ms var(--pr-ease-out);
  pointer-events: none; z-index: 2;
}
.pr-cat-tile:hover::after { transform: translateX(100%); }
.pr-cat-tile-img { transition: transform 600ms var(--pr-ease-out); }
.pr-cat-tile:hover .pr-cat-tile-img { transform: scale(1.06); }

/* product card image subtle parallax on hover */
.pr-product-card-img { transition: transform 600ms var(--pr-ease-out); }
.pr-product-card:hover .pr-product-card-img { transform: scale(1.05); }

/* button shine */
.pr-btn-primary { position: relative; overflow: hidden; }
.pr-btn-primary::before {
  content: ""; position: absolute; top: 0; left: -100%; height: 100%; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 600ms var(--pr-ease-out);
}
.pr-btn-primary:hover::before { left: 100%; }

/* link underline animation */
.pr-btn-link {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 280ms var(--pr-ease-out);
}
.pr-btn-link:hover { background-size: 100% 1px; text-decoration: none; }

/* nav underline */
.pr-nav a::after {
  content: "";
  position: absolute; bottom: 4px; left: 0; right: 0; height: 2px;
  background: var(--pr-accent-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform 220ms var(--pr-ease-out);
}
.pr-nav a:hover::after, .pr-nav a.active::after { transform: scaleX(1); }

/* body-map hot-spot pulse */
@keyframes prPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(1.18); }
}
svg [fill="var(--pr-accent-500)"] {
  transform-origin: center; transform-box: fill-box;
  animation: prPulse 2.4s ease-in-out infinite;
  cursor: pointer;
  transition: transform 200ms;
}
svg [fill="var(--pr-accent-500)"]:hover { animation-play-state: paused; transform: scale(1.3); }
svg [fill="var(--pr-accent-500)"]:nth-of-type(2) { animation-delay: 0.3s; }
svg [fill="var(--pr-accent-500)"]:nth-of-type(3) { animation-delay: 0.6s; }
svg [fill="var(--pr-accent-500)"]:nth-of-type(4) { animation-delay: 0.9s; }
svg [fill="var(--pr-accent-500)"]:nth-of-type(5) { animation-delay: 1.2s; }
svg [fill="var(--pr-accent-500)"]:nth-of-type(6) { animation-delay: 1.5s; }
svg [fill="var(--pr-accent-500)"]:nth-of-type(7) { animation-delay: 1.8s; }

/* studio-logo hover */
.studio-logo { transition: transform 200ms var(--pr-ease-out), border-color 200ms, background 200ms; }
.studio-logo:hover { transform: translateY(-3px); border-color: var(--pr-accent-400); background: white; }

/* hero gradient breathe */
.pr-hero-img::after {
  content: ""; position: absolute; inset: 0; opacity: 0.6;
  background: radial-gradient(circle at 70% 80%, rgba(216,120,86,0.45) 0%, transparent 55%);
  animation: prBreathe 8s ease-in-out infinite;
}
@keyframes prBreathe {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.08); }
}

/* toast fade in/out (refined) */
#pr-toast { font-family: 'Figtree', system-ui, sans-serif !important; }

/* page-loader bar */
.pr-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
  background: transparent; pointer-events: none;
}
.pr-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--pr-accent-400), var(--pr-accent-600));
  transition: width 180ms var(--pr-ease-out);
}

/* sub-page hero block */
.pr-page-hero {
  background: var(--pr-bg-secondary);
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--pr-border);
  position: relative; overflow: hidden;
}
.pr-page-hero::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,120,86,0.20) 0%, transparent 70%);
  animation: prBreathe 10s ease-in-out infinite;
}
.pr-page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.pr-page-hero h1 { margin: 16px 0 16px; }
.pr-page-hero p { font-size: 19px; line-height: 30px; color: var(--pr-text-secondary); margin: 0; max-width: 620px; }

/* prose block for content pages */
.pr-prose { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 28px; color: var(--pr-text-primary); }
.pr-prose h2 { font-size: 28px; font-weight: 700; line-height: 1.25; margin: 48px 0 16px; letter-spacing: -0.01em; }
.pr-prose h3 { font-size: 22px; font-weight: 600; line-height: 1.3; margin: 32px 0 12px; }
.pr-prose p { margin: 0 0 18px; }
.pr-prose ul, .pr-prose ol { padding-left: 22px; margin: 0 0 18px; }
.pr-prose li { margin-bottom: 8px; }
.pr-prose strong { font-weight: 600; }
.pr-prose a { color: var(--pr-accent-600); text-decoration: underline; text-underline-offset: 3px; }
.pr-prose hr { border: none; border-top: 1px solid var(--pr-border); margin: 40px 0; }
.pr-prose blockquote {
  border-left: 3px solid var(--pr-accent-500);
  padding: 8px 0 8px 20px; margin: 24px 0;
  font-size: 19px; line-height: 28px; color: var(--pr-text-primary); font-style: italic;
}
.pr-prose code {
  background: var(--pr-bg-secondary); padding: 2px 6px; border-radius: 4px;
  font-family: 'SFMono-Regular', Consolas, monospace; font-size: 14px;
}

/* card with hover lift (generic) */
.pr-lift {
  transition: transform 220ms var(--pr-ease-out), box-shadow 220ms;
}
.pr-lift:hover { transform: translateY(-4px); box-shadow: var(--pr-elev-2); }

/* fancy 404 numeral */
.pr-404 {
  font-size: clamp(120px, 22vw, 240px); font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--pr-accent-400) 0%, var(--pr-accent-700) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.04em;
  animation: pr404 6s ease-in-out infinite;
}
@keyframes pr404 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* team / values cards */
.pr-value-card {
  background: white; border: 1px solid var(--pr-border); border-radius: 14px;
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
  transition: transform 220ms var(--pr-ease-out), box-shadow 220ms, border-color 220ms;
}
.pr-value-card:hover { transform: translateY(-4px); border-color: var(--pr-accent-200); box-shadow: var(--pr-elev-2); }
.pr-value-card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--pr-accent-50); color: var(--pr-accent-700);
  display: inline-flex; align-items: center; justify-content: center;
}

.pr-team-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: var(--pr-elev-1); transition: transform 220ms, box-shadow 220ms; }
.pr-team-card:hover { transform: translateY(-4px); box-shadow: var(--pr-elev-2); }
.pr-team-img { aspect-ratio: 4/5; display:flex; align-items:flex-end; padding: 16px; color: rgba(255,255,255,0.85); font-size: 12px; }
.pr-team-body { padding: 20px 22px 24px; }
.pr-team-name { font-size: 18px; font-weight: 700; margin: 0 0 4px; }
.pr-team-role { font-size: 14px; color: var(--pr-text-secondary); margin: 0 0 10px; }

/* exercise card */
.pr-exercise-card {
  background: white; border-radius: 14px; overflow: hidden; box-shadow: var(--pr-elev-1);
  display: flex; flex-direction: column; transition: transform 220ms, box-shadow 220ms;
}
.pr-exercise-card:hover { transform: translateY(-4px); box-shadow: var(--pr-elev-2); text-decoration: none; }
.pr-exercise-img {
  aspect-ratio: 4/3; position: relative;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.95);
}
.pr-exercise-img .play {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.94); color: var(--pr-text-primary);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 220ms;
}
.pr-exercise-card:hover .pr-exercise-img .play { transform: scale(1.1); }
.pr-exercise-body { padding: 18px 20px 22px; }
.pr-exercise-meta { font-size: 12px; color: var(--pr-text-tertiary); display: flex; gap: 12px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* contact card */
.pr-contact-card {
  background: white; border: 1px solid var(--pr-border); border-radius: 14px;
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 220ms, box-shadow 220ms, border-color 220ms;
}
.pr-contact-card:hover { transform: translateY(-4px); border-color: var(--pr-accent-200); box-shadow: var(--pr-elev-2); text-decoration: none; }
.pr-contact-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--pr-accent-50); color: var(--pr-accent-700);
  display: inline-flex; align-items: center; justify-content: center;
}

/* magazine article card large */
.pr-article-feature {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
  background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--pr-elev-1);
  transition: transform 220ms, box-shadow 220ms;
}
.pr-article-feature:hover { transform: translateY(-4px); box-shadow: var(--pr-elev-2); text-decoration: none; }
.pr-article-feature .img { aspect-ratio: 4/3; display: flex; align-items: flex-end; padding: 20px; color: rgba(255,255,255,0.85); font-size: 12px; }
.pr-article-feature .body { padding: 36px 40px; align-self: center; }
@media (max-width: 1023px) {
  .pr-article-feature { grid-template-columns: 1fr; }
  .pr-article-feature .body { padding: 28px; }
}

/* tip box for magazine articles */
.pr-tip-box {
  background: var(--pr-accent-50);
  border-left: 3px solid var(--pr-accent-500);
  padding: 18px 22px; margin: 24px 0;
  border-radius: 8px;
  font-size: 15px; line-height: 24px;
}
.pr-tip-box b { color: var(--pr-accent-700); }

/* image fallback emoji helper */
.pr-emoji-tile {
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(64px, 14vw, 128px); line-height: 1;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.18));
}

/* smooth-scroll polyfill */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
