/* Medpava.by — shared hosting CSS (no Tailwind) */

:root {
  --ink: #141414;
  --muted: #6b7280;
  --accent: #d0122d;
  --accent-dark: #a30e24;
  --soft: #f3f5f7;
  --price-bg: #f3ebc4;
  --paper: #fbfcfd;
  --line: rgba(20, 20, 20, 0.08);
  --max: 72rem;
  --page-x: max(1.25rem, env(safe-area-inset-left, 0px));
  --page-x-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 768px) {
  :root {
    --page-x: 1rem;
    --page-x-right: 1rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(208, 18, 45, 0.06), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(56, 89, 130, 0.05), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 40%, #f6f8fa 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.font-display {
  font-family: Syne, Manrope, sans-serif;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--page-x-right) 0 var(--page-x);
}

.muted {
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.5);
}

.link-accent {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-block {
  width: 100%;
}

.price-badge {
  display: inline-block;
  border-radius: 0.375rem;
  background: var(--price-bg);
  padding: 0.125rem 0.5rem;
  font-weight: 600;
  color: var(--ink);
}

.price-badge.lg {
  padding: 0.25rem 0.625rem;
  font-size: 1.5rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-rise {
  animation: rise 0.7s ease both;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem var(--page-x-right) 0.75rem var(--page-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: block;
  text-align: left;
}

.logo-name {
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-name span {
  color: var(--accent);
}

.logo-sub {
  display: none;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: none;
  border: 0;
  padding: 0.25rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

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

.nav-desktop a,
.nav-trigger {
  background: none;
  border: 0;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}

.nav-desktop a {
  color: var(--muted);
  font-weight: 400;
}

.nav-desktop a:hover {
  color: var(--ink);
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.socials a {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  transition: 0.2s;
}

.socials a:hover {
  background: var(--accent);
  color: #fff;
}

.socials--header {
  display: none;
}

.socials--light a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.socials--light a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.header-phone svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.phone-text {
  display: none;
}

.cart-btn {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.cart-btn:hover {
  background: var(--accent);
  color: #fff;
}

.cart-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.mega-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem var(--page-x-right) 2rem var(--page-x);
  display: grid;
  gap: 2rem;
}

.mega-label {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

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

.mega li + li {
  margin-top: 0.5rem;
}

.mega a:hover {
  color: var(--accent);
}

.mega-promo {
  border-radius: 1.5rem;
  background: var(--soft);
  padding: 1.25rem;
}

.mega-promo .font-display {
  margin: 0;
  font-size: 1.125rem;
}

.mega-promo p + p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.mega-promo a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.nav-mobile {
  border-top: 1px solid var(--line);
  background: #fff;
}

.nav-mobile-inner {
  padding: 0.75rem var(--page-x-right) 1rem var(--page-x);
  display: grid;
  gap: 0.75rem;
}

.nav-mobile ul {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0 0 0 0.5rem;
}

.nav-mobile li a {
  display: block;
  padding: 0.15rem 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-mobile-links {
  border-top: 1px solid var(--line);
  padding-top: 0.5rem;
  display: grid;
  gap: 0.25rem;
}

.nav-mobile-links a {
  padding: 0.15rem 0;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  padding: 0.75rem 0 0.5rem;
}

.hero-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1.5rem;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  max-width: 55%;
}

.hero-eyebrow {
  margin: 0;
  font-size: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.hero h1 {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 0.95;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero-lead--desktop {
  display: none;
}

.hero-cta {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-dots {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  height: 0.375rem;
  width: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  padding: 0;
  transition: 0.2s;
}

.hero-dots button.is-active {
  width: 2rem;
  background: var(--accent);
}

/* Gender tiles */
.gender-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.gender-tile {
  position: relative;
  min-height: 141px;
  overflow: hidden;
  border-radius: 1rem;
  color: #fff;
}

.gender-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.gender-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
}

.gender-tile-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
}

.gender-tile-text p {
  margin: 0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.7);
}

.gender-tile-text h2 {
  margin: 0.25rem 0 0;
  font-size: 1.25rem;
}

.gender-tile-text span {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Sections / grids */
.section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.section-tight {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-head h2,
.page-title {
  margin: 0.5rem 0 0;
  font-size: 1.875rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-card {
  display: block;
}

.product-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #f3f4f6, #fff);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.tone-bryuki { background: linear-gradient(135deg, #e2e8f0, #f1f5f9); }
.tone-tuniki { background: linear-gradient(135deg, #e0f2fe, #fff); }
.tone-palto { background: linear-gradient(135deg, #e7e5e4, #fff); }
.tone-bluzki { background: linear-gradient(135deg, #fff1f2, #fff); }
.tone-rubashki { background: linear-gradient(135deg, #eff6ff, #fff); }
.tone-polo { background: linear-gradient(135deg, #ecfdf5, #fff); }
.tone-tolstovki { background: linear-gradient(135deg, #e4e4e7, #fafafa); }
.tone-kurtki { background: linear-gradient(135deg, #e0e7ff, #f8fafc); }
.tone-obuv { background: linear-gradient(135deg, #e5e5e5, #fff); }

.product-brand-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(20, 20, 20, 0.2);
  text-align: center;
  padding: 1rem;
}

.product-card-placeholder.tall {
  min-height: 24rem;
  font-size: 2rem;
}

.product-card-body {
  margin-top: 0.75rem;
}

.product-card-body h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-color {
  margin: 0.35rem 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: capitalize;
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.size-pills span {
  display: inline-flex;
  min-width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.8);
  padding: 0 0.375rem;
  font-size: 0.625rem;
  font-weight: 500;
}

.promo-dark {
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #1a2332 0%, #243044 45%, #3a1f2a 100%);
  color: #fff;
  padding: 2rem 1.5rem;
}

.promo-dark h2 {
  margin: 0.5rem 0 0;
  font-size: 1.875rem;
}

.promo-dark p {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.promo-dark a {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.seo-card {
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem 1.5rem;
}

.seo-card h2 {
  margin: 0;
  font-size: 1.875rem;
}

.seo-card-body {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.seo-card-body p {
  margin: 0;
}

/* Benefits */
.benefits {
  background: #e8ecf1;
  padding: 2rem 0;
}

.benefits .section-head {
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.benefits-grid {
  display: grid;
  gap: 0.75rem;
}

.benefit-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  padding: 0.875rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.benefit-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(208, 18, 45, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.benefit-card p {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Reviews slider */
.reviews-slider {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 1.5rem 0;
  overflow-x: clip;
}

.reviews-pair {
  display: grid;
  width: 100%;
  gap: 0.75rem;
}

.reviews-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-scroller::-webkit-scrollbar {
  display: none;
}

.reviews-slide {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.reviews-card-gap {
  height: 1.25rem;
  width: 100%;
  flex-shrink: 0;
  background: #fff;
}

.review-slide {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  border-radius: 1rem;
  background: #f3f5f8;
  padding: 0.875rem;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.review-slide .q {
  display: block;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 2px;
}

.review-slide p {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.55;
}

.review-slide footer {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.review-slide .name {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.reviews-nav {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.round-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f3f5f8;
  cursor: pointer;
}

.reviews-dots {
  display: flex;
  gap: 0.5rem;
}

.reviews-dots button {
  height: 0.5rem;
  width: 0.625rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 0;
}

.reviews-dots button.is-active {
  width: 2.25rem;
  background: var(--accent);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.review-card {
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.1rem 1.15rem;
}

.review-card > p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.review-meta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-meta .name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.review-meta .muted {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
}

/* Footer */
.site-footer {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--page-x-right) 1rem var(--page-x);
  display: grid;
  gap: 0.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-logo {
  margin: 0;
  font-size: 1.25rem;
}

.footer-logo span {
  color: var(--accent);
}

.footer-tagline {
  display: none;
  margin: 0.5rem 0 0;
  max-width: 28rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.footer-label {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-cols ul {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
}

.footer-cols li {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.35;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.375rem;
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

/* Pages */
.page {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.page.narrow {
  max-width: 48rem;
}

.page.narrow.text-center {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.lead {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  font-size: 0.875rem;
}

.breadcrumbs {
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.breadcrumbs .current {
  color: var(--ink);
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.cat-tiles {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.cat-tile {
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.cat-tile:hover {
  border-color: rgba(208, 18, 45, 0.4);
}

.cat-tile .font-display {
  margin: 0;
  font-size: 1.25rem;
}

.cat-tile span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.seo-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  width: 100%;
}

.seo-block h2 {
  margin: 0;
  font-size: 1.5rem;
}

.seo-block-body {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
}

.seo-block-body p {
  margin: 0;
}

.empty {
  padding: 4rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Product page */
.product-page {
  display: grid;
  gap: 2.5rem;
}

.product-main-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--soft);
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbs {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.product-thumb {
  position: relative;
  width: 4rem;
  height: 5rem;
  flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
}

.product-thumb.is-active {
  border-color: var(--accent);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h1 {
  margin: 0.5rem 0 0;
  font-size: 1.875rem;
}

.product-price-lg {
  margin: 0.75rem 0;
}

.product-desc {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.size-picker {
  margin-top: 2rem;
}

.size-picker-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.size-btn {
  min-width: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.size-btn.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.features {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--muted);
}

.features li + li {
  margin-top: 0.5rem;
}

#add-to-cart {
  margin-top: 2rem;
}

/* Content / contacts / checkout */
.content-block {
  margin-top: 3rem;
}

.content-block h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.content-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.content-list strong {
  color: var(--ink);
}

.contacts-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact-lg {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-form {
  border-radius: 1.5rem;
  background: var(--ink);
  color: #fff;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.contact-form h2 {
  margin: 0;
}

.field,
.field-dark {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
}

.field {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.85);
}

.field:focus {
  border-color: var(--accent);
}

.field-dark {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.field-dark::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.field-dark:focus {
  border-color: var(--accent);
}

.form-hint {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.map-block {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: #fff;
}

.map-head {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.map-head h2 {
  margin: 0;
  font-size: 1.5rem;
}

.map-head p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
}

.map-block iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.checkout-summary {
  margin-top: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.25rem;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.checkout-line + .checkout-line {
  margin-top: 0.75rem;
}

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

.checkout-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.delivery-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.radio-card:has(:checked) {
  border-color: var(--accent);
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.form-error {
  margin: 0;
  border-radius: 0.75rem;
  background: #fef2f2;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #b91c1c;
}

.checkout-success {
  text-align: center;
  padding: 5rem 0;
}

.checkout-success h1 {
  margin: 0;
  font-size: 2.25rem;
}

.checkout-success p {
  margin: 1rem 0 0;
  font-size: 0.875rem;
}

.mt {
  margin-top: 1.5rem;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 28rem;
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.cart-panel-head h2 {
  margin: 0;
  font-size: 1.25rem;
}

.cart-panel-head button,
.cart-clear {
  background: none;
  border: 0;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--muted);
}

.cart-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.75rem;
}

.cart-item p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.cart-item .meta {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
}

.cart-item .remove {
  background: none;
  border: 0;
  color: var(--accent);
  font-size: 0.75rem;
  cursor: pointer;
  white-space: nowrap;
}

.cart-empty {
  font-size: 0.875rem;
  color: var(--muted);
}

.cart-panel-foot {
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.cart-clear {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
}

[hidden] {
  display: none !important;
}

/* Responsive */
@media (min-width: 640px) {
  .logo-sub {
    display: block;
  }

  .socials--header {
    display: flex;
  }

  .hero-content {
    padding: 1.25rem;
    max-width: 28rem;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .gender-tile {
    min-height: 179px;
    border-radius: 1.5rem;
  }

  .gender-tile-text span {
    display: block;
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-outline {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .benefit-card {
    border-radius: 1.5rem;
    padding: 1.25rem;
  }

  .benefit-icon {
    width: 3rem;
    height: 3rem;
  }

  .benefit-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .benefit-card h3 {
    font-size: 1.25rem;
  }

  .benefit-card p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

@media (min-width: 768px) {
  .phone-text {
    display: inline;
  }

  .hero {
    padding: 1rem 0 0.75rem;
  }

  .hero-frame {
    aspect-ratio: 2474 / 878;
    border-radius: 1.5rem;
  }

  .hero-slide img {
    object-position: center;
  }

  .hero-content {
    padding: 2.5rem;
    max-width: 32rem;
  }

  .hero-eyebrow {
    font-size: 6px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lead--mobile {
    display: none;
  }

  .hero-lead--desktop {
    display: block;
    font-size: 1rem;
    line-height: 1.6;
  }

  .gender-tile {
    min-height: 380px;
    border-radius: 1.5rem;
  }

  .gender-tile-text {
    padding: 1.75rem;
  }

  .gender-tile-text p {
    font-size: 11px;
  }

  .gender-tile-text h2 {
    font-size: 2.25rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .page-title,
  .section-head h2,
  .seo-card h2,
  .promo-dark h2 {
    font-size: 2.25rem;
  }

  .reviews-pair {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-slide {
    flex-direction: row;
    align-items: stretch;
  }

  .reviews-slide > .review-slide {
    flex: 1 1 0;
    min-width: 0;
  }

  .reviews-card-gap {
    height: auto;
    width: 1.25rem;
    background: transparent;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .product-page {
    grid-template-columns: 1fr 1fr;
  }

  .product-info h1 {
    font-size: 2.25rem;
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 2rem var(--page-x-right) 2rem var(--page-x);
  }

  .footer-brand {
    display: block;
  }

  .footer-tagline {
    display: block;
  }

  .footer-cols {
    display: contents;
  }

  .footer-logo {
    font-size: 1.875rem;
  }

  .footer-cols li {
    font-size: 0.875rem;
    margin-top: 0.35rem;
  }

  .footer-copy {
    padding: 0.75rem;
    font-size: 0.75rem;
  }

  .site-footer {
    margin-top: 2.5rem;
  }

  .seo-block h2 {
    font-size: 1.875rem;
  }

  .seo-block-body {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

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

  .nav-desktop {
    display: flex;
  }

  .nav-mobile {
    display: none !important;
  }

  .mega-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cat-tiles {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contacts-grid {
    grid-template-columns: 1fr 1fr;
  }
}
