/* RYYE W12 Pro storefront
   One restrained, mobile-first visual system for the marketing page.
   Checkout mechanics remain in styles.css; this file owns the final skin. */

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/ibm-plex-sans-arabic-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/ibm-plex-sans-arabic-500.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/ibm-plex-sans-arabic-600.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #101311;
  --ink-soft: #3c413e;
  --muted: #6b716d;
  --line: #dcded9;
  --line-strong: #b9bdb8;
  --white: #ffffff;
  --paper: #f6f6f2;
  --paper-deep: #eceee9;
  --green: #155c45;
  --night: #111412;
  --danger: #a53232;
  --container: 73.75rem;
  --measure: 40rem;
  --header-height: 4rem;
  --radius: 1.25rem;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Inter, "Segoe UI", Arial, sans-serif;
  --font-arabic: -apple-system, BlinkMacSystemFont, "SF Pro AR Text", "SF Pro Arabic", "SF Pro Gulf", "Geeza Pro", "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  background: var(--white);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body.storefront-v2 {
  min-width: 0;
  margin: 0;
  padding: 0 0 calc(4.75rem + env(safe-area-inset-bottom));
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[lang="ar"] body.storefront-v2 {
  font-family: var(--font-arabic);
}

body.storefront-v2.dialog-open,
body.storefront-v2:has(dialog[open]) {
  overflow: hidden;
}

.storefront-v2 main {
  overflow: visible;
}

.storefront-v2 :is(h1, h2, h3, p, figure, dl, dd) {
  margin: 0;
}

.storefront-v2 :is(h1, h2, h3) {
  color: var(--ink);
  text-wrap: balance;
}

.storefront-v2 p {
  text-wrap: pretty;
}

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

.storefront-v2 button,
.storefront-v2 select,
.storefront-v2 input {
  font: inherit;
}

.storefront-v2 button {
  color: inherit;
}

.storefront-v2 a {
  color: inherit;
}

.storefront-v2 [hidden] {
  display: none;
}

.storefront-v2 [data-price],
.storefront-v2 [data-compare-price],
.storefront-v2 [data-subtotal],
.storefront-v2 bdi[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
}

.storefront-v2 :focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.storefront-v2 .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;
}

.storefront-v2 .skip-link {
  position: fixed;
  z-index: 300;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
  transform: translateY(-200%);
}

.storefront-v2 .skip-link:focus {
  transform: none;
}

/* Controls */
.storefront-v2 :is(.primary-button, .secondary-button, .header-cta, .mobile-buybar button) {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.storefront-v2 .primary-button {
  background: var(--ink);
  color: var(--white);
}

.storefront-v2 .secondary-button {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

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

.storefront-v2 .text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding-inline: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  text-underline-offset: 0.25rem;
}

/* Announcement and header */
.storefront-v2 .launch-strip {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.45rem max(1rem, env(safe-area-inset-right)) 0.45rem max(1rem, env(safe-area-inset-left));
  overflow: hidden;
  background: var(--night);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 550;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.storefront-v2 .launch-separator {
  width: 1px;
  height: 0.7rem;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.28);
}

.storefront-v2 .site-header {
  position: sticky;
  z-index: 90;
  inset-block-start: 0;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-inline: max(1.25rem, env(safe-area-inset-right));
  border-block-end: 1px solid rgba(16, 19, 17, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.storefront-v2 .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0.4rem 1.5rem rgba(16, 19, 17, 0.055);
}

.storefront-v2 .brand {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  direction: ltr;
  text-decoration: none;
  unicode-bidi: isolate;
}

.storefront-v2 .brand-mark {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  flex: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.storefront-v2 .brand-word {
  font-size: 0.94rem;
  font-weight: 730;
  letter-spacing: 0.16em;
  line-height: 1;
}

.storefront-v2 .desktop-nav {
  display: none;
}

.storefront-v2 .header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.25rem;
}

.storefront-v2 .header-select {
  display: none;
  width: 4.2rem;
  min-height: 2.75rem;
  padding: 0 0.35rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  direction: ltr;
  font-size: 0.72rem;
  font-weight: 600;
}

.storefront-v2 .lang-button {
  min-width: 3rem;
  min-height: 2.75rem;
  padding: 0 0.5rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
}

.storefront-v2 .header-cta {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.76rem;
}

/* Type hierarchy */
.storefront-v2 .section-kicker {
  margin-block-end: 0.8rem;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

html[lang="ar"] .storefront-v2 .section-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.storefront-v2 :is(.section-heading, .story-heading, .everyday-intro, .app-copy) h2,
.storefront-v2 .final-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.15rem, 9vw, 3rem);
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

html[lang="ar"] .storefront-v2 :is(.section-heading, .story-heading, .everyday-intro, .app-copy) h2,
html[lang="ar"] .storefront-v2 .final-copy h2 {
  max-width: 12em;
  font-size: clamp(2rem, 8vw, 2.65rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.26;
}

/* Hero */
.storefront-v2 .hero {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: var(--paper);
}

.storefront-v2 .hero-inner {
  display: grid;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 3rem max(1.25rem, env(safe-area-inset-right)) 3.5rem max(1.25rem, env(safe-area-inset-left));
}

.storefront-v2 .hero-copy {
  max-width: 36rem;
  text-align: start;
}

.storefront-v2 .hero-model {
  margin-block-end: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

html[dir="rtl"] .storefront-v2 .hero-model {
  text-align: right;
}

.storefront-v2 .hero h1 {
  max-width: 10ch;
  font-size: clamp(2.75rem, 12vw, 3.75rem);
  font-weight: 610;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

html[lang="ar"] .storefront-v2 .hero h1 {
  max-width: 10em;
  font-size: clamp(2.45rem, 10vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.storefront-v2 .hero-lede {
  max-width: 28rem;
  margin-block-start: 1.35rem;
  color: #343a36;
  font-size: 1rem;
  line-height: 1.62;
}

.storefront-v2 .hero-facts {
  display: none;
}

html[lang="ar"] .storefront-v2 .hero-lede {
  line-height: 1.8;
}

.storefront-v2 .hero-product {
  position: relative;
  display: grid;
  min-height: 24rem;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  margin-block-start: 2rem;
  padding: 1rem 1rem 1.2rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.storefront-v2 .hero-product .hero-watch {
  position: relative;
  inset: auto;
  width: min(92%, 21rem);
  height: auto;
  max-width: none;
  justify-self: center;
  align-self: center;
  margin: 0;
  filter: drop-shadow(0 1.5rem 1.4rem rgba(16, 19, 17, 0.14));
  animation: none;
  transform: none;
}

.storefront-v2 .hero-finish {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  margin-block-start: 0.5rem;
  padding: 1rem 0.35rem 0.2rem;
  border-block-start: 1px solid rgba(16, 19, 17, 0.1);
}

.storefront-v2 .hero-finish > span {
  display: grid;
  gap: 0.1rem;
}

.storefront-v2 .hero-finish small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
}

.storefront-v2 .hero-finish strong {
  font-size: 0.8rem;
  font-weight: 650;
}

.storefront-v2 .hero-colors {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.storefront-v2 .hero-colors button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
}

.storefront-v2 .hero-colors button > span {
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(16, 19, 17, 0.18);
  border-radius: 50%;
  background: var(--swatch);
}

.storefront-v2 .hero-colors button.is-selected {
  border-color: var(--ink);
}

.storefront-v2 .hero-purchase {
  display: block;
  width: 100%;
  max-width: none;
  margin-block-start: 2rem;
}

.storefront-v2 .hero-price > span {
  display: block;
  margin-block-end: 0.4rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 520;
}

.storefront-v2 .hero-price > div {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.storefront-v2 .hero-price strong {
  font-size: 1.85rem;
  font-weight: 690;
  letter-spacing: -0.035em;
}

.storefront-v2 .retail-price {
  display: grid;
  gap: 0.2rem;
  padding-inline-start: 1.2rem;
  border-inline-start: 1px solid var(--line);
  text-align: start;
}

.storefront-v2 .retail-price > span {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.storefront-v2 .retail-price > span small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.15;
}

.storefront-v2 .retail-price .price-saving {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.storefront-v2 .retail-price s {
  color: #737a75;
  font-size: 0.82rem;
  line-height: 1.15;
}

.storefront-v2 .hero-actions {
  display: block;
  margin-block-start: 1.5rem;
}

.storefront-v2 .hero-actions .primary-button {
  width: 100%;
  max-width: none;
}

.storefront-v2 .hero-note {
  max-width: 28rem;
  margin-block-start: 1rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

/* Text-only reassurance */
.storefront-v2 .trust-bar {
  display: grid;
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
  border-block: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  overflow: visible;
}

.storefront-v2 .trust-bar > div {
  display: grid;
  gap: 0.15rem;
  padding: 1.1rem 0;
  border-block-start: 1px solid var(--line);
  text-align: start;
}

.storefront-v2 .trust-bar > div:first-child {
  border-block-start: 0;
}

.storefront-v2 .trust-bar strong {
  font-size: 0.88rem;
  font-weight: 660;
  line-height: 1.35;
}

.storefront-v2 .trust-bar small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

/* Product story */
.storefront-v2 :is(.product-story, .everyday-section, .order-section, .specs-section, .timeline-section, .faq-section) {
  padding: 3.75rem max(1.25rem, env(safe-area-inset-right)) 3.75rem max(1.25rem, env(safe-area-inset-left));
}

.storefront-v2 .product-story {
  background: var(--white);
}

.storefront-v2 .story-heading {
  width: min(100%, var(--container));
  margin: 0 auto 2.25rem;
}

.storefront-v2 .story-heading > p:last-child {
  max-width: 38rem;
  margin-block-start: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.storefront-v2 .display-story {
  display: grid;
  width: min(100%, var(--container));
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}

.storefront-v2 .display-copy {
  align-self: center;
  padding: 2rem 1.5rem 0;
}

.storefront-v2 .display-copy h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 610;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

html[lang="ar"] .storefront-v2 .display-copy h3 {
  max-width: 11em;
  font-size: clamp(1.9rem, 7vw, 2.45rem);
  letter-spacing: 0;
  line-height: 1.3;
}

.storefront-v2 .display-copy > p:not(.section-kicker) {
  max-width: 32rem;
  margin-block-start: 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.storefront-v2 .display-specs {
  display: flex;
  gap: 2.25rem;
  margin-block-start: 1.75rem;
}

.storefront-v2 .display-specs > div {
  display: grid;
  gap: 0.15rem;
}

.storefront-v2 .display-specs dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.storefront-v2 .display-specs dd {
  font-size: 1.15rem;
  font-weight: 670;
  letter-spacing: -0.02em;
}

.storefront-v2 .display-product {
  position: relative;
  display: grid;
  min-height: 20rem;
  place-items: center;
  padding: 1rem;
  overflow: hidden;
}

.storefront-v2 .display-product img {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: min(150%, 34rem);
  max-width: none;
  filter: drop-shadow(0 1.4rem 1.4rem rgba(16, 19, 17, 0.13));
  transform: translate(-50%, -50%);
}

html[dir="rtl"] .storefront-v2 .display-product img {
  transform: translate(50%, -50%);
}

.storefront-v2 .essential-grid {
  display: grid;
  width: min(100%, var(--container));
  margin: 1.25rem auto 0;
  border-block: 1px solid var(--line);
}

.storefront-v2 .essential-grid article {
  min-width: 0;
  padding: 1.5rem 0;
  border-block-start: 1px solid var(--line);
}

.storefront-v2 .essential-grid article:first-child {
  border-block-start: 0;
}

.storefront-v2 .feature-value {
  display: block;
  margin-block-end: 1.15rem;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.storefront-v2 .essential-grid h3 {
  max-width: 16ch;
  font-size: 1.58rem;
  font-weight: 610;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

html[lang="ar"] .storefront-v2 .essential-grid h3 {
  max-width: 14em;
  letter-spacing: 0;
  line-height: 1.4;
}

.storefront-v2 .essential-grid p {
  max-width: 27rem;
  margin-block-start: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Everyday */
.storefront-v2 .everyday-section {
  background: var(--night);
  color: var(--white);
}

.storefront-v2 .everyday-intro,
.storefront-v2 .everyday-grid {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.storefront-v2 .everyday-intro .section-kicker {
  color: #8abda9;
}

.storefront-v2 .everyday-intro h2 {
  color: var(--white);
}

.storefront-v2 .everyday-intro > p:last-child {
  max-width: 38rem;
  margin-block-start: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.storefront-v2 .everyday-grid {
  display: grid;
  margin-block-start: 2rem;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  counter-reset: everyday-feature;
}

.storefront-v2 .everyday-grid article {
  position: relative;
  min-width: 0;
  padding: 1.45rem 0;
  border-block-start: 1px solid rgba(255, 255, 255, 0.16);
  counter-increment: everyday-feature;
}

.storefront-v2 .everyday-grid article::before {
  display: block;
  margin-block-end: 1rem;
  color: rgba(255, 255, 255, 0.4);
  content: "0" counter(everyday-feature);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.storefront-v2 .everyday-grid article:first-child {
  border-block-start: 0;
}

.storefront-v2 .everyday-grid h3 {
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 610;
  letter-spacing: -0.015em;
  line-height: 1.4;
}

html[lang="ar"] .storefront-v2 .everyday-grid h3 {
  letter-spacing: 0;
}

.storefront-v2 .everyday-grid p {
  max-width: 30rem;
  margin-block-start: 0.45rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.68;
}

/* App */
.storefront-v2 .app-section {
  display: grid;
  gap: 2.5rem;
  padding: 3.75rem max(1.25rem, env(safe-area-inset-right)) 0 max(1.25rem, env(safe-area-inset-left));
  overflow: hidden;
  background: var(--paper);
}

.storefront-v2 .app-copy,
.storefront-v2 .app-preview-stage {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.storefront-v2 .app-lede {
  max-width: 37rem;
  margin-block-start: 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

.storefront-v2 .app-points {
  display: grid;
  margin: 1.75rem 0 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.storefront-v2 .app-points li {
  display: block;
  padding: 1rem 0;
  border-block-start: 1px solid var(--line);
}

.storefront-v2 .app-points li:first-child {
  border-block-start: 0;
}

.storefront-v2 .app-points li > span {
  display: grid;
  gap: 0.2rem;
}

.storefront-v2 .app-points strong {
  font-size: 0.96rem;
  font-weight: 630;
}

.storefront-v2 .app-points small {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.storefront-v2 .app-copy .secondary-button {
  margin-block-start: 1.5rem;
}

.storefront-v2 .app-preview-stage {
  position: relative;
  display: grid;
  min-height: 31rem;
  margin-block-end: 0;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.storefront-v2 .app-device {
  position: relative;
  width: min(66vw, 16.5rem);
  padding: 0.42rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 2.6rem;
  background: #111311;
  box-shadow: 0 1.6rem 3rem rgba(16, 19, 17, 0.14);
}

.storefront-v2 .device-island {
  position: absolute;
  z-index: 2;
  inset-block-start: 0.8rem;
  inset-inline-start: 50%;
  width: 4.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: #090a09;
  transform: translateX(-50%);
}

.storefront-v2 .app-device img {
  width: 100%;
  border-radius: 2.2rem;
}

.storefront-v2 .app-flow {
  position: absolute;
  z-index: 3;
  inset-block-start: 1.25rem;
  inset-inline-start: 1.5rem;
  display: none;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 620;
}

.storefront-v2 .app-flow span + span::before {
  margin-inline-end: 0.8rem;
  color: var(--line-strong);
  content: "·";
}

.storefront-v2 .app-watch-link {
  display: none;
}

/* Finish configurator */
.storefront-v2 .order-section {
  background: var(--white);
}

.storefront-v2 .section-heading {
  width: min(100%, var(--container));
  margin: 0 auto 2.25rem;
  text-align: start;
}

.storefront-v2 .section-heading > p:not(.section-kicker) {
  max-width: 38rem;
  margin-block-start: 0.95rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.storefront-v2 .centered-heading {
  width: min(100%, 46rem);
  text-align: center;
}

.storefront-v2 .centered-heading :is(h2, p) {
  margin-inline: auto;
}

.storefront-v2 .product-configurator {
  display: grid;
  width: min(100%, 68rem);
  margin-inline: auto;
  gap: 2.5rem;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

html[dir="rtl"] .storefront-v2 .product-configurator {
  direction: ltr;
}

html[dir="rtl"] .storefront-v2 :is(.config-visual, .config-panel) {
  direction: rtl;
}

.storefront-v2 .config-visual {
  position: relative;
  display: grid;
  min-height: 22rem;
  overflow: hidden;
  place-items: center;
  border-radius: var(--radius);
  background: var(--paper);
}

.storefront-v2 .config-visual::before,
.storefront-v2 .config-visual::after {
  display: none;
  content: none;
}

.storefront-v2 .config-visual img {
  width: min(100%, 28rem);
  max-width: none;
  filter: drop-shadow(0 1.4rem 1.4rem rgba(16, 19, 17, 0.14));
  transform: translateY(0);
  transform-origin: 50% 50%;
  transition: opacity 180ms ease, filter 500ms ease, transform 500ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.storefront-v2 .config-count,
.storefront-v2 .config-name {
  position: absolute;
  z-index: 2;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.storefront-v2 .config-count {
  inset-block-start: 1.25rem;
  inset-inline-start: 1.25rem;
  letter-spacing: 0.08em;
}

.storefront-v2 .config-name {
  inset-block-end: 1.25rem;
  inset-inline-end: 1.25rem;
}

.storefront-v2 .config-panel {
  display: grid;
  width: min(100%, 26rem);
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  align-self: center;
  justify-content: stretch;
  justify-self: center;
  padding: 0;
}

.storefront-v2 .config-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-block-end: 0.55rem;
}

.storefront-v2 .config-heading span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.storefront-v2 .config-heading strong {
  font-size: 0.88rem;
  font-weight: 650;
}

.storefront-v2 .finish-options {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.storefront-v2 .finish-option {
  position: relative;
  display: grid;
  min-height: 3.75rem;
  grid-template-columns: 1.1rem minmax(0, 1fr) 0.6rem;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0;
  border: 0;
  border-block-start: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 540;
  text-align: start;
}

.storefront-v2 .finish-option:first-child {
  border-block-start: 0;
}

.storefront-v2 .finish-option > span:first-child {
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid rgba(16, 19, 17, 0.17);
  border-radius: 50%;
  background: var(--swatch);
}

.storefront-v2 .finish-option::after {
  width: 0.38rem;
  height: 0.38rem;
  justify-self: end;
  border-radius: 50%;
  background: transparent;
  content: "";
}

.storefront-v2 .finish-option.is-selected {
  color: var(--ink);
  font-weight: 650;
  box-shadow: none;
}

.storefront-v2 .finish-option.is-selected::after {
  background: var(--ink);
}

.storefront-v2 .config-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-block-start: 1.4rem;
}

.storefront-v2 .config-price > span {
  display: grid;
  gap: 0.05rem;
}

.storefront-v2 .config-price small {
  color: var(--muted);
  font-size: 0.76rem;
}

.storefront-v2 .config-price strong {
  font-size: 1.9rem;
  font-weight: 690;
  letter-spacing: -0.035em;
}

.storefront-v2 .retail-note {
  display: grid;
  gap: 0.2rem;
  text-align: end;
}

.storefront-v2 .retail-note > span {
  display: flex;
  align-items: baseline;
  justify-content: end;
  gap: 0.35rem;
}

.storefront-v2 .retail-note .price-saving {
  color: var(--green);
  font-weight: 700;
}

.storefront-v2 .retail-note s {
  color: #858b86;
  font-size: 0.82rem;
}

.storefront-v2 .box-includes {
  margin-block-start: 1.25rem;
  padding-block: 1rem;
  border-block: 1px solid var(--line);
}

.storefront-v2 .box-includes > p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.storefront-v2 .box-includes ul {
  display: grid;
  gap: 0;
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.storefront-v2 .box-includes li {
  padding: 0.48rem 0;
  border-block-start: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.storefront-v2 .box-includes li:first-child {
  border-block-start: 0;
}

.storefront-v2 .config-panel .full-button {
  margin-block-start: 1.25rem;
}

.storefront-v2 .config-note {
  margin-block-start: 0.7rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

/* Specifications */
.storefront-v2 .specs-section {
  background: var(--paper);
}

.storefront-v2 .spec-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, var(--container));
  margin-inline: auto;
  border-block: 1px solid var(--line);
  border-inline: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.storefront-v2 .spec-grid > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 1rem;
  min-height: 0;
  padding: 1.15rem 0;
  border: 0;
  border-block-start: 1px solid var(--line);
  background: transparent;
}

.storefront-v2 .spec-grid > div:first-child {
  border-block-start: 0;
}

.storefront-v2 .spec-grid > div > span {
  color: var(--muted);
  font-size: 0.84rem;
}

.storefront-v2 .spec-grid strong {
  display: grid;
  gap: 0.14rem;
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 620;
  text-align: end;
  text-transform: none;
}

.storefront-v2 .spec-grid strong small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.storefront-v2 .spec-note {
  width: min(100%, var(--container));
  max-width: 58rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.6;
  text-align: start;
}

/* Preorder explanation */
.storefront-v2 .timeline-section {
  background: var(--white);
}

.storefront-v2 .timeline {
  display: grid;
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.storefront-v2 .timeline::before {
  display: none;
}

.storefront-v2 .timeline li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 1.15rem 0;
  border: 0;
  border-block-start: 1px solid var(--line);
  background: transparent;
}

.storefront-v2 .timeline li:first-child {
  border-block-start: 0;
}

.storefront-v2 .timeline li > span {
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 620;
  letter-spacing: 0.06em;
  box-shadow: none;
}

.storefront-v2 .timeline li.is-current > span {
  border: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.storefront-v2 .timeline li > div {
  display: grid;
  gap: 0.25rem;
}

.storefront-v2 .timeline strong {
  font-size: 1rem;
  font-weight: 630;
}

.storefront-v2 .timeline small {
  max-width: 24rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.storefront-v2 .promise-note {
  width: min(100%, var(--container));
  max-width: 50rem;
  margin: 1rem auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* FAQ */
.storefront-v2 .faq-section {
  background: var(--paper);
}

.storefront-v2 .faq-list {
  width: min(100%, 56rem);
  max-width: 56rem;
  margin: 0 auto;
  border-block-end: 1px solid var(--line);
}

.storefront-v2 .faq-list details {
  border: 0;
  border-block-start: 1px solid var(--line);
  background: transparent;
}

.storefront-v2 .faq-list summary {
  position: relative;
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 2.5rem 1.15rem 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 620;
  line-height: 1.5;
  list-style: none;
}

html[dir="rtl"] .storefront-v2 .faq-list summary {
  padding: 1.15rem 0 1.15rem 2.5rem;
}

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

.storefront-v2 .faq-list summary::before {
  display: none;
  content: none;
}

.storefront-v2 .faq-list summary::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 0.2rem;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--muted);
  content: "+";
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.storefront-v2 .faq-list details[open] summary::after {
  content: "−";
}

.storefront-v2 .faq-list details p {
  max-width: 46rem;
  padding: 0 2.5rem 1.4rem 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

html[dir="rtl"] .storefront-v2 .faq-list details p {
  padding: 0 0 1.4rem 2.5rem;
}

/* Final call to action */
.storefront-v2 .final-cta {
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 21rem;
  margin: 0;
  padding: 4rem max(1.25rem, env(safe-area-inset-right));
  place-items: center;
  border-radius: 0;
  background: var(--night);
  box-shadow: none;
  color: var(--white);
  text-align: center;
}

.storefront-v2 .final-copy {
  display: grid;
  justify-items: center;
}

.storefront-v2 .final-copy .section-kicker {
  color: #8abda9;
}

.storefront-v2 .final-copy h2 {
  max-width: 12ch;
  color: var(--white);
}

.storefront-v2 .final-purchase > p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1rem;
  margin-block-start: 1.1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.storefront-v2 .final-purchase > p strong {
  color: var(--white);
  font-size: 1.05rem;
}

.storefront-v2 .final-copy .light-button {
  margin-block-start: 1.65rem;
  background: var(--white);
  color: var(--ink);
}

/* Footer */
.storefront-v2 .site-footer {
  display: grid;
  gap: 2.25rem;
  padding: 3.5rem max(1.25rem, env(safe-area-inset-right)) calc(6rem + env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  background: var(--paper);
}

.storefront-v2 .footer-brand,
.storefront-v2 .footer-links,
.storefront-v2 .footer-bottom {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.storefront-v2 .footer-brand p {
  max-width: 23rem;
  margin-block-start: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.storefront-v2 .footer-brand .brand-mark {
  width: 1.75rem;
  height: 1.75rem;
}

.storefront-v2 .brand-domain {
  display: inline-block;
  margin-block-start: 0.65rem;
  color: var(--ink);
  direction: ltr;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  unicode-bidi: isolate;
}

.storefront-v2 .brand-domain:hover {
  color: var(--green);
}

.storefront-v2 .footer-links {
  display: grid;
  gap: 2rem;
}

.storefront-v2 .footer-links > div {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.storefront-v2 .footer-links strong {
  margin-block-end: 0.15rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[lang="ar"] .storefront-v2 .footer-links strong {
  letter-spacing: 0;
  text-transform: none;
}

.storefront-v2 .footer-links a {
  width: fit-content;
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-decoration: none;
}

.storefront-v2 .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.25rem;
  padding-block-start: 1.25rem;
  border-block-start: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

.storefront-v2 .footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

/* Mobile purchase bar */
.storefront-v2 .mobile-buybar {
  position: fixed;
  z-index: 80;
  inset: auto 0 0;
  display: flex;
  min-height: calc(4.5rem + env(safe-area-inset-bottom));
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem max(0.85rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.85rem, env(safe-area-inset-left));
  border-block-start: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
  transition: transform 260ms ease;
}

.storefront-v2 .mobile-buybar.is-hidden,
.storefront-v2 .mobile-buybar[data-visible="false"] {
  transform: translateY(110%);
}

.storefront-v2 .mobile-buybar > span {
  display: grid;
}

.storefront-v2 .mobile-buybar strong {
  font-size: 0.95rem;
  font-weight: 680;
}

.storefront-v2 .mobile-buybar small {
  color: var(--muted);
  font-size: 0.67rem;
}

.storefront-v2 .mobile-buybar button {
  min-height: 3rem;
  padding-inline: 1.2rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
}

/* Checkout and consent skin (behavior stays in styles.css) */
.storefront-v2 dialog {
  color: var(--ink);
}

.storefront-v2 dialog::backdrop {
  background: rgba(8, 10, 9, 0.66);
  backdrop-filter: none;
}

.storefront-v2 :is(.preorder-dialog, .consent-dialog) {
  background: var(--white);
  box-shadow: 0 1.5rem 5rem rgba(8, 10, 9, 0.2);
}

.storefront-v2 .dialog-head {
  border-block-end-color: var(--line);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: none;
}

.storefront-v2 .dialog-step {
  color: var(--green);
}

.storefront-v2 .checkout-product,
.storefront-v2 .order-lines {
  border-color: var(--line);
  background: var(--paper);
  box-shadow: none;
}

.storefront-v2 :is(.field-row select, .form-grid input) {
  border-color: var(--line-strong);
  background: var(--white);
}

.storefront-v2 :is(.field-row select, .form-grid input):focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(21, 92, 69, 0.1);
}

.storefront-v2 .checkout-colors label {
  border-color: var(--line);
  background: var(--paper);
  box-shadow: none;
}

.storefront-v2 .checkout-colors {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.storefront-v2 .checkout-colors label:has(input:checked) {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.storefront-v2 .demo-notice {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.storefront-v2 .check-row input,
.storefront-v2 .consent-options input {
  accent-color: var(--green);
}

.storefront-v2 .success-icon {
  background: var(--paper-deep);
  color: var(--green);
  box-shadow: none;
}

.storefront-v2 .consent-banner {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1rem 3rem rgba(8, 10, 9, 0.12);
  backdrop-filter: none;
}

.storefront-v2 .always-on {
  background: var(--paper-deep);
  color: var(--green);
}

.storefront-v2 .toast {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}

@media (max-width: 47.99rem) {
  .storefront-v2 .text-link {
    display: none;
  }

  .storefront-v2 .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Large desktop scale: use the canvas without turning copy into long lines. */
@media (min-width: 90rem) {
  :root {
    --container: clamp(79rem, 88vw, 112rem);
    --page-gutter: clamp(3rem, 4vw, 5rem);
    --section-space: clamp(6rem, 6vw, 7.5rem);
  }

  .storefront-v2 .site-header {
    min-height: 5rem;
    padding-inline: var(--page-gutter);
  }

  .storefront-v2 .brand-mark {
    width: 2rem;
    height: 2rem;
  }

  .storefront-v2 .brand-word {
    font-size: 0.96rem;
  }

  .storefront-v2 .desktop-nav {
    gap: clamp(2.75rem, 3vw, 4rem);
  }

  .storefront-v2 .desktop-nav a {
    font-size: 0.94rem;
  }

  .storefront-v2 .header-select,
  .storefront-v2 .lang-button {
    font-size: 0.82rem;
  }

  .storefront-v2 .hero-inner {
    grid-template-columns: minmax(32rem, 0.86fr) minmax(42rem, 1.14fr);
    gap: 2.5rem clamp(4.5rem, 5vw, 6.5rem);
  }

  .storefront-v2 .hero-copy {
    max-width: 43rem;
  }

  .storefront-v2 .hero-purchase {
    max-width: 36rem;
  }

  .storefront-v2 .hero-lede {
    max-width: 38rem;
    font-size: 1.18rem;
  }

  .storefront-v2 .hero-facts strong {
    font-size: 1rem;
  }

  .storefront-v2 .hero-facts small {
    font-size: 0.8rem;
  }

  .storefront-v2 .hero-price strong {
    font-size: 2.5rem;
  }

  .storefront-v2 .hero-actions .primary-button {
    min-width: 17rem;
    min-height: 3.7rem;
  }

  .storefront-v2 .trust-bar > div,
  .storefront-v2 .trust-bar > div:first-child {
    min-height: 6rem;
  }

  .storefront-v2 .trust-bar strong {
    font-size: 0.94rem;
  }

  .storefront-v2 .trust-bar small {
    font-size: 0.8rem;
  }

  .storefront-v2 .story-heading {
    grid-template-columns: minmax(0, 1fr) minmax(27rem, 0.78fr);
    column-gap: clamp(6rem, 8vw, 10rem);
  }

  .storefront-v2 .display-story {
    grid-template-columns: minmax(28rem, 0.74fr) minmax(42rem, 1.26fr);
    min-height: 42rem;
  }

  .storefront-v2 .display-copy {
    padding: clamp(4rem, 4vw, 5.5rem);
  }

  .storefront-v2 .display-product {
    min-height: 42rem;
  }

  .storefront-v2 .display-product img {
    width: min(132%, 58rem);
  }

  .storefront-v2 .essential-grid article,
  .storefront-v2 .essential-grid article:first-child {
    min-height: 15rem;
    padding-block: 2.75rem;
  }

  .storefront-v2 .everyday-section {
    grid-template-columns: minmax(27rem, 0.38fr) minmax(46rem, 0.62fr);
    gap: clamp(7rem, 8vw, 10rem);
  }

  .storefront-v2 .everyday-intro h2 {
    font-size: 4.65rem;
  }

  .storefront-v2 .app-section {
    grid-template-columns: minmax(34rem, 0.88fr) minmax(44rem, 1.12fr);
    gap: clamp(6rem, 7vw, 9rem);
  }

  .storefront-v2 .app-preview-stage {
    min-height: 47rem;
  }

  .storefront-v2 .app-device {
    width: 19.5rem;
  }

  .storefront-v2 .app-watch-link {
    width: min(160%, 26rem);
  }

  .storefront-v2 .order-section,
  html[dir="rtl"] .storefront-v2 .order-section {
    grid-template-columns: minmax(32rem, 0.82fr) minmax(44rem, 1.18fr);
    gap: 2.5rem clamp(6rem, 7vw, 9rem);
  }

  .storefront-v2 .order-section .centered-heading h2 {
    font-size: 4.15rem;
  }

  .storefront-v2 .config-visual {
    min-height: 47rem;
  }

  .storefront-v2 .config-visual img {
    width: 46rem;
  }

  .storefront-v2 .config-panel {
    width: min(100%, 34rem);
  }

  .storefront-v2 .specs-section {
    grid-template-columns: minmax(23rem, 0.3fr) minmax(0, 0.7fr);
    gap: 2rem clamp(6rem, 8vw, 10rem);
  }

  .storefront-v2 .faq-section {
    grid-template-columns: minmax(23rem, 0.32fr) minmax(42rem, 0.68fr);
    gap: clamp(7rem, 9vw, 11rem);
  }

  .storefront-v2 .final-copy {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, auto);
    gap: clamp(7rem, 9vw, 11rem);
  }

  .storefront-v2 .site-footer {
    grid-template-columns: minmax(24rem, 0.68fr) minmax(48rem, 1.32fr);
    gap: clamp(6rem, 8vw, 10rem);
  }
}

@media (min-width: 90rem) and (min-height: 52rem) {
  .storefront-v2 .hero-inner {
    min-height: clamp(50rem, 78vh, 58rem);
    padding-block: clamp(5rem, 6vh, 6.5rem);
  }

  .storefront-v2 .hero h1 {
    font-size: clamp(4.9rem, 4.3vw, 6rem);
  }

  html[lang="ar"] .storefront-v2 .hero h1 {
    font-size: clamp(3.9rem, 3.6vw, 5rem);
  }

  .storefront-v2 .hero-product {
    min-height: clamp(42rem, 58vh, 50rem);
  }

  .storefront-v2 .hero-product .hero-watch {
    width: min(94%, clamp(42rem, 34vw, 50rem));
  }

  .storefront-v2 :is(.section-heading, .story-heading, .app-copy) h2 {
    font-size: clamp(4rem, 3.5vw, 4.75rem);
  }

  html[lang="ar"] .storefront-v2 :is(.section-heading, .story-heading, .app-copy) h2 {
    font-size: clamp(3.55rem, 3.2vw, 4.35rem);
  }

  .storefront-v2 .final-copy h2 {
    font-size: clamp(4.5rem, 3.8vw, 5.25rem);
  }
}

/* Mobile checkout: native-size form controls and a stable, conversion-focused order sheet. */
.storefront-v2 :is(button, a, select, summary, label) {
  touch-action: manipulation;
}

.storefront-v2 .checkout-step-scroll {
  min-width: 0;
}

.storefront-v2 .checkout-footer {
  margin-block-start: 1rem;
}

.storefront-v2 .checkout-footnote,
.storefront-v2 .secure-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-block-start: 0.7rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: center;
}

.storefront-v2 .checkout-footnote svg,
.storefront-v2 .secure-line svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--green);
}

.storefront-v2 .checkout-recap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-block-start: 0.85rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper);
}

.storefront-v2 .checkout-recap > span {
  display: grid;
  min-width: 0;
  gap: 0.15rem;
}

.storefront-v2 .checkout-recap strong {
  font-size: 0.84rem;
  font-weight: 700;
}

.storefront-v2 .checkout-recap > strong {
  flex: 0 0 auto;
  font-size: 0.9rem;
  white-space: nowrap;
}

.storefront-v2 .checkout-recap small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-v2 .checkout-provider-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

@media (max-width: 47.99rem) {
  .storefront-v2 :is(
    input:not([type="checkbox"]):not([type="radio"]),
    select,
    textarea
  ) {
    min-height: 3.5rem;
    font-size: 16px !important;
    line-height: 1.35;
    scroll-margin-block: 1rem;
  }

  .storefront-v2 .preorder-dialog {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .storefront-v2 .preorder-dialog[open] {
    animation: none;
  }

  .storefront-v2 .dialog-shell {
    display: flex;
    height: 100%;
    max-height: none;
    flex-direction: column;
    overflow: hidden;
    scrollbar-gutter: auto;
  }

  .storefront-v2 .dialog-head {
    position: relative;
    flex: 0 0 auto;
    padding-block-start: max(1rem, env(safe-area-inset-top));
  }

  .storefront-v2 #preorder-form {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
  }

  .storefront-v2 .checkout-step:is([data-checkout-step="1"], [data-checkout-step="2"]).is-active {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    animation: none;
  }

  .storefront-v2 .checkout-step-scroll {
    min-height: 0;
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1rem 1rem 1.25rem;
    scroll-padding-block: 1rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .storefront-v2 .checkout-step-scroll::-webkit-scrollbar {
    display: none;
  }

  .storefront-v2 .checkout-footer {
    flex: 0 0 auto;
    margin: 0;
    padding: 0.75rem max(1rem, env(safe-area-inset-right)) calc(0.75rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    border-block-start: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
  }

  .storefront-v2 .checkout-footer .checkout-actions {
    margin: 0;
  }

  .storefront-v2 .field-row label,
  .storefront-v2 .form-grid label {
    gap: 0.45rem;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .storefront-v2 .checkout-colors label {
    min-height: 4.75rem;
  }

  .storefront-v2 .checkout-colors small {
    font-size: 0.68rem;
  }

  .storefront-v2 .check-row {
    min-height: 2.75rem;
    grid-template-columns: 1.35rem 1fr;
    align-items: start;
    gap: 0.7rem;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .storefront-v2 .check-row input {
    width: 1.25rem;
    height: 1.25rem;
  }

  .storefront-v2 .checkout-actions .primary-button,
  .storefront-v2 .checkout-actions .secondary-button,
  .storefront-v2 [data-next-checkout] {
    min-height: 3.35rem;
    font-size: 1rem;
  }

  .storefront-v2 .checkout-footnote,
  .storefront-v2 .secure-line {
    font-size: 0.72rem;
  }
}

@media (max-width: 23rem) {
  .storefront-v2 .site-header {
    gap: 0.5rem;
    padding-inline: max(0.75rem, env(safe-area-inset-right));
  }

  .storefront-v2 .site-header > .brand > .brand-word {
    display: inline;
    font-size: 0.78rem;
  }

  .storefront-v2 .header-actions {
    gap: 0.1rem;
  }

  .storefront-v2 .lang-button {
    min-width: 2.75rem;
    padding-inline: 0.3rem;
  }

  .storefront-v2 .header-cta {
    padding-inline: 0.75rem;
    font-size: 0.7rem;
  }
}

@media (min-width: 24rem) and (max-width: 47.99rem) {
  .storefront-v2 .everyday-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront-v2 .everyday-grid article,
  .storefront-v2 .everyday-grid article:first-child {
    min-height: 11rem;
    padding: 1.25rem 0.9rem;
    border-block-start: 1px solid rgba(255, 255, 255, 0.16);
  }

  .storefront-v2 .everyday-grid article:nth-child(-n + 2) {
    border-block-start: 0;
  }

  .storefront-v2 .everyday-grid article:nth-child(even) {
    padding-inline-end: 0;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
  }

  .storefront-v2 .everyday-grid article:nth-child(odd) {
    padding-inline-start: 0;
  }

  .storefront-v2 .everyday-grid article::before {
    margin-block-end: 0.75rem;
  }

  .storefront-v2 .everyday-grid h3 {
    font-size: 1.08rem;
  }

  .storefront-v2 .everyday-grid p {
    font-size: 0.86rem;
  }

  .storefront-v2 .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
  }

  .storefront-v2 .spec-grid > div {
    min-height: 7rem;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 0.45rem;
    padding-block: 1rem;
  }

  .storefront-v2 .spec-grid > div:nth-child(2) {
    border-block-start: 0;
  }

  .storefront-v2 .spec-grid > div:nth-child(even) {
    padding-inline-start: 1rem;
    border-inline-start: 1px solid var(--line);
  }

  .storefront-v2 .spec-grid > div:nth-child(odd) {
    padding-inline-end: 1rem;
  }

  .storefront-v2 .spec-grid strong {
    text-align: start;
  }
}

@media (min-width: 36rem) and (max-width: 47.99rem) {
  .storefront-v2 .hero-product .hero-watch {
    width: min(78%, 24rem);
  }
}

@media (min-width: 48rem) {
  body.storefront-v2 {
    padding-block-end: 0;
  }

  .storefront-v2 .site-header {
    padding-inline: max(2rem, calc((100vw - var(--container)) / 2));
  }

  .storefront-v2 .header-select {
    display: block;
  }

  .storefront-v2 .hero-inner {
    padding-inline: 2rem;
  }

  .storefront-v2 .hero-product {
    min-height: 31rem;
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .storefront-v2 .hero-product .hero-watch {
    width: min(92%, 29rem);
  }

  .storefront-v2 .hero-actions {
    display: block;
  }

  .storefront-v2 .hero-purchase {
    max-width: 32rem;
  }

  .storefront-v2 .hero-actions .primary-button {
    width: auto;
    min-width: 14.25rem;
  }

  .storefront-v2 .trust-bar {
    width: min(calc(100% - 4rem), var(--container));
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .storefront-v2 .trust-bar > div,
  .storefront-v2 .trust-bar > div:first-child {
    padding: 1.25rem 1.5rem;
    border-block-start: 0;
    border-inline-start: 1px solid var(--line);
  }

  .storefront-v2 .trust-bar > div:first-child {
    padding-inline-start: 0;
    border-inline-start: 0;
  }

  .storefront-v2 .display-story {
    grid-template-columns: minmax(18rem, 0.88fr) minmax(22rem, 1.12fr);
    min-height: 32rem;
  }

  .storefront-v2 .display-copy {
    padding: 3rem;
  }

  .storefront-v2 .display-product {
    min-height: 32rem;
    padding: 2rem;
  }

  .storefront-v2 .display-product img {
    width: min(100%, 35rem);
  }

  .storefront-v2 .essential-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .storefront-v2 .essential-grid article,
  .storefront-v2 .essential-grid article:first-child {
    min-height: 16rem;
    padding: 2rem;
    border-block-start: 0;
    border-inline-start: 1px solid var(--line);
  }

  .storefront-v2 .essential-grid article:first-child {
    padding-inline-start: 0;
    border-inline-start: 0;
  }

  .storefront-v2 .essential-grid article:last-child {
    padding-inline-end: 0;
  }

  .storefront-v2 .everyday-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront-v2 .everyday-grid article,
  .storefront-v2 .everyday-grid article:first-child {
    min-height: 9.5rem;
    padding: 1.75rem;
    border-block-start: 1px solid rgba(255, 255, 255, 0.16);
    border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
  }

  .storefront-v2 .everyday-grid article:nth-child(odd) {
    padding-inline-start: 0;
    border-inline-start: 0;
  }

  .storefront-v2 .everyday-grid article:nth-child(-n + 2) {
    border-block-start: 0;
  }

  .storefront-v2 .app-preview-stage {
    min-height: 38rem;
  }

  .storefront-v2 .app-device {
    width: 18rem;
  }

  .storefront-v2 .product-configurator {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    align-items: center;
    gap: 4rem;
  }

  .storefront-v2 .config-visual {
    min-height: 31rem;
  }

  .storefront-v2 .config-visual img {
    width: 29rem;
  }

  .storefront-v2 .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3rem;
  }

  .storefront-v2 .spec-grid > div:nth-child(2) {
    border-block-start: 0;
  }

  .storefront-v2 .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3rem;
  }

  .storefront-v2 .timeline li:nth-child(2) {
    border-block-start: 0;
  }

  .storefront-v2 .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .storefront-v2 .mobile-buybar {
    display: none;
  }

  .storefront-v2 .preorder-dialog {
    position: fixed;
    inset: 50% auto auto 50%;
    width: min(92vw, 42rem);
    max-height: min(90dvh, 50rem);
    margin: 0;
    border-radius: 1.25rem;
    transform: translate(-50%, -50%);
  }

  .storefront-v2 .consent-dialog {
    position: fixed;
    inset: 50% auto auto 50%;
    width: min(92vw, 34rem);
    margin: 0;
    border-radius: 1.25rem;
    transform: translate(-50%, -50%);
  }

  .storefront-v2 .preorder-dialog[open],
  .storefront-v2 .consent-dialog[open] {
    animation: none;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 60rem) and (max-width: 71.99rem) {
  .storefront-v2 .hero-inner {
    min-height: 40rem;
    grid-template-columns: minmax(22rem, 0.9fr) minmax(27rem, 1.1fr);
    grid-template-rows: auto auto;
    align-content: center;
    align-items: end;
    gap: 1.75rem 3rem;
    padding-block: 3rem;
  }

  .storefront-v2 .hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }

  .storefront-v2 .hero-product {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 31rem;
    margin: 0;
  }

  .storefront-v2 .hero-product .hero-watch {
    width: min(94%, 27rem);
  }

  .storefront-v2 .hero-purchase {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-width: 28rem;
    margin: 0;
  }
}

@media (min-width: 72rem) {
  :root {
    --header-height: 4.25rem;
  }

  .storefront-v2 .site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .storefront-v2 .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
  }

  .storefront-v2 .desktop-nav a {
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
  }

  .storefront-v2 .header-actions {
    justify-self: end;
    gap: 0.4rem;
    padding-inline-start: 1rem;
    border-inline-start: 1px solid var(--line);
  }

  .storefront-v2 .hero-inner {
    min-height: 44rem;
    grid-template-columns: minmax(24rem, 0.9fr) minmax(32rem, 1.1fr);
    grid-template-rows: auto auto;
    align-content: center;
    align-items: end;
    gap: 2rem 4rem;
    padding-block: 4.25rem;
  }

  .storefront-v2 .hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }

  .storefront-v2 .hero-product {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 35rem;
    margin: 0;
    padding: 1.5rem 1.75rem 1.6rem;
  }

  html[dir="rtl"] .storefront-v2 .hero-copy,
  html[dir="rtl"] .storefront-v2 .hero-purchase {
    grid-column: 1;
  }

  html[dir="rtl"] .storefront-v2 .hero-product {
    grid-column: 2;
  }

  .storefront-v2 .hero-purchase {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-width: 28rem;
    margin: 0;
  }

  .storefront-v2 .hero-product .hero-watch {
    width: min(92%, 30rem);
  }

  .storefront-v2 .hero h1 {
    font-size: clamp(4rem, 5.2vw, 4.6rem);
    line-height: 0.98;
  }

  html[lang="ar"] .storefront-v2 .hero h1 {
    font-size: clamp(3.35rem, 4.3vw, 3.75rem);
    line-height: 1.2;
  }

  .storefront-v2 .hero-lede {
    font-size: 1.05rem;
  }

  .storefront-v2 .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-block-start: 2rem;
    padding-block: 1rem;
    border-block: 1px solid var(--line);
  }

  .storefront-v2 .hero-facts > div {
    display: grid;
    min-height: 2.55rem;
    align-content: center;
    gap: 0.18rem;
    padding-inline: 0.9rem;
    border-inline-start: 1px solid var(--line);
  }

  .storefront-v2 .hero-facts > div:first-child {
    padding-inline-start: 0;
    border-inline-start: 0;
  }

  .storefront-v2 .hero-facts strong {
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 680;
    line-height: 1.3;
  }

  .storefront-v2 .hero-facts small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 520;
    line-height: 1.3;
  }

  .storefront-v2 .hero-actions {
    margin-block-start: 1.5rem;
  }

  .storefront-v2 .hero-note {
    margin-block-start: 1rem;
  }

  .storefront-v2 :is(.product-story, .everyday-section, .order-section, .specs-section, .timeline-section, .faq-section) {
    padding-block: 7rem;
  }

  .storefront-v2 .app-section {
    min-height: 47rem;
    grid-template-columns: minmax(22rem, 0.82fr) minmax(34rem, 1.18fr);
    align-items: center;
    gap: 5.5rem;
    padding: 7rem max(2rem, calc((100vw - var(--container)) / 2)) 0;
  }

  .storefront-v2 .app-copy,
  .storefront-v2 .app-preview-stage {
    width: 100%;
  }

  .storefront-v2 .app-copy {
    padding-block-end: 7rem;
  }

  .storefront-v2 .app-preview-stage {
    min-height: 47rem;
  }

  .storefront-v2 .app-device {
    width: 19.5rem;
  }

  .storefront-v2 .story-heading,
  .storefront-v2 .everyday-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.7fr);
    align-items: end;
    column-gap: 5rem;
  }

  .storefront-v2 .story-heading .section-kicker,
  .storefront-v2 .story-heading h2,
  .storefront-v2 .everyday-intro .section-kicker,
  .storefront-v2 .everyday-intro h2 {
    grid-column: 1;
  }

  .storefront-v2 .story-heading > p:last-child,
  .storefront-v2 .everyday-intro > p:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-block-start: 0;
  }

  .storefront-v2 :is(.story-heading, .everyday-intro, .app-copy) h2 {
    font-size: 3.45rem;
  }

  html[lang="ar"] .storefront-v2 :is(.story-heading, .everyday-intro, .app-copy) h2 {
    font-size: 2.85rem;
  }

  .storefront-v2 .section-heading h2 {
    font-size: 3.1rem;
  }

  html[lang="ar"] .storefront-v2 .section-heading h2 {
    font-size: 2.7rem;
  }

  .storefront-v2 .display-copy {
    padding: 4rem;
  }

  .storefront-v2 .display-copy h3 {
    font-size: 3.15rem;
  }

  html[lang="ar"] .storefront-v2 .display-copy h3 {
    font-size: 2.65rem;
  }

  .storefront-v2 .essential-grid article {
    min-height: 18rem;
    padding: 2.5rem;
  }

  .storefront-v2 .everyday-grid article {
    min-height: 11rem;
    padding: 2rem 2.5rem;
  }

  .storefront-v2 .config-visual {
    min-height: 34rem;
  }

  .storefront-v2 .config-visual img {
    width: 31rem;
  }

  .storefront-v2 .spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .storefront-v2 .spec-grid > div:nth-child(3) {
    border-block-start: 0;
  }

  .storefront-v2 .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 0;
  }

  .storefront-v2 .timeline li,
  .storefront-v2 .timeline li:nth-child(2) {
    min-height: 9rem;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 1.5rem 1.5rem 0;
    border-block-start: 0;
    border-inline-start: 1px solid var(--line);
  }

  .storefront-v2 .timeline li:first-child {
    padding-inline-start: 0;
    border-inline-start: 0;
  }

  .storefront-v2 .timeline li:last-child {
    padding-inline-end: 0;
  }

  .storefront-v2 .faq-section {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(16rem, 0.42fr) minmax(30rem, 0.58fr);
    gap: 5rem;
    padding-inline: max(2rem, calc((100vw - var(--container)) / 2));
  }

  .storefront-v2 .faq-section .section-heading,
  .storefront-v2 .faq-list {
    width: 100%;
    margin: 0;
  }

  .storefront-v2 .final-cta {
    min-height: 30rem;
    padding-block: 7rem;
  }

  .storefront-v2 .final-copy h2 {
    font-size: 3.8rem;
  }

  html[lang="ar"] .storefront-v2 .final-copy h2 {
    font-size: 3.15rem;
  }

  .storefront-v2 .site-footer {
    grid-template-columns: minmax(16rem, 0.72fr) minmax(32rem, 1.28fr);
    gap: 5rem;
    padding: 5rem max(2rem, calc((100vw - var(--container)) / 2)) 2rem;
  }

  .storefront-v2 .footer-brand,
  .storefront-v2 .footer-links,
  .storefront-v2 .footer-bottom {
    width: 100%;
  }

  .storefront-v2 .footer-bottom {
    grid-column: 1 / -1;
  }
}

/* Production rhythm and storytelling refinements */
@media (min-width: 72rem) {
  .storefront-v2 .hero-inner {
    min-height: 42rem;
    padding-block: 3.5rem;
  }

  .storefront-v2 .hero-product {
    min-height: 34rem;
    padding: 1.15rem 1.4rem 1.35rem;
  }

  .storefront-v2 .hero-product .hero-watch {
    width: min(94%, 31.5rem);
    transform: scale(1.06);
  }

  .storefront-v2 .hero-facts small {
    font-size: 0.75rem;
  }

  .storefront-v2 :is(.product-story, .everyday-section, .order-section, .specs-section, .timeline-section, .faq-section) {
    padding-block: 5rem;
  }

  .storefront-v2 .display-story {
    grid-template-columns: minmax(20rem, 0.72fr) minmax(30rem, 1.28fr);
    min-height: 36rem;
  }

  .storefront-v2 .display-copy {
    padding: 3.5rem;
  }

  .storefront-v2 .display-product {
    position: relative;
    min-height: 36rem;
    overflow: hidden;
    background: #e8ebe6;
  }

  .storefront-v2 .display-product img {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    width: min(150%, 54rem);
    max-width: none;
    transform: translate(-50%, -50%);
  }

  html[dir="rtl"] .storefront-v2 .display-product img {
    transform: translate(50%, -50%);
  }

  .storefront-v2 .essential-grid article {
    min-height: 15rem;
    padding: 2rem 2.25rem;
  }

  .storefront-v2 .everyday-section {
    display: grid;
    grid-template-columns: minmax(18rem, 0.38fr) minmax(34rem, 0.62fr);
    align-items: center;
    gap: 5rem;
    padding-inline: max(2rem, calc((100vw - var(--container)) / 2));
  }

  .storefront-v2 .everyday-intro {
    display: block;
    width: 100%;
    margin: 0;
  }

  .storefront-v2 .everyday-intro > p:last-child {
    margin-block-start: 1.25rem;
  }

  .storefront-v2 .everyday-grid {
    width: 100%;
    margin: 0;
  }

  .storefront-v2 .everyday-grid article {
    min-height: 10.5rem;
    padding: 1.65rem 2rem;
  }

  .storefront-v2 .app-section {
    min-height: 0;
    grid-template-columns: minmax(22rem, 0.78fr) minmax(36rem, 1.22fr);
    gap: 4rem;
    padding: 5rem max(2rem, calc((100vw - var(--container)) / 2));
  }

  .storefront-v2 .app-copy {
    padding-block-end: 0;
  }

  .storefront-v2 .app-preview-stage {
    min-height: 42rem;
    grid-template-columns: minmax(12rem, 0.78fr) minmax(18rem, 1fr);
    align-items: center;
    padding-inline: 1.5rem;
  }

  .storefront-v2 .app-watch-link {
    z-index: 1;
    display: block;
    width: min(150%, 21rem);
    max-width: none;
    grid-column: 1;
    justify-self: end;
    margin-inline-end: -2.5rem;
    filter: drop-shadow(0 1.25rem 1.4rem rgba(16, 19, 17, 0.15));
  }

  .storefront-v2 .app-device {
    z-index: 2;
    width: 19.5rem;
    grid-column: 2;
    justify-self: center;
  }

  .storefront-v2 .app-flow {
    display: flex;
    inset-block-start: 1.5rem;
    inset-inline-start: 2rem;
    font-size: 0.76rem;
  }

  .storefront-v2 .product-configurator {
    display: contents;
  }

  .storefront-v2 .order-section {
    display: grid;
    grid-template-columns: minmax(32rem, 1.12fr) minmax(25rem, 0.88fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 1.75rem 4.5rem;
    padding-inline: max(2rem, calc((100vw - var(--container)) / 2));
  }

  .storefront-v2 .order-section .section-heading {
    width: 100%;
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    text-align: start;
  }

  .storefront-v2 .order-section .centered-heading :is(h2, p) {
    margin-inline: 0;
  }

  .storefront-v2 .order-section .centered-heading h2 {
    max-width: none;
    font-size: 3rem;
  }

  html[lang="ar"] .storefront-v2 .order-section .centered-heading h2 {
    font-size: 2.6rem;
  }

  .storefront-v2 .order-section .centered-heading > p:last-child {
    max-width: 28rem;
  }

  .storefront-v2 .config-visual {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 34rem;
  }

  .storefront-v2 .config-visual img {
    width: 33rem;
    transform: scale(1.04);
  }

  .storefront-v2 .config-panel {
    width: min(100%, 29rem);
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: stretch;
  }

  .storefront-v2 .finish-option {
    min-height: 3.35rem;
  }

  .storefront-v2 .config-price {
    margin-block-start: 1.1rem;
  }

  .storefront-v2 .box-includes {
    margin-block-start: 1rem;
    padding-block: 0.8rem;
  }

  .storefront-v2 .box-includes ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .storefront-v2 .box-includes li,
  .storefront-v2 .box-includes li:first-child {
    padding: 0.2rem 0.75rem;
    border-block-start: 0;
    border-inline-start: 1px solid var(--line);
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .storefront-v2 .box-includes li:first-child {
    padding-inline-start: 0;
    border-inline-start: 0;
  }

  .storefront-v2 .box-includes li:last-child {
    padding-inline-end: 0;
  }

  .storefront-v2 .config-panel .full-button {
    margin-block-start: 1rem;
  }

  .storefront-v2 .config-note {
    margin-block-start: 0.55rem;
  }

  html[dir="rtl"] .storefront-v2 .order-section .section-heading,
  html[dir="rtl"] .storefront-v2 .config-panel {
    grid-column: 1;
  }

  html[dir="rtl"] .storefront-v2 .config-visual {
    grid-column: 2;
  }

  .storefront-v2 .specs-section {
    display: grid;
    grid-template-columns: minmax(17rem, 0.34fr) minmax(0, 0.66fr);
    align-items: start;
    gap: 1.5rem 5rem;
    padding-inline: max(2rem, calc((100vw - var(--container)) / 2));
  }

  .storefront-v2 .specs-section .section-heading {
    width: 100%;
    margin: 0;
  }

  .storefront-v2 .spec-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: 2;
    column-gap: 2.5rem;
  }

  .storefront-v2 .spec-grid > div {
    min-height: 5.5rem;
    padding-block: 1.35rem;
  }

  .storefront-v2 .spec-grid > div:nth-child(3) {
    border-block-start: 1px solid var(--line);
  }

  .storefront-v2 .spec-note {
    width: 100%;
    max-width: none;
    grid-column: 2;
    margin-block-start: 0;
  }

  .storefront-v2 .timeline-section {
    padding-block: 4.5rem;
  }

  .storefront-v2 .timeline li,
  .storefront-v2 .timeline li:nth-child(2) {
    min-height: 0;
    padding-block: 1.35rem;
  }

  .storefront-v2 .faq-section {
    grid-template-columns: minmax(16rem, 0.36fr) minmax(32rem, 0.64fr);
    gap: 4rem;
    padding-block: 4.5rem;
  }

  .storefront-v2 .faq-list {
    max-width: none;
  }

  .storefront-v2 .final-cta {
    min-height: 22rem;
    padding: 4.75rem max(2rem, calc((100vw - var(--container)) / 2));
    place-items: center stretch;
    text-align: start;
  }

  .storefront-v2 .final-copy {
    display: grid;
    width: min(100%, var(--container));
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: end;
    justify-items: stretch;
    gap: 0.75rem 4rem;
    margin-inline: auto;
  }

  .storefront-v2 .final-copy .section-kicker {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .storefront-v2 .final-copy h2 {
    grid-column: 1;
    grid-row: 2;
    max-width: 11ch;
  }

  .storefront-v2 .final-purchase {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
    margin: 0;
  }

  .storefront-v2 .final-copy .light-button {
    min-width: 14rem;
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-block-start: 0;
  }

  .storefront-v2 .site-footer {
    gap: 2.5rem 5rem;
    padding-block: 3rem 1.5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .storefront-v2 :is(.primary-button, .header-cta, .mobile-buybar button):hover {
    background: #282d2a;
    transform: translateY(-1px);
  }

  .storefront-v2 .secondary-button:hover {
    border-color: var(--ink);
    background: var(--white);
  }

  .storefront-v2 :is(.text-link, .desktop-nav a, .footer-links a):hover {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }

  .storefront-v2 .hero-colors button:hover {
    border-color: var(--line-strong);
  }

  .storefront-v2 .finish-option:hover {
    color: var(--ink);
  }

  .storefront-v2 .config-visual:hover img {
    filter: drop-shadow(0 1.8rem 1.6rem rgba(16, 19, 17, 0.17));
    transform: translateY(-0.45rem) scale(1.018);
  }

  .storefront-v2 .final-copy .light-button:hover {
    background: #e9ebe7;
  }
}

@media (max-width: 30rem) {
  .storefront-v2 .launch-strip {
    min-height: 2.05rem;
    padding-inline: max(0.5rem, env(safe-area-inset-right));
    font-size: 0.68rem;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Production layout system — unified grid, rhythm and hierarchy */
:root {
  --container: 76rem;
  --frame: min(calc(100% - 2.5rem), var(--container));
  --content-pad: max(1.25rem, calc((100% - var(--container)) / 2));
  --section-space: 4.5rem;
  --radius: 1.5rem;
}

.storefront-v2 .launch-strip {
  min-height: 2.125rem;
  padding-block: 0.5rem;
}

.storefront-v2 .site-header {
  min-height: 4rem;
  padding-inline: max(1.25rem, env(safe-area-inset-right));
}

.storefront-v2 .header-actions {
  gap: 0.2rem;
}

.storefront-v2 .header-cta {
  margin-inline-start: 0.55rem;
}

.storefront-v2 .section-kicker {
  margin-block-end: 0.7rem;
  font-size: 0.69rem;
  letter-spacing: 0.11em;
}

.storefront-v2 :is(.section-heading, .story-heading, .everyday-intro, .app-copy) h2,
.storefront-v2 .final-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 9vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

html[lang="ar"] .storefront-v2 :is(.section-heading, .story-heading, .everyday-intro, .app-copy) h2,
html[lang="ar"] .storefront-v2 .final-copy h2 {
  max-width: 13em;
  font-size: clamp(2.05rem, 8vw, 2.55rem);
  letter-spacing: 0;
  line-height: 1.3;
}

.storefront-v2 :is(.product-story, .everyday-section, .order-section, .specs-section, .timeline-section, .faq-section) {
  padding: var(--section-space) 1.25rem;
}

/* Hero: proposition, product, price and one decisive action. */
.storefront-v2 .hero-inner {
  width: var(--frame);
  padding: 2.75rem 0 3rem;
}

.storefront-v2 .hero-copy {
  max-width: 34rem;
}

.storefront-v2 .hero-model {
  margin-block-end: 0.8rem;
}

.storefront-v2 .hero h1 {
  max-width: 10ch;
  font-size: clamp(2.65rem, 10.5vw, 3rem);
  line-height: 1;
}

html[lang="ar"] .storefront-v2 .hero h1 {
  max-width: 11em;
  font-size: clamp(2.25rem, 9.2vw, 2.55rem);
  letter-spacing: 0;
  line-height: 1.25;
}

.storefront-v2 .hero-lede {
  max-width: 27rem;
  margin-block-start: 1.15rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

html[lang="ar"] .storefront-v2 .hero-lede {
  max-width: 30rem;
  line-height: 1.8;
}

.storefront-v2 .hero-product {
  min-height: 23rem;
  grid-template-rows: minmax(0, 1fr);
  margin-block-start: 2rem;
  padding: 0.5rem;
  border: 0;
  background: linear-gradient(145deg, #f0f2ee 0%, #e9ece7 100%);
}

.storefront-v2 .hero-product .hero-watch {
  width: min(104%, 23.5rem);
  filter: drop-shadow(0 1.75rem 1.5rem rgba(16, 19, 17, 0.13));
}

.storefront-v2 .hero-purchase {
  margin-block-start: 1.75rem;
}

.storefront-v2 .hero-price > div {
  gap: 1.5rem;
}

.storefront-v2 .retail-price {
  gap: 0.25rem;
  padding-inline-start: 1.5rem;
  border-inline-start-color: rgba(16, 19, 17, 0.12);
}

.storefront-v2 .hero-note {
  margin-block-start: 0.85rem;
  font-size: 0.79rem;
}

.storefront-v2 .hero-actions {
  margin-block-start: 0.95rem;
}

/* Reassurance is a utility row, not another card. */
.storefront-v2 .trust-bar {
  width: var(--frame);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-block: 0.8rem;
  border: 0;
}

.storefront-v2 .trust-bar > div,
.storefront-v2 .trust-bar > div:first-child {
  min-width: 0;
  padding: 0.75rem 0.7rem;
  border: 0;
  border-inline-start: 1px solid rgba(16, 19, 17, 0.1);
  text-align: center;
}

.storefront-v2 .trust-bar > div:first-child {
  border-inline-start: 0;
}

.storefront-v2 .trust-bar strong {
  font-size: 0.75rem;
  line-height: 1.4;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.storefront-v2 .trust-bar small {
  display: none;
}

/* Product story: editorial detail, then unboxed benefit statements. */
.storefront-v2 .story-heading {
  margin-block-end: 2.5rem;
}

.storefront-v2 .story-heading > p:last-child,
.storefront-v2 .section-heading > p:not(.section-kicker) {
  max-width: 35rem;
  font-size: 1rem;
  line-height: 1.68;
}

.storefront-v2 .display-story {
  min-height: 0;
  border-radius: var(--radius);
  background: #f1f2ee;
}

.storefront-v2 .display-copy {
  padding: 2.25rem 1.5rem;
}

.storefront-v2 .display-copy h3 {
  font-size: clamp(2.05rem, 8vw, 2.65rem);
}

.storefront-v2 .display-copy > p:not(.section-kicker) {
  max-width: 30rem;
}

.storefront-v2 .display-product {
  min-height: 21rem;
  background: radial-gradient(circle at 45% 42%, #f8f9f6 0%, #e4e8e2 72%);
}

.storefront-v2 .display-product img {
  inset-block-start: 58%;
  inset-inline-start: 54%;
  width: min(202%, 42rem);
  filter: drop-shadow(0 1.5rem 1.6rem rgba(16, 19, 17, 0.14));
}

.storefront-v2 .essential-grid {
  gap: 2.5rem;
  margin-block-start: 3rem;
  border: 0;
}

.storefront-v2 .essential-grid article,
.storefront-v2 .essential-grid article:first-child {
  min-height: 0;
  padding: 0;
  border: 0;
}

.storefront-v2 .feature-value {
  margin-block-end: 0.8rem;
  font-size: 0.79rem;
}

.storefront-v2 .essential-grid h3 {
  max-width: 17ch;
  font-size: 1.4rem;
}

.storefront-v2 .essential-grid p {
  max-width: 32ch;
  margin-block-start: 0.6rem;
  font-size: 0.94rem;
}

/* Dark chapter: compact, structured and deliberately contrasted. */
.storefront-v2 .everyday-section {
  padding-block: 4rem;
}

.storefront-v2 .everyday-intro > p:last-child {
  max-width: 31rem;
}

.storefront-v2 .everyday-grid {
  margin-block-start: 1.75rem;
  border-block: 0;
}

.storefront-v2 .everyday-grid article,
.storefront-v2 .everyday-grid article:first-child {
  min-height: 0;
  padding-block: 1.25rem;
  border-block-start-color: rgba(255, 255, 255, 0.24);
}

.storefront-v2 .everyday-grid article::before {
  margin-block-end: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.storefront-v2 .everyday-grid p {
  max-width: 34ch;
}

/* App chapter: one story, two supporting points and one action. */
.storefront-v2 .app-section {
  gap: 2.75rem;
  padding: var(--section-space) 1.25rem 0;
}

.storefront-v2 .app-lede {
  max-width: 34rem;
  font-size: 1rem;
}

.storefront-v2 .app-points {
  gap: 1.2rem;
  margin-block-start: 1.75rem;
  border: 0;
}

.storefront-v2 .app-points li,
.storefront-v2 .app-points li:first-child {
  padding: 0;
  border: 0;
}

.storefront-v2 .app-points li > span {
  gap: 0.25rem;
}

.storefront-v2 .app-points small {
  max-width: 34ch;
}

.storefront-v2 .app-preview-stage {
  min-height: 31rem;
  direction: ltr;
  background: #e9ece7;
}

.storefront-v2 .app-flow {
  display: none;
}

/* Configurator: product scale and whitespace carry the hierarchy. */
.storefront-v2 .order-section {
  padding-block: 5rem;
}

.storefront-v2 .product-configurator {
  width: min(100%, var(--container));
}

.storefront-v2 .config-visual {
  min-height: 24rem;
  background: #f3f4f1;
}

.storefront-v2 .config-visual img {
  width: min(112%, 31rem);
}

.storefront-v2 .config-count,
.storefront-v2 .config-name {
  display: none;
}

.storefront-v2 .config-panel {
  width: min(100%, 28rem);
}

.storefront-v2 .config-heading {
  margin-block-end: 0.75rem;
}

.storefront-v2 .finish-options {
  gap: 0.2rem;
  border: 0;
}

.storefront-v2 .finish-option,
.storefront-v2 .finish-option:first-child {
  min-height: 3rem;
  padding-block: 0.55rem;
  border: 0;
}

.storefront-v2 .finish-option::after,
.storefront-v2 .finish-option.is-selected::after {
  display: none;
}

.storefront-v2 .config-price {
  margin-block-start: 1.7rem;
  padding-block-start: 0;
}

.storefront-v2 .config-price strong {
  font-size: 2.05rem;
}

.storefront-v2 .box-includes {
  margin-block-start: 1.55rem;
  padding: 0;
  border: 0;
}

.storefront-v2 .box-includes ul {
  gap: 0.4rem;
  margin-block-start: 0.6rem;
}

.storefront-v2 .box-includes li,
.storefront-v2 .box-includes li:first-child {
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.storefront-v2 .config-panel .full-button {
  margin-block-start: 1.4rem;
}

/* Technical content: compact label/value rhythm. */
.storefront-v2 .specs-section {
  padding-block: 4.5rem;
}

.storefront-v2 .spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
  border-block: 0;
}

.storefront-v2 .spec-grid > div,
.storefront-v2 .spec-grid > div:first-child,
.storefront-v2 .spec-grid > div:nth-child(2) {
  min-height: 6.25rem;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: 0.35rem;
  padding-block: 1.05rem;
  border-inline: 0;
  border-block-start: 1px solid rgba(16, 19, 17, 0.11);
}

.storefront-v2 .spec-grid > div:nth-child(-n + 2) {
  border-block-start: 0;
}

.storefront-v2 .spec-grid > div:nth-child(odd) {
  padding-inline-end: 0.75rem;
}

.storefront-v2 .spec-grid > div:nth-child(even) {
  padding-inline-start: 0.75rem;
}

.storefront-v2 .spec-grid > div > span {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html[lang="ar"] .storefront-v2 .spec-grid > div > span {
  letter-spacing: 0;
  text-transform: none;
}

.storefront-v2 .spec-grid strong {
  gap: 0.18rem;
  font-size: 1.08rem;
  font-weight: 660;
  line-height: 1.35;
  text-align: start;
}

.storefront-v2 .spec-grid strong small {
  font-size: 0.76rem;
}

.storefront-v2 .spec-note {
  margin-block-start: 0.85rem;
}

/* Preorder progression and FAQ use density, not empty height. */
.storefront-v2 .timeline-section,
.storefront-v2 .faq-section {
  padding-block: 4.25rem;
}

.storefront-v2 .timeline-section .section-heading,
.storefront-v2 .faq-section .section-heading {
  margin-block-end: 1.75rem;
}

.storefront-v2 .timeline {
  border-block: 0;
}

.storefront-v2 .timeline li,
.storefront-v2 .timeline li:first-child,
.storefront-v2 .timeline li:nth-child(2) {
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: start;
  gap: 0.9rem;
  min-height: 0;
  padding-block: 1rem;
  border-inline: 0;
}

.storefront-v2 .timeline li > span,
.storefront-v2 .timeline li.is-current > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.storefront-v2 .timeline li.is-current > span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.storefront-v2 .timeline strong {
  font-size: 1.03rem;
}

.storefront-v2 .promise-note {
  margin-block-start: 0.85rem;
}

.storefront-v2 .faq-list summary {
  min-height: 3.8rem;
  padding-block: 0.95rem;
  padding-inline-end: 3rem;
}

html[dir="rtl"] .storefront-v2 .faq-list summary {
  padding-inline: 3rem 0;
}

.storefront-v2 .faq-list summary::after {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 400;
}

.storefront-v2 .faq-list details p {
  max-width: 42rem;
  font-size: 0.92rem;
}

/* A single purchase group closes the story. */
.storefront-v2 .final-cta {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-height: 19rem;
  padding-block: 4rem;
}

.storefront-v2 .final-copy {
  width: 100%;
  margin-inline: auto;
}

.storefront-v2 .final-purchase {
  display: grid;
  justify-items: center;
  margin-block-start: 1.35rem;
}

.storefront-v2 .final-copy > .section-kicker {
  display: block;
  grid-column: auto;
  grid-row: auto;
  margin-block-end: 0.7rem;
}

.storefront-v2 .final-purchase > p {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.storefront-v2 .final-purchase > p strong {
  color: var(--white);
  font-size: 1.25rem;
}

.storefront-v2 .final-purchase .light-button {
  margin-block-start: 1rem;
}

/* Footer closes on the same grid and baseline as the page. */
.storefront-v2 .site-footer {
  gap: 2rem;
  padding: 3rem 1.25rem calc(6rem + env(safe-area-inset-bottom));
}

.storefront-v2 .footer-brand p {
  max-width: 21rem;
}

.storefront-v2 .footer-links {
  gap: 1.5rem;
}

.storefront-v2 .footer-links strong {
  color: var(--ink);
}

html[lang="ar"] .storefront-v2 :is(h1, h2, h3) {
  letter-spacing: 0;
}

html[lang="ar"] .storefront-v2 :is(.hero-lede, .story-heading > p:last-child, .display-copy > p:not(.section-kicker), .essential-grid p, .everyday-intro > p:last-child, .everyday-grid p, .app-lede, .app-points small, .section-heading > p:not(.section-kicker), .faq-list details p) {
  line-height: 1.75;
}

@media (min-width: 48rem) {
  :root {
    --frame: min(calc(100% - 4rem), var(--container));
    --content-pad: max(2rem, calc((100% - var(--container)) / 2));
  }

  .storefront-v2 .site-header {
    padding-inline: var(--content-pad);
  }

  .storefront-v2 .hero-inner {
    width: var(--frame);
    padding-inline: 0;
  }

  .storefront-v2 .trust-bar {
    width: var(--frame);
  }

  .storefront-v2 .trust-bar > div,
  .storefront-v2 .trust-bar > div:first-child {
    padding: 0.8rem 1.5rem;
  }

  .storefront-v2 .trust-bar strong {
    font-size: 0.82rem;
  }

  .storefront-v2 .trust-bar small {
    display: block;
    font-size: 0.71rem;
  }

  .storefront-v2 .display-story {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(24rem, 1.28fr);
    min-height: 31rem;
  }

  .storefront-v2 .display-copy {
    padding: 3rem;
  }

  .storefront-v2 .display-product {
    min-height: 31rem;
  }

  .storefront-v2 .display-product img {
    width: min(178%, 59rem);
  }

  .storefront-v2 .essential-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }

  .storefront-v2 .everyday-grid article,
  .storefront-v2 .everyday-grid article:first-child {
    min-height: 8.5rem;
    padding: 1.25rem 1.5rem;
  }

  .storefront-v2 .app-section {
    padding-inline: var(--content-pad);
  }

  .storefront-v2 .app-device {
    width: 18rem;
  }

  .storefront-v2 .config-visual {
    min-height: 31rem;
  }

  .storefront-v2 .config-visual img {
    width: 33rem;
  }

  .storefront-v2 .spec-grid {
    column-gap: 2.5rem;
  }

  .storefront-v2 .spec-grid > div,
  .storefront-v2 .spec-grid > div:first-child,
  .storefront-v2 .spec-grid > div:nth-child(2) {
    min-height: 5.25rem;
  }

  .storefront-v2 .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 72rem) {
  :root {
    --header-height: 4.75rem;
    --section-space: 5.5rem;
  }

  .storefront-v2 .site-header {
    min-height: var(--header-height);
  }

  .storefront-v2 .header-actions {
    gap: 0.35rem;
    padding-inline-start: 1.1rem;
  }

  .storefront-v2 .header-cta {
    min-height: 2.9rem;
    margin-inline-start: 0.75rem;
    padding-inline: 1.15rem;
  }

  .storefront-v2 .hero-inner {
    min-height: 39rem;
    grid-template-columns: minmax(24rem, 0.88fr) minmax(33rem, 1.12fr);
    gap: 1.6rem 5rem;
    padding-block: 3.75rem;
  }

  .storefront-v2 .hero h1 {
    font-size: clamp(4rem, 4.8vw, 4.25rem);
  }

  html[lang="ar"] .storefront-v2 .hero h1 {
    font-size: clamp(3.35rem, 4vw, 3.6rem);
  }

  .storefront-v2 .hero-lede {
    font-size: 1.08rem;
  }

  .storefront-v2 .hero-product {
    min-height: 33rem;
    padding: 0;
  }

  .storefront-v2 .hero-product .hero-watch {
    width: min(105%, 34rem);
    transform: none;
  }

  .storefront-v2 .hero-facts {
    gap: 0.35rem;
    margin-block-start: 1.8rem;
    padding-block: 0.95rem;
    border-block-color: rgba(16, 19, 17, 0.09);
  }

  .storefront-v2 .hero-facts > div {
    min-height: 2.65rem;
    padding-inline: 1.15rem;
    border-inline-start-color: rgba(16, 19, 17, 0.09);
  }

  .storefront-v2 .hero-facts > div:first-child {
    padding-inline-start: 0;
  }

  .storefront-v2 .hero-purchase {
    max-width: 29rem;
  }

  .storefront-v2 .hero-actions .primary-button {
    min-width: 14.5rem;
  }

  .storefront-v2 :is(.section-heading, .story-heading, .everyday-intro, .app-copy) h2 {
    font-size: 3.25rem;
  }

  html[lang="ar"] .storefront-v2 :is(.section-heading, .story-heading, .everyday-intro, .app-copy) h2 {
    font-size: 2.8rem;
  }

  .storefront-v2 .story-heading {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.72fr);
    align-items: end;
    column-gap: 5rem;
  }

  .storefront-v2 .story-heading > p:last-child {
    grid-row: 2;
    align-self: end;
    margin-block-end: 0.35rem;
  }

  .storefront-v2 .display-copy {
    padding: 3.25rem;
  }

  .storefront-v2 .display-copy h3 {
    font-size: 2.8rem;
  }

  html[lang="ar"] .storefront-v2 .display-copy h3 {
    font-size: 2.4rem;
  }

  .storefront-v2 .essential-grid article,
  .storefront-v2 .essential-grid article:first-child {
    min-height: 0;
    padding: 0;
  }

  .storefront-v2 .everyday-section {
    grid-template-columns: minmax(19rem, 0.39fr) minmax(34rem, 0.61fr);
    gap: 5rem;
    padding: 4.25rem var(--content-pad);
  }

  .storefront-v2 .everyday-intro {
    display: block;
  }

  .storefront-v2 .everyday-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront-v2 .everyday-grid article,
  .storefront-v2 .everyday-grid article:first-child {
    min-height: 8.35rem;
    padding: 1.2rem 1.65rem;
  }

  .storefront-v2 .app-section {
    min-height: 0;
    grid-template-columns: minmax(22rem, 0.78fr) minmax(36rem, 1.22fr);
    gap: 5rem;
    padding: 5rem var(--content-pad);
  }

  .storefront-v2 .app-copy {
    padding-block-end: 0;
  }

  .storefront-v2 .app-preview-stage {
    min-height: 38rem;
    grid-template-columns: minmax(12rem, 0.78fr) minmax(18rem, 1fr);
    padding-inline: 2rem 3rem;
  }

  .storefront-v2 .app-watch-link {
    width: min(154%, 21.5rem);
    margin-inline-end: -2rem;
  }

  .storefront-v2 .app-device {
    width: 18.75rem;
    justify-self: start;
    transform: translateX(-0.8rem);
  }

  .storefront-v2 .order-section {
    grid-template-columns: minmax(32rem, 1.08fr) minmax(26rem, 0.92fr);
    gap: 1.4rem 5rem;
    padding: 5rem var(--content-pad);
  }

  html[dir="rtl"] .storefront-v2 .order-section {
    grid-template-columns: minmax(26rem, 0.92fr) minmax(32rem, 1.08fr);
  }

  .storefront-v2 .order-section .centered-heading h2 {
    font-size: 3.05rem;
  }

  html[lang="ar"] .storefront-v2 .order-section .centered-heading h2 {
    font-size: 2.65rem;
  }

  .storefront-v2 .config-visual {
    min-height: 34rem;
  }

  .storefront-v2 .config-visual img {
    width: 36.5rem;
    transform: none;
  }

  .storefront-v2 .config-panel {
    width: min(100%, 29rem);
  }

  .storefront-v2 .box-includes ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .storefront-v2 .box-includes li,
  .storefront-v2 .box-includes li:first-child {
    padding: 0;
    border: 0;
  }

  .storefront-v2 .specs-section {
    grid-template-columns: minmax(16rem, 0.29fr) minmax(0, 0.71fr);
    gap: 1.25rem 3.5rem;
    padding: 4rem var(--content-pad);
  }

  .storefront-v2 .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3rem;
  }

  .storefront-v2 .spec-grid > div,
  .storefront-v2 .spec-grid > div:first-child,
  .storefront-v2 .spec-grid > div:nth-child(2) {
    min-height: 4.55rem;
    padding-block: 0.8rem;
  }

  .storefront-v2 .spec-grid strong {
    font-size: 1.2rem;
  }

  .storefront-v2 .timeline-section {
    padding: 4rem var(--content-pad);
  }

  .storefront-v2 .timeline-section .section-heading {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .storefront-v2 .timeline {
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
  }

  .storefront-v2 .timeline::before {
    position: absolute;
    inset-block-start: 1.15rem;
    inset-inline: 1.2rem;
    display: block;
    height: 1px;
    background: var(--line);
    content: "";
  }

  .storefront-v2 .timeline li,
  .storefront-v2 .timeline li:first-child,
  .storefront-v2 .timeline li:nth-child(2) {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 0;
    padding: 0 1.5rem 0 0;
    border: 0;
  }

  html[dir="rtl"] .storefront-v2 .timeline li,
  html[dir="rtl"] .storefront-v2 .timeline li:first-child,
  html[dir="rtl"] .storefront-v2 .timeline li:nth-child(2) {
    padding: 0 0 0 1.5rem;
  }

  .storefront-v2 .timeline li > span {
    margin-block-end: 1rem;
  }

  .storefront-v2 .timeline small {
    max-width: 23ch;
  }

  .storefront-v2 .faq-section {
    grid-template-columns: minmax(15rem, 0.3fr) minmax(32rem, 0.7fr);
    gap: 3.5rem;
    padding: 4.25rem var(--content-pad);
  }

  .storefront-v2 .faq-section .section-heading {
    margin: 0;
  }

  .storefront-v2 .faq-list {
    max-width: none;
  }

  .storefront-v2 .final-cta {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 19rem;
    padding: 4rem var(--content-pad);
  }

  .storefront-v2 .final-copy {
    width: min(100%, var(--container));
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: end;
    gap: 0.65rem 5rem;
  }

  .storefront-v2 .final-copy > .section-kicker {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .storefront-v2 .final-copy h2 {
    font-size: 3.45rem;
  }

  html[lang="ar"] .storefront-v2 .final-copy h2 {
    font-size: 2.9rem;
  }

  .storefront-v2 .final-purchase {
    min-width: 15rem;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    justify-items: start;
    margin: 0;
  }

  .storefront-v2 .final-purchase > p {
    justify-items: start;
  }

  .storefront-v2 .final-purchase > p strong {
    font-size: 1.45rem;
  }

  .storefront-v2 .final-purchase .light-button {
    min-width: 15rem;
  }

  .storefront-v2 .site-footer {
    grid-template-columns: minmax(17rem, 0.75fr) minmax(34rem, 1.25fr);
    align-items: start;
    gap: 2rem 4.5rem;
    padding: 3rem var(--content-pad) 1.5rem;
  }

  .storefront-v2 .footer-brand,
  .storefront-v2 .footer-links,
  .storefront-v2 .footer-bottom {
    width: 100%;
  }

  .storefront-v2 .footer-bottom {
    grid-column: 1 / -1;
    margin-block-start: 0.25rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .storefront-v2 .config-visual:hover img {
    filter: drop-shadow(0 1.8rem 1.7rem rgba(16, 19, 17, 0.16));
    transform: translateY(-0.45rem) scale(1.025);
  }
}

/* Final art direction — one grid, one rhythm, stronger product hierarchy. */
:root {
  --container: 75rem;
  --page-gutter: clamp(1.25rem, 4vw, 2rem);
  --frame: min(calc(100% - var(--page-gutter) - var(--page-gutter)), var(--container));
  --content-pad: max(var(--page-gutter), calc((100% - var(--container)) / 2));
  --section-space: clamp(4.75rem, 8vw, 6.5rem);
  --radius: 1rem;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
}

body.storefront-v2 {
  line-height: 1.6;
}

.storefront-v2 .site-header {
  min-height: 4.5rem;
  padding-inline: var(--content-pad);
}

.storefront-v2 .brand {
  gap: 0.65rem;
}

.storefront-v2 .site-header > .brand {
  width: max-content;
  justify-self: start;
}

html[dir="rtl"] .storefront-v2 .site-header > .brand {
  justify-self: start;
}

.storefront-v2 .brand-word {
  font-size: 0.9rem;
  font-weight: 680;
  letter-spacing: 0.15em;
}

.storefront-v2 .header-actions {
  gap: 0.35rem;
}

.storefront-v2 .header-cta {
  min-height: 3rem;
  margin-inline-start: 0.65rem;
  padding-inline: 1.25rem;
}

.storefront-v2 :is(.product-story, .everyday-section, .order-section, .specs-section, .timeline-section, .faq-section) {
  padding: var(--section-space) var(--content-pad);
}

.storefront-v2 :is(.story-heading, .display-story, .essential-grid, .everyday-intro, .everyday-grid, .section-heading, .spec-grid, .timeline, .faq-list) {
  width: 100%;
  max-width: var(--container);
}

.storefront-v2 .section-kicker {
  margin-block-end: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.storefront-v2 :is(.display-copy, .app-copy, .faq-section, .final-copy) > .section-kicker,
.storefront-v2 .faq-section .section-kicker {
  display: none;
}

.storefront-v2 :is(.section-heading, .story-heading, .everyday-intro, .app-copy) h2,
.storefront-v2 .final-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.55rem, 9vw, 3.25rem);
  font-weight: 610;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.storefront-v2 :is(.story-heading > p:last-child, .section-heading > p:not(.section-kicker), .everyday-intro > p:last-child, .app-lede) {
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.72;
}

/* Hero */
.storefront-v2 .hero-inner {
  width: var(--frame);
  gap: var(--space-4);
  padding: 4rem 0 4.5rem;
}

.storefront-v2 .hero-copy {
  max-width: 36rem;
}

.storefront-v2 .hero-model {
  margin-block-end: 0.9rem;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
}

.storefront-v2 .hero h1 {
  max-width: 9ch;
  font-size: clamp(3.15rem, 12vw, 4rem);
  line-height: 0.98;
}

.storefront-v2 .hero-lede {
  max-width: 32rem;
  margin-block-start: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.68;
}

.storefront-v2 .hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-block-start: 1.75rem;
  padding-block: 1rem;
  border-block: 1px solid rgba(16, 19, 17, 0.12);
}

.storefront-v2 .hero-facts > div {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 0.25rem;
  padding-inline: 0.8rem;
  border-inline-start: 1px solid rgba(16, 19, 17, 0.1);
}

.storefront-v2 .hero-facts > div:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}

.storefront-v2 .hero-facts strong {
  font-size: 0.82rem;
  font-weight: 680;
  line-height: 1.35;
}

.storefront-v2 .hero-facts small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.storefront-v2 .hero-product {
  min-height: 25rem;
  margin-block-start: 0;
  padding: 0.5rem;
  border-radius: var(--radius);
}

.storefront-v2 .hero-product .hero-watch {
  width: min(108%, 25.5rem);
}

.storefront-v2 .hero-purchase {
  max-width: 31rem;
  margin-block-start: 0;
}

.storefront-v2 .hero-price > span {
  margin-block-end: 0.5rem;
  font-size: 0.78rem;
}

.storefront-v2 .hero-price strong {
  font-size: 2rem;
}

.storefront-v2 .hero-note {
  margin-block-start: 1rem;
  font-size: 0.84rem;
  line-height: 1.55;
}

.storefront-v2 .hero-actions {
  margin-block-start: 1.5rem;
}

.storefront-v2 .hero-actions .primary-button {
  min-height: 3.45rem;
}

/* Reassurance */
.storefront-v2 .trust-bar {
  width: var(--frame);
  margin-block: 0;
  border-block: 1px solid rgba(16, 19, 17, 0.11);
}

.storefront-v2 .trust-bar > div,
.storefront-v2 .trust-bar > div:first-child {
  min-height: 5.25rem;
  align-content: center;
  padding: 1.1rem 1.5rem;
  border-inline-start-color: rgba(16, 19, 17, 0.11);
}

.storefront-v2 .trust-bar strong {
  font-size: 0.86rem;
}

.storefront-v2 .trust-bar small {
  display: block;
  font-size: 0.75rem;
  line-height: 1.45;
}

/* Product story */
.storefront-v2 .story-heading {
  margin: 0 auto 3rem;
}

.storefront-v2 .story-heading > p:last-child {
  max-width: 39rem;
  margin-block-start: 1rem;
}

.storefront-v2 .display-story {
  min-height: 31rem;
  border-radius: var(--radius);
}

.storefront-v2 .display-copy {
  padding: 3rem 2rem;
}

.storefront-v2 .display-copy h3 {
  font-size: clamp(2.35rem, 8vw, 3rem);
}

.storefront-v2 .display-copy > p:not(.section-kicker) {
  max-width: 32rem;
  margin-block-start: 1.15rem;
  font-size: 1rem;
  line-height: 1.7;
}

.storefront-v2 .display-specs {
  gap: 2.5rem;
  margin-block-start: 2rem;
}

.storefront-v2 .display-specs dt {
  font-size: 0.78rem;
}

.storefront-v2 .display-specs dd {
  font-size: 1.22rem;
}

.storefront-v2 .display-product {
  min-height: 24rem;
}

.storefront-v2 .display-product img {
  inset-block-start: 52%;
  inset-inline-start: 51%;
  width: min(128%, 47rem);
}

.storefront-v2 .essential-grid {
  gap: 0;
  margin: 3rem auto 0;
  border-block: 1px solid rgba(16, 19, 17, 0.12);
}

.storefront-v2 .essential-grid article,
.storefront-v2 .essential-grid article:first-child {
  min-height: 0;
  padding: 2rem 0;
  border-block-start: 1px solid rgba(16, 19, 17, 0.1);
}

.storefront-v2 .feature-value {
  margin-block-end: 0.75rem;
  font-size: 0.82rem;
}

.storefront-v2 .essential-grid h3 {
  max-width: 18ch;
  font-size: 1.48rem;
  line-height: 1.18;
}

.storefront-v2 .essential-grid p {
  max-width: 34ch;
  margin-block-start: 0.75rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Dark everyday chapter */
.storefront-v2 .everyday-section {
  gap: 3rem;
  padding-block: var(--section-space);
}

.storefront-v2 .everyday-intro > p:last-child {
  max-width: 34rem;
  margin-block-start: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
}

.storefront-v2 .everyday-grid {
  gap: 0;
  margin-block-start: 0;
  border-block-color: rgba(255, 255, 255, 0.22);
}

.storefront-v2 .everyday-grid article,
.storefront-v2 .everyday-grid article:first-child {
  min-height: 0;
  padding: 1.75rem 0;
  border-block-start-color: rgba(255, 255, 255, 0.2);
}

.storefront-v2 .everyday-grid article::before {
  margin-block-end: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
}

.storefront-v2 .everyday-grid h3 {
  font-size: 1.3rem;
  line-height: 1.35;
}

.storefront-v2 .everyday-grid p {
  max-width: 34ch;
  margin-block-start: 0.6rem;
  font-size: 0.96rem;
  line-height: 1.65;
}

/* Companion app */
.storefront-v2 .app-section {
  gap: 0;
  padding: var(--section-space) var(--content-pad);
}

.storefront-v2 .app-lede {
  max-width: 38rem;
  margin-block-start: 1.2rem;
}

.storefront-v2 .app-points {
  gap: 0;
  margin-block-start: 2rem;
  border-block: 1px solid rgba(16, 19, 17, 0.11);
}

.storefront-v2 .app-points li,
.storefront-v2 .app-points li:first-child {
  padding: 1rem 0;
  border-block-start: 1px solid rgba(16, 19, 17, 0.1);
}

.storefront-v2 .app-points li:first-child {
  border-block-start: 0;
}

.storefront-v2 .app-points strong {
  font-size: 1rem;
}

.storefront-v2 .app-points small {
  max-width: 38ch;
  font-size: 0.9rem;
  line-height: 1.6;
}

.storefront-v2 .app-copy .secondary-button {
  margin-block-start: 2rem;
}

.storefront-v2 .app-preview-stage {
  min-height: 31rem;
  border-radius: var(--radius);
}

.storefront-v2 .device-island {
  inset-block-start: 0.35rem;
  width: 3.55rem;
  height: 0.72rem;
}

/* Finish configurator */
.storefront-v2 .order-section {
  padding-block: var(--section-space);
}

.storefront-v2 .order-section .section-heading {
  margin-block-end: 2.5rem;
}

.storefront-v2 .config-visual {
  min-height: 27rem;
  border-radius: var(--radius);
}

.storefront-v2 .config-visual img {
  width: min(108%, 29.5rem);
}

.storefront-v2 .config-panel {
  width: min(100%, 30rem);
}

.storefront-v2 .config-heading {
  margin-block-end: 0.85rem;
}

.storefront-v2 .config-heading span {
  font-size: 0.8rem;
}

.storefront-v2 .config-heading strong {
  font-size: 0.95rem;
}

.storefront-v2 .finish-options {
  gap: 0.45rem;
  border: 0;
}

.storefront-v2 .finish-option,
.storefront-v2 .finish-option:first-child {
  min-height: 3.75rem;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  color: var(--ink-soft);
}

.storefront-v2 .finish-option > span:first-child {
  width: 1.15rem;
  height: 1.15rem;
}

.storefront-v2 .finish-option::after,
.storefront-v2 .finish-option.is-selected::after {
  display: none;
}

.storefront-v2 .finish-option.is-selected {
  border-color: rgba(16, 19, 17, 0.34);
  background: #f2f3ef;
  box-shadow: inset 0 0 0 1px rgba(16, 19, 17, 0.04);
}

.storefront-v2 .config-price {
  margin-block-start: 2rem;
  padding-block-start: 1.6rem;
  border-block-start: 1px solid rgba(16, 19, 17, 0.11);
}

.storefront-v2 .config-price small {
  font-size: 0.8rem;
}

.storefront-v2 .config-price strong {
  font-size: 2.35rem;
}

.storefront-v2 .box-includes {
  margin-block-start: 1.75rem;
  padding-block: 0;
  border: 0;
}

.storefront-v2 .box-includes > p {
  font-size: 0.8rem;
}

.storefront-v2 .box-includes li,
.storefront-v2 .box-includes li:first-child {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.storefront-v2 .config-panel .full-button {
  min-height: 3.5rem;
  margin-block-start: 1.5rem;
}

.storefront-v2 .config-note {
  margin-block-start: 0.75rem;
  font-size: 0.8rem;
}

/* Specifications */
.storefront-v2 .specs-section {
  padding-block: var(--section-space);
}

.storefront-v2 .spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
  border-block: 0;
}

.storefront-v2 .spec-grid > div,
.storefront-v2 .spec-grid > div:first-child,
.storefront-v2 .spec-grid > div:nth-child(2),
.storefront-v2 .spec-grid > div:nth-child(3) {
  min-height: 6.5rem;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: 0.4rem;
  padding: 1.35rem 0;
  border-inline: 0;
  border-block-start: 1px solid rgba(16, 19, 17, 0.14);
}

.storefront-v2 .spec-grid > div:nth-child(odd),
.storefront-v2 .spec-grid > div:nth-child(even) {
  padding-inline: 0;
}

.storefront-v2 .spec-grid > div > span {
  font-size: 0.74rem;
  font-weight: 680;
  letter-spacing: 0.07em;
}

.storefront-v2 .spec-grid strong {
  gap: 0.22rem;
  font-size: 1.22rem;
  line-height: 1.35;
}

.storefront-v2 .spec-grid strong small {
  font-size: 0.82rem;
  line-height: 1.5;
}

.storefront-v2 .spec-note {
  margin-block-start: 1.25rem;
  font-size: 0.82rem;
  line-height: 1.6;
}

/* Preorder timeline */
.storefront-v2 .timeline-section {
  padding-block: var(--section-space);
}

.storefront-v2 .timeline-section .section-heading {
  margin-block-end: 2.75rem;
}

.storefront-v2 .timeline {
  position: relative;
  border: 0;
}

.storefront-v2 .timeline::before {
  position: absolute;
  z-index: 0;
  inset-block: 1.35rem 1.35rem;
  inset-inline-start: 1.34rem;
  display: block;
  width: 1px;
  height: auto;
  background: rgba(16, 19, 17, 0.2);
  content: "";
}

.storefront-v2 .timeline li,
.storefront-v2 .timeline li:first-child,
.storefront-v2 .timeline li:nth-child(2) {
  position: relative;
  z-index: 1;
  min-height: 0;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0 0 1.75rem;
  border: 0;
}

.storefront-v2 .timeline li:last-child {
  padding-block-end: 0;
}

.storefront-v2 .timeline li > span,
.storefront-v2 .timeline li.is-current > span {
  width: 2.7rem;
  height: 2.7rem;
  border-width: 1.5px;
  background: var(--white);
  font-size: 0.72rem;
}

.storefront-v2 .timeline li.is-current > span {
  background: var(--ink);
}

.storefront-v2 .timeline strong {
  font-size: 1.08rem;
  line-height: 1.4;
}

.storefront-v2 .timeline small {
  max-width: 31rem;
  margin-block-start: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.storefront-v2 .promise-note {
  margin-block-start: 1.5rem;
  font-size: 0.84rem;
  line-height: 1.6;
}

/* FAQ */
.storefront-v2 .faq-section {
  padding-block: var(--section-space);
}

.storefront-v2 .faq-section .section-heading {
  margin-block-end: 2.5rem;
}

.storefront-v2 .faq-list details {
  border-block-start-color: rgba(16, 19, 17, 0.14);
}

.storefront-v2 .faq-list summary {
  min-height: 4.5rem;
  padding-block: 1.15rem;
  padding-inline-end: 3.5rem;
  font-size: 1.04rem;
  font-weight: 620;
}

html[dir="rtl"] .storefront-v2 .faq-list summary {
  padding-inline: 3.5rem 0;
}

.storefront-v2 .faq-list summary::after {
  width: 2.15rem;
  height: 2.15rem;
  border-color: rgba(16, 19, 17, 0.24);
  font-size: 1.1rem;
}

.storefront-v2 .faq-list details p {
  max-width: 46rem;
  padding-block-end: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Closing purchase group */
.storefront-v2 .final-cta {
  min-height: 24rem;
  padding: 5rem var(--content-pad);
}

.storefront-v2 .final-copy {
  width: 100%;
  max-width: var(--container);
}

.storefront-v2 .final-copy > .section-kicker {
  display: none;
}

.storefront-v2 .final-purchase {
  margin-block-start: 1.75rem;
}

.storefront-v2 .final-purchase > p {
  gap: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.storefront-v2 .final-purchase > p strong {
  font-size: 1.8rem;
}

.storefront-v2 .final-purchase .light-button {
  min-height: 3.5rem;
  min-width: 17rem;
  margin-block-start: 1.25rem;
}

/* Footer */
.storefront-v2 .site-footer {
  gap: 3rem;
  padding: 4.5rem var(--content-pad) calc(6rem + env(safe-area-inset-bottom));
}

.storefront-v2 .footer-brand p {
  max-width: 24rem;
  font-size: 0.94rem;
  line-height: 1.65;
}

.storefront-v2 .brand-domain {
  font-size: 0.88rem;
}

.storefront-v2 .footer-links {
  gap: 2.5rem;
}

.storefront-v2 .footer-links strong {
  margin-block-end: 0.8rem;
  font-size: 0.78rem;
}

.storefront-v2 .footer-links a {
  min-height: 1.75rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.storefront-v2 .footer-bottom {
  margin-block-start: 0.5rem;
  padding-block-start: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.55;
}

@media (min-width: 48rem) {
  .storefront-v2 .consent-banner {
    width: min(calc(100% - 3rem), 28rem);
  }
}

@media (max-width: 47.99rem) {
  .storefront-v2 .site-header {
    min-height: 4.25rem;
  }

  .storefront-v2 .hero-inner {
    padding-block-start: 3.25rem;
  }

  .storefront-v2 .hero-facts strong {
    font-size: 0.76rem;
  }

  .storefront-v2 .hero-facts small {
    font-size: 0.66rem;
  }

  .storefront-v2 .trust-bar > div,
  .storefront-v2 .trust-bar > div:first-child {
    padding-inline: 0.55rem;
  }

  .storefront-v2 .trust-bar strong {
    font-size: 0.74rem;
  }

  .storefront-v2 .trust-bar small {
    font-size: 0.66rem;
  }

  .storefront-v2 .everyday-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .storefront-v2 .everyday-grid article,
  .storefront-v2 .everyday-grid article:first-child,
  .storefront-v2 .everyday-grid article:nth-child(n) {
    padding: 1.55rem 0;
    border-inline-start: 0;
    border-block-start: 1px solid rgba(255, 255, 255, 0.2);
  }

  .storefront-v2 .everyday-grid article:first-child {
    border-block-start: 0;
  }

  .storefront-v2 .everyday-grid h3 {
    max-width: 24ch;
  }

  .storefront-v2 .everyday-grid p {
    max-width: 38ch;
  }

  .storefront-v2 .app-copy {
    display: contents;
  }

  .storefront-v2 .app-copy h2 {
    grid-row: 1;
  }

  .storefront-v2 .app-lede {
    grid-row: 2;
  }

  .storefront-v2 .app-preview-stage {
    width: 100%;
    grid-row: 3;
    margin-block-start: 2.5rem;
  }

  .storefront-v2 .app-watch-link {
    position: absolute;
    z-index: 1;
    inset-block-end: 3.5rem;
    right: auto;
    left: -0.75rem;
    display: block;
    width: 12.5rem;
    max-width: none;
    margin: 0;
    filter: drop-shadow(0 1rem 1.15rem rgba(16, 19, 17, 0.14));
  }

  .storefront-v2 .app-device {
    z-index: 2;
    width: min(61vw, 14.5rem);
    justify-self: end;
    margin-right: 0.75rem;
    margin-left: auto;
  }

  .storefront-v2 .app-points {
    width: 100%;
    grid-row: 4;
  }

  .storefront-v2 .app-copy .secondary-button {
    grid-row: 5;
    justify-self: start;
  }

  .storefront-v2 .spec-grid {
    column-gap: 1.5rem;
  }

  .storefront-v2 .spec-grid > div,
  .storefront-v2 .spec-grid > div:first-child,
  .storefront-v2 .spec-grid > div:nth-child(2),
  .storefront-v2 .spec-grid > div:nth-child(3) {
    min-height: 7rem;
  }
}

@media (min-width: 48rem) {
  .storefront-v2 .display-story {
    grid-template-columns: minmax(19rem, 0.78fr) minmax(27rem, 1.22fr);
    min-height: 34rem;
  }

  .storefront-v2 .display-copy {
    padding: 3.5rem;
  }

  .storefront-v2 .display-product {
    min-height: 34rem;
  }

  .storefront-v2 .essential-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .storefront-v2 .essential-grid article,
  .storefront-v2 .essential-grid article:first-child {
    min-height: 13rem;
    padding: 2rem 2.25rem;
    border-block-start: 0;
    border-inline-start: 1px solid rgba(16, 19, 17, 0.11);
  }

  .storefront-v2 .essential-grid article:first-child {
    padding-inline-start: 0;
    border-inline-start: 0;
  }

  .storefront-v2 .essential-grid article:last-child {
    padding-inline-end: 0;
  }

  .storefront-v2 .everyday-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront-v2 .everyday-grid article,
  .storefront-v2 .everyday-grid article:first-child {
    min-height: 10.75rem;
    padding: 1.75rem 2rem;
    border-block-start: 1px solid rgba(255, 255, 255, 0.2);
    border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
  }

  .storefront-v2 .everyday-grid article:nth-child(odd) {
    padding-inline-start: 0;
    border-inline-start: 0;
  }

  .storefront-v2 .everyday-grid article:nth-child(-n + 2) {
    border-block-start: 0;
  }

  .storefront-v2 .app-section {
    grid-template-columns: minmax(22rem, 0.9fr) minmax(28rem, 1.1fr);
    align-items: center;
    gap: 4rem;
  }

  .storefront-v2 .app-preview-stage {
    min-height: 38rem;
  }

  .storefront-v2 .app-device {
    width: 17.25rem;
  }

  .storefront-v2 .config-visual {
    min-height: 34rem;
  }

  .storefront-v2 .config-visual img {
    width: 33.5rem;
  }

  .storefront-v2 .site-footer {
    padding-block-end: 2.5rem;
  }
}

@media (min-width: 72rem) {
  .storefront-v2 .desktop-nav {
    gap: 2.5rem;
  }

  .storefront-v2 .desktop-nav a {
    font-size: 0.86rem;
  }

  .storefront-v2 .hero-inner {
    min-height: 45rem;
    grid-template-columns: minmax(25rem, 0.9fr) minmax(34rem, 1.1fr);
    grid-template-rows: auto auto;
    align-content: center;
    align-items: start;
    gap: 2.25rem 4.5rem;
    padding-block: 4.75rem;
  }

  .storefront-v2 .hero-copy {
    align-self: end;
  }

  .storefront-v2 .hero h1 {
    font-size: clamp(4.35rem, 5.1vw, 4.8rem);
  }

  .storefront-v2 .hero-lede {
    font-size: 1.12rem;
  }

  .storefront-v2 .hero-facts strong {
    font-size: 0.92rem;
  }

  .storefront-v2 .hero-facts small {
    font-size: 0.74rem;
  }

  .storefront-v2 .hero-product {
    min-height: 38rem;
    align-self: stretch;
  }

  .storefront-v2 .hero-product .hero-watch {
    width: min(112%, 38rem);
    transform: translate(1%, 1%);
  }

  .storefront-v2 .hero-purchase {
    align-self: start;
  }

  .storefront-v2 .hero-price strong {
    font-size: 2.2rem;
  }

  .storefront-v2 .hero-actions .primary-button {
    min-width: 15.5rem;
  }

  .storefront-v2 :is(.section-heading, .story-heading, .app-copy) h2 {
    font-size: 3.65rem;
  }

  .storefront-v2 .story-heading {
    grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.76fr);
    align-items: start;
    column-gap: 5rem;
  }

  .storefront-v2 .story-heading > p:last-child {
    grid-row: 2;
    align-self: start;
    margin-block-start: 0.2rem;
  }

  .storefront-v2 .display-story {
    grid-template-columns: minmax(20rem, 0.78fr) minmax(31rem, 1.22fr);
    min-height: 35rem;
  }

  .storefront-v2 .display-copy {
    padding: 4rem;
  }

  .storefront-v2 .display-product {
    min-height: 35rem;
  }

  .storefront-v2 .display-product img {
    width: min(130%, 47rem);
  }

  .storefront-v2 .everyday-section {
    grid-template-columns: minmax(20rem, 0.4fr) minmax(35rem, 0.6fr);
    align-items: start;
    gap: 6rem;
  }

  .storefront-v2 .everyday-intro h2 {
    max-width: 10ch;
    font-size: 4rem;
  }

  .storefront-v2 .everyday-grid article,
  .storefront-v2 .everyday-grid article:first-child {
    min-height: 11rem;
  }

  .storefront-v2 .app-section {
    grid-template-columns: minmax(26rem, 0.9fr) minmax(32rem, 1.1fr);
    gap: 5rem;
  }

  .storefront-v2 .app-preview-stage {
    min-height: 40rem;
    grid-template-columns: minmax(12rem, 0.85fr) minmax(18rem, 1fr);
    padding-inline: 2rem 3rem;
  }

  .storefront-v2 .app-watch-link {
    width: min(156%, 21.5rem);
    margin-inline-end: -1rem;
  }

  .storefront-v2 .app-device {
    width: 16.5rem;
    transform: none;
  }

  .storefront-v2 .order-section {
    grid-template-columns: minmax(32rem, 1.06fr) minmax(27rem, 0.94fr);
    gap: 2rem 4.5rem;
  }

  html[dir="rtl"] .storefront-v2 .order-section {
    grid-template-columns: minmax(27rem, 0.94fr) minmax(32rem, 1.06fr);
  }

  .storefront-v2 .order-section .centered-heading h2 {
    font-size: 3.45rem;
  }

  .storefront-v2 .config-visual {
    min-height: 36rem;
  }

  .storefront-v2 .config-visual img {
    width: 35rem;
  }

  .storefront-v2 .config-panel {
    width: min(100%, 30rem);
  }

  .storefront-v2 .specs-section {
    grid-template-columns: minmax(18rem, 0.34fr) minmax(0, 0.66fr);
    gap: 1.5rem 5rem;
  }

  .storefront-v2 .spec-grid {
    grid-column: 2;
  }

  .storefront-v2 .spec-note {
    grid-column: 2;
  }

  .storefront-v2 .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
  }

  .storefront-v2 .timeline::before {
    inset-block: 1.34rem auto;
    inset-inline: 1.35rem;
    width: auto;
    height: 2px;
  }

  .storefront-v2 .timeline li,
  .storefront-v2 .timeline li:first-child,
  .storefront-v2 .timeline li:nth-child(2) {
    display: block;
    padding: 0 2rem 0 0;
  }

  html[dir="rtl"] .storefront-v2 .timeline li,
  html[dir="rtl"] .storefront-v2 .timeline li:first-child,
  html[dir="rtl"] .storefront-v2 .timeline li:nth-child(2) {
    padding: 0 0 0 2rem;
  }

  .storefront-v2 .timeline li > span {
    margin-block-end: 1.25rem;
  }

  .storefront-v2 .timeline strong {
    font-size: 1.16rem;
  }

  .storefront-v2 .timeline small {
    max-width: 25ch;
  }

  .storefront-v2 .faq-section {
    grid-template-columns: minmax(18rem, 0.35fr) minmax(34rem, 0.65fr);
    gap: 6rem;
  }

  .storefront-v2 .faq-section .section-heading {
    margin: 0;
  }

  .storefront-v2 .faq-section .section-heading h2 {
    max-width: 9ch;
    font-size: 3.75rem;
  }

  .storefront-v2 .final-cta {
    min-height: 26rem;
    padding-block: 6rem;
  }

  .storefront-v2 .final-copy {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, auto);
    grid-template-rows: auto;
    align-items: center;
    gap: 6rem;
  }

  .storefront-v2 .final-copy h2 {
    grid-column: 1;
    grid-row: 1;
    max-width: 10ch;
    font-size: 4rem;
  }

  .storefront-v2 .final-purchase {
    min-width: 18rem;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-items: start;
    margin: 0;
  }

  .storefront-v2 .final-purchase > p {
    justify-items: start;
  }

  .storefront-v2 .final-purchase > p strong {
    font-size: 2.15rem;
  }

  .storefront-v2 .site-footer {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(36rem, 1.28fr);
    gap: 4.5rem;
    padding-block: 4.5rem 2.5rem;
  }

  .storefront-v2 .footer-bottom {
    margin-block-start: 0.75rem;
  }
}

@media (min-width: 90rem) {
  :root {
    --container: clamp(90rem, 88vw, 108rem);
  }

  .storefront-v2 .site-header {
    padding-inline: clamp(3rem, 4vw, 5rem);
  }

  .storefront-v2 .hero-inner {
    min-height: clamp(48rem, 70vh, 56rem);
    grid-template-columns: minmax(30rem, 0.9fr) minmax(40rem, 1.1fr);
    column-gap: clamp(4.5rem, 5vw, 7rem);
    padding-block: clamp(4.5rem, 6vh, 6rem);
  }

  .storefront-v2 .hero-copy {
    max-width: 42rem;
  }

  .storefront-v2 .hero-purchase {
    max-width: 36rem;
  }

  .storefront-v2 .hero h1 {
    font-size: clamp(4.8rem, 4.2vw, 5.75rem);
  }

  html[lang="ar"] .storefront-v2 .hero h1 {
    font-size: clamp(3.6rem, 3.4vw, 4.5rem);
  }

  .storefront-v2 .hero-product {
    min-height: clamp(40rem, 55vh, 48rem);
  }

  .storefront-v2 .hero-product .hero-watch {
    width: min(92%, clamp(40rem, 34vw, 48rem));
  }
}

@media (min-width: 72rem) and (max-height: 50rem) {
  .storefront-v2 .hero-inner {
    min-height: 38rem;
    gap: 1.5rem 3.5rem;
    padding-block: 3rem;
  }

  .storefront-v2 .hero-product {
    min-height: 31rem;
  }

  .storefront-v2 .hero-product .hero-watch {
    width: min(106%, 31.5rem);
  }

  .storefront-v2 .hero-lede {
    margin-block-start: 1rem;
  }

  .storefront-v2 .hero-facts {
    margin-block-start: 1.25rem;
  }

  .storefront-v2 .hero-actions {
    margin-block-start: 1.1rem;
  }
}

@media (max-width: 23rem) {
  .storefront-v2 .hero-facts {
    grid-template-columns: 1fr;
  }

  .storefront-v2 .hero-facts > div,
  .storefront-v2 .hero-facts > div:first-child {
    min-height: 3rem;
    padding: 0.65rem 0;
    border-inline-start: 0;
    border-block-start: 1px solid rgba(16, 19, 17, 0.1);
  }

  .storefront-v2 .hero-facts > div:first-child {
    border-block-start: 0;
  }

  .storefront-v2 .spec-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (hover: hover) and (pointer: fine) {
  .storefront-v2 .finish-option:hover {
    border-color: rgba(16, 19, 17, 0.2);
    background: #f7f7f4;
  }

  .storefront-v2 .finish-option.is-selected:hover {
    border-color: rgba(16, 19, 17, 0.4);
    background: #f2f3ef;
  }
}

/* Mobile art direction — compact, readable and intentionally sequenced. */
.storefront-v2 .footer-mobile-links {
  display: none;
}

.storefront-v2 .mobile-buybar[data-visible="false"] {
  visibility: hidden;
  pointer-events: none;
}

.storefront-v2 .mobile-buybar[data-visible="true"] {
  visibility: visible;
  pointer-events: auto;
}

html[dir="rtl"] .storefront-v2 :is(.lucide-arrow-right, .lucide-arrow-left) {
  transform: scaleX(-1);
}

@media (max-width: 47.99rem) {
  :root {
    --page-gutter: 1rem;
    --section-space: 3.5rem;
    --frame: min(calc(100% - 2rem), var(--container));
  }

  body.storefront-v2 {
    font-size: 1rem;
  }

  .storefront-v2 .launch-strip {
    min-height: 2rem;
    padding: 0.4rem max(1rem, env(safe-area-inset-right)) 0.4rem max(1rem, env(safe-area-inset-left));
    font-size: 0.69rem;
  }

  .storefront-v2 .site-header {
    min-height: 3.75rem;
    padding-inline: max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-left));
  }

  .storefront-v2 .site-header > .brand {
    min-height: 2.75rem;
  }

  .storefront-v2 .brand-mark {
    width: 1.65rem;
    height: 1.65rem;
  }

  .storefront-v2 .brand-word {
    font-size: 0.86rem;
  }

  .storefront-v2 .header-actions {
    margin-inline-start: auto;
  }

  .storefront-v2 .lang-button {
    width: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0;
  }

  .storefront-v2 .header-cta {
    display: none !important;
  }

  .storefront-v2 :is(.product-story, .everyday-section, .order-section, .specs-section, .timeline-section, .faq-section) {
    padding: var(--section-space) max(1rem, env(safe-area-inset-right)) var(--section-space) max(1rem, env(safe-area-inset-left));
  }

  .storefront-v2 :is(.story-heading, .section-heading, .everyday-intro, .app-copy) h2 {
    max-width: 13ch;
    font-size: 2rem;
    line-height: 1.12;
  }

  html[lang="ar"] .storefront-v2 :is(.story-heading, .section-heading, .everyday-intro, .app-copy) h2 {
    font-size: 1.95rem;
    line-height: 1.32;
  }

  .storefront-v2 :is(.story-heading > p:last-child, .section-heading > p:not(.section-kicker), .everyday-intro > p:last-child, .app-lede) {
    font-size: 0.97rem;
    line-height: 1.65;
  }

  html[lang="ar"] .storefront-v2 :is(.story-heading > p:last-child, .section-heading > p:not(.section-kicker), .everyday-intro > p:last-child, .app-lede) {
    line-height: 1.78;
  }

  .storefront-v2 .section-kicker {
    margin-block-end: 0.65rem;
    font-size: 0.74rem;
  }

  /* Hero: proposition, product, then one compact purchase unit. */
  .storefront-v2 .hero-inner {
    gap: 1.5rem;
    padding: 2rem 0 3.5rem;
  }

  .storefront-v2 .hero-model {
    margin-block-end: 0.65rem;
    font-size: 0.72rem;
  }

  .storefront-v2 .hero h1 {
    max-width: 10ch;
    font-size: 2.5rem;
    line-height: 1.04;
  }

  html[lang="ar"] .storefront-v2 .hero h1 {
    max-width: 12ch;
    font-size: 2.25rem;
    line-height: 1.3;
  }

  .storefront-v2 .hero-lede {
    max-width: 36rem;
    margin-block-start: 0.75rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .storefront-v2 .hero-facts {
    display: none;
  }

  .storefront-v2 .hero-product {
    min-height: 19.5rem;
    margin: 0;
    padding: 0.35rem;
  }

  .storefront-v2 .hero-product .hero-watch {
    width: min(108%, 20rem);
  }

  .storefront-v2 .hero-purchase {
    margin: 0;
  }

  .storefront-v2 .hero-price > span {
    margin-block-end: 0.35rem;
    font-size: 0.78rem;
  }

  .storefront-v2 .hero-price strong {
    font-size: 2.15rem;
  }

  .storefront-v2 .hero-price .retail-price > span small {
    display: none;
  }

  .storefront-v2 .hero-actions {
    margin-block-start: 1rem;
  }

  .storefront-v2 .hero-actions .primary-button {
    min-height: 3.25rem;
    font-size: 1rem;
  }

  .storefront-v2 .hero-note {
    margin-block-start: 0.75rem;
    font-size: 0.8rem;
  }

  /* Three compact reassurance points, without another wall of copy. */
  .storefront-v2 .trust-bar {
    width: var(--frame);
  }

  .storefront-v2 .trust-bar > div,
  .storefront-v2 .trust-bar > div:first-child {
    min-height: 4rem;
    padding: 0.75rem 0.45rem;
  }

  .storefront-v2 .trust-bar strong {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .storefront-v2 .trust-bar small {
    display: none;
  }

  /* Product story: one strong visual and three concise proof points. */
  .storefront-v2 .story-heading {
    margin-block-end: 1.5rem;
  }

  .storefront-v2 .story-heading > p:last-child {
    margin-block-start: 0.75rem;
  }

  .storefront-v2 .display-story {
    min-height: 0;
  }

  .storefront-v2 .display-copy {
    padding: 1.5rem;
  }

  .storefront-v2 .display-copy h3 {
    font-size: 1.75rem;
    line-height: 1.15;
  }

  html[lang="ar"] .storefront-v2 .display-copy h3 {
    font-size: 1.7rem;
    line-height: 1.38;
  }

  .storefront-v2 .display-copy > p:not(.section-kicker) {
    margin-block-start: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .storefront-v2 .display-specs {
    gap: 2rem;
    margin-block-start: 1.25rem;
  }

  .storefront-v2 .display-specs dt {
    font-size: 0.76rem;
  }

  .storefront-v2 .display-specs dd {
    font-size: 1.12rem;
  }

  .storefront-v2 .display-product {
    min-height: 20rem;
  }

  .storefront-v2 .display-product img {
    inset-block-start: 52%;
    inset-inline-start: 51%;
    width: min(126%, 25rem);
  }

  .storefront-v2 .essential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
    margin-block-start: 2rem;
    border: 0;
  }

  .storefront-v2 .essential-grid article,
  .storefront-v2 .essential-grid article:first-child {
    min-height: 0;
    padding: 0;
    border: 0;
  }

  .storefront-v2 .essential-grid article:last-child {
    grid-column: 1 / -1;
    padding-block-start: 1.25rem;
    border-block-start: 1px solid rgba(16, 19, 17, 0.1);
  }

  .storefront-v2 .feature-value {
    margin-block-end: 0.55rem;
    font-size: 0.78rem;
  }

  .storefront-v2 .essential-grid h3 {
    max-width: 18ch;
    font-size: 1.16rem;
    line-height: 1.28;
  }

  .storefront-v2 .essential-grid p {
    margin-block-start: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  /* Dark chapter: four benefits, no decorative divider grid. */
  .storefront-v2 .everyday-section {
    gap: 2rem;
  }

  .storefront-v2 .everyday-intro > p:last-child {
    margin-block-start: 0.75rem;
  }

  .storefront-v2 .everyday-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
    margin: 0;
    border: 0;
  }

  .storefront-v2 .everyday-grid article,
  .storefront-v2 .everyday-grid article:first-child,
  .storefront-v2 .everyday-grid article:nth-child(n) {
    min-height: 0;
    padding: 0;
    border: 0;
  }

  .storefront-v2 .everyday-grid article::before {
    margin-block-end: 0.55rem;
    font-size: 0.76rem;
  }

  .storefront-v2 .everyday-grid h3 {
    max-width: 22ch;
    font-size: 1.14rem;
    line-height: 1.35;
  }

  .storefront-v2 .everyday-grid p {
    max-width: 30ch;
    margin-block-start: 0.4rem;
    font-size: 0.88rem;
    line-height: 1.58;
  }

  /* App story: visual first, supporting detail second. */
  .storefront-v2 .app-section {
    gap: 0;
    padding: var(--section-space) max(1rem, env(safe-area-inset-right)) var(--section-space) max(1rem, env(safe-area-inset-left));
  }

  .storefront-v2 .app-lede {
    margin-block-start: 0.75rem;
  }

  .storefront-v2 .app-preview-stage {
    min-height: 31rem;
    margin-block-start: 1.5rem;
  }

  .storefront-v2 .app-watch-link {
    inset-block-end: 3rem;
    right: auto;
    left: -0.5rem;
    width: 12.5rem;
  }

  .storefront-v2 .app-device {
    width: min(68vw, 16.25rem);
    margin-right: 0.5rem;
  }

  .storefront-v2 .app-points {
    gap: 1rem;
    margin-block-start: 1.5rem;
    border: 0;
  }

  .storefront-v2 .app-points li,
  .storefront-v2 .app-points li:first-child {
    padding: 0;
    border: 0;
  }

  .storefront-v2 .app-points strong {
    font-size: 1rem;
  }

  .storefront-v2 .app-points small {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .storefront-v2 .app-copy .secondary-button {
    min-height: 3.25rem;
    margin-block-start: 1.5rem;
    font-size: 0.95rem;
  }

  /* Configurator: image, finish, price, CTA, reassurance. */
  .storefront-v2 .order-section .section-heading {
    margin-block-end: 1.5rem;
  }

  .storefront-v2 .product-configurator {
    gap: 1.5rem;
  }

  .storefront-v2 .config-visual {
    min-height: 21rem;
  }

  .storefront-v2 .config-visual img {
    width: min(112%, 22rem);
  }

  .storefront-v2 .config-panel {
    width: 100%;
  }

  .storefront-v2 .config-heading {
    margin-block-end: 0.65rem;
  }

  .storefront-v2 .finish-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .storefront-v2 .finish-option,
  .storefront-v2 .finish-option:first-child,
  .storefront-v2 .finish-option:nth-child(n) {
    min-height: 4.75rem;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.35rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    font-size: 0.78rem;
    line-height: 1.25;
    text-align: center;
  }

  .storefront-v2 .finish-option.is-selected {
    border-color: rgba(16, 19, 17, 0.34);
  }

  .storefront-v2 .config-price {
    margin-block-start: 1.5rem;
    padding-block-start: 1.25rem;
  }

  .storefront-v2 .config-price strong {
    font-size: 2.15rem;
  }

  .storefront-v2 .config-panel .full-button {
    min-height: 3.25rem;
    margin-block-start: 1.25rem;
    font-size: 1rem;
  }

  .storefront-v2 .config-note {
    margin-block-start: 0.65rem;
  }

  .storefront-v2 .box-includes {
    margin-block-start: 1.25rem;
    padding: 1rem 0 0;
    border-block-start: 1px solid rgba(16, 19, 17, 0.1);
  }

  .storefront-v2 .box-includes ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1rem;
    margin-block-start: 0.55rem;
  }

  .storefront-v2 .box-includes li,
  .storefront-v2 .box-includes li:first-child {
    padding: 0;
    border: 0;
    font-size: 0.82rem;
  }

  /* Specifications become one predictable label/value list. */
  .storefront-v2 .specs-section .section-heading {
    margin-block-end: 1.5rem;
  }

  .storefront-v2 .spec-grid {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .storefront-v2 .spec-grid > div,
  .storefront-v2 .spec-grid > div:first-child,
  .storefront-v2 .spec-grid > div:nth-child(n) {
    min-height: 4.5rem;
    grid-template-columns: minmax(7.25rem, 0.42fr) minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: 1rem;
    padding: 1rem 0;
    border-inline: 0;
    border-block-start: 1px solid rgba(16, 19, 17, 0.12);
  }

  .storefront-v2 .spec-grid > div:first-child {
    border-block-start: 0;
  }

  .storefront-v2 .spec-grid > div > span {
    font-size: 0.8rem;
  }

  .storefront-v2 .spec-grid strong {
    justify-self: end;
    justify-items: end;
    font-size: 1rem;
    text-align: end;
  }

  .storefront-v2 .spec-grid strong small {
    font-size: 0.78rem;
  }

  .storefront-v2 .spec-note {
    margin-block-start: 1rem;
    font-size: 0.79rem;
  }

  /* Compact support and conversion ending. */
  .storefront-v2 .timeline-section .section-heading,
  .storefront-v2 .faq-section .section-heading {
    margin-block-end: 1.5rem;
  }

  .storefront-v2 .timeline li,
  .storefront-v2 .timeline li:first-child,
  .storefront-v2 .timeline li:nth-child(2) {
    padding-block-end: 1.25rem;
  }

  .storefront-v2 .timeline strong {
    font-size: 1rem;
  }

  .storefront-v2 .timeline small {
    font-size: 0.86rem;
  }

  .storefront-v2 .faq-list summary {
    min-height: 3.75rem;
    padding-block: 0.85rem;
    padding-inline-end: 3rem;
    font-size: 1rem;
  }

  html[dir="rtl"] .storefront-v2 .faq-list summary {
    padding-inline: 0 3rem;
  }

  .storefront-v2 .faq-list summary::after {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .storefront-v2 .faq-list details p {
    padding-block-end: 1.25rem;
    font-size: 0.94rem;
  }

  .storefront-v2 .final-cta {
    min-height: 0;
    padding: 3.5rem max(1rem, env(safe-area-inset-right)) 3.5rem max(1rem, env(safe-area-inset-left));
  }

  .storefront-v2 .final-copy {
    gap: 1.5rem;
  }

  .storefront-v2 .final-copy h2 {
    max-width: 13ch;
    font-size: 2.25rem;
    line-height: 1.16;
  }

  html[lang="ar"] .storefront-v2 .final-copy h2 {
    font-size: 2rem;
    line-height: 1.38;
  }

  .storefront-v2 .final-purchase {
    margin-block-start: 0;
  }

  .storefront-v2 .final-purchase > p strong {
    font-size: 2rem;
  }

  .storefront-v2 .final-purchase .light-button {
    width: min(100%, 17rem);
    min-height: 3.25rem;
    margin-block-start: 1rem;
    font-size: 0.95rem;
  }

  .storefront-v2 .site-footer {
    gap: 1.75rem;
    padding: 3.5rem max(1rem, env(safe-area-inset-right)) calc(2rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  }

  .storefront-v2 .footer-brand p,
  .storefront-v2 .brand-domain,
  .storefront-v2 .footer-links {
    display: none;
  }

  .storefront-v2 .footer-mobile-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-block: 1px solid rgba(16, 19, 17, 0.11);
  }

  .storefront-v2 .footer-mobile-links a {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--ink-soft);
    font-size: 0.9rem;
    text-decoration: none;
  }

  .storefront-v2 .footer-bottom {
    display: grid;
    justify-content: stretch;
    gap: 0.75rem;
    margin: 0;
    padding-block-start: 1.25rem;
    font-size: 0.78rem;
  }

  .storefront-v2 .footer-bottom button {
    min-height: 2.75rem;
    justify-self: start;
    text-align: start;
  }

  .storefront-v2 .mobile-buybar {
    min-height: calc(4.25rem + env(safe-area-inset-bottom));
  }

  .storefront-v2 .mobile-buybar strong {
    font-size: 1.08rem;
  }

  .storefront-v2 .mobile-buybar button {
    min-height: 2.75rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 22.5rem) and (max-width: 47.99rem) {
  .storefront-v2 .everyday-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
  }
}

@media (max-width: 22.49rem) {
  .storefront-v2 .essential-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .storefront-v2 .essential-grid article:last-child {
    grid-column: auto;
  }
}

/* Keep the finish configurator's visual logic consistent with the hero:
   controls lead, then the product image. RTL mirrors the composition. */
@media (min-width: 48rem) and (max-width: 71.99rem) {
  html[dir="ltr"] .storefront-v2 .product-configurator {
    grid-template-columns: minmax(20rem, 0.95fr) minmax(0, 1.05fr);
  }

  html[dir="ltr"] .storefront-v2 .config-panel {
    grid-column: 1;
    grid-row: 1;
  }

  html[dir="ltr"] .storefront-v2 .config-visual {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (min-width: 72rem) {
  html[dir="ltr"] .storefront-v2 .order-section {
    grid-template-columns: minmax(27rem, 0.94fr) minmax(32rem, 1.06fr);
  }

  html[dir="ltr"] .storefront-v2 .order-section .section-heading,
  html[dir="ltr"] .storefront-v2 .config-panel {
    grid-column: 1;
  }

  html[dir="ltr"] .storefront-v2 .config-visual {
    grid-column: 2;
  }

}

/* A quiet, image-first finish selector shared by desktop and mobile. */
.storefront-v2 .hero-finish {
  position: absolute;
  z-index: 2;
  bottom: 0.75rem;
  left: 50%;
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  transform: translateX(-50%);
}

.storefront-v2 .hero-colors {
  gap: 0;
}

.storefront-v2 .hero-colors button,
.storefront-v2 .hero-colors button.is-selected {
  width: 2.75rem;
  height: 2.75rem;
  border-color: transparent;
}

.storefront-v2 .hero-colors button > span {
  width: 0.68rem;
  height: 0.68rem;
  opacity: 0.62;
  transition: opacity 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.storefront-v2 .hero-colors button.is-selected > span {
  opacity: 1;
  box-shadow: 0 0 0 0.22rem var(--paper-deep), 0 0 0 0.29rem rgba(16, 19, 17, 0.52);
  transform: scale(1.03);
}

@media (hover: hover) and (pointer: fine) {
  .storefront-v2 .hero-colors button:hover {
    border-color: transparent;
  }

  .storefront-v2 .hero-colors button:hover > span {
    opacity: 1;
  }
}

@media (max-width: 47.99rem) {
  .storefront-v2 .hero-lede {
    display: none;
  }

  .storefront-v2 .hero h1 {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.15rem);
    line-height: 1.18;
    white-space: nowrap;
  }

  html[lang="ar"] .storefront-v2 .hero h1 {
    max-width: none;
    font-size: clamp(1.72rem, 8vw, 2.15rem);
    white-space: nowrap;
  }

  .storefront-v2 .hero-product {
    min-height: 20.5rem;
    grid-template-rows: minmax(0, 1fr);
    padding: 0.35rem;
  }
}

/* Effective large-screen scale sits last so the final art-direction layer cannot cap it. */
@media (min-width: 90rem) {
  :root {
    --container: clamp(79rem, 88vw, 112rem);
    --page-gutter: clamp(3rem, 4vw, 5rem);
    --section-space: clamp(6rem, 6vw, 7.5rem);
  }

  .storefront-v2 .site-header {
    min-height: 5rem;
    padding-inline: var(--page-gutter);
  }

  .storefront-v2 .brand-mark {
    width: 2rem;
    height: 2rem;
  }

  .storefront-v2 .brand-word {
    font-size: 0.96rem;
  }

  .storefront-v2 .desktop-nav {
    gap: clamp(2.75rem, 3vw, 4rem);
  }

  .storefront-v2 .desktop-nav a {
    font-size: 0.94rem;
  }

  .storefront-v2 .header-select,
  .storefront-v2 .lang-button {
    font-size: 0.82rem;
  }

  .storefront-v2 .hero-inner {
    grid-template-columns: minmax(32rem, 0.86fr) minmax(42rem, 1.14fr);
    gap: 2.5rem clamp(4.5rem, 5vw, 6.5rem);
  }

  .storefront-v2 .hero-copy {
    max-width: 43rem;
  }

  .storefront-v2 .hero-purchase {
    max-width: 36rem;
  }

  .storefront-v2 .hero-lede {
    max-width: 38rem;
    font-size: 1.18rem;
  }

  .storefront-v2 .hero-facts strong {
    font-size: 1rem;
  }

  .storefront-v2 .hero-facts small {
    font-size: 0.8rem;
  }

  .storefront-v2 .hero-price strong {
    font-size: 2.5rem;
  }

  .storefront-v2 .hero-actions .primary-button {
    min-width: 17rem;
    min-height: 3.7rem;
  }

  .storefront-v2 .trust-bar > div,
  .storefront-v2 .trust-bar > div:first-child {
    min-height: 6rem;
  }

  .storefront-v2 .trust-bar strong {
    font-size: 0.94rem;
  }

  .storefront-v2 .trust-bar small {
    font-size: 0.8rem;
  }

  .storefront-v2 .story-heading {
    grid-template-columns: minmax(0, 1fr) minmax(27rem, 0.78fr);
    column-gap: clamp(6rem, 8vw, 10rem);
  }

  .storefront-v2 .display-story {
    grid-template-columns: minmax(28rem, 0.74fr) minmax(42rem, 1.26fr);
    min-height: 42rem;
  }

  .storefront-v2 .display-copy {
    padding: clamp(4rem, 4vw, 5.5rem);
  }

  .storefront-v2 .display-product {
    min-height: 42rem;
  }

  .storefront-v2 .display-product img {
    width: min(132%, 58rem);
  }

  .storefront-v2 .essential-grid article,
  .storefront-v2 .essential-grid article:first-child {
    min-height: 15rem;
    padding-block: 2.75rem;
  }

  .storefront-v2 .everyday-section {
    grid-template-columns: minmax(27rem, 0.38fr) minmax(46rem, 0.62fr);
    gap: clamp(7rem, 8vw, 10rem);
  }

  .storefront-v2 .everyday-intro h2 {
    font-size: 4.65rem;
  }

  .storefront-v2 .app-section {
    grid-template-columns: minmax(34rem, 0.88fr) minmax(44rem, 1.12fr);
    gap: clamp(6rem, 7vw, 9rem);
  }

  .storefront-v2 .app-preview-stage {
    min-height: 47rem;
  }

  .storefront-v2 .app-device {
    width: 19.5rem;
  }

  .storefront-v2 .app-watch-link {
    width: min(160%, 26rem);
  }

  .storefront-v2 .order-section,
  html[dir="rtl"] .storefront-v2 .order-section {
    grid-template-columns: minmax(32rem, 0.82fr) minmax(44rem, 1.18fr);
    gap: 2.5rem clamp(6rem, 7vw, 9rem);
  }

  .storefront-v2 .order-section .centered-heading h2 {
    font-size: 4.15rem;
  }

  .storefront-v2 .config-visual {
    min-height: 47rem;
  }

  .storefront-v2 .config-visual img {
    width: 46rem;
  }

  .storefront-v2 .config-panel {
    width: min(100%, 34rem);
  }

  .storefront-v2 .specs-section {
    grid-template-columns: minmax(23rem, 0.3fr) minmax(0, 0.7fr);
    gap: 2rem clamp(6rem, 8vw, 10rem);
  }

  .storefront-v2 .faq-section {
    grid-template-columns: minmax(23rem, 0.32fr) minmax(42rem, 0.68fr);
    gap: clamp(7rem, 9vw, 11rem);
  }

  .storefront-v2 .final-copy {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, auto);
    gap: clamp(7rem, 9vw, 11rem);
  }

  .storefront-v2 .site-footer {
    grid-template-columns: minmax(24rem, 0.68fr) minmax(48rem, 1.32fr);
    gap: clamp(6rem, 8vw, 10rem);
  }
}

@media (min-width: 90rem) and (min-height: 52rem) {
  .storefront-v2 .hero-inner {
    min-height: clamp(50rem, 78vh, 58rem);
    padding-block: clamp(5rem, 6vh, 6.5rem);
  }

  .storefront-v2 .hero h1 {
    font-size: clamp(4.9rem, 4.3vw, 6rem);
  }

  html[lang="ar"] .storefront-v2 .hero h1 {
    font-size: clamp(3.9rem, 3.6vw, 5rem);
  }

  .storefront-v2 .hero-product {
    min-height: clamp(42rem, 58vh, 50rem);
  }

  .storefront-v2 .hero-product .hero-watch {
    width: min(94%, clamp(42rem, 34vw, 50rem));
  }

  .storefront-v2 :is(.section-heading, .story-heading, .app-copy) h2 {
    font-size: clamp(4rem, 3.5vw, 4.75rem);
  }

  html[lang="ar"] .storefront-v2 :is(.section-heading, .story-heading, .app-copy) h2 {
    font-size: clamp(3.55rem, 3.2vw, 4.35rem);
  }

  .storefront-v2 .final-copy h2 {
    font-size: clamp(4.5rem, 3.8vw, 5.25rem);
  }
}
