:root {
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;

  --ink: #17132b;
  --ink-soft: #332d4d;
  --muted: #746f86;
  --paper: #fffdf8;
  --surface: #ffffff;
  --surface-soft: #f4f0ff;
  --border: #e9e4f2;

  --violet: #6c4df6;
  --violet-dark: #4d31c8;
  --pink: #ff5f9e;
  --orange: #ff9d48;
  --cyan: #40d7d2;
  --yellow: #ffd65a;
  --success: #24a47a;
  --danger: #d74d68;

  --shadow-sm: 0 10px 30px rgba(37, 26, 74, 0.08);
  --shadow-lg: 0 24px 70px rgba(52, 34, 112, 0.18);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.announcement {
  position: relative;
  z-index: 50;
  padding: 8px 20px;
  color: white;
  text-align: center;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--orange));
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.announcement p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(233, 228, 242, 0.9);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(20px);
}

.header-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(145deg, var(--violet), var(--pink));
  box-shadow: 0 10px 24px rgba(108, 77, 246, 0.24);
  font-family: serif;
  font-size: 1.45rem;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.89rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--violet);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  transition: 180ms ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 77, 246, 0.35);
  box-shadow: var(--shadow-sm);
}

.icon-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -3px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--paper);
  border-radius: 999px;
  color: white;
  background: var(--pink);
  font-size: 0.65rem;
  font-weight: 800;
}

.menu-button {
  display: none;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 740px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 214, 90, 0.22), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(64, 215, 210, 0.2), transparent 24%),
    linear-gradient(145deg, #fffdf8 0%, #f7f0ff 62%, #fff6fa 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(76, 49, 200, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 49, 200, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
  padding-block: 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--violet);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.preorder-content h2,
.newsletter-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 680px;
  margin-top: 22px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.hero h1 em {
  display: block;
  color: transparent;
  background: linear-gradient(110deg, var(--violet), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-copy > p {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  transition: 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  box-shadow: 0 14px 30px rgba(108, 77, 246, 0.23);
}

.button--primary:hover {
  box-shadow: 0 18px 34px rgba(108, 77, 246, 0.32);
}

.button--ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.button--light {
  color: var(--ink);
  background: white;
}

.button--full {
  width: 100%;
}

.hero-metrics {
  display: flex;
  gap: 34px;
  margin-top: 46px;
}

.hero-metrics div {
  display: grid;
}

.hero-metrics strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}

.hero-product-card {
  position: relative;
  z-index: 2;
  width: min(100%, 395px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  transform: rotate(2deg);
}

.hero-product-card img {
  width: 100%;
  height: 415px;
  border-radius: 25px;
  object-fit: cover;
  object-position: top;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(23, 19, 43, 0.84);
  font-size: 0.68rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-product-info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 9px 6px;
}

.hero-product-info small {
  color: var(--muted);
  font-weight: 700;
}

.hero-product-info h2 {
  margin: 2px 0 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.hero-product-info > strong {
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(108, 77, 246, 0.22);
  border-radius: 50%;
}

.hero-orbit--large {
  width: 510px;
  height: 510px;
}

.hero-orbit--small {
  width: 380px;
  height: 380px;
  border-style: dashed;
  animation: spin 25s linear infinite;
}

.hero-orbit--small::before,
.hero-orbit--small::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.hero-orbit--small::before {
  top: 24px;
  left: 64px;
  background: var(--pink);
  box-shadow: 0 0 0 9px rgba(255, 95, 158, 0.12);
}

.hero-orbit--small::after {
  right: 28px;
  bottom: 65px;
  background: var(--cyan);
  box-shadow: 0 0 0 9px rgba(64, 215, 210, 0.12);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.floating-note > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: var(--violet);
  font-weight: 900;
}

.floating-note div {
  display: grid;
}

.floating-note strong {
  font-size: 0.78rem;
}

.floating-note small {
  color: var(--muted);
  font-size: 0.67rem;
}

.floating-note--top {
  top: 66px;
  right: -4px;
}

.floating-note--bottom {
  bottom: 70px;
  left: -10px;
}

.floating-note--bottom > span {
  background: var(--success);
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-decoration--one {
  width: 140px;
  height: 140px;
  top: 14%;
  left: -55px;
  background: rgba(255, 95, 158, 0.16);
}

.hero-decoration--two {
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -70px;
  background: rgba(108, 77, 246, 0.17);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.benefits {
  position: relative;
  z-index: 2;
  margin-top: -20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.benefits article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
}

.benefits article + article {
  border-left: 1px solid var(--border);
}

.benefit-icon {
  flex: 0 0 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--violet);
  background: var(--surface-soft);
  font-size: 1.2rem;
  font-weight: 900;
}

.benefits h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.94rem;
}

.benefits p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.section {
  padding: 105px 0;
}

.section--soft {
  background:
    radial-gradient(circle at 90% 10%, rgba(64, 215, 210, 0.15), transparent 25%),
    var(--surface-soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}

.text-link {
  color: var(--violet);
  font-size: 0.87rem;
  font-weight: 800;
}

.results-count {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: white;
  transition: 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(108, 77, 246, 0.28);
  box-shadow: var(--shadow-lg);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f1eef8;
}

.product-image-wrap img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: top;
  transition: transform 450ms ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.045);
}

.product-tags {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tag {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-tag--new {
  color: white;
  background: var(--pink);
}

.product-tag--preorder {
  color: var(--ink);
  background: var(--yellow);
}

.favorite-button {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.05rem;
  backdrop-filter: blur(8px);
}

.favorite-button.is-active {
  color: var(--pink);
}

.product-content {
  padding: 18px;
}

.product-franchise {
  color: var(--violet);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-content h3 {
  min-height: 47px;
  margin: 7px 0 0;
  font-family: var(--font-heading);
  font-size: 1.03rem;
  line-height: 1.35;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 16px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.product-stock {
  color: var(--success);
  font-size: 0.69rem;
  font-weight: 800;
}

.product-stock--low {
  color: var(--orange);
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 16px;
}

.product-card-actions .button {
  min-height: 44px;
  padding-inline: 14px;
  font-size: 0.78rem;
}

.add-cart-button {
  width: 46px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: white;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 180ms ease;
}

.add-cart-button:hover {
  color: white;
  border-color: var(--violet);
  background: var(--violet);
}

.skeleton-card {
  height: 460px;
  border-radius: 22px;
  background: linear-gradient(90deg, #eeeaf4 25%, #f7f4fb 50%, #eeeaf4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  to { background-position: -200% 0; }
}

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.franchise-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  border: 0;
  border-radius: 28px;
  color: white;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: transform 220ms ease;
}

.franchise-card {
  background-image:
    linear-gradient(
      to top,
      rgba(23, 19, 43, 0.92) 0%,
      rgba(23, 19, 43, 0.55) 45%,
      rgba(23, 19, 43, 0.12) 100%
    ),
    var(--franchise-image);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.franchise-card::before,
.franchise-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.franchise-card::before {
  width: 220px;
  height: 220px;
  right: -70px;
  top: -60px;
  border: 35px solid rgba(255, 255, 255, 0.15);
}

.franchise-card::after {
  width: 110px;
  height: 110px;
  right: 80px;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.13);
}

.franchise-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.franchise-card span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.franchise-card strong {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

/* .franchise-card--dragon {
  background: linear-gradient(135deg, #ff8f39, #f04458);
} */
/* 
.franchise-card--onepiece {
  background: linear-gradient(135deg, #146bd8, #37c6dc);
}

.franchise-card--hero {
  background: linear-gradient(135deg, #32a95d, #8dcc47);
}

.franchise-card--jujutsu {
  background: linear-gradient(135deg, #6146c7, #bb50d4);
} */

.catalog-section {
  background: white;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px 240px;
  gap: 14px;
  margin-bottom: 28px;
}

.search-field,
.select-field {
  min-height: 58px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--paper);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 17px;
}

.search-field svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-field input,
.select-field select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.select-field {
  display: grid;
  align-content: center;
  padding: 7px 15px;
}

.select-field span {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.select-field select {
  margin-top: 2px;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.empty-state {
  padding: 70px 20px;
  text-align: center;
}

.empty-state > span {
  font-size: 3rem;
}

.empty-state h3 {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.empty-state p {
  margin: 7px 0 22px;
  color: var(--muted);
}

.preorder-section {
  padding: 35px 0 105px;
}

.preorder-card {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  overflow: hidden;
  border-radius: 36px;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 214, 90, 0.35), transparent 25%),
    linear-gradient(130deg, #18122f, #482d91 65%, #7f3aaa);
}

.preorder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, black, transparent);
}

.preorder-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 70px;
}

.eyebrow--light {
  color: var(--yellow);
}

.preorder-content h2 {
  margin-top: 15px;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
}

.preorder-content p {
  max-width: 570px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.74);
}

.preorder-visual {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: end center;
}

.preorder-visual img {
  position: relative;
  z-index: 2;
  width: 77%;
  max-height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: 200px 200px 30px 30px;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,.34));
}

.preorder-ring {
  position: absolute;
  width: 390px;
  height: 390px;
  top: 55px;
  border: 35px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.preorder-sticker {
  position: absolute;
  z-index: 3;
  top: 70px;
  right: 35px;
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  transform: rotate(8deg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.testimonial-card--accent {
  color: white;
  border-color: transparent;
  background: linear-gradient(145deg, var(--violet), #9a4dd0);
  transform: translateY(-14px);
}

.stars {
  color: var(--yellow);
  letter-spacing: 0.16em;
}

.testimonial-card p {
  min-height: 100px;
  margin: 18px 0 25px;
  font-size: 0.95rem;
}

.testimonial-card:not(.testimonial-card--accent) p {
  color: var(--ink-soft);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.testimonial-card--accent .testimonial-author > span {
  color: var(--violet);
  background: white;
}

.testimonial-author div {
  display: grid;
}

.testimonial-author small {
  color: var(--muted);
}

.testimonial-card--accent .testimonial-author small {
  color: rgba(255,255,255,.7);
}

.newsletter {
  padding: 0 0 100px;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 50px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 95, 158, 0.13), transparent 30%),
    var(--surface-soft);
}

.newsletter-card h2 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  width: min(320px, 42vw);
  min-height: 50px;
  padding: 0 17px;
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: 0;
  background: white;
}

.newsletter-form input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(108, 77, 246, 0.1);
}

.site-footer {
  padding: 75px 0 25px;
  color: rgba(255,255,255,.75);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 50px;
}

.brand--footer {
  color: white;
}

.footer-brand p {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.55);
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: white;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid a {
  font-size: 0.83rem;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.45);
  font-size: 0.75rem;
}

.cart-drawer {
  position: fixed;
  z-index: 100;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(23, 19, 43, 0.52);
  backdrop-filter: blur(4px);
  transition: opacity 220ms ease;
}

.cart-drawer.is-open .cart-overlay {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 430px);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px;
  background: white;
  box-shadow: -20px 0 50px rgba(23,19,43,.18);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cart-header h2 {
  margin: 3px 0 0;
  font-family: var(--font-heading);
}

.cart-items {
  overflow: auto;
  padding: 20px 2px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 72px;
  height: 85px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}

.cart-item-info {
  display: grid;
}

.cart-item-info strong {
  font-family: var(--font-heading);
  font-size: 0.84rem;
}

.cart-item-info span {
  margin-top: 3px;
  color: var(--violet);
  font-size: 0.8rem;
  font-weight: 800;
}

.cart-item-info small {
  color: var(--muted);
}

.remove-cart-item {
  border: 0;
  color: var(--danger);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
}

.cart-empty {
  align-self: center;
  padding: 30px 10px;
  text-align: center;
}

.cart-empty > span {
  font-size: 3.2rem;
}

.cart-empty h3 {
  margin: 10px 0 0;
  font-family: var(--font-heading);
}

.cart-empty p {
  color: var(--muted);
}

.cart-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.cart-footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cart-footer strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.toast {
  position: fixed;
  z-index: 150;
  left: 50%;
  bottom: 24px;
  max-width: calc(100% - 30px);
  padding: 13px 18px;
  border-radius: 13px;
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, 30px);
  pointer-events: none;
  transition: 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 17px;
  }

  .hero-grid {
    gap: 30px;
  }

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

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

  .benefits article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .benefits article:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .newsletter-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .search-trigger {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--paper);
    transition: max-height 220ms ease;
  }

  .mobile-nav.is-open {
    max-height: 360px;
  }

  .mobile-nav a {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    font-weight: 700;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 75px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-metrics {
    justify-content: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-showcase {
    min-height: 560px;
  }

  .floating-note--top {
    right: 2%;
  }

  .floating-note--bottom {
    left: 2%;
  }

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

  .catalog-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-toolbar .search-field {
    grid-column: 1 / -1;
  }

  .preorder-card {
    grid-template-columns: 1fr;
  }

  .preorder-content {
    padding: 55px 45px 20px;
    text-align: center;
  }

  .preorder-content .eyebrow {
    justify-content: center;
  }

  .preorder-visual {
    min-height: 430px;
  }

  .preorder-visual img {
    max-height: 400px;
  }

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

  .testimonial-card--accent {
    transform: none;
  }

  .testimonial-card p {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-content {
    min-height: 70px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-grid {
    padding-block: 60px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-metrics span {
    font-size: 0.62rem;
  }

  .hero-showcase {
    min-height: 500px;
  }

  .hero-product-card {
    width: 86%;
  }

  .hero-product-card img {
    height: 350px;
  }

  .hero-orbit--large {
    width: 390px;
    height: 390px;
  }

  .hero-orbit--small {
    width: 290px;
    height: 290px;
  }

  .floating-note {
    transform: scale(0.88);
  }

  .floating-note--top {
    right: -10px;
  }

  .floating-note--bottom {
    left: -10px;
  }

  .benefits {
    margin-top: 0;
  }

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

  .benefits article + article {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .product-image-wrap img {
    aspect-ratio: 1 / 1.1;
  }

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

  .franchise-card {
    min-height: 210px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar .search-field {
    grid-column: auto;
  }

  .preorder-section {
    padding-bottom: 78px;
  }

  .preorder-card {
    width: min(calc(100% - 28px), var(--container));
    border-radius: 28px;
  }

  .preorder-content {
    padding: 45px 24px 15px;
  }

  .preorder-content h2 {
    font-size: 2.35rem;
  }

  .preorder-visual {
    min-height: 370px;
  }

  .preorder-ring {
    width: 300px;
    height: 300px;
  }

  .preorder-sticker {
    width: 100px;
    height: 100px;
    right: 8px;
    font-size: 0.7rem;
  }

  .newsletter-card {
    padding: 30px 24px;
  }

  .newsletter-form {
    display: grid;
  }

  .newsletter-form input {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-panel {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
