/* Ridevera — bicycle shop. Design tokens follow the original Ridevera.dc.html spec 1:1. */

:root {
  --bg: #0A0C0B;
  --bg-alt: #0C100E;
  --bg-card: #101512;
  --bg-card-2: #0F1412;
  --bg-card-3: #121614;
  --bg-thumb: #141A16;
  --bg-input: #0A0C0B;

  --border-1: rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.08);
  --border-3: rgba(255,255,255,0.09);
  --border-4: rgba(255,255,255,0.10);
  --border-5: rgba(255,255,255,0.12);
  --border-6: rgba(255,255,255,0.14);
  --border-7: rgba(255,255,255,0.16);
  --border-8: rgba(255,255,255,0.18);

  --text: #E8EDE9;
  --text-heading: #F2F7F3;
  --text-heading-2: #F4F9F5;
  --text-body-2: #EDF2EE;
  --text-muted: #A7B3AC;
  --text-muted-2: #8B978F;
  --text-faint: #7C8A83;
  --text-faint-2: #6F7C75;
  --text-faint-3: #5F6B65;
  --text-review: #C6D0C9;

  --green: oklch(0.80 0.17 152);
  --green-hover: oklch(0.87 0.16 152);
  --green-light: oklch(0.86 0.15 152);
  --green-link-hover: oklch(0.88 0.14 152);
  --green-soft-bg: rgba(120,230,170,0.09);
  --green-soft-bg-2: rgba(120,230,170,0.12);
  --green-soft-bg-3: rgba(120,230,170,0.14);
  --green-soft-border: rgba(120,230,170,0.30);
  --green-soft-border-2: rgba(120,230,170,0.35);
  --green-soft-border-3: rgba(120,230,170,0.40);
  --green-soft-border-4: rgba(120,230,170,0.45);

  --blue: oklch(0.74 0.13 232);
  --blue-light: oklch(0.80 0.14 232);

  --on-accent: #06100A;

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 22px;

  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Barlow Condensed', 'Arial Narrow', 'Helvetica Neue Condensed', Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-link-hover); text-decoration: underline; }
input, select, textarea, button { font-family: inherit; }
button { border: none; background: none; cursor: pointer; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--green); color: var(--on-accent); }

@keyframes rvUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes rvIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rvSlide { from { transform: translateX(100%); } to { transform: none; } }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.container-article { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-legal { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container-about { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-contact { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-faq { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* Top announcement bar */
.topbar {
  background: var(--green); color: var(--on-accent);
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  padding: 9px 24px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; text-align: center;
}
.topbar span.sep { opacity: 0.55; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,12,11,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-3);
}
.site-header__inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: baseline; gap: 8px; cursor: pointer; }
.logo__mark {
  font-family: var(--font-display); font-weight: 700; font-size: 30px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-heading);
}
.logo__mark span { color: var(--green); }
.logo__sub { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-faint); }

.nav { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.nav__link {
  cursor: pointer; padding: 9px 13px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--text-review); background: transparent;
}
.nav__link:hover { background: rgba(255,255,255,0.07); text-decoration: none; }
.nav__link.is-active { color: var(--green-light); background: var(--green-soft-bg-2); }

.cart-btn {
  cursor: pointer; display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: var(--radius-md);
  border: 1px solid var(--border-6); background: rgba(255,255,255,0.04);
  font-size: 14px; font-weight: 700; color: var(--text);
}
.cart-btn:hover { border-color: var(--green); text-decoration: none; }
.cart-count {
  min-width: 22px; height: 22px; border-radius: 11px; background: var(--green);
  color: var(--on-accent); display: grid; place-items: center; font-size: 12px; font-weight: 700; padding: 0 6px;
}

.burger { display: none; }

/* Breadcrumb */
.crumb { font-size: 13px; color: var(--text-faint); }
.crumb a { color: var(--text-faint); }
.crumb a:hover { color: var(--green); }
.back-link { cursor: pointer; font-size: 13px; color: var(--text-faint); display: inline-block; }
.back-link:hover { color: var(--green); }

/* Headings */
.eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.eyebrow-sm { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); font-weight: 700; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; margin: 0; color: var(--text-heading); }
.h1 { font-size: 62px; line-height: 1; margin-top: 10px; }
.h1--hero { font-size: 82px; line-height: 0.94; letter-spacing: -0.01em; color: var(--text-heading-2); }
.h1--product { font-size: 54px; line-height: 1; }
.h1--article { font-size: 58px; line-height: 1.02; }
.h1--legal { font-size: 56px; line-height: 1.02; }
.h2 { font-size: 52px; line-height: 1; }
.h2--sub { font-size: 34px; line-height: 1.1; }
.h2--card { font-size: 26px; line-height: 1.1; }
.lead { font-size: 17px; line-height: 1.65; color: var(--text-muted); margin: 14px 0 0; }
.lead--lg { font-size: 19px; line-height: 1.7; color: var(--text-review); }
.p-body { font-size: 17px; line-height: 1.78; color: var(--text-muted); white-space: pre-line; }

/* Buttons */
.btn {
  display: inline-block; cursor: pointer; padding: 16px 30px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 16px; border: none; text-align: center;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--green); color: var(--on-accent); }
.btn-primary:hover { background: var(--green-hover); color: var(--on-accent); }
.btn-outline { border: 1px solid var(--border-8); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue-light); text-decoration: none; }
.btn-sm { padding: 13px 24px; font-size: 14px; border-radius: var(--radius-md); }
.btn-block { display: block; width: 100%; }

/* Sections */
.section { padding: 84px 24px; }
.section-tight { padding: 0 24px 84px; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }

/* Hero */
.hero {
  position: relative; padding: 96px 24px 104px; border-bottom: 1px solid var(--border-2);
  background: radial-gradient(1000px 500px at 78% 12%, rgba(90,220,150,0.13), transparent 65%),
              radial-gradient(800px 460px at 12% 88%, rgba(80,160,235,0.11), transparent 62%), var(--bg);
}
.hero__grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--green-soft-border-2); background: var(--green-soft-bg);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-light);
  animation: rvUp 0.6s ease both;
}
.hero__copy { animation: rvUp 0.6s ease both; }
.hero__title { color: var(--text-heading-2); }
.hero__title span { color: var(--green); }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 44px; margin-top: 46px; flex-wrap: wrap; }
.stat__num { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--green); }
.stat__label { font-size: 13px; color: var(--text-muted-2); margin-top: 2px; }
.hero__media { position: relative; animation: rvIn 0.9s ease both; }
.hero__photo {
  aspect-ratio: 4/5; border-radius: 20px; border: 1px solid var(--border-5);
  overflow: hidden; background: var(--bg-card);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__card {
  position: absolute; bottom: -26px; left: -26px; width: 200px; padding: 18px; border-radius: 16px;
  background: var(--bg-card-3); border: 1px solid var(--border-5); box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.hero__card-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.hero__card-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; text-transform: uppercase; margin-top: 6px; }
.hero__card-price { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* USP strip */
.usp-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.usp { display: flex; flex-direction: column; gap: 6px; }
.usp__tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.usp__title { font-size: 15px; font-weight: 700; color: var(--text-body-2); }
.usp__text { font-size: 13px; line-height: 1.6; color: var(--text-muted-2); }

/* Section headers */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head p { font-size: 14px; color: var(--text-muted-2); max-width: 420px; margin: 0; }
.section-link { cursor: pointer; font-size: 15px; font-weight: 700; color: var(--green); white-space: nowrap; }
.section-link:hover { color: var(--green-link-hover); }

/* Grids */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.grid-3--tight { gap: 22px; margin-top: 36px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* Category card */
.cat-card { cursor: pointer; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-4); background: var(--bg-card); display: block; }
.cat-card:hover { border-color: var(--green); text-decoration: none; }
.cat-card__img { aspect-ratio: 4/3; background: var(--bg-thumb); overflow: hidden; }
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card__body { padding: 20px; }
.cat-card__name { font-family: var(--font-display); font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--text-heading); }
.cat-card__text { font-size: 13px; line-height: 1.6; color: var(--text-muted-2); margin-top: 6px; }
.cat-card__count { font-size: 12px; color: var(--green); font-weight: 700; margin-top: 12px; }

/* Product card */
.prod-card {
  border-radius: var(--radius-xl); border: 1px solid var(--border-4); background: var(--bg-card);
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
}
.prod-card:hover { border-color: var(--green-soft-border-4); }
.prod-card__img { cursor: pointer; position: relative; aspect-ratio: 1/1; background: var(--bg-thumb); overflow: hidden; display: block; }
.prod-card__img--wide { aspect-ratio: 4/3; }
.prod-card__img img { width: 100%; height: 100%; object-fit: cover; }
.prod-card__badge {
  position: absolute; top: 12px; left: 12px; padding: 5px 10px; border-radius: 6px;
  background: var(--green); color: var(--on-accent); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.prod-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-card__body--lg { padding: 20px; }
.prod-card__cat { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); font-weight: 700; }
.prod-card__name { cursor: pointer; font-family: var(--font-display); font-size: 24px; font-weight: 700; text-transform: uppercase; line-height: 1.1; color: var(--text-heading); display: block; }
.prod-card__name:hover { color: var(--green-light); text-decoration: none; }
.prod-card__name--lg { font-size: 26px; }
.prod-card__short { font-size: 13px; color: var(--text-muted-2); line-height: 1.55; }
.prod-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; }
.prod-card__foot--lg { padding-top: 16px; }
.prod-card__price { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text-heading); }
.prod-card__price--lg { font-size: 30px; }
.prod-card__monthly { font-size: 12px; color: var(--text-faint); }
.add-btn {
  cursor: pointer; padding: 10px 16px; border-radius: 9px; background: var(--green-soft-bg-3);
  border: 1px solid var(--green-soft-border-3); color: var(--green-light); font-size: 13px; font-weight: 700;
}
.add-btn:hover { background: var(--green); color: var(--on-accent); }
.add-btn--lg { padding: 11px 18px; }

/* Service block */
.service-split { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.service-photo { aspect-ratio: 5/4; border-radius: var(--radius-xl); border: 1px solid var(--border-5); overflow: hidden; background: var(--bg-card); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.service-card { padding: 18px; border-radius: var(--radius-lg); border: 1px solid var(--border-4); background: var(--bg-card); }
.service-card__title { font-size: 15px; font-weight: 700; }
.service-card__text { font-size: 13px; color: var(--text-muted-2); margin-top: 6px; line-height: 1.6; }
.service-card__price { font-size: 13px; font-weight: 700; color: var(--green); margin-top: 10px; }

/* Article card */
.art-card { cursor: pointer; border-radius: var(--radius-xl); border: 1px solid var(--border-4); background: var(--bg-card); overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.art-card:hover { border-color: var(--blue); text-decoration: none; }
.art-card__img { aspect-ratio: 16/9; background: var(--bg-thumb); overflow: hidden; }
.art-card__img img { width: 100%; height: 100%; object-fit: cover; }
.art-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.art-card__meta { display: flex; gap: 10px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
.art-card__meta .tag { color: var(--green); }
.art-card__meta .read { color: var(--text-faint); }
.art-card__title { font-family: var(--font-display); font-size: 26px; font-weight: 700; text-transform: uppercase; line-height: 1.1; color: var(--text-heading); }
.art-card__lead { font-size: 14px; color: var(--text-muted-2); line-height: 1.6; }
.art-card__date { font-size: 13px; color: var(--text-faint); margin-top: auto; padding-top: 12px; }

/* Reviews */
.review-card { padding: 26px; border-radius: var(--radius-xl); border: 1px solid var(--border-4); background: var(--bg-card-2); }
.review-stars { color: var(--green); font-size: 15px; letter-spacing: 0.2em; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--text-review); margin-top: 14px; }
.review-who { font-size: 13px; color: var(--text-faint); margin-top: 16px; font-weight: 700; }

/* Newsletter */
.newsletter {
  max-width: 1280px; margin: 0 auto; padding: 48px; border-radius: var(--radius-2xl);
  border: 1px solid var(--green-soft-border); background: radial-gradient(700px 300px at 85% 20%, rgba(90,220,150,0.14), transparent 60%), var(--bg-card-2);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.newsletter h2 { font-size: 44px; }
.newsletter p { font-size: 16px; line-height: 1.65; color: var(--text-muted); margin: 12px 0 0; }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }

/* Form controls */
.field {
  flex: 1; min-width: 200px; padding: 15px 18px; border-radius: 11px; border: 1px solid var(--border-7);
  background: var(--bg-input); color: var(--text); font-size: 15px; outline: none;
}
.field:focus { border-color: var(--green); }
.field-block { width: 100%; }
textarea.field { min-height: 120px; resize: vertical; }
.form-stack { display: grid; gap: 14px; }
.form-note { font-size: 12px; color: var(--text-faint); line-height: 1.6; }
.form-msg { font-size: 14px; font-weight: 700; padding: 12px 16px; border-radius: 10px; margin-top: 4px; display: none; }
.form-msg.is-visible { display: block; }
.form-msg.is-ok { background: var(--green-soft-bg-2); color: var(--green-light); border: 1px solid var(--green-soft-border-2); }
.form-msg.is-err { background: rgba(230,90,90,0.12); color: #ff9a9a; border: 1px solid rgba(230,90,90,0.35); }

/* Catalog */
.catalog-filters { display: flex; gap: 10px; margin: 30px 0 8px; flex-wrap: wrap; }
.chip {
  cursor: pointer; padding: 11px 18px; border-radius: 999px; font-size: 14px; font-weight: 700;
  border: 1px solid var(--border-7); color: var(--text-review); background: transparent; display: inline-block;
}
.chip:hover { text-decoration: none; }
.chip.is-active { border-color: var(--green); background: var(--green); color: var(--on-accent); }
.sort-btn { cursor: pointer; margin-left: auto; padding: 11px 18px; border-radius: 999px; font-size: 14px; font-weight: 700; border: 1px solid var(--border-7); color: var(--text-review); background: transparent; }
.result-label { font-size: 13px; color: var(--text-faint); margin-bottom: 22px; }

/* Product detail */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 26px; }
.product-gallery-main { aspect-ratio: 1/1; border-radius: 20px; border: 1px solid var(--border-5); overflow: hidden; background: var(--bg-card); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.product-gallery-thumbs div { aspect-ratio: 1/1; border-radius: 12px; border: 1px solid var(--border-4); background: var(--bg-card-2); }
.product-price-row { display: flex; align-items: baseline; gap: 14px; margin-top: 16px; }
.product-price { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--green); }
.product-price-note { font-size: 14px; color: var(--text-faint); }
.product-actions { display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.product-stock { font-size: 13px; color: var(--blue-light); font-weight: 700; }
.product-specs { margin-top: 32px; border-top: 1px solid var(--border-4); }
.spec-row { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--border-1); font-size: 14px; }
.spec-row .k { color: var(--text-muted-2); }
.spec-row .v { font-weight: 700; color: var(--text); text-align: right; }
.product-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.perk { padding: 16px; border-radius: 12px; background: var(--bg-card-2); border: 1px solid var(--border-3); }
.perk__title { font-size: 14px; font-weight: 700; }
.perk__text { font-size: 13px; color: var(--text-muted-2); margin-top: 4px; }

/* Article page */
.article-meta { display: flex; gap: 12px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-top: 24px; }
.article-meta .tag { color: var(--green); }
.article-meta span { color: var(--text-faint); }
.article-hero-img { aspect-ratio: 16/9; border-radius: var(--radius-xl); border: 1px solid var(--border-5); overflow: hidden; margin: 32px 0; background: var(--bg-card); }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-block { margin-bottom: 30px; }
.article-block h2 { font-size: 34px; margin: 0 0 12px; color: var(--text-heading); line-height: 1.1; }
.article-cta { padding: 28px; border-radius: var(--radius-xl); border: 1px solid var(--green-soft-border); background: var(--bg-card-2); margin-top: 40px; }
.article-cta__title { font-family: var(--font-display); font-size: 30px; font-weight: 700; text-transform: uppercase; }
.article-cta__text { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin: 8px 0 18px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* About */
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 40px 0; }
.about-photo { aspect-ratio: 4/3; border-radius: var(--radius-xl); border: 1px solid var(--border-5); overflow: hidden; background: var(--bg-card); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-block { margin-bottom: 28px; }
.about-block h2 { font-size: 34px; margin: 0 0 10px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.team-card { padding: 22px; border-radius: var(--radius-lg); border: 1px solid var(--border-4); background: var(--bg-card-2); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 32px; background: var(--bg-thumb); border: 1px solid var(--border-4);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--green);
}
.team-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; text-transform: uppercase; margin-top: 14px; }
.team-role { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-top: 2px; }
.team-text { font-size: 14px; color: var(--text-muted-2); line-height: 1.6; margin-top: 10px; }

/* Size calculator */
.size-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.size-panel { padding: 28px; border-radius: var(--radius-xl); border: 1px solid var(--border-4); background: var(--bg-card-2); }
.size-panel--result {
  border: 1px solid var(--green-soft-border-2);
  background: radial-gradient(500px 260px at 80% 10%, rgba(90,220,150,0.14), transparent 60%), var(--bg-card-2);
}
.size-label { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
.size-label--accent { color: var(--green); }
.size-input { width: 100%; margin-top: 10px; padding: 15px 18px; border-radius: 11px; border: 1px solid var(--border-7); background: var(--bg-input); color: var(--text); font-size: 18px; font-weight: 700; outline: none; }
.size-types { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.size-result { font-family: var(--font-display); font-size: 76px; font-weight: 700; line-height: 1; margin-top: 8px; }
.size-note { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-top: 10px; }
.size-table { margin-top: 40px; border: 1px solid var(--border-4); border-radius: var(--radius-xl); overflow: hidden; }
.size-table__head, .size-table__row { display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 14px 20px; }
.size-table__head { background: var(--bg-card-3); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--text-faint); }
.size-table__row { border-top: 1px solid var(--border-1); font-size: 15px; }
.size-table__row span:first-child { color: var(--text-review); font-weight: 700; }
.size-table__row span { color: var(--text-muted); }

/* FAQ */
.faq-item { cursor: pointer; border: 1px solid var(--border-4); border-radius: var(--radius-lg); background: var(--bg-card-2); padding: 20px 24px; margin-bottom: 12px; }
.faq-item:hover { border-color: var(--green-soft-border-3); }
.faq-item__row { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.faq-item__q { font-size: 17px; font-weight: 700; color: var(--text-body-2); }
.faq-item__icon { font-size: 22px; color: var(--green); font-weight: 700; }
.faq-item__a { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-top: 12px; display: none; }
.faq-item.is-open .faq-item__a { display: block; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 32px; }
.contact-list { display: grid; gap: 14px; }
.contact-item { padding: 18px 20px; border-radius: var(--radius-lg); border: 1px solid var(--border-4); background: var(--bg-card-2); }
.contact-item__k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); font-weight: 700; }
.contact-item__v { font-size: 17px; font-weight: 700; margin-top: 5px; color: var(--text-body-2); }
.contact-item__note { font-size: 13px; color: var(--text-muted-2); margin-top: 3px; }
.contact-map { aspect-ratio: 16/9; border-radius: var(--radius-lg); border: 1px solid var(--border-5); overflow: hidden; margin-top: 18px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-form-card { padding: 30px; border-radius: var(--radius-xl); border: 1px solid var(--border-4); background: var(--bg-card-2); height: fit-content; }
.contact-form-card h2 { font-size: 32px; }

/* Legal */
.legal-date { font-size: 13px; color: var(--text-faint); margin-top: 12px; }
.legal-intro { font-size: 18px; line-height: 1.7; color: var(--text-review); margin: 20px 0 34px; }
.legal-block { margin-bottom: 26px; }
.legal-block h2 { font-size: 28px; margin: 0 0 10px; color: var(--text-heading); }
.legal-block p { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin: 0; white-space: pre-line; }
.legal-company { margin-top: 34px; padding: 22px; border-radius: var(--radius-lg); background: var(--bg-card-2); border: 1px solid var(--border-4); font-size: 14px; line-height: 1.75; color: var(--text-muted-2); }

/* Cart page */
.cart-empty { padding: 60px 0; text-align: center; color: var(--text-faint); font-size: 16px; line-height: 1.7; }
.cart-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin-top: 32px; align-items: start; }
.cart-lines { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-4); border-radius: var(--radius-xl); overflow: hidden; background: var(--bg-card-2); }
.cart-line { display: flex; gap: 14px; padding: 18px 20px; border-bottom: 1px solid var(--border-1); align-items: center; }
.cart-line:last-child { border-bottom: none; }
.cart-line__img { width: 76px; height: 76px; flex: none; border-radius: 10px; overflow: hidden; background: var(--bg-thumb); border: 1px solid var(--border-3); }
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__name { font-size: 15px; font-weight: 700; line-height: 1.3; }
.cart-line__price { font-size: 13px; color: var(--text-faint); margin-top: 2px; }
.cart-line__qty { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.qty-btn { cursor: pointer; width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--border-7); display: grid; place-items: center; font-weight: 700; background: transparent; color: var(--text); }
.qty-btn:hover { border-color: var(--green); }
.qty-val { font-size: 14px; font-weight: 700; min-width: 18px; text-align: center; }
.remove-link { cursor: pointer; margin-left: auto; font-size: 12px; color: var(--text-faint-2); }
.remove-link:hover { color: var(--green); }
.cart-line__sum { font-family: var(--font-display); font-size: 22px; font-weight: 700; white-space: nowrap; }
.cart-summary { padding: 22px 24px; border-radius: var(--radius-xl); border: 1px solid var(--border-3); background: var(--bg-card-2); }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted-2); margin-top: 7px; }
.summary-row:first-child { margin-top: 0; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-3); }
.summary-total span:first-child { font-size: 15px; font-weight: 700; }
.summary-total span:last-child { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--green); }
.summary-note { font-size: 12px; color: var(--text-faint-2); margin-top: 10px; line-height: 1.6; }

/* Footer */
.site-footer { border-top: 1px solid var(--border-3); background: var(--bg-alt); padding: 60px 24px 28px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-heading); }
.footer-brand span { color: var(--green); }
.footer-about { font-size: 14px; line-height: 1.7; color: var(--text-muted-2); margin: 12px 0 0; max-width: 320px; }
.footer-contact { font-size: 14px; line-height: 1.9; color: var(--text-muted-2); margin-top: 16px; }
.footer-col-title { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-heading); font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.footer-links a { font-size: 14px; color: var(--text-muted-2); cursor: pointer; }
.footer-links a:hover { color: var(--green); text-decoration: none; }
.footer-bottom { max-width: 1280px; margin: 32px auto 0; padding-top: 22px; border-top: 1px solid var(--border-2); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--text-faint-2); }
.footer-legal-note { max-width: 1280px; margin: 14px auto 0; font-size: 12px; line-height: 1.7; color: var(--text-faint-3); }

/* Cookie consent */
.consent-banner {
  position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 95; max-width: 1180px; margin: 0 auto;
  padding: 22px 26px; border-radius: 16px; background: rgba(15,20,18,0.97); border: 1px solid var(--green-soft-border-2);
  box-shadow: 0 24px 70px rgba(0,0,0,0.6); display: flex; gap: 26px; align-items: center; flex-wrap: wrap;
  animation: rvUp 0.35s ease both;
}
.consent-banner__text { flex: 1; min-width: 280px; }
.consent-banner__title { font-size: 16px; font-weight: 700; color: var(--text-heading); }
.consent-banner__desc { font-size: 13px; line-height: 1.7; color: var(--text-muted-2); margin-top: 6px; }
.consent-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-ghost { cursor: pointer; padding: 13px 22px; border-radius: 10px; border: 1px solid var(--border-8); font-size: 14px; font-weight: 700; color: var(--text-review); background: transparent; }
.btn-ghost:hover { border-color: var(--green); color: var(--green-light); }
.btn-accent-sm { cursor: pointer; padding: 13px 26px; border-radius: 10px; background: var(--green); color: var(--on-accent); font-size: 14px; font-weight: 700; }
.btn-accent-sm:hover { background: var(--green-hover); }
.hidden { display: none !important; }

/* Placeholder image fallback (used only if a photo is unavailable) */
.ph {
  background-color: var(--bg-thumb);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 11px);
  display: grid; place-items: center; text-align: center; padding: 18px;
}
.ph span { font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: var(--text-faint-2); line-height: 1.7; }

/* Responsive */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 420px; margin: 0 auto; }
  .h1--hero { font-size: 58px; }
  .service-split { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .newsletter { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-header__inner { flex-wrap: wrap; gap: 14px; }
  .nav { order: 3; width: 100%; margin-left: 0; }
  .h1 { font-size: 44px; }
  .h2 { font-size: 38px; }
  .about-photos { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .size-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .size-table__head, .size-table__row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .h1--hero { font-size: 42px; }
  .product-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .service-grid, .product-perks { grid-template-columns: 1fr; }
}
