:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.05);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-soft: rgba(255, 255, 255, 0.58);
  --gold-gradient: linear-gradient(135deg, #d4af37, #f9f295, #d4af37);
  --gold-flat: #d4af37;
  --border: rgba(255, 255, 255, 0.08);
  --max-width: 1180px;
  --header-height: 88px;
  --radius: 28px;
  --transition: 260ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 30%),
    linear-gradient(180deg, #0a0a0a 0%, #090909 40%, #050505 100%);
  color: var(--text);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  transition: background-color var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
  will-change: background-color, border-color, backdrop-filter;
}

.site-header.is-scrolled,
.site-header.site-header-solid {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(14px);
  border-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 5.1rem;
  height: auto;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: 6.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-icon-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-icon-link {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  transition: color var(--transition), background-color var(--transition), transform var(--transition);
}

.nav-icon-link:hover {
  color: #f7e8a0;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-icon-link svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.nav-cart-link {
  width: auto;
  min-width: 2.4rem;
  padding: 0 0.9rem 0 0.75rem;
  gap: 0.42rem;
}

.nav-cart-link span {
  font-size: 0.75rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  border-radius: 999px;
  padding: 0;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 1px;
  background: #ffffff;
  margin: 0.22rem auto;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: clip;
}

.hero-media,
.hero-overlay,
.hero video {
  position: absolute;
  inset: 0;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35), rgba(10, 10, 10, 0.5)),
    rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.36rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2 {
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.3rem, 10vw, 7rem);
  max-width: 10ch;
  margin-inline: auto;
}

.hero-copy,
.page-hero p,
.section-intro p,
.editorial-copy p,
.final-cta-panel p {
  color: var(--muted);
}

.hero-copy {
  max-width: 44rem;
  margin: 1.5rem auto 0;
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 2rem;
}

.lux-button,
.gold-frame {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--gold-gradient) border-box;
  background-size: 100% 100%, 220% 220%;
  background-position: center, 100% 50%;
  transition:
    transform var(--transition),
    background-position 800ms ease,
    box-shadow var(--transition);
}

.gold-frame:hover,
.lux-button:hover {
  background-position: center, 0% 50%;
  box-shadow: 0 0 0 1px rgba(249, 242, 149, 0.12), 0 16px 40px rgba(212, 175, 55, 0.08);
}

.lux-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.76rem;
  color: #ffffff;
}

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

.lux-button-disabled {
  cursor: default;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(249, 242, 149, 0.08);
}

.section {
  padding: 6rem 0;
}

.featured-update-section {
  padding-bottom: 1.75rem;
}

.texture-study-section {
  padding-top: 1.75rem;
}

.section-intro {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.featured-cta-row {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.coming-soon-panel {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  padding: 2rem;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 48%);
}

.coming-soon-glow {
  position: absolute;
  width: min(36rem, 86%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(249, 242, 149, 0.22), rgba(212, 175, 55, 0.08) 42%, transparent 72%);
  filter: blur(28px);
  opacity: 0.95;
}

.coming-soon-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(10, 10, 10, 0.45);
}

.section-intro h2,
.shop-coming-copy h1,
.editorial-copy h2,
.final-cta-panel h2,
.contact-visual h2,
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  margin-bottom: 1rem;
}

.shop-coming-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.shop-coming-copy {
  max-width: 74rem;
}

.shop-coming-copy h1 {
  font-size: 6rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

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

.product-card {
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.01);
}

.product-visual {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  min-height: 22rem;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.28)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.18), transparent 34%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-media {
  position: absolute;
  inset: 0;
  transition: transform 900ms ease;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card:hover .product-media {
  transform: scale(1.05);
}

.product-scene {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 242, 149, 0.3), transparent 30%),
    radial-gradient(circle at 80% 16%, rgba(212, 175, 55, 0.22), transparent 22%),
    linear-gradient(150deg, #1b1b1b, #080808 58%, #141414);
}

.product-shape {
  position: absolute;
  border-radius: 999px;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.45));
}

.shape-lipstick {
  width: 4.4rem;
  height: 13rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%) rotate(12deg);
  background:
    linear-gradient(180deg, #2f2f2f 0 58%, #0f0f0f 58% 100%);
}

.shape-lipstick::before {
  content: "";
  position: absolute;
  inset: -2.8rem 0 auto;
  height: 3.6rem;
  border-radius: 2.2rem 2.2rem 0.4rem 0.4rem;
  background: var(--shade-color, linear-gradient(180deg, #7f2f4d, #b04a67));
}

.shape-compact {
  width: 12rem;
  height: 12rem;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.shape-liner {
  width: 13rem;
  height: 1rem;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-18deg);
  background: linear-gradient(90deg, #121212, #343434, #111111);
}

.shape-liner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 86%;
  width: 14%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.45));
}

.product-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(10px);
}

.product-meta {
  padding: 1.25rem 0.35rem 0.2rem;
}

.product-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.product-meta h3 {
  margin: 0;
  font-weight: 400;
  font-size: 1.05rem;
}

.product-price {
  color: #f7e8a0;
  font-size: 0.94rem;
}

.product-description {
  margin: 0.55rem 0 1rem;
  color: var(--muted-soft);
  font-size: 0.92rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-shade {
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.quick-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding-inline: 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: #ffffff;
}

.product-actions,
.product-detail-actions,
.cart-summary-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.detail-link,
.cart-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #f7e8a0;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.72rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  transition: border-color var(--transition), background-color var(--transition), color var(--transition);
}

.detail-link:hover,
.cart-clear:hover {
  border-color: rgba(249, 242, 149, 0.8);
  background: rgba(212, 175, 55, 0.08);
  color: #ffffff;
}

.detail-back-link {
  margin-bottom: 1.1rem;
}

.product-detail-layout,
.cart-layout {
  display: grid;
  gap: 2rem;
}

.product-detail-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
}

.product-detail-media,
.product-detail-panel,
.cart-items-panel,
.cart-summary-panel,
.cart-empty-panel {
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.015);
}

.product-detail-media {
  position: relative;
  overflow: hidden;
  min-height: 40rem;
  padding: 1rem;
}

.product-detail-stage {
  position: relative;
  min-height: 38rem;
  border-radius: calc(var(--radius) - 10px);
  overflow: hidden;
}

.product-detail-panel {
  padding: 2rem;
}

.product-detail-price {
  margin: 0 0 1rem;
  color: #f7e8a0;
  font-size: 1.2rem;
}

.product-detail-copy {
  color: var(--muted-soft);
}

.product-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.product-detail-specs span {
  display: block;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

.product-detail-specs strong {
  font-weight: 400;
}

.product-detail-benefits {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-detail-benefits p,
.cart-summary-note,
.cart-item-copy p {
  margin: 0;
  color: var(--muted-soft);
}

.page-hero-product .page-hero-panel,
.page-hero-cart .page-hero-panel {
  max-width: var(--max-width);
  padding: 3rem;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
}

.page-hero-product .page-hero-panel {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.84)),
    linear-gradient(90deg, rgba(10, 10, 10, 0.68), rgba(10, 10, 10, 0.24)),
    url("colourful-color-pop-portrait.jpg") center 22% / cover no-repeat;
}

.page-hero-cart .page-hero-panel {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.16), rgba(10, 10, 10, 0.82)),
    linear-gradient(90deg, rgba(10, 10, 10, 0.68), rgba(10, 10, 10, 0.24)),
    url("black-woman-with-light-pink-lips-sending-kiss.jpg") center 28% / cover no-repeat;
}

.cart-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: start;
}

.cart-items-panel,
.cart-summary-panel,
.cart-empty-panel {
  padding: 1.5rem;
}

.cart-item + .cart-item {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.cart-item-image {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.cart-item-category,
.cart-item-meta span {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.cart-item-copy h3 {
  margin: 0.3rem 0 0.4rem;
  font-weight: 400;
}

.cart-item-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
}

.cart-item-controls {
  display: grid;
  justify-items: end;
  gap: 0.8rem;
}

.cart-qty-controls {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.cart-qty-controls button,
.cart-qty-controls span {
  min-width: 2.5rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-controls button {
  border: 0;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

.cart-remove {
  padding: 0;
  border: 0;
  background: transparent;
  color: #f7e8a0;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-summary-row strong {
  font-weight: 400;
  color: #f7e8a0;
}

.cart-summary-note {
  margin: 1.2rem 0 1.4rem;
}

.cart-clear {
  margin-top: 1rem;
}

.editorial-layout,
.contact-layout,
.shop-layout {
  display: grid;
  gap: 2rem;
}

.editorial-layout {
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}

.editorial-copy {
  max-width: 34rem;
}

.texture-panel,
.contact-panel,
.filter-panel,
.final-cta-panel {
  border-radius: var(--radius);
}

.texture-panel {
  padding: 1rem;
  min-height: 42rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 32rem auto;
  gap: 1rem;
  align-items: stretch;
}

.texture-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

.texture-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.02), rgba(10, 10, 10, 0.2)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.24), transparent 38%);
  pointer-events: none;
}

.texture-shot-primary {
  transform: translateY(-1rem);
}

.texture-shot-secondary {
  transform: translateY(1rem);
}

.texture-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.texture-caption {
  grid-column: 1 / -1;
  color: var(--muted);
}

.texture-caption span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.72rem;
  color: #f7e8a0;
  margin-bottom: 0.35rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f7e8a0;
  margin-top: 1rem;
}

.text-link::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(0.4rem);
}

.appointments-section {
  padding-top: 0.75rem;
}

.appointments-panel {
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.appointments-intro {
  max-width: 46rem;
}

.appointments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.appointment-card {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.appointment-card span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #f7e8a0;
  font-size: 0.72rem;
  letter-spacing: 0.18rem;
}

.appointment-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 400;
}

.appointment-card p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.92rem;
}

.appointments-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.final-cta {
  padding-top: 1rem;
  padding-bottom: 7rem;
}

.final-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 3rem;
  min-height: 30rem;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.72)),
    linear-gradient(90deg, rgba(10, 10, 10, 0.58), rgba(10, 10, 10, 0.28)),
    url("Untitled%20(36).png") center 32% / cover no-repeat;
}

.final-cta-panel > * {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.final-cta-panel .lux-button {
  margin-top: 1rem;
}

.inner-page {
  padding-top: calc(var(--header-height) + 1.5rem);
}

.page-hero {
  padding: 3rem 0 1rem;
}

.page-hero .shell {
  max-width: 46rem;
}

.page-hero-shop .page-hero-panel {
  max-width: var(--max-width);
  padding: 3rem;
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.16), rgba(10, 10, 10, 0.78)),
    linear-gradient(90deg, rgba(10, 10, 10, 0.68), rgba(10, 10, 10, 0.2)),
    url("black-woman-with-trendy-violet-glossy-lips%20(1).jpg") center 24% / cover no-repeat;
}

.page-hero-shop .page-hero-panel h1,
.page-hero-shop .page-hero-panel p {
  max-width: 34rem;
}

.page-hero-faq .page-hero-panel {
  max-width: var(--max-width);
  padding: 3rem;
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.14), rgba(10, 10, 10, 0.8)),
    linear-gradient(90deg, rgba(10, 10, 10, 0.64), rgba(10, 10, 10, 0.18)),
    url("closeup-beauty-portrait-amazing-afro-american-woman-with-fashion-makeup-asking-keep-silence-secret-putting-finger-lips-isolated-blue-wall.jpg")
      center 34% / cover no-repeat;
}

.page-hero-faq .page-hero-panel h1,
.page-hero-faq .page-hero-panel p {
  max-width: 34rem;
}

.shop-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}

.filter-panel,
.contact-panel {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.015);
}

.filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.filter-block + .filter-block {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-label,
.contact-label {
  margin: 0 0 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.72rem;
  color: #f7e8a0;
}

.filter-block label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}

.filter-block label + label {
  margin-top: 0.85rem;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: #d4af37;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.results-copy,
.contact-meta,
.footer-copy,
.footer-bottom p {
  color: var(--muted-soft);
}

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

.faq-list {
  max-width: 58rem;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
}

.faq-trigger {
  width: 100%;
  padding: 1.4rem 0;
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #ffffff;
  text-align: left;
  font-size: 1.06rem;
}

.faq-symbol {
  font-size: 1.4rem;
  color: #f7e8a0;
  transition: transform var(--transition);
}

.faq-trigger[aria-expanded="true"] .faq-symbol {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms ease;
}

.faq-panel p {
  padding: 0 0 1.4rem;
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  grid-template-columns: 1fr 1fr;
}

.contact-visual {
  min-height: 38rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.78)),
    linear-gradient(90deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.32)),
    url("con.png") center 28% / cover no-repeat;
}

.contact-visual-overlay {
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.78)),
    linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.04) 100%);
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  position: relative;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
}

.field input,
.field textarea,
.field select {
  min-height: 3.8rem;
  border-radius: 20px;
  padding: 1.35rem 1rem 0.8rem;
}

.field textarea {
  resize: vertical;
}

.field select option {
  color: #0a0a0a;
  background: #ffffff;
}

.field select option[disabled] {
  color: #5c5c5c;
}

.field label {
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  color: rgba(255, 255, 255, 0.58);
  pointer-events: none;
  transition: transform var(--transition), font-size var(--transition), color var(--transition);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  transform: translateY(-0.55rem);
  font-size: 0.72rem;
  color: #f7e8a0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0 1.5rem;
}

.footer-layout,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-layout {
  padding-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 0.6rem;
  display: inline-block;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.is-visible {
  animation: fade-up 900ms cubic-bezier(0.2, 0.7, 0.15, 1) forwards;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .product-grid,
  .shop-grid,
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-layout,
  .contact-layout,
  .shop-layout,
  .product-detail-layout,
  .cart-layout,
  .cart-item,
  .appointments-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .shell {
    width: min(calc(100% - 1.4rem), var(--max-width));
  }

  .menu-toggle {
    display: grid;
  }

  .site-header {
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.06);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0.7rem;
    left: 0.7rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.7rem;
    border-radius: 24px;
    background: rgba(10, 10, 10, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .nav-icon-row {
    margin-top: 0.45rem;
    margin-left: 0;
    padding-top: 0.7rem;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: flex-start;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .hero {
    height: 100svh;
    min-height: 100svh;
  }

  .hero-media,
  .hero-overlay,
  .hero video {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 18vw, 4.8rem);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.22), rgba(10, 10, 10, 0.38)),
      rgba(0, 0, 0, 0.24);
  }

  .brand-logo {
    width: 4.5rem;
  }

  .footer-brand .brand-logo {
    width: 6rem;
  }

  .section,
  .final-cta {
    padding: 2rem 0;
  }

  .editorial-section {
    padding-top: 1rem;
    padding-bottom: 0;
  }

  .featured-update-section {
    padding-bottom: 0.75rem;
  }

  .texture-study-section {
    padding-top: 0.75rem;
  }

  .appointments-section {
    padding-top: 0.3rem;
  }

  .editorial-layout {
    gap: 1rem;
  }

  .final-cta {
    margin-top: -2.5rem;
    padding-top: 0;
    padding-bottom: 1rem;
  }

  .product-grid,
  .shop-grid,
  .preview-grid,
  .contact-form,
  .contact-columns,
  .footer-layout,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .texture-shot-primary,
  .texture-shot-secondary {
    transform: none;
  }

  .texture-panel {
    padding: 0.65rem;
    min-height: auto;
    grid-template-rows: 14rem 14rem auto;
    gap: 0.35rem;
  }

  .texture-caption {
    margin-top: 0;
  }

  .texture-caption span {
    margin-bottom: 0.15rem;
  }

  .texture-caption p {
    margin: 0;
  }

  .text-link {
    margin-top: 0.4rem;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-visual,
  .contact-visual,
  .product-detail-media {
    min-height: 19rem;
  }

  .final-cta-panel,
  .filter-panel,
  .contact-panel {
    padding: 1.2rem;
  }

  .appointments-panel {
    padding: 1.2rem;
  }

  .coming-soon-panel {
    min-height: 15rem;
    padding: 1.4rem;
  }

  .coming-soon-panel h3 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .shop-coming-copy h1 {
    font-size: 3rem;
  }

  .final-cta-panel {
    min-height: 22rem;
    padding: 1.1rem;
  }

  .product-detail-stage {
    min-height: 19rem;
  }

  .product-detail-panel,
  .cart-items-panel,
  .cart-summary-panel,
  .cart-empty-panel,
  .page-hero-product .page-hero-panel,
  .page-hero-cart .page-hero-panel {
    padding: 1.2rem;
  }

  .product-detail-specs {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .cart-item-controls {
    justify-items: start;
  }
}
