:root {
  --bg: #f7f7f5;
  --elevated: #ffffff;
  --surface: #ffffff;
  --hover: #f0efec;
  --fg: #111111;
  --muted: #5c5c5c;
  --subtle: #8c8c8c;
  --border: #e4e4e0;
  --border-strong: #c8c8c2;
  --primary: #0a8fbf;
  --ink: #111111;
  --ink-fg: #ffffff;
  --success: #1a7a4c;
  --danger: #b42318;
  --studio: #e8e8e6;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2.5rem;
  }
}

.label-caps {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--elevated) 95%, transparent);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .header-inner {
    height: 4rem;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.brand img {
  width: 108px;
  height: 36px;
  object-fit: contain;
}

.brand-word {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-word span {
  color: var(--primary);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--fg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--muted);
}
.icon-btn.cart-btn {
  height: 2.85rem;
  width: 2.85rem;
}
.icon-btn.cart-btn svg {
  width: 24px;
  height: 24px;
}

.icon-btn:hover {
  color: var(--fg);
  background: var(--hover);
}

.cart-badge {
  position: absolute;
  right: 0.05rem;
  top: 0.05rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.28rem;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  border-radius: 99px;
  border: 2px solid var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.cart-badge[hidden] {
  display: none;
}

.menu-btn {
  display: inline-flex;
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border: 0;
  background: var(--ink);
  color: var(--ink-fg);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: opacity 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-lg {
  height: 3rem;
  padding: 0 1.75rem;
}

.btn-sm {
  height: 2.25rem;
  padding: 0 0.875rem;
  font-size: 0.75rem;
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--fg);
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
}

.btn-secondary:hover {
  background: var(--fg);
  color: var(--ink-fg);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 0;
}

.btn-ghost:hover {
  color: var(--fg);
  background: var(--hover);
  opacity: 1;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-copy {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .hero-copy {
    padding: 7rem 3rem;
  }
}

.hero-copy h1 {
  margin: 1.25rem 0 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .hero-copy h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-copy h1 {
    font-size: 3.25rem;
  }
}

.hero-copy h1 .muted {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
}

.hero-copy p.lead {
  margin: 1.5rem 0 0;
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.hero-media {
  border-top: 1px solid var(--border);
  background: var(--studio);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .hero-media {
    border-top: 0;
    border-left: 1px solid var(--border);
    min-height: 560px;
  }
}

.hero-media a {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: inherit;
}

.hero-media img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  min-height: 320px;
}

.hero-media-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  background: var(--elevated);
  padding: 1.25rem 1.5rem;
}

.trust {
  border-bottom: 1px solid var(--border);
  background: var(--elevated);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1.5rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 2.25rem 0;
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--studio);
  color: var(--primary);
}

.hero-media-meta h2 {
  margin: 0.25rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Trust */
.trust {
  border-bottom: 1px solid var(--border);
  background: var(--elevated);
}

.trust-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .trust-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.trust-inner .dot {
  margin: 0 0.6rem;
  color: var(--border-strong);
}

/* Catalogue */
.section {
  padding-block: 4rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-head h2 {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

@media (min-width: 640px) {
  .section-head h2 {
    font-size: 1.875rem;
  }
}

.product-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
}

.card-img {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--studio);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img {
  transform: scale(1.03);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding: 1.25rem;
}

.card-body h3 {
  margin: 0.375rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.card-body h3 a:hover {
  opacity: 0.6;
}

.card-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.price {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.price-was {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: var(--subtle);
  text-decoration: line-through;
  font-weight: 400;
}

/* Closing band */
.band {
  border-top: 1px solid var(--border);
  background: var(--ink);
  color: var(--ink-fg);
}

.band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-block: 4rem;
}

@media (min-width: 640px) {
  .band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.band h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.band p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.band .btn {
  background: #fff;
  color: var(--ink);
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: var(--elevated);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 3.5rem 0;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-grid h3 {
  margin: 0 0 1rem;
}

.footer-grid p {
  margin: 1rem 0 0;
  max-width: 18rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin: 0.6rem 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--fg);
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.75rem;
  padding: 0 0.5rem;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #333;
}

.pay-logo.visa {
  color: #1a1f71;
}
.pay-logo.mc {
  color: #eb001b;
}
.pay-logo.amex {
  background: #006fcf;
  border-color: #006fcf;
  color: #fff;
}
.pay-logo.paypal {
  color: #003087;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2.5rem;
  font-size: 0.75rem;
  color: var(--subtle);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Product page */
.pdp {
  display: grid;
}

@media (min-width: 1024px) {
  .pdp {
    grid-template-columns: 7fr 5fr;
  }
}

.pdp-media {
  background: var(--studio);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .pdp-media {
    position: sticky;
    top: 4rem;
    min-height: calc(100dvh - 4rem);
    max-height: calc(100dvh - 4rem);
  }
}

.pdp-media img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .pdp-media img {
    max-height: calc(100dvh - 4rem);
  }
}

.pdp-info {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem;
}

@media (min-width: 640px) {
  .pdp-info {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .pdp-info {
    border-top: 0;
    border-left: 1px solid var(--border);
    padding: 3rem 2.5rem;
  }
}

.pdp-info h1 {
  margin: 0.75rem 0 0;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

@media (min-width: 640px) {
  .pdp-info h1 {
    font-size: 2.25rem;
  }
}

.pdp-info .desc {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.price-row .price {
  font-size: 1.5rem;
}

.buy-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .buy-row {
    flex-direction: row;
    align-items: center;
  }

  .buy-row .btn {
    flex: 1;
  }
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--elevated);
}

.qty button {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.qty button:hover {
  color: var(--fg);
}

.qty span {
  min-width: 2.5rem;
  text-align: center;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--subtle);
}

.detail-block {
  margin-top: 1.75rem;
}

.detail-block h2 {
  margin: 0 0 0.75rem;
}

.detail-block p,
.detail-block li {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.detail-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-block li {
  border-left: 1px solid var(--border-strong);
  padding-left: 0.75rem;
  margin: 0.6rem 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border-left: 0;
  padding-left: 0;
}

.check-list li svg {
  flex: none;
  margin-top: 0.2rem;
  color: var(--primary);
}

.fact-list {
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.fact-list > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--border);
}

.fact-list dt {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg);
}

.fact-list dd {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--muted);
  margin-left: 1rem;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list p {
  margin: 0.6rem 0 0;
}

.crumbs {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  font-size: 0.75rem;
  color: var(--subtle);
}

.crumbs a:hover {
  color: var(--fg);
}

/* Cart / checkout */
.page-title {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.page-title h1 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.page-title p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.cart-layout,
.checkout-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr 340px;
  }
}

.cart-lines {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cart-line {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-line:last-child {
  border-bottom: 0;
}

@media (min-width: 640px) {
  .cart-line {
    flex-direction: row;
    align-items: center;
  }
}

.cart-line img {
  width: 100%;
  height: 7rem;
  object-fit: contain;
  background: var(--studio);
}

@media (min-width: 640px) {
  .cart-line img {
    width: 6rem;
    height: 6rem;
  }
}

.cart-line-meta {
  flex: 1;
  min-width: 0;
}

.cart-line-meta h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.cart-line-meta p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.summary {
  border: 1px solid var(--border);
  background: var(--elevated);
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 5.5rem;
}

.summary h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.summary-row strong {
  color: var(--fg);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  font-weight: 600;
}

.summary-total span:last-child {
  font-size: 1.125rem;
  font-variant-numeric: tabular-nums;
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section h2 {
  margin: 0 0 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.field input {
  width: 100%;
  height: 2.75rem;
  border: 1px solid var(--border);
  background: var(--elevated);
  padding: 0 0.75rem;
  font-size: 0.875rem;
}

.field input:focus {
  outline: 2px solid color-mix(in srgb, var(--fg) 15%, transparent);
  border-color: color-mix(in srgb, var(--fg) 40%, transparent);
}

.field-error {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--danger);
}

.field-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .field-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.empty {
  text-align: center;
  padding: 6rem 1rem;
}

.empty h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.empty p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.empty .btn {
  margin-top: 2rem;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  background: var(--elevated);
  border: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s linear 0.25s;
  z-index: 100;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

main {
  flex: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* Reviews widget (Okendo-style) */
.reviews-widget { padding: 3rem 0; }
.rev-header {
  display: flex; flex-direction: column; gap: 1.5rem;
  border-bottom: 1px solid var(--border); padding-bottom: 2rem; margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .rev-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.rev-header h2 { margin: 0.5rem 0 0; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.03em; }
.rev-sub { margin: 0.35rem 0 0; font-size: 0.75rem; color: var(--muted); }
.rev-scorebox {
  display: inline-flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--border); background: var(--elevated); padding: 0.85rem 1rem;
}
.rev-avg { font-size: 1.75rem; font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.rev-layout { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) {
  .rev-layout { grid-template-columns: 240px 1fr; }
}
.rev-aside { display: flex; flex-direction: column; gap: 0.5rem; }
.rev-bar {
  display: flex; align-items: center; gap: 0.5rem; width: 100%;
  border: 0; background: transparent; padding: 0.2rem 0; font-size: 0.75rem; color: var(--muted); text-align: left;
}
.rev-bar.dim { opacity: 0.4; }
.rev-bar span:first-child { width: 1.5rem; }
.rev-bar span:last-child { width: 1.5rem; text-align: right; font-variant-numeric: tabular-nums; }
.rev-track { flex: 1; height: 6px; background: var(--border); }
.rev-track > span { display: block; height: 100%; background: var(--fg); }
.rev-select {
  height: 2.5rem; border: 1px solid var(--border); background: var(--elevated);
  padding: 0 0.75rem; font-size: 0.875rem; margin-top: 0.25rem;
}
.rev-note { font-size: 0.75rem; color: var(--subtle); line-height: 1.5; margin: 0.75rem 0; }
.rev-list { border-top: 1px solid var(--border); }
.rev-card {
  display: flex; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border);
}
.rev-avatar {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  border: 1px solid var(--border); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
}
.rev-author { font-size: 0.875rem; font-weight: 600; }
.rev-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.rev-verified { font-size: 11px; font-weight: 500; color: var(--success); }
.rev-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 0.35rem; }
.rev-stars { font-size: 0.75rem; letter-spacing: 1px; }
.rev-date { font-size: 0.75rem; color: var(--subtle); }
.rev-product { font-size: 0.75rem; font-weight: 500; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.rev-title { margin: 0.75rem 0 0; font-size: 0.875rem; font-weight: 600; }
.rev-body p { margin: 0.4rem 0 0; font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.rev-helpful {
  margin-top: 0.75rem; border: 0; background: transparent; padding: 0;
  font-size: 0.75rem; color: var(--muted); cursor: pointer;
}
.rev-helpful:hover, .rev-helpful.voted { color: var(--fg); }
.rev-more { display: flex; justify-content: center; padding: 2rem 0; }
.rev-empty { padding: 2.5rem 0; font-size: 0.875rem; color: var(--muted); }
.rev-page-hero {
  border-bottom: 1px solid var(--border); background: var(--elevated); padding: 3rem 0;
}
.rev-page-hero h1 { margin: 0.75rem 0 0; font-size: 2rem; font-weight: 600; letter-spacing: -0.03em; }
.rev-page-hero .lead { margin: 0.75rem 0 0; max-width: 32rem; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.rev-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.rev-chip {
  border: 1px solid var(--border); background: var(--surface); padding: 0.4rem 0.75rem;
  font-size: 0.75rem; font-weight: 500; color: var(--muted); cursor: pointer;
}
.rev-chip span { margin-left: 0.35rem; opacity: 0.7; font-variant-numeric: tabular-nums; }
.rev-chip.active { background: var(--fg); border-color: var(--fg); color: #fff; }
.rev-chip:hover:not(.active) { border-color: var(--fg); color: var(--fg); }


/* Product slider */
.product-slider-wrap { position: relative; margin: 0 -0.25rem; }
.product-slider {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 0.25rem 0.25rem 1.25rem;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.product-slider .card {
  flex: 0 0 min(220px, 72vw); scroll-snap-align: start; max-width: 240px;
}
@media (min-width: 768px) {
  .product-slider .card { flex: 0 0 calc((100% - 3rem) / 4); max-width: none; }
}
@media (min-width: 1100px) {
  .product-slider .card { flex: 0 0 calc((100% - 4rem) / 5); }
}
.product-slider .card-img { aspect-ratio: 1; }
.product-slider .card-body h3 { font-size: 0.95rem; }
.slider-nav { display: flex; gap: 0.5rem; justify-content: flex-end; margin-bottom: 0.75rem; }
.slider-nav button {
  height: 2.25rem; width: 2.25rem; border: 1px solid var(--border-strong);
  background: var(--elevated); color: var(--fg);
  display: inline-flex; align-items: center; justify-content: center;
}
.slider-nav button:hover { border-color: var(--fg); }

/* Split lifestyle */
.split {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--border);
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-copy { order: 2; }
  .split.reverse .split-media { order: 1; }
}
.split-media { background: var(--studio); min-height: 280px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.split-copy {
  padding: 3rem 1.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
@media (min-width: 900px) { .split-copy { padding: 4.5rem 3.5rem; } }
.split-copy h2 {
  margin: 0; font-size: 1.75rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1.15;
}
.split-copy p { margin: 0; color: var(--muted); max-width: 36rem; font-size: 0.95rem; line-height: 1.6; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }
.pill {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.65rem; border: 1px solid var(--border-strong); color: var(--muted);
}

/* Sign-in */
.auth-page {
  min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1.25rem;
}
.auth-card {
  width: 100%; max-width: 420px; background: var(--elevated); border: 1px solid var(--border); padding: 2.5rem 2rem;
}
.auth-logo { display: flex; justify-content: center; margin-bottom: 1.25rem; }
.auth-logo img { width: 72px; height: auto; }
.auth-card h1 {
  text-align: center; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 0.35rem;
}
.auth-card .auth-sub { text-align: center; color: var(--muted); font-size: 0.875rem; margin: 0 0 1.75rem; }
.auth-social { display: flex; flex-direction: column; gap: 0.65rem; }
.btn-social {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  height: 2.85rem; width: 100%; border: 1px solid var(--border-strong);
  background: var(--elevated); color: var(--fg); font-size: 0.875rem; font-weight: 500;
}
.btn-social:hover { border-color: var(--fg); }
.btn-social svg { width: 18px; height: 18px; flex-shrink: 0; }
.auth-divider {
  display: flex; align-items: center; gap: 0.75rem; margin: 1.25rem 0;
  color: var(--subtle); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.auth-field { margin-bottom: 0.85rem; }
.auth-field label { display: block; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--muted); }
.auth-field input {
  width: 100%; height: 2.75rem; padding: 0 0.85rem; border: 1px solid var(--border-strong);
  background: var(--bg); font-size: 1rem;
}
