:root {
  --ink: oklch(13% 0.014 35);
  --ink-soft: oklch(21% 0.018 34);
  --ivory: oklch(96% 0.018 78);
  --ivory-deep: oklch(91% 0.031 70);
  --stone: oklch(83% 0.042 66);
  --sand: oklch(75% 0.055 62);
  --rose: oklch(58% 0.118 18);
  --rose-soft: oklch(74% 0.07 24);
  --berry: oklch(33% 0.13 13);
  --berry-bright: oklch(47% 0.18 17);
  --champagne: oklch(72% 0.09 74);
  --champagne-pale: oklch(88% 0.05 77);
  --paper: oklch(98% 0.012 78);
  --line: oklch(73% 0.034 62 / 0.45);
  --shadow: 0 28px 80px oklch(17% 0.025 32 / 0.26);
  --display: "Bodoni Moda", Georgia, serif;
  --sans: "Albert Sans", "Avenir Next", "Segoe UI", sans-serif;
  --arabic: "Noto Sans Arabic", "Segoe UI", Tahoma, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--ivory);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding: clamp(0.7rem, 1.6vw, 1.2rem) clamp(1rem, 4vw, 4.5rem);
  color: var(--ivory);
  transition: background 500ms var(--ease), color 500ms var(--ease), box-shadow 500ms var(--ease);
}

.site-header.is-scrolled {
  background: oklch(96% 0.018 78 / 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: oklch(96% 0.018 78 / 0.86);
  overflow: hidden;
}

.brand-mark img {
  width: 3.1rem;
  height: 3.1rem;
  object-fit: contain;
}

.site-nav {
  justify-self: end;
  display: flex;
  gap: clamp(0.8rem, 2.2vw, 2rem);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 800;
  font-size: 0.78rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lang-toggle {
  justify-self: end;
  min-width: 2.7rem;
  min-height: 2.7rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: oklch(96% 0.018 78 / 0.12);
  color: inherit;
  cursor: pointer;
  font: 900 0.78rem/1 var(--sans);
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
}

html[dir="rtl"] body {
  font-family: var(--arabic);
}

html[dir="rtl"] h1,
html[dir="rtl"] h2 {
  font-family: var(--arabic);
  font-weight: 900;
  line-height: 1.05;
}

html[dir="rtl"] .site-header {
  grid-template-columns: auto auto 1fr auto;
}

html[dir="rtl"] .site-nav {
  justify-self: start;
}

html[dir="rtl"] .header-cta,
html[dir="rtl"] .lang-toggle {
  justify-self: start;
}

html[dir="rtl"] .hero-scrim {
  background:
    linear-gradient(270deg, oklch(11% 0.02 35 / 0.82) 0%, oklch(18% 0.02 35 / 0.58) 38%, oklch(30% 0.04 42 / 0.1) 72%),
    linear-gradient(0deg, oklch(10% 0.02 32 / 0.55), transparent 38%);
}

html[dir="rtl"] .hero-image img {
  animation-name: heroDriftRtl;
}

html[dir="rtl"] .hero-copy {
  margin-right: clamp(1rem, 7vw, 7rem);
  margin-left: 0;
}

html[dir="rtl"] .hero-note {
  right: auto;
  left: clamp(1rem, 4vw, 4rem);
}

html[dir="rtl"] .site-nav a::after {
  transform-origin: right;
}

html[dir="rtl"] .text-link::after {
  content: "←";
}

html[dir="rtl"] .site-footer > div:nth-child(2) {
  justify-items: start;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
  isolation: isolate;
}

.hero-image,
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: heroDrift 1400ms var(--ease) both;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(11% 0.02 35 / 0.82) 0%, oklch(18% 0.02 35 / 0.58) 38%, oklch(30% 0.04 42 / 0.1) 72%),
    linear-gradient(0deg, oklch(10% 0.02 32 / 0.55), transparent 38%);
}

.hero-copy {
  position: relative;
  width: min(45rem, calc(100% - 2rem));
  margin-left: clamp(1rem, 7vw, 7rem);
  padding-top: 6rem;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: clamp(4.3rem, 12vw, 12rem);
}

h2 {
  font-size: clamp(2.5rem, 6.3vw, 6.7rem);
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.08;
}

.hero-line {
  max-width: 15ch;
  color: var(--champagne-pale);
  font-size: clamp(1.6rem, 3.6vw, 3.3rem);
  font-weight: 800;
  line-height: 0.98;
}

.hero-text {
  max-width: 35rem;
  color: oklch(96% 0.018 78 / 0.86);
  font-size: clamp(1.02rem, 1.4vw, 1.25rem);
}

.hero-actions,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 260ms var(--ease), background 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
}

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

.button.primary {
  background: var(--berry-bright);
  color: var(--ivory);
  box-shadow: 0 18px 38px oklch(25% 0.13 13 / 0.34);
}

.button.secondary {
  border-color: oklch(96% 0.018 78 / 0.62);
  color: var(--ivory);
  background: oklch(96% 0.018 78 / 0.1);
}

.button.secondary.light {
  color: var(--ivory);
}

.hero-note {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1rem, 4vw, 4rem);
  display: grid;
  gap: 0.35rem;
  max-width: 17rem;
  border: 1px solid oklch(96% 0.018 78 / 0.24);
  padding: 1rem;
  background: oklch(12% 0.02 35 / 0.48);
  z-index: 1;
}

.hero-note span:first-child {
  color: var(--champagne);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--berry);
  color: var(--ivory);
  border-top: 1px solid oklch(92% 0.02 75 / 0.2);
}

.trust-bar div {
  min-height: 8rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border-right: 1px solid oklch(92% 0.02 75 / 0.16);
}

.trust-bar strong {
  display: block;
  color: var(--champagne);
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-bar span {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 800;
  line-height: 1.1;
}

.section-pad {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 4.5rem);
}

.intro-section {
  background: var(--ivory);
}

.intro-kicker {
  margin-bottom: 1.4rem;
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.intro-grid h2 {
  max-width: 11ch;
  margin-bottom: 0;
  color: var(--ink);
}

.intro-grid p,
.gulf-copy p,
.bestseller-copy p,
.store-panel p {
  max-width: 64ch;
  color: oklch(28% 0.025 35 / 0.78);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(18rem, 0.46fr) minmax(0, 0.84fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.section-lead p:last-child {
  max-width: 28rem;
  margin-bottom: 0;
  color: oklch(28% 0.025 35 / 0.72);
}

.looks .section-lead p:last-child {
  color: oklch(96% 0.018 78 / 0.74);
}

.collection {
  background: var(--paper);
}

.category-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  grid-template-rows: repeat(6, minmax(6rem, 1fr));
  grid-template-areas:
    "botox face"
    "botox face"
    "botox eyes"
    "lips eyes"
    "lips nails"
    "lips nails";
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.category-card {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory-deep);
}

.category-card.feature {
  grid-area: botox;
  min-height: 21rem;
}

.category-card.feature-secondary {
  grid-area: lips;
}

.category-card.face {
  grid-area: face;
}

.category-card.eyes {
  grid-area: eyes;
}

.category-card.nails {
  grid-area: nails;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(0deg, oklch(11% 0.02 35 / 0.72), transparent);
}

.category-card > div {
  position: absolute;
  z-index: 1;
  inset: auto clamp(1rem, 2.2vw, 2rem) clamp(1rem, 2.2vw, 2rem);
  color: var(--ivory);
}

.category-card span,
.look-card span,
.gulf-points span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--champagne);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.category-card p,
.look-card p {
  max-width: 31rem;
  margin-bottom: 0;
  color: oklch(96% 0.018 78 / 0.86);
}

.bestseller {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.85fr);
  min-height: 100svh;
  background: var(--ink);
  color: var(--ivory);
}

.bestseller-media img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
}

.bestseller-copy {
  align-self: center;
  padding: clamp(3rem, 7vw, 7rem);
  max-width: 48rem;
}

.bestseller-copy h2 {
  max-width: 8.7ch;
}

.bestseller-copy p {
  color: oklch(96% 0.018 78 / 0.76);
}

.shade-row {
  display: flex;
  gap: 0.7rem;
  margin: 2rem 0;
}

.shade-row span {
  width: clamp(2.8rem, 5vw, 4.6rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--shade);
  border: 4px solid oklch(96% 0.018 78 / 0.18);
  box-shadow: inset 0 10px 20px oklch(100% 0 0 / 0.18), 0 10px 20px oklch(6% 0.01 30 / 0.38);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--champagne);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  font-size: 1.2em;
}

.texture-band {
  height: clamp(8rem, 16vw, 15rem);
  overflow: hidden;
}

.texture-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gulf {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  background: var(--ivory);
}

.gulf-copy h2 {
  max-width: 11ch;
}

.gulf-points {
  align-self: end;
  display: grid;
  gap: 1rem;
}

.gulf-points div {
  border: 1px solid var(--line);
  padding: clamp(1.2rem, 2.4vw, 2rem);
  background: oklch(98% 0.012 78 / 0.58);
}

.gulf-points h3 {
  margin-bottom: 0.5rem;
}

.gulf-points p {
  margin-bottom: 0;
  color: oklch(28% 0.025 35 / 0.72);
}

.looks {
  background: var(--berry);
  color: var(--ivory);
}

  .looks .section-heading {
    grid-template-columns: 1fr;
  }

.looks .section-heading h2 {
  max-width: 12ch;
}

.lookbook {
  display: grid;
  grid-template-columns: 0.8fr 1.18fr 0.72fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: end;
}

.look-card {
  position: relative;
  min-height: 33rem;
  overflow: hidden;
  border: 1px solid oklch(92% 0.02 75 / 0.22);
  background: var(--ink);
}

.look-card.large {
  min-height: 43rem;
}

.look-card.product-look {
  min-height: 28rem;
}

.look-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

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

.look-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(0deg, oklch(10% 0.02 35 / 0.76), transparent);
}

.look-card div {
  position: absolute;
  z-index: 1;
  inset: auto 1.2rem 1.2rem;
}

.store-cta {
  position: relative;
  min-height: 78svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.store-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, oklch(13% 0.03 35 / 0.18), oklch(9% 0.02 35 / 0.78));
}

.store-panel {
  position: relative;
  z-index: 1;
  width: min(45rem, calc(100% - 2rem));
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: oklch(12% 0.018 35 / 0.72);
  border: 1px solid oklch(94% 0.02 75 / 0.22);
  box-shadow: var(--shadow);
}

.store-panel h2 {
  margin-inline: auto;
  max-width: 10ch;
}

.store-panel p {
  margin-inline: auto;
  color: oklch(96% 0.018 78 / 0.78);
}

.store-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 4.5rem);
  background: var(--ink);
  color: var(--ivory);
}

.site-footer img {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: contain;
  border-radius: 50%;
  background: var(--ivory);
}

.site-footer p {
  margin: 1rem 0 0;
  color: oklch(96% 0.018 78 / 0.7);
}

.site-footer > div:nth-child(2) {
  display: grid;
  gap: 0.5rem;
  justify-items: end;
}

.site-footer a {
  color: var(--champagne);
  font-weight: 800;
}

.footer-note {
  grid-column: 1 / -1;
  margin-top: 0;
  font-size: 0.92rem;
}

.mobile-shop-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.reveal.is-visible,
.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.03);
  }
}

@keyframes heroDriftRtl {
  from {
    transform: scaleX(-1) scale(1.08);
  }
  to {
    transform: scaleX(-1) scale(1.03);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  html[dir="rtl"] .site-header {
    grid-template-columns: auto auto 1fr auto;
  }

  .nav-toggle {
    grid-column: 4;
    justify-self: end;
    display: inline-grid;
    gap: 0.28rem;
    width: 2.8rem;
    height: 2.8rem;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    width: 1.1rem;
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 5.8rem 1rem auto;
    display: none;
    justify-self: stretch;
    gap: 0;
    padding: 0.35rem;
    background: var(--ink);
    color: var(--ivory);
    border: 1px solid oklch(94% 0.02 75 / 0.22);
    box-shadow: var(--shadow);
  }

  html[dir="rtl"] .nav-toggle {
    grid-column: 1;
    justify-self: start;
  }

  html[dir="rtl"] .site-nav {
    inset: 5.8rem 1rem auto;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    padding: 0 0.9rem;
    border-bottom: 1px solid oklch(94% 0.02 75 / 0.12);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

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

  .intro-grid,
  .section-heading,
  .category-board,
  .bestseller,
  .gulf,
  .lookbook,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-board {
    grid-template-rows: none;
    grid-template-areas: none;
  }

  .category-card,
  .category-card.feature,
  .category-card.feature-secondary,
  .category-card.face,
  .category-card.eyes,
  .category-card.nails {
    grid-area: auto;
  }

  .category-card,
  .category-card.feature,
  .look-card,
  .look-card.large,
  .look-card.product-look {
    min-height: 28rem;
  }

  .bestseller-media img {
    min-height: 58svh;
  }

  .bestseller-copy {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.72rem 1rem;
  }

  .site-header.is-scrolled {
    background: var(--ivory);
  }

  .brand-mark {
    width: 3.5rem;
    height: 3.5rem;
  }

  .brand-mark img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 6.2rem 0 6.6rem;
  }

  .hero-image img {
    object-position: center 58%;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, oklch(10% 0.02 35 / 0.88) 0%, oklch(16% 0.02 35 / 0.56) 52%, oklch(20% 0.03 35 / 0.12) 100%),
      linear-gradient(90deg, oklch(9% 0.02 35 / 0.28), transparent);
  }

  .hero-copy {
    width: calc(100% - 1.5rem);
    margin: 0 auto;
    padding-top: 0;
  }

  html[dir="rtl"] .hero-copy {
    margin: 0 auto;
  }

  h1 {
    max-width: 7.5ch;
    margin-bottom: 0.65rem;
    font-size: clamp(3.65rem, 18.5vw, 5.25rem);
  }

  .hero-line {
    max-width: 13ch;
    margin-bottom: 0.7rem;
    font-size: clamp(1.35rem, 7vw, 2rem);
    line-height: 1.02;
  }

  .hero-text {
    max-width: 24rem;
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero-actions,
  .store-actions {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .button {
    width: 100%;
    min-height: 2.95rem;
    padding: 0.82rem 1rem;
    font-size: 0.92rem;
  }

  .hero-note {
    left: 1rem;
    right: 1rem;
    bottom: 0.8rem;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.72rem 0.85rem;
  }

  .hero-note span:first-child {
    font-size: 1rem;
    white-space: nowrap;
  }

  .hero-note span:last-child {
    overflow: hidden;
    font-size: 0.8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    min-height: auto;
    padding: 1rem;
  }

  .trust-bar span {
    overflow-wrap: anywhere;
  }

  .section-pad {
    padding: 3.4rem 1rem;
  }

  h2 {
    font-size: clamp(2.35rem, 13vw, 4rem);
    line-height: 0.95;
  }

  .intro-grid h2,
  .section-heading h2,
  .gulf-copy h2,
  .bestseller-copy h2,
  .store-panel h2 {
    max-width: 12ch;
  }

  .category-card,
  .category-card.feature,
  .look-card,
  .look-card.large,
  .look-card.product-look {
    min-height: 24rem;
  }

  .category-card.feature {
    min-height: 28rem;
  }

  .category-card.face img {
    object-position: 58% center;
  }

  .category-card.eyes img {
    object-position: 42% center;
  }

  .category-card.nails img {
    object-position: center 38%;
  }

  .bestseller-copy {
    padding: 3rem 1rem 4rem;
  }

  .bestseller-media img {
    min-height: 48svh;
    object-position: center 22%;
  }

  .shade-row {
    gap: 0.45rem;
    margin: 1.4rem 0;
  }

  .shade-row span {
    width: clamp(2.35rem, 12vw, 3rem);
    border-width: 3px;
  }

  .texture-band {
    height: 7rem;
  }

  .gulf-points {
    gap: 0.75rem;
  }

  .gulf-points div {
    padding: 1rem;
  }

  .lookbook {
    gap: 0.8rem;
  }

  .look-card.large {
    min-height: 30rem;
  }

  .look-card.product-look img {
    object-position: center 70%;
  }

  .store-cta {
    min-height: 72svh;
    padding: 5rem 0;
  }

  .store-cta > img {
    object-position: center;
  }

  .store-panel {
    width: calc(100% - 2rem);
    padding: 1.4rem;
    text-align: left;
  }

  html[dir="rtl"] .store-panel {
    text-align: right;
  }

  .store-panel h2,
  .store-panel p {
    margin-inline: 0;
  }

  .site-footer > div:nth-child(2) {
    justify-items: start;
  }

  .site-footer {
    padding-bottom: 5.7rem;
  }

  .mobile-shop-bar {
    position: fixed;
    z-index: 40;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 0.45rem;
    padding: 0.45rem;
    background: var(--ink);
    border: 1px solid oklch(94% 0.02 75 / 0.2);
    box-shadow: 0 18px 48px oklch(10% 0.02 35 / 0.36);
  }

  .mobile-shop-bar a {
    min-height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.75rem;
    color: var(--ivory);
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-shop-bar a:first-child {
    background: var(--berry-bright);
  }

  .mobile-shop-bar a:last-child {
    border: 1px solid oklch(94% 0.02 75 / 0.3);
  }
}

@media (max-width: 420px) {
  .eyebrow {
    margin-bottom: 0.7rem;
    font-size: 0.69rem;
    letter-spacing: 0.13em;
  }

  .hero-text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .hero-note {
    left: 0.75rem;
    right: 0.75rem;
  }
}

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