

:root {
  --ink: #f5f5f5;
  --muted: #a0a0a8;
  --accent: #FFB800;
  --accent-dark: #E0A000;
  --soft: #141418;
  --price-bg: #FFDA00;
  --paper: #090A1B;
  --line: rgba(255,255,255,0.1);
  --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;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "SamsungOne", 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: "Samsung Sharp Sans", "SamsungOne", 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;
  -webkit-text-fill-color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:active {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.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;
}

.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: inline-flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.logo-name {
  font-family: "Samsung Sharp Sans", "SamsungOne", 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.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  opacity: 0.5;
  width: 100%;
  text-align: justify;
  text-align-last: justify;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  background: none;
  border: 0;
  padding: 0.55rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  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: 1rem;
}

.nav-desktop a,
.nav-trigger {
  background: none;
  border: 0;
  padding: 0.45rem 0.15rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  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;
  min-height: 2.75rem;
}

.header-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  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) rotate(0deg);
    box-shadow: 0 0 0 0 rgba(255, 191, 0, 0.5);
  }
  12% {
    transform: scale(1.05) rotate(-10deg);
  }
  24% {
    transform: scale(1.05) rotate(10deg);
  }
  36% {
    transform: scale(1.04) rotate(-6deg);
  }
  48% {
    transform: scale(1.02) rotate(0deg);
    box-shadow: 0 0 0 10px rgba(255, 191, 0, 0);
  }
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 0 0 rgba(255, 191, 0, 0);
  }
}

.header-phone svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.phone-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cart-btn {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  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.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.mega ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega li + li {
  margin-top: 0.28rem;
}

.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;
  color: var(--accent);
}

.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-series {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0.55rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--line);
}

.nav-mobile-series a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--galaxy-ink);
}

.nav-mobile-links a {
  padding: 0.12rem 0;
  font-size: 0.8rem;
  line-height: 1.25;
}

.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 {
  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);
}

.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.7rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--muted);
}

.seo-card-body p {
  margin: 0;
}

.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: "Samsung Sharp Sans", "SamsungOne", 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 {
  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: "Samsung Sharp Sans", "SamsungOne", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 2px;
}

.review-slide .review-stars {
  margin: 0 0 0.4rem;
}

.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-stars {
  display: inline-flex;
  gap: 0.08rem;
  margin: 0.35rem 0 0.55rem;
  line-height: 1;
  letter-spacing: 0;
}

.review-star {
  font-size: 0.95rem;
  color: #d6d6d6;
}

.review-star.is-on {
  color: #f5a524;
}

.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;
}

.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);
}

.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: 42rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.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: 0.85rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--muted);
}

.seo-block-body p {
  margin: 0;
}

.empty {
  padding: 4rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.product-layout {
  overflow-x: clip;
}

.product-page {
  display: grid;
  gap: 2.5rem;
  min-width: 0;
  max-width: 100%;
}

.product-page--discontinued .product-gallery,
.product-page--discontinued .product-info {
  filter: grayscale(1);
  opacity: 0.72;
}

.discontinued-banner {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(180, 35, 24, 0.2);
  background: #fff5f5;
  color: #7a271a;
}

.discontinued-banner p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: #9b3b30;
}

.series-suggestions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.series-suggestions-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.series-suggestions-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.product-card--discontinued .product-card-media img {
  filter: grayscale(1);
  opacity: 0.7;
}

.product-card--discontinued .product-card-body h3 a,
.product-card--discontinued .product-card-prices {
  opacity: 0.75;
}

.product-discontinued-badge {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.78);
  color: #fff;
  padding: 0.2rem 0.55rem;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.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.4;
  color: var(--muted);
}

.product-desc p {
  margin: 0 0 0.35rem;
}

.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,
a.size-btn.is-active,
.size-btn.is-active:link,
a.size-btn.is-active:link,
.size-btn.is-active:visited,
a.size-btn.is-active:visited,
.size-btn.is-active:hover,
a.size-btn.is-active:hover {
  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-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: "SamsungOne", 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: 0;
  max-width: none;
  margin: 0;
}

.page-hero .container {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  width: 100%;
}

.page-hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #1a1a1a;
  height: clamp(11.5rem, 22vw, 14.5rem);
}

.page-hero-banner > picture,
.page-hero-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.page-hero-banner > picture img,
.page-hero-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 16%;
  display: block;
}

.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.25rem;
  color: #fff;
  text-shadow: none;
  min-height: 0;
}

.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.2rem 0 0;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  max-width: 40rem;
}

@media (min-width: 768px) {
  .page-hero-copy {
    padding: 1.15rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .page-hero-banner {
    height: 11.5rem;
  }

  .page-hero-copy {
    padding: 0.9rem 1rem;
  }

  .page-hero-copy h1 {
    font-size: 1.15rem;
  }
}

.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: 16px;
  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;
}

.map-foot {
  padding: 0.85rem 1.5rem 1.1rem;
  border-top: 1px solid var(--line);
}

.contacts-map {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contacts-map .map-head .eyebrow {
  margin: 0 0 0.35rem;
}

.contacts-map iframe {
  flex: 1 1 auto;
  min-height: 280px;
  height: 320px;
}

.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;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.checkout-line-title {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.35;
}

.checkout-line-price {
  flex: 0 0 auto;
  white-space: nowrap;
}

.checkout-line-price .price-badge {
  white-space: nowrap;
}

.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;
}

.checkout-promo {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.checkout-promo-toggle {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  user-select: none;
}

.checkout-promo-toggle::-webkit-details-marker {
  display: none;
}

.checkout-promo-toggle::after {
  content: '+';
  float: right;
  font-weight: 400;
  color: var(--muted);
}

.checkout-promo[open] .checkout-promo-toggle::after {
  content: '−';
}

.checkout-promo-body {
  padding: 0 1rem 0.85rem;
  display: grid;
  gap: 0.45rem;
}

.checkout-promo-hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.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-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.75rem 1.45rem 1.4rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(520px 220px at 100% 0%, rgba(255, 255, 255, 0.55), transparent 60%),
    linear-gradient(165deg, #fff566 0%, #ffe500 42%, #ffd000 100%);
  color: var(--galaxy-ink, #17131d);
  box-shadow: 0 24px 60px rgba(23, 19, 29, 0.22);
  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(23, 19, 29, 0.55);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.promo-popup-x:hover {
  color: var(--galaxy-ink, #17131d);
}

.promo-popup-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--samsung-blue, #1428a0);
}

.promo-popup-card h2 {
  margin: 0.35rem 0 0;
  color: var(--galaxy-ink, #17131d);
  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(23, 19, 29, 0.78);
}

.promo-popup-code {
  margin: 1rem auto 0;
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 0.85rem;
  background: #fff;
  color: var(--galaxy-ink, #17131d);
  box-shadow: 0 8px 20px rgba(23, 19, 29, 0.08);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.promo-popup-copy,
.promo-popup-copy:link,
.promo-popup-copy:visited,
.promo-popup-copy:hover,
.promo-popup-copy:active,
.promo-popup-copy:focus {
  margin-top: 1rem;
  width: 100%;
  border-radius: 999px;
  background: var(--samsung-blue, #1428a0);
  color: #fff;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 10px 24px rgba(20, 40, 160, 0.28);
}

.promo-popup-copy:hover,
.promo-popup-copy:focus {
  background: var(--samsung-blue-dark, #07166f);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.promo-popup-hint {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: rgba(23, 19, 29, 0.7);
}

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 {
  scroll-margin-top: 5rem;
  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 {
  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;
}

@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 {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

  .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;
  }
}

.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;
}

.hero--static {
  padding: 1.25rem 0 0;
}

.hero--static .container {
  max-width: var(--max);
}

.hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 1400 / 614;
  background: #1a1a1a;
  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;
  z-index: 1;
}

.hero-banner > picture,
.hero-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  max-width: none;
  display: block;
}
.hero-banner > picture img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-banner > img {
  object-fit: cover;
  object-position: left center;
  display: block;
  border-radius: 1.5rem;
}

.hero-banner-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  isolation: isolate;
  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;
  pointer-events: none;
}

.hero-banner-copy > * {
  pointer-events: auto;
}

.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: repeat(3, 1fr);
  gap: 0;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.brand-split-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.85rem 0.4rem;
  border-bottom: 0;
  border-right: 1px solid var(--line);
  text-align: left;
  transition: color 0.15s;
}

.brand-split-item:last-child {
  border-bottom: 0;
  border-right: 0;
}

.brand-split-item:hover {
  color: var(--accent);
}

.brand-split-name {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.15;
}

.brand-split-count {
  font-size: 0.7rem;
  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.15rem;
}

.color-dot {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
}

.color-dot::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 1.15rem;
  height: 1.15rem;
  margin: -0.575rem;
  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);
}

.color-dot.is-active::before {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.color-dots--product {
  gap: 0.25rem;
  margin-top: 0.65rem;
}

.color-dots--product .color-dot {
  width: 2.75rem;
  height: 2.75rem;
}

.color-dots--product .color-dot::before {
  width: 1.85rem;
  height: 1.85rem;
  margin: -0.925rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  transition: transform 0.15s ease;
}

.color-dots--product .color-dot:hover:not(:disabled)::before {
  transform: scale(1.08);
}

.color-dots--product .color-dot.is-off,
.color-dots--product .color-dot:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.color-dots--product .color-dot.is-off::before,
.color-dots--product .color-dot:disabled::before {
  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;
  aspect-ratio: 16 / 9;
  background: #e8eef3;
}

.delivery-promo-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  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: #c45f14;
}

.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 h2 {
  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(12rem, 34%) minmax(0, 1fr);
    gap: 0;
    padding: 0;
  }

  .delivery-promo-photo img {
    min-height: 0;
    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,
  .hero-banner > picture img {
    min-height: 0;
    max-height: none;
    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,
  .size-picker-list .size-btn.is-active,
  a.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.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.mega-brand-col a {
  font-size: 0.8125rem;
  line-height: 1.25;
}

.mega-brand-col a:hover {
  color: var(--accent);
}

@media (min-width: 640px) {
  .brand-split {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand-split-item {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand-split-name {
    font-size: 1.5rem;
  }

  .brand-split-count {
    font-size: 0.8rem;
  }

  .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: 0;
  }

  .hero-banner > img,
  .hero-banner > picture {
    min-height: 0;
  }

  .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%;
  }

  .hero--static .hero-banner-copy {
    padding-left: max(var(--page-x), calc((100vw - var(--max)) / 2 + var(--page-x)));
  }

  .benefits-grid.benefits-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .mega-inner.mega-brands {
    grid-template-columns: repeat(3, 1fr);
  }
}

.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: "Samsung Sharp Sans", "SamsungOne", 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-section {
  margin: 1.75rem auto 0;
  padding-bottom: 0.25rem;
}

.faq-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  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: 1rem 0.95rem 0.85rem;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.04);
}

.faq-head {
  margin-bottom: 0.75rem;
  max-width: 36rem;
}

.faq-head .font-display {
  margin: 0.2rem 0 0;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.faq-lead {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.4rem;
}

.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: 0.75rem;
  padding: 0.7rem 0.85rem;
  font-family: "Samsung Sharp Sans", "SamsungOne", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  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 0.85rem 0.7rem;
}

.faq-answer p {
  margin: 0;
  padding-top: 0.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--muted);
}

.faq-answer-link {
  margin-top: 0.4rem !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);
}

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: 1.15rem 1.35rem 1rem;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 0.75rem 1rem;
  }

  .faq-answer {
    padding: 0 1rem 0.75rem;
  }

  .warranty-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.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;
}

:root {
  --ink: #182033;
  --muted: #667085;
  --accent: #ffbf00;
  --accent-dark: #e59c00;
  --soft: #f2f6fb;
  --price-bg: #fff0a6;
  --paper: #fffdf8;
  --line: rgba(24, 32, 51, 0.10);
}

body {
  background:
    radial-gradient(900px 480px at -5% 2%, rgba(255, 214, 64, 0.22), transparent 64%),
    radial-gradient(850px 520px at 105% 18%, rgba(20, 205, 205, 0.15), transparent 62%),
    linear-gradient(180deg, #fffdf8 0%, #ffffff 42%, #f7fbff 100%);
}

.site-header {
  background: rgba(255, 253, 248, 0.9);
  border-bottom-color: rgba(24, 32, 51, 0.08);
  box-shadow: 0 8px 30px rgba(32, 44, 72, 0.04);
}

.logo-name {
  font-weight: 800;
  letter-spacing: -0.045em;
}

.logo-name span,
.footer-logo span {
  color: #e3a500;
}

.logo-sub {
  color: #586173;
  opacity: 0.8;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd62e, #ffb400);
  color: #182033;
  -webkit-text-fill-color: #182033;
  font-weight: 800;
  box-shadow: 0 9px 22px rgba(229, 156, 0, 0.22);
}

a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:active {
  color: #182033;
  -webkit-text-fill-color: #182033;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffe264, #ffc20a);
  color: #182033;
  -webkit-text-fill-color: #182033;
  transform: translateY(-1px);
}

.header-phone::before {
  content: "";
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  background:
    #ffbf00
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23182033'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.62 2.63a2 2 0 0 1-.45 2.11L8 9.73a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.85.29 1.73.5 2.63.62A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E")
    center / 1.1rem no-repeat;
  box-shadow: 0 0 0 0 rgba(255, 191, 0, 0.42);
  animation: phone-pulse 2.6s ease-in-out infinite;
}

.cart-btn {
  background: #edf7f7;
}

.hero-banner {
  border-radius: 2rem;
  box-shadow: 0 24px 60px rgba(51, 70, 101, 0.14);
}

.hero-banner::after {
  background: linear-gradient(90deg, rgba(255, 218, 56, 0.16) 0%, rgba(255, 174, 58, 0.05) 38%, rgba(0, 0, 0, 0.02) 65%);
}

.hero-banner-copy {
  align-items: flex-start;
  padding: 1.5rem 53% 1.5rem 4.5%;
  color: #172033;
}

.hero-banner-copy .hero-eyebrow,
.hero-banner-copy .hero-lead,
.hero-banner-copy h1 {
  color: #172033;
}

.hero-banner-copy h1 {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-banner-copy h1 span {
  color: #172033;
}

.hero-banner-copy .hero-lead {
  font-weight: 650;
}

.hero-banner-copy .btn-outline {
  border-color: rgba(23, 32, 51, 0.28);
  color: #172033;
  background: rgba(255, 255, 255, 0.55);
}

.hero-banner-copy .btn-outline:hover {
  border-color: #172033;
  color: #172033;
  background: #fff;
}

.brand-split {
  gap: 0.7rem;
  border: 0;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand-split-item {
  border: 0;
  border-radius: 1rem;
  padding: 0.9rem 0.8rem;
  background: linear-gradient(135deg, #fff2a8, #ffe26a);
}

.brand-split-item:nth-child(2) {
  background: linear-gradient(135deg, #c9f7f2, #8ce7e3);
}

.brand-split-item:nth-child(3) {
  background: linear-gradient(135deg, #ffd3bd, #ffad86);
}

.brand-split-item:hover {
  color: #172033;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(32, 44, 72, 0.10);
}

.benefits,
.benefits--row {
  background: transparent;
}

.benefit-card {
  border: 0;
  background: #fff;
  box-shadow: 0 12px 32px rgba(32, 44, 72, 0.08);
}

.benefit-card:nth-child(2) {
  background: #effcfb;
}

.benefit-card:nth-child(3) {
  background: #fff9df;
}

.benefit-card:nth-child(4) {
  background: #fff2eb;
}

.benefit-icon {
  border: 0;
  background: #ffdf65;
  color: #172033;
}

.product-card-media {
  border: 1px solid rgba(24, 32, 51, 0.06);
  background: linear-gradient(150deg, #ffffff, #f4f8fc);
  box-shadow: 0 12px 34px rgba(36, 51, 78, 0.07);
}

.product-card:hover .product-card-media {
  border-color: rgba(255, 191, 0, 0.45);
  box-shadow: 0 18px 42px rgba(36, 51, 78, 0.12);
}

.price-badge {
  color: #172033;
}

.delivery-promo-inner {
  border: 0;
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(35, 205, 199, 0.20), transparent 65%),
    linear-gradient(135deg, #fff8cb, #fff);
  box-shadow: 0 16px 40px rgba(32, 44, 72, 0.07);
}

.gift-note-strip-inner {
  border: 0;
  background:
    radial-gradient(500px 200px at 100% 0%, rgba(31, 200, 198, 0.22), transparent 70%),
    linear-gradient(135deg, #fff0a0, #fff9dc);
}

.review-slide,
.review-card {
  border: 0;
  background: linear-gradient(155deg, #ffffff, #f3fbfb);
  box-shadow: 0 12px 30px rgba(32, 44, 72, 0.07);
}

.review-slide:nth-child(even),
.review-card:nth-child(3n + 2) {
  background: linear-gradient(155deg, #fffdf4, #fff5c9);
}

.faq-shell {
  border: 0;
  background:
    radial-gradient(700px 280px at 100% 0%, rgba(31, 200, 198, 0.14), transparent 55%),
    linear-gradient(180deg, #fff, #fffaf0);
}

.page-hero-banner {
  background: #1a1a1a;
}

.site-footer {
  background:
    radial-gradient(700px 300px at 10% 0%, rgba(255, 191, 0, 0.16), transparent 65%),
    #172033;
}

.footer-logo span {
  color: #ffd43c;
}

@media (max-width: 767px) {
  .hero-banner {
    min-height: 20rem;
    aspect-ratio: auto;
  }

  .hero-banner > picture img,
  .hero-banner > img {
    object-position: 58% center;
  }

  .hero-banner::after {
    background: linear-gradient(0deg, rgba(255, 225, 89, 0.96) 0%, rgba(255, 205, 66, 0.72) 46%, rgba(255, 255, 255, 0.02) 72%);
  }

  .hero-banner-copy {
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1rem 1rem 1.2rem;
  }

  .hero-banner-copy .hero-lead {
    max-width: 19rem;
  }
}

:root {
  --samsung-blue: #1428a0;
  --samsung-blue-dark: #07166f;
  --galaxy-yellow: #ffe500;
  --galaxy-cyan: #00b8c8;
  --galaxy-ink: #17131d;
  --ink: #17131d;
  --muted: #64646d;
  --accent: #1428a0;
  --accent-dark: #07166f;
  --paper: #fff;
  --soft: #f5f6f8;
  --line: rgba(23, 19, 29, 0.10);
  --price-bg: #ffe500;
  --font-sans: "SamsungOne", system-ui, sans-serif;
  --font-display: "Samsung Sharp Sans", "SamsungOne", system-ui, sans-serif;
}

body {
  background: #fff;
  color: var(--galaxy-ink);
  font-family: var(--font-sans);
}

.font-display,
h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 19, 29, 0.08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 4.75rem;
}

.logo--original {
  display: block;
  width: clamp(12.5rem, 18vw, 17rem);
  line-height: 0;
}

.logo--original img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-desktop {
  gap: 1.6rem;
}

.nav-desktop a,
.nav-trigger {
  color: var(--galaxy-ink);
  font-weight: 650;
}

.nav-desktop a:hover,
.nav-trigger:hover {
  color: var(--samsung-blue);
}

.header-phone::before {
  background-color: var(--galaxy-yellow);
  animation: phone-pulse 2.6s ease-in-out infinite;
}

.cart-btn {
  background: #f1f3f7;
}

.cart-btn:hover {
  background: var(--galaxy-yellow);
}

.mega {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 44px rgba(7, 22, 111, 0.10);
}

.mega-inner {
  padding-top: 1.5rem;
  padding-bottom: 1.7rem;
}

.mega-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
}

.mega-group p {
  margin: 0 0 0.8rem;
  color: var(--samsung-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mega-group p a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-decoration: none;
}

.mega-group ul {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-group a {
  color: var(--galaxy-ink);
  font-size: 0.9rem;
}

.mega-group a:hover {
  color: var(--samsung-blue);
}

.store-promo {
  background: var(--galaxy-ink);
  color: #fff;
}

.store-promo-inner {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.76rem;
}

.store-promo strong {
  color: var(--galaxy-yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-promo a {
  color: #fff;
  font-weight: 750;
}

.hero {
  padding-top: 1rem;
}

.hero-banner {
  min-height: clamp(28rem, 43vw, 38rem);
  border-radius: 2.25rem;
  background: #eef0f4;
  box-shadow: none;
}

.hero-banner > picture img,
.hero-banner > img {
  object-position: center;
}

.hero-banner::after {
  background: linear-gradient(90deg, rgba(255, 229, 0, 0.22) 0%, rgba(0, 184, 200, 0.08) 34%, transparent 58%);
}

.hero-banner-copy {
  justify-content: center;
  align-items: flex-start;
  width: 48%;
  padding: 3rem 3.5rem;
  color: var(--galaxy-ink);
}

.hero-banner-copy h1 {
  max-width: 16ch;
  margin: 0.45rem 0 0;
  color: var(--galaxy-ink);
  font-size: clamp(2.15rem, 4.2vw, 4.1rem);
  line-height: 0.98;
  text-shadow: none;
}

.hero-banner-copy .hero-eyebrow {
  color: var(--galaxy-ink);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-banner-copy .hero-lead {
  max-width: 34rem;
  color: rgba(23, 19, 29, 0.76);
  font-size: clamp(0.95rem, 1.45vw, 1.18rem);
  font-weight: 550;
}

.btn-primary {
  border: 0;
  border-radius: 999px;
  background: var(--samsung-blue);
  color: #fff;
  -webkit-text-fill-color: #fff;
  box-shadow: none;
  font-weight: 750;
}

a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:active {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.btn-primary:hover {
  background: var(--samsung-blue-dark);
  color: #fff;
  -webkit-text-fill-color: #fff;
  transform: translateY(-2px);
}

.hero-banner-copy .btn-outline {
  border-color: rgba(23, 19, 29, 0.32);
  background: rgba(255, 255, 255, 0.42);
  color: var(--galaxy-ink);
}

.home-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  overflow: hidden;
}

.home-proof div {
  display: grid;
  gap: 0.18rem;
  padding: 1.3rem 1.5rem;
  text-align: center;
}

.home-proof div + div {
  border-left: 1px solid var(--line);
}

.home-proof strong {
  font-size: 1.15rem;
}

.home-proof span {
  color: var(--muted);
  font-size: 0.78rem;
}

.galaxy-lineup {
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
}

.galaxy-lineup .section-head h2 {
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  max-width: 22ch;
  line-height: 1.15;
}

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.section-head--split > p {
  max-width: 30rem;
  margin: 0 0 0.35rem;
  color: var(--muted);
}

.galaxy-lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.galaxy-lineup-card {
  position: relative;
  min-height: 23rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem;
  border-radius: 2rem;
  overflow: hidden;
  color: var(--galaxy-ink);
  background: #f2f4f7;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.galaxy-lineup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(23, 19, 29, 0.13);
}

.galaxy-lineup-card--s {
  color: #fff;
  background: linear-gradient(145deg, #07166f, #2745d8);
}

.galaxy-lineup-card--z {
  background: linear-gradient(145deg, #b6f3f7, #50d3df);
}

.galaxy-lineup-card--a {
  background: linear-gradient(145deg, #ffe500, #ffbf40);
}

.galaxy-lineup-card--wear {
  background: linear-gradient(145deg, #ece9ff, #c8c0ff);
}

.galaxy-lineup-mark {
  position: absolute;
  right: -0.35rem;
  bottom: -3.5rem;
  font-size: 16rem;
  font-weight: 850;
  line-height: 1;
  opacity: 0.10;
}

.galaxy-lineup-label {
  position: relative;
  z-index: 1;
  padding: 0.38rem 0.68rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.galaxy-lineup-card strong {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  margin-top: 1.25rem;
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1;
}

.galaxy-lineup-card > span:not(.galaxy-lineup-mark, .galaxy-lineup-label) {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.78;
}

.galaxy-lineup-card b {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-size: 0.78rem;
}

.benefits {
  padding-top: clamp(3rem, 6vw, 5.5rem);
}

.benefits-grid--4 {
  gap: 1rem;
}

.benefit-card {
  min-height: 12rem;
  border: 0;
  border-radius: 1.75rem;
  background: #f4f5f7;
  box-shadow: none;
}

.benefit-card:nth-child(2) {
  background: #e8f8fa;
}

.benefit-card:nth-child(3) {
  background: #fff8c7;
}

.benefit-card:nth-child(4) {
  background: #efedff;
}

.benefit-icon {
  color: #fff;
  background: var(--samsung-blue);
}

.section {
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
}

.section-head h2,
.reviews-teaser-head h2,
.faq-head h2,
.delivery-promo-copy h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.eyebrow,
.page-module-eyebrow {
  color: var(--samsung-blue);
  font-weight: 800;
  letter-spacing: 0.11em;
}

.product-grid--home {
  gap: 2rem 1.1rem;
}

.product-card {
  min-width: 0;
}

.product-card-media {
  border: 0;
  border-radius: 1.8rem;
  background: #f5f6f8;
  box-shadow: none;
}

.product-card-media img {
  mix-blend-mode: multiply;
}

.product-card:hover .product-card-media {
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(7, 22, 111, 0.10);
}

.product-brand-badge {
  color: var(--samsung-blue);
  background: #fff;
}

.product-card-body h3 {
  font-weight: 750;
}

.price-badge {
  border-radius: 999px;
  background: var(--galaxy-yellow);
  color: var(--galaxy-ink);
}

.color-dot.is-active {
  outline-color: var(--samsung-blue);
}

.gift-note-strip-inner {
  border: 0;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, var(--galaxy-yellow), #ffca4a);
}

.gift-note-icon {
  color: #fff;
  background: var(--samsung-blue);
}

.delivery-promo {
  padding-top: 1.5rem;
}

.delivery-promo-inner {
  padding: 1.25rem;
  border: 0;
  border-radius: 2rem;
  background: #e9f8fa;
  box-shadow: none;
}

.delivery-promo-photo {
  border-radius: 1.35rem;
}

.reviews-teaser {
  margin-top: 3rem;
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: #f5f6f8;
}

.review-slide,
.review-card {
  border: 0;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: none;
}

.review-slide:nth-child(even),
.review-card:nth-child(3n + 2) {
  background: #fff;
}

.round-btn {
  border: 0;
  color: #fff;
  background: var(--samsung-blue);
}

.faq-section {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.faq-shell {
  border: 0;
  border-radius: 2rem;
  background: #fff;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.page-hero-banner {
  border-radius: 2rem;
  background:
    radial-gradient(600px 260px at 95% 15%, rgba(0, 184, 200, 0.5), transparent 65%),
    var(--samsung-blue);
}

.product-page {
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 2rem;
  background: #fff;
}

.product-main-img {
  border: 0;
  border-radius: 2rem;
  background: #f5f6f8;
}

.product-main-img img {
  mix-blend-mode: multiply;
}

.product-thumb,
.size-btn {
  border-color: var(--line);
  border-radius: 999px;
}

.size-btn.is-active {
  border-color: var(--samsung-blue);
  background: var(--samsung-blue);
}

.site-footer {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--galaxy-ink);
}

.footer-logo-image {
  display: block;
  width: min(100%, 22rem);
  padding: 0.75rem;
  border-radius: 1rem;
  background: #fff;
  line-height: 0;
}

.footer-logo-image img {
  width: 100%;
  height: auto;
}

.site-footer a:hover {
  color: var(--galaxy-yellow);
}

@media (max-width: 1023px) {
  .mega-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .galaxy-lineup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .galaxy-lineup-card {
    min-height: 20rem;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 4.1rem;
  }

  .logo--original {
    width: 10.5rem;
  }

  .store-promo-inner {
    justify-content: space-between;
    gap: 0.7rem;
    font-size: 0.64rem;
  }

  .store-promo-inner span {
    display: none;
  }

  .hero {
    padding-top: 0.65rem;
  }

  .hero-banner {
    min-height: 31rem;
    border-radius: 1.5rem;
  }

  .hero-banner > picture img,
  .hero-banner > img {
    object-position: center 28%;
  }

  .hero-banner::after {
    background: linear-gradient(0deg, rgba(255, 229, 0, 0.96) 0%, rgba(255, 212, 56, 0.78) 34%, rgba(255, 229, 0, 0.02) 62%);
  }

  .hero-banner-copy {
    width: 100%;
    justify-content: flex-end;
    padding: 1.05rem 1.15rem 1.2rem;
  }

  .hero-banner-copy h1 {
    max-width: 15ch;
    margin-top: 0;
    font-size: clamp(1.55rem, 6.8vw, 2.15rem);
    line-height: 1.05;
  }

  .hero-banner-copy .hero-lead {
    max-width: 34rem;
    margin-top: 0.55rem;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .hero-banner-copy .hero-cta {
    flex-wrap: wrap;
  }

  .home-proof {
    grid-template-columns: 1fr;
    border-radius: 1.25rem;
  }

  .home-proof div {
    padding: 0.9rem 1rem;
  }

  .home-proof div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-head--split {
    display: block;
  }

  .section-head--split > p {
    margin-top: 0.75rem;
  }

  .galaxy-lineup-grid {
    grid-template-columns: 1fr;
  }

  .galaxy-lineup-card {
    min-height: 17rem;
  }

  .benefit-card {
    min-height: 0;
  }

  .delivery-promo-inner {
    border-radius: 1.5rem;
  }

  .reviews-teaser {
    margin-top: 2rem;
  }

  .product-page {
    padding: 0;
    border-radius: 0;
  }
}

.hero--static {
  padding-top: 0;
}

.hero--static .container {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.hero--static .hero-banner,
.hero--static .hero-banner::after,
.hero--static .hero-banner > picture img,
.hero--static .hero-banner > img {
  border-radius: 0;
}

.hero--static .hero-banner {
  min-height: clamp(22rem, 34.18vw, 35rem);
  aspect-ratio: 1983 / 793;
}

.hero--static .hero-banner-copy {
  width: 48%;
  padding-left: max(var(--page-x), calc((100vw - var(--max)) / 2 + var(--page-x)));
}

.hero--static .hero-banner-copy h1 {
  max-width: 16ch;
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
}

.hero--static .hero-banner-copy .hero-lead {
  max-width: 36rem;
}

.section {
  padding-top: clamp(2.25rem, 4vw, 4rem);
}

.section-head h2,
.reviews-teaser-head h2,
.faq-head h2,
.delivery-promo-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.galaxy-lineup {
  padding-top: clamp(2.25rem, 4vw, 3.75rem);
}

.galaxy-lineup-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.galaxy-lineup-card {
  min-height: 12.5rem;
  padding: clamp(1.15rem, 2vw, 1.6rem);
  border-radius: 1.25rem;
}

.galaxy-lineup-card strong {
  max-width: 18ch;
  margin-top: 0.85rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.galaxy-lineup-mark {
  right: 1rem;
  bottom: -2rem;
  font-size: 10rem;
}

.benefits--row {
  margin-top: clamp(2.5rem, 4.5vw, 4rem);
  padding: clamp(2.5rem, 4.5vw, 4rem) 0;
  background: #f3f5f7;
}

.benefits-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.benefits-intro h2 {
  max-width: 14ch;
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 0.96;
}

.benefits-intro > p {
  max-width: 31rem;
  margin: 0 0 0.35rem;
  color: var(--muted);
  line-height: 1.55;
}

.benefits-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefits--row .benefit-card {
  min-height: 12.5rem;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border: 0;
  border-radius: 1.4rem;
  background: #fff;
}

.benefits--row .benefit-card:first-child {
  color: #fff;
  background: var(--samsung-blue);
}

.benefits--row .benefit-card:first-child h3,
.benefits--row .benefit-card:first-child p,
.benefits--row .benefit-card:first-child .benefit-number {
  color: #fff;
}

.benefits--row .benefit-card:nth-child(2) {
  background: var(--galaxy-yellow);
}

.benefits--row .benefit-card:nth-child(3) {
  background: #bceef2;
}

.benefits--row .benefit-card:nth-child(4) {
  background: #ded9ff;
}

.benefit-number {
  display: block;
  margin-bottom: auto;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  opacity: 0.65;
}

.benefits--row .benefit-card h3 {
  margin: 1.5rem 0 0;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.05;
}

.benefits--row .benefit-card p {
  margin-top: 0.7rem;
  color: inherit;
  line-height: 1.45;
  opacity: 0.75;
}

.consult-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.95fr);
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin-top: clamp(2.5rem, 4.5vw, 4rem);
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  color: #fff;
  background: var(--samsung-blue);
}

.consult-banner-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(17rem, 30vw, 24rem);
  padding:
    clamp(1.75rem, 3.5vw, 3rem)
    clamp(1.25rem, 3vw, 2rem)
    clamp(1.75rem, 3.5vw, 3rem)
    max(var(--page-x), calc((100vw - var(--max)) / 2 + var(--page-x)));
  background: var(--samsung-blue);
}

.consult-banner-copy {
  max-width: min(38rem, calc(var(--max) * 0.55));
  width: 100%;
}

.consult-banner h2 {
  max-width: 16ch;
  margin: 0.45rem 0 0;
  font-size: clamp(1.8rem, 3.5vw, 3.1rem);
  line-height: 1.02;
}

.consult-banner p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.consult-banner .eyebrow {
  color: var(--galaxy-yellow);
}

.consult-banner .btn-primary {
  display: inline-flex;
  margin-top: 1.15rem;
  border: 1px solid var(--galaxy-ink);
  background: var(--galaxy-ink);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.consult-banner-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #0d1218;
}

.consult-banner-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 22%;
  display: block;
}

.consult-banner-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--samsung-blue) 0%, rgba(20, 40, 160, 0.42) 22%, transparent 48%);
  pointer-events: none;
}

.product-gift-badge,
.gift-note-ribbon {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: var(--galaxy-yellow);
  color: var(--galaxy-ink);
  box-shadow: 0 8px 18px rgba(23, 19, 29, 0.18);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.product-gift-badge {
  top: 0.7rem;
  right: 0.7rem;
  transform: rotate(6deg);
}

.product-gift-badge--gallery {
  top: 0.85rem;
  right: 0.85rem;
  pointer-events: none;
}

.gift-note--product,
.gift-note-strip-inner {
  position: relative;
  overflow: visible;
}

.gift-note-ribbon {
  top: -0.7rem;
  right: 0.85rem;
  transform: rotate(8deg);
}

.gift-note-ribbon--inline {
  position: static;
  transform: none;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.gift-note--product {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border: 1px solid rgba(255, 229, 0, 0.65);
  background: linear-gradient(135deg, #fff9c8, #ffe500);
  box-shadow: 0 12px 28px rgba(23, 19, 29, 0.08);
}

.delivery-promo-gift {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.45rem 0.75rem;
  border: 0;
  border-radius: 999px;
  color: var(--galaxy-ink) !important;
  background: var(--galaxy-yellow);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  font-size: 0.74rem;
  font-weight: 700;
  transform: rotate(-2deg);
}

.product-grid--home {
  gap: 1.4rem 0.9rem;
}

.seo-card {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.seo-card h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.05;
}

.seo-card-body {
  margin-top: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.seo-card-body a {
  color: var(--samsung-blue);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.delivery-promo {
  padding-top: 1.25rem;
}

.delivery-promo-inner {
  grid-template-columns: minmax(12rem, 34%) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 1.75rem;
  color: #fff;
  background: var(--galaxy-ink);
}

.delivery-promo-photo {
  order: 0;
  position: relative;
  z-index: 0;
  align-self: stretch;
  min-height: 17rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: #111;
  clip-path: polygon(0 0, 100% 0, calc(100% - 1.5rem) 100%, 0 100%);
}

.delivery-promo-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: 58% 52%;
  transform: none;
}

.delivery-promo-copy {
  order: 1;
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  min-width: 0;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  padding-left: clamp(1.35rem, 2.2vw, 2rem);
  background: var(--galaxy-ink);
}

.delivery-promo-copy h2 {
  max-width: 13ch;
  color: #fff;
}

.delivery-promo-copy p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.7);
}

.delivery-promo-copy .page-module-eyebrow,
.delivery-promo-copy .page-module-link {
  color: var(--galaxy-yellow);
}

.delivery-promo-gift {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.45rem 0.75rem;
  border: 0;
  border-radius: 999px;
  color: var(--galaxy-ink) !important;
  background: var(--galaxy-yellow);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  font-size: 0.74rem;
  font-weight: 700;
  transform: rotate(-2deg);
}

.reviews-teaser {
  margin-top: 2rem;
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  color: #fff;
  background: var(--samsung-blue);
}

.reviews-teaser .eyebrow,
.reviews-teaser-link {
  color: var(--galaxy-yellow);
}

.reviews-teaser .review-slide {
  color: var(--galaxy-ink);
  background: #fff;
}

.reviews-teaser .reviews-slide {
  align-items: flex-start;
}

.reviews-teaser .review-slide {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.25rem 0.8rem;
  flex: 0 1 auto;
  min-height: 0;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
}

.reviews-teaser .review-slide > .review-avatar {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.reviews-teaser .review-slide > .review-stars,
.reviews-teaser .review-slide > p,
.reviews-teaser .review-slide > footer {
  grid-column: 2;
}

.reviews-teaser .review-slide > .q {
  display: none;
}

.reviews-teaser .review-slide > p {
  flex: none;
  line-height: 1.45;
}

.reviews-teaser .review-slide > footer {
  margin-top: 0.4rem;
  padding-top: 0.45rem;
}

.reviews-teaser .round-btn {
  color: var(--galaxy-ink);
  background: var(--galaxy-yellow);
}

.reviews-teaser .reviews-dots button {
  background: rgba(255, 255, 255, 0.35);
}

.reviews-teaser .reviews-dots button.is-active {
  background: var(--galaxy-yellow);
}

.faq-section {
  max-width: none;
  margin-top: 0;
  padding: clamp(2.5rem, 4vw, 4rem) max(var(--page-x), calc((100vw - var(--max)) / 2 + var(--page-x)));
  color: #fff;
  background: var(--galaxy-ink);
}

.faq-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.faq-head {
  max-width: 48rem;
  margin-bottom: 1.25rem;
}

.faq-head .font-display {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  color: #fff;
}

.faq-head .page-module-eyebrow,
.faq-answer a {
  color: var(--galaxy-yellow);
}

.faq-head .faq-lead,
.faq-answer {
  color: rgba(255, 255, 255, 0.72);
}

.faq-section .faq-question {
  color: #fff;
}

.faq-section .faq-answer p {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-section .faq-chevron {
  border-color: rgba(255, 229, 0, 0.65);
  background: rgba(255, 229, 0, 0.08);
}

.faq-section .faq-chevron::before,
.faq-section .faq-chevron::after {
  background: var(--galaxy-yellow);
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.faq-item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item[open] {
  border-color: rgba(255, 229, 0, 0.55);
  box-shadow: none;
}

.mega-groups {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25rem;
}

.mega {
  background: #fff;
}

.mega-inner {
  grid-template-columns: minmax(0, 1fr);
}

.footer-logo-image {
  width: min(100%, 22rem);
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-logo-image img {
  filter: none;
}

.product-card .color-dots {
  gap: 0.05rem;
}

.product-card .color-dot {
  width: 1.65rem;
  height: 1.65rem;
}

.product-card .color-dot::before {
  width: 1.3rem;
  height: 1.3rem;
  margin: -0.65rem;
}

.color-dots--product {
  gap: 0.05rem;
}

.color-dots--product .color-dot {
  width: 2.1rem;
  height: 2.1rem;
}

.color-dots--product .color-dot::before {
  width: 1.65rem;
  height: 1.65rem;
  margin: -0.825rem;
}

.power-upsell {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(7, 22, 111, 0.12);
  border-radius: 1rem;
  background: #f5f7ff;
}

.power-upsell-copy h3,
.power-upsell-copy p {
  margin: 0;
}

.power-upsell-copy h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.power-upsell-copy > p:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.power-upsell-label {
  color: var(--samsung-blue);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.power-upsell-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.power-upsell-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(7, 22, 111, 0.15);
  border-radius: 0.75rem;
  color: var(--galaxy-ink);
  background: #fff;
  font-size: 0.76rem;
  cursor: pointer;
}

.power-upsell-option.is-recommended {
  border-color: var(--samsung-blue);
  box-shadow: inset 0 0 0 1px rgba(20, 40, 160, 0.12);
}

.power-upsell-check {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  accent-color: var(--samsung-blue);
  cursor: pointer;
}

.power-upsell-option-copy {
  display: flex;
  flex: 1 1 auto;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: baseline;
}

.power-upsell-option:has(.power-upsell-check:checked) {
  border-color: var(--samsung-blue);
  background: #eef2ff;
}

.power-upsell-option.is-recommended:has(.power-upsell-check:checked) {
  color: #fff;
  background: var(--samsung-blue);
}

.power-upsell-option.is-recommended:has(.power-upsell-check:checked) .power-upsell-check {
  accent-color: #fff;
}

.seo-card-body h3 {
  margin: 1.15rem 0 0.35rem;
  color: var(--samsung-blue);
  font-size: 1rem;
  line-height: 1.25;
}

.seo-card-body h3:first-child {
  margin-top: 0;
}

.seo-card-body p {
  margin: 0 0 0.85rem;
}

.seo-card-body a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--galaxy-yellow);
  text-decoration-thickness: 0.18em;
  text-underline-offset: 0.14em;
}

.page-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-hero > .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.page-hero-banner {
  border-radius: 0;
  height: clamp(11.5rem, 22vw, 14.5rem);
}

.page-hero-banner > img {
  object-position: 72% 16%;
}

.page-hero-copy {
  padding-left: max(var(--page-x), calc((100vw - var(--max)) / 2 + var(--page-x)));
  padding-right: max(var(--page-x), calc((100vw - var(--max)) / 2 + var(--page-x)));
}

.catalog-accessories-head {
  max-width: 44rem;
  margin-top: 2.2rem;
}

.catalog-accessories-head h3,
.catalog-accessories-head p {
  margin: 0;
}

.catalog-accessories-head h3 {
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.catalog-accessories-head > p:last-child {
  color: var(--muted);
}

.product-desc h3 {
  margin: 0.85rem 0 0.35rem;
  color: var(--galaxy-ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.product-desc strong {
  color: var(--galaxy-ink);
  font-weight: 700;
}

.product-desc p {
  margin-bottom: 0.45rem;
}

.product-grid--accessories {
  margin-top: 1rem;
}

@media (max-width: 1023px) {
  .mega-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefits-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hero--static {
    padding-top: 0;
  }

  .hero--static .hero-banner {
    min-height: 25.2rem;
    aspect-ratio: 3 / 2.8;
    border-radius: 0;
  }

  .hero--static .hero-banner > picture img,
  .hero--static .hero-banner > img {
    object-position: center 22%;
  }

  .hero--static .hero-banner-copy {
    width: 100%;
    padding-right: var(--page-x-right);
    padding-left: var(--page-x);
  }

  .galaxy-lineup-grid,
  .benefits-grid--4,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .galaxy-lineup-card {
    min-height: 11.5rem;
  }

  .benefits-intro {
    display: block;
  }

  .benefits-intro > p {
    margin-top: 1rem;
  }

  .benefits--row .benefit-card {
    min-height: 10.5rem;
  }

  .consult-banner {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    background: var(--samsung-blue);
  }

  .consult-banner-panel {
    order: 1;
    min-height: 0;
    padding: 1.6rem var(--page-x) 1.35rem;
    background: var(--samsung-blue);
  }

  .consult-banner-media {
    order: 0;
    min-height: 15rem;
  }

  .consult-banner-media img {
    object-position: 55% 18%;
  }

  .consult-banner-media::before {
    background: linear-gradient(180deg, transparent 40%, var(--samsung-blue) 100%);
  }

  .consult-banner .btn-primary {
    width: 100%;
  }

  .seo-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .delivery-promo-inner {
    grid-template-columns: 1fr;
    border-radius: 1.35rem;
  }

  .delivery-promo-photo {
    order: 0;
    min-height: 13.5rem;
    margin: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.25rem), 0 100%);
  }

  .delivery-promo-photo img {
    object-position: 55% 50%;
  }

  .delivery-promo-copy {
    order: 1;
    z-index: 2;
    padding-left: clamp(1.25rem, 4vw, 1.75rem);
    padding-top: clamp(1.5rem, 4vw, 2rem);
  }

  .faq-section {
    padding-right: var(--page-x);
    padding-left: var(--page-x);
  }

  .faq-item:nth-child(odd) {
    border-right: 0;
  }
}
