/* Redmi-store.by — shared hosting CSS (no Tailwind) */

:root {
  --ink: #141414;
  --muted: #6b7280;
  --accent: #FF6900;
  --accent-dark: #E85D00;
  --soft: #f3f5f7;
  --price-bg: #FFE566;
  --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;
  overflow-x: clip;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 105, 0, 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--preorder {
  background: #d4d4d4;
  color: #555;
}

.preorder-label {
  margin-left: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #777;
}

.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.45rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.header-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  flex-shrink: 0;
  animation: phone-pulse 2.2s ease-in-out infinite;
}

.header-phone-icon svg {
  width: 1rem;
  height: 1rem;
}

@keyframes phone-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 105, 0, 0.45);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 8px rgba(255, 105, 0, 0);
  }
}

.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.45rem var(--page-x-right) 0.65rem var(--page-x);
  display: grid;
  gap: 0.35rem;
}

.nav-mobile-inner strong,
.nav-mobile-inner strong a {
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
  margin: 0.15rem 0 0;
}

.nav-mobile ul {
  list-style: none;
  margin: 0.1rem 0 0;
  padding: 0 0 0 0.4rem;
  display: grid;
  gap: 0;
}

.nav-mobile li a {
  display: block;
  padding: 0.08rem 0;
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--muted);
}

.nav-mobile-links {
  border-top: 1px solid var(--line);
  margin-top: 0.2rem;
  padding-top: 0.35rem;
  display: grid;
  gap: 0.1rem;
}

.nav-mobile-links a {
  padding: 0.12rem 0;
  font-size: 0.8rem;
  line-height: 1.25;
}

/* 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: 1 / 1;
  overflow: hidden;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #f3f4f6, #fff);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.65rem;
  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;
}

.size-pills span.is-off {
  opacity: 0.35;
  text-decoration: line-through;
  background: #eee;
}

.promo-dark {
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #1a2332 0%, #243044 45%, #4a2a12 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.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.25rem 1.15rem;
}

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

.seo-card-body {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.65rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

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

/* Benefits */
.benefits {
  background: linear-gradient(180deg, #fbfcfd 0%, #f4f6f8 100%);
  padding: 2rem 0;
}

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

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

.benefit-card {
  position: relative;
  border-radius: 1.15rem;
  border: 1.5px solid rgba(255, 105, 0, 0.55);
  background: #fff;
  padding: 1rem 1rem 1.05rem;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.benefit-card::before {
  display: none;
}

.benefit-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: #fffaf6;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.06);
}

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

.benefit-icon {
  width: 2.65rem;
  height: 2.65rem;
  flex-shrink: 0;
  border-radius: 0.85rem;
  background: rgba(255, 105, 0, 0.08);
  color: var(--accent);
  border: 1px solid rgba(255, 105, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

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

.benefit-card h3 {
  margin: 0;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.benefit-card p {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #5b6472;
}

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

.reviews-stack {
  display: grid;
  overflow: hidden;
}

.reviews-slide {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.5s ease-out;
}

.reviews-slide > .review-slide + .review-slide {
  margin-top: 1.25rem;
}

.review-slide {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 0;
  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: 1.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(255, 105, 0, 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-layout {
  overflow-x: clip;
}

.product-page {
  display: grid;
  gap: 2.5rem;
  min-width: 0;
  max-width: 100%;
}

.product-gallery,
.product-info {
  min-width: 0;
  max-width: 100%;
}

.product-main-img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: 1.5rem;
  background: linear-gradient(160deg, #f3f4f6 0%, #fff 70%);
  padding: 0;
  cursor: zoom-in;
  position: relative;
  box-sizing: border-box;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  box-sizing: border-box;
  pointer-events: none;
}

.product-zoom-hint {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.62);
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.2;
  opacity: 0.92;
  pointer-events: none;
}

.product-thumbs {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding-bottom: 0.15rem;
}

.product-thumb {
  position: relative;
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 0;
  background: #f3f4f6;
  cursor: pointer;
  box-sizing: border-box;
}

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

.product-thumb img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  padding: 0.25rem;
  box-sizing: border-box;
  pointer-events: none;
}

.product-info h1,
.product-info-title {
  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.55;
  color: var(--muted);
}

.product-desc p {
  margin: 0 0 0.45rem;
}

.product-desc p:last-child {
  margin-bottom: 0;
}

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

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

.size-btn,
a.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;
  color: var(--ink);
  cursor: pointer;
  -webkit-text-fill-color: var(--ink);
  text-decoration: none;
}

.size-btn:visited,
a.size-btn:visited,
.size-btn:link,
a.size-btn:link {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

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

.size-btn.is-off,
.size-btn:disabled {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
  background: #eee;
}

.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: 0.35rem 0 0;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: normal;
  white-space: normal;
  overflow-wrap: break-word;
}

.contact-list .eyebrow {
  display: block;
  margin-bottom: 0.15rem;
}

.page-hero {
  padding: 1rem var(--page-x) 0;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero .container {
  padding-left: 0;
  padding-right: 0;
}

.page-hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #1a1a1a;
}

.page-hero-banner > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center center;
  display: block;
  vertical-align: top;
}

.page-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.page-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.35rem;
  color: #fff;
  text-shadow: none;
}

.page-hero-eyebrow {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero-copy h1 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  max-width: 40rem;
}

@media (min-width: 768px) {
  .page-hero-banner > img {
    height: 170px;
  }

  .page-hero-copy {
    padding: 1.15rem 1.75rem;
  }
}

@media (max-width: 767px) {
  .page-hero-banner > img {
    height: 120px;
    object-position: center center;
  }

  .page-hero-banner {
    min-height: 0;
  }

  .page-hero-copy h1 {
    font-size: 1.25rem;
  }
}

.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);
}

.pickup-info,
.pickup-card {
  margin-top: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 105, 0, 0.18);
  background: #fff8f2;
}

.pickup-info-address,
.pickup-card .contact-lg {
  margin: 0.35rem 0 0;
  font-weight: 600;
  color: var(--ink);
}

.pickup-info-hours {
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
  font-size: 0.88rem;
  color: var(--ink);
}

.pickup-info-note {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}

.pickup-card {
  margin-top: 1.5rem;
}

/* Promo sale popup */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.promo-popup[hidden] {
  display: none !important;
}

.promo-popup-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 10, 10, 0.55);
  cursor: pointer;
}

.promo-popup-card {
  position: relative;
  z-index: 1;
  width: min(100%, 24rem);
  padding: 1.6rem 1.4rem 1.35rem;
  border-radius: 1.5rem;
  background: linear-gradient(160deg, #ff7a18 0%, #ff4d00 48%, #e03d00 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(255, 77, 0, 0.35);
  text-align: center;
  animation: promo-pop 0.35s ease-out;
}

@keyframes promo-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.promo-popup-x {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.promo-popup-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.promo-popup-card h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.8rem, 5vw, 2.35rem);
  line-height: 1;
}

.promo-popup-text {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.promo-popup-code {
  margin: 1rem auto 0;
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 0.75rem;
  background: #ffe566;
  color: #141414;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.promo-popup-copy {
  margin-top: 1rem;
  width: 100%;
  background: #fff;
  color: var(--accent);
}

.promo-popup-copy:hover {
  background: #fff7ed;
  color: var(--accent-dark);
}

.promo-popup-hint {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

body.promo-popup-open {
  overflow: hidden;
}

.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.65rem;
  top: 0.65rem;
  bottom: 0.65rem;
  display: flex;
  flex-direction: column;
  width: calc(100% - 1.3rem);
  max-width: 26rem;
  height: auto;
  max-height: calc(100% - 1.3rem);
  border-radius: 1.25rem;
  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.35rem;
    padding: 1.25rem 1.2rem 1.3rem 1.3rem;
  }

  .benefit-icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 1rem;
  }

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

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

  .benefit-card p {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@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-slide > .review-slide + .review-slide {
    margin-top: 0;
    margin-left: 1.25rem;
  }

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

  .product-page {
    grid-template-columns: minmax(0, 1fr) minmax(0, 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;
  }

  .mega-inner.mega-grid {
    grid-template-columns: 2fr 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;
  }
}

/* Redmi-store extras */
.mega-inner.mega-grid {
  grid-template-columns: 1fr;
}

.mega-cols {
  columns: 2;
  column-gap: 2rem;
}

@media (min-width: 768px) {
  .mega-cols {
    columns: 3;
  }
}

@media (min-width: 1024px) {
  .mega-cols {
    columns: 4;
  }
}

.mega-cols li {
  break-inside: avoid;
}

.product-card-prices {
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.price-old {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: line-through;
}

.price-old.lg {
  margin-left: 0.5rem;
  font-size: 1rem;
}

.mt-sm {
  margin-top: 0.35rem;
}

/* —— Redmi-store homepage redesign —— */
.hero--static {
  padding: 1.25rem 0 0;
}

.hero--static .container {
  max-width: var(--max);
}

.hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #f7c9a5;
  box-shadow: 0 18px 40px rgba(255, 105, 0, 0.08);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.52) 100%);
  pointer-events: none;
}

.hero-banner > img {
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 420px;
  object-fit: cover;
  object-position: left center;
  display: block;
  border-radius: 1.5rem;
}

.hero-banner-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 1.25rem 1.5rem 1.25rem 42%;
  color: #fff;
  text-shadow: none;
}

.hero-banner-copy .hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
}

.hero-banner-copy h1 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

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

.hero-banner-copy .hero-lead {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.hero-banner-copy .hero-cta {
  margin-top: 1rem;
  flex-direction: row;
  flex-wrap: wrap;
}

.hero-banner-copy .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-banner-copy .btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.brand-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.brand-split-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}

.brand-split-item:last-child {
  border-bottom: 0;
}

.brand-split-item:hover {
  color: var(--accent);
}

.brand-split-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-split-count {
  font-size: 0.8rem;
  color: var(--muted);
}

.benefits--row {
  background: linear-gradient(180deg, #fbfcfd 0%, #f4f6f8 100%);
  padding: 1.5rem 0;
}

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

.benefits--row .benefit-card {
  border: 1.5px solid rgba(255, 105, 0, 0.55);
  box-shadow: none;
  background: #fff;
}

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

.product-card--home {
  display: flex;
  flex-direction: column;
}

.product-card--home .product-card-media {
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  background: linear-gradient(160deg, #f3f4f6 0%, #fff 70%);
}

.product-card--home .product-card-media img {
  object-fit: contain;
  padding: 0.75rem;
  transform: scale(0.92);
}

.product-card--home:hover .product-card-media img {
  transform: scale(0.98);
}

.product-card--home .product-card-body {
  margin-top: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-card--home h3 {
  font-size: 0.8rem;
  -webkit-line-clamp: 2;
}

.product-card--home h3 a:hover {
  color: var(--accent);
}

.product-card-blurb {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.35;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.color-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.color-dot {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: var(--swatch, #d1d5db);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  padding: 0;
  cursor: pointer;
}

.color-dot.is-active {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.color-dots--product {
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.color-dots--product .color-dot {
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  transition: transform 0.15s ease, outline-color 0.15s ease;
}

.color-dots--product .color-dot:hover:not(:disabled) {
  transform: scale(1.08);
}

.color-dots--product .color-dot.is-off,
.color-dots--product .color-dot:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.color-picker-label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--ink);
}

#color-picker .size-btn,
a#color-picker .size-btn {
  min-width: 3.35rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.05rem;
  font-size: 0.95rem;
}

.contacts-requisites {
  margin-top: 2rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: #fff;
}

.contacts-requisites img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin-top: 0.75rem;
  opacity: 0.85;
}

.contact-requisites-inline {
  margin: 0.15rem 0;
}

.contact-requisites-inline img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  opacity: 0.75;
}

.delivery-promo {
  padding: 1.25rem var(--page-x) 0.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.delivery-promo-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff9f4 0%, #fff 58%);
  overflow: hidden;
}

.delivery-promo-photo {
  border-radius: 1rem;
  overflow: hidden;
  line-height: 0;
}

.delivery-promo-photo img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.delivery-promo-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-mark {
  display: grid;
  gap: 0.2rem;
}

.logo-mark .logo-name {
  font-size: 1.65rem;
  line-height: 1;
  color: var(--ink);
}

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

.logo-mark .logo-sub {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.logo-mark--promo .logo-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.delivery-promo-media img {
  display: none;
}

.brand-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.brand-category-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.82rem;
  color: var(--ink);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.brand-category-chip:hover {
  border-color: rgba(255, 105, 0, 0.35);
  color: var(--accent);
  background: #fffaf6;
}

.mega-label a {
  color: inherit;
  text-decoration: none;
}

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

.nav-mobile-inner strong a {
  color: inherit;
  text-decoration: none;
}

.nav-mobile-inner strong a:hover {
  color: var(--accent);
}

.delivery-promo-copy h3 {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
}

.delivery-promo-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.reviews-teaser {
  padding: 1.5rem 0 0.5rem;
  background: transparent;
}

.reviews-teaser-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviews-teaser-head h2 {
  margin: 0.35rem 0 0;
  font-size: 1.6rem;
}

.reviews-teaser-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.reviews-slider--page {
  margin: 1.5rem 0 2rem;
}

.review-slide {
  position: relative;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.review-avatar--yandex {
  background: #fc3f1d;
  color: #fff;
}

.review-avatar--google {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: transparent;
  padding: 0;
}

.review-avatar--google svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.review-card {
  position: relative;
}

.review-form-card {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 105, 0, 0.12);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
  box-shadow: 0 18px 40px rgba(255, 105, 0, 0.05);
}

.review-form-head h2 {
  margin: 0;
  font-size: 1.6rem;
}

.review-form-head p {
  margin: 0.45rem 0 0;
}

.review-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.review-form-grid {
  display: grid;
  gap: 0.85rem;
}

.review-field {
  display: grid;
  gap: 0.4rem;
}

.review-field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.review-field input,
.review-field textarea,
.review-field select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 1rem;
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.review-field input:focus,
.review-field textarea:focus {
  outline: none;
  border-color: rgba(255, 105, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.1);
}

.review-field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.review-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.review-form-actions .btn-primary {
  min-width: 11rem;
  border-radius: 999px;
}

.model-picker {
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .delivery-promo-inner {
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 1.25rem;
    padding: 1rem 1.15rem;
  }

  .delivery-promo-photo img {
    min-height: 150px;
    max-height: none;
    height: 100%;
  }

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

@media (max-width: 767px) {
  .product-page,
  .product-gallery,
  .product-info,
  .model-picker,
  .size-picker-list {
    max-width: 100%;
    min-width: 0;
  }

  .product-main-img {
    aspect-ratio: 1 / 1;
    max-height: 280px;
    width: 100%;
  }

  .product-main-img img {
    padding: 0.75rem;
    transform: none;
  }

  .product-zoom-hint {
    font-size: 0.65rem;
    left: 0.55rem;
    bottom: 0.55rem;
  }

  .product-desc,
  .features,
  .gift-note--product {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-banner::after {
    background: linear-gradient(105deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.62) 100%);
  }

  .hero-banner-copy {
    align-items: flex-end;
    padding: 0.7rem 0.75rem 0.7rem 32%;
    justify-content: center;
    text-align: left;
  }

  .hero-banner-copy .hero-eyebrow {
    font-size: 0.55rem;
  }

  .hero-banner-copy h1 {
    font-size: clamp(1.15rem, 5.5vw, 1.55rem);
  }

  .hero-banner-copy .hero-lead {
    margin-top: 0.4rem;
    font-size: 0.72rem;
    line-height: 1.35;
    max-width: 14rem;
  }

  .hero-banner-copy .hero-cta {
    margin-top: 0.65rem;
    gap: 0.4rem;
  }

  .hero-banner-copy .btn-primary,
  .hero-banner-copy .btn-outline {
    padding: 0.45rem 0.7rem;
    font-size: 0.72rem;
  }

  .hero-banner > img {
    min-height: 200px;
    max-height: 280px;
    object-position: 18% center;
  }

  #color-picker .size-btn,
  #memory-picker .size-btn,
  #model-picker .size-btn,
  .size-picker-list .size-btn {
    min-width: 3.25rem;
    min-height: 2.65rem;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    color: #141414 !important;
    -webkit-text-fill-color: #141414 !important;
  }

  #color-picker .size-btn.is-active,
  #memory-picker .size-btn.is-active,
  #model-picker .size-btn.is-active {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
  }

  .cart-panel {
    right: 0.4rem;
    left: 0.4rem;
    top: auto;
    bottom: 0.4rem;
    width: auto;
    max-width: none;
    max-height: 82vh;
    border-radius: 1.25rem;
  }
}

.color-more {
  font-size: 0.65rem;
  color: var(--muted);
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.65rem;
  width: 100%;
}

.page-modules {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem var(--page-x) 0.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.page-module {
  display: block;
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.page-module:hover {
  border-color: rgba(255, 105, 0, 0.35);
  box-shadow: 0 8px 24px rgba(255, 105, 0, 0.06);
}

.page-module-eyebrow {
  margin: 0;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
}

.page-module h3 {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
}

.page-module p {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.page-module-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.mega-brands {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.mega-brand-col ul {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.mega-brand-col a {
  font-size: 0.875rem;
}

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

@media (min-width: 640px) {
  .brand-split {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .brand-split-item {
    padding: 1.35rem 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand-split-item:first-child {
    padding-left: 0;
  }

  .brand-split-item:last-child {
    border-right: 0;
    padding-right: 0;
  }

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

@media (min-width: 768px) {
  .hero-banner {
    min-height: 380px;
  }

  .hero-banner > img {
    min-height: 380px;
  }

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

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

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

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

  .hero-banner-copy {
    padding-left: 52%;
  }

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

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

/* Gift note */
.gift-note {
  margin: 0;
}

.gift-note--strip {
  margin: 2.5rem auto 0;
}

.gift-note-strip-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 105, 0, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 229, 102, 0.35), rgba(255, 105, 0, 0.08) 45%, rgba(255, 255, 255, 0.92)),
    radial-gradient(420px 180px at 0% 0%, rgba(255, 105, 0, 0.12), transparent 70%);
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.04);
}

.gift-note--product {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px dashed rgba(255, 105, 0, 0.45);
  background: linear-gradient(180deg, #fff8e8, #fff);
}

.gift-note--checkout {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(255, 229, 102, 0.35);
  border: 1px solid rgba(255, 105, 0, 0.2);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink);
}

.gift-note--checkout strong {
  color: var(--accent-dark);
}

.gift-note-icon {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  box-shadow: 0 8px 18px rgba(255, 105, 0, 0.28);
}

.gift-note-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.gift-note-copy {
  min-width: 0;
}

.gift-note-title {
  margin: 0;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.gift-note-hint {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--muted);
}

/* FAQ accordion */
.faq-section {
  margin: 3rem auto 0;
  padding-bottom: 0.5rem;
}

.faq-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(700px 280px at 100% 0%, rgba(255, 105, 0, 0.1), transparent 55%),
    radial-gradient(500px 240px at 0% 100%, rgba(56, 89, 130, 0.06), transparent 50%),
    linear-gradient(180deg, #ffffff, #f7f9fb);
  padding: 1.5rem 1.15rem 1.25rem;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.05);
}

.faq-head {
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.faq-head .font-display {
  margin: 0.35rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.faq-lead {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(255, 105, 0, 0.35);
  box-shadow: 0 10px 24px rgba(255, 105, 0, 0.08);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  font-family: Syne, Manrope, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}

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

.faq-chevron {
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 105, 0, 0.28);
  background: rgba(255, 105, 0, 0.08);
  position: relative;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.55rem;
  height: 1.5px;
  background: var(--accent);
  transition: transform 0.2s ease;
}

.faq-chevron::before {
  transform: translate(-50%, -50%);
}

.faq-chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-chevron::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 1.05rem 1.05rem;
}

.faq-answer p {
  margin: 0;
  padding-top: 0.15rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.faq-answer-link {
  margin-top: 0.65rem !important;
  border-top: 0 !important;
  padding-top: 0 !important;
}

.faq-answer-link a {
  color: var(--accent);
  font-weight: 600;
}

.faq-answer-link a:hover {
  color: var(--accent-dark);
}

/* Image lightbox */
body.lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none !important;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(10, 10, 10, 0.78);
  cursor: pointer;
}

.image-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 56rem);
  max-height: min(92vh, 56rem);
  display: grid;
  place-items: center;
  padding: 0.5rem;
  box-sizing: border-box;
}

.image-lightbox-panel img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(88vh, 52rem);
  object-fit: contain;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.image-lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: -0.15rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.image-lightbox-close:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .gift-note-strip-inner {
    align-items: center;
    padding: 1.25rem 1.5rem;
  }

  .faq-shell {
    padding: 2rem 2rem 1.6rem;
  }

  .faq-question {
    font-size: 1.05rem;
    padding: 1.15rem 1.25rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1.2rem;
  }

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

/* Warranty page */
.warranty-highlights {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.warranty-card {
  padding: 1.25rem 1.2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 105, 0, 0.08), transparent 55%),
    #fff;
}

.warranty-card .font-display {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.warranty-card p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.warranty-service-lead {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.warranty-map-link {
  margin: 1rem 0 0;
}

.warranty-alert {
  padding: 1.35rem 1.2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 105, 0, 0.22);
  background: linear-gradient(180deg, #fff8ec, #fff);
}

.warranty-alert .font-display {
  margin-top: 0;
}

.warranty-thanks {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.warranty-cta-text {
  margin: 0 0 1rem;
  color: var(--muted);
}

.warranty-related {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.warranty-related a {
  color: var(--accent);
  font-weight: 600;
}
