:root {
  --black: #0b0b0b;
  --panel: #0d0d0d;
  --panel-strong: #0f0f0f;
  --text: #f0ece6;
  --text-soft: #e6e0d7;
  --muted: #afa89f;
  --muted-deep: #9e978d;
  --silver: #f1eee8;
  --chrome: #b8b4ae;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.15);
  --glow: rgba(241, 238, 232, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Raleway", Arial, sans-serif;
  --mobile-shell: 480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(241, 238, 232, 0.055), transparent 25rem),
    radial-gradient(circle at 90% 4%, rgba(255, 255, 255, 0.035), transparent 28rem),
    var(--black);
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.08em;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
  font: inherit;
}

svg {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 11, 11, 0.78);
  backdrop-filter: blur(16px);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  width: min(1500px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  justify-self: center;
  background: linear-gradient(105deg, var(--silver) 0%, #ffffff 34%, var(--chrome) 78%);
  color: transparent;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(241, 238, 232, 0.12);
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-shell > .brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.main-nav {
  position: fixed;
  top: 74px;
  right: 16px;
  left: 16px;
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(13, 13, 13, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.nav-open .main-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a,
.underlined-link,
.product-info h3,
.product-info p,
.product-info button,
.footer-grid h3,
.footer-grid a,
.footer-bottom p,
.instagram-head a {
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 15px 16px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.main-nav a::after,
.underlined-link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(241, 238, 232, 0.34);
}

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

.menu-toggle {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 7px;
  width: 42px;
  height: 42px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform 0.25s ease;
}

body.nav-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.nav-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

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

.header-actions button {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--text-soft);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.header-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.header-actions button:hover,
.header-actions button:focus-visible {
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(241, 238, 232, 0.08);
}

.cart-icon span {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  min-width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 999px;
  color: var(--black);
  background: linear-gradient(135deg, var(--silver), var(--chrome));
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media {
  z-index: -4;
  background:
    linear-gradient(115deg, rgba(11, 11, 11, 0.18), rgba(11, 11, 11, 0.44)),
    url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1400&q=88")
    58% 26% / cover;
  filter: saturate(78%) contrast(112%) brightness(70%);
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(0deg, rgba(11, 11, 11, 0.97) 0%, rgba(11, 11, 11, 0.74) 34%, rgba(11, 11, 11, 0.18) 100%),
    linear-gradient(90deg, rgba(11, 11, 11, 0.72) 0%, rgba(11, 11, 11, 0.16) 72%),
    radial-gradient(circle at 72% 18%, rgba(241, 238, 232, 0.1), transparent 18rem);
}

.hero-glow {
  z-index: -2;
  background:
    radial-gradient(circle at 74% 20%, rgba(241, 238, 232, 0.11), transparent 18rem),
    radial-gradient(circle at 18% 72%, rgba(184, 180, 174, 0.08), transparent 16rem);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.72), transparent 22%),
    linear-gradient(0deg, var(--black), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 1px) 0 0 / 72px 100%;
  content: "";
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 132px 20px 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.editorial h2,
.instagram h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-weight: 500;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.1rem, 17vw, 5.6rem);
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.premium-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 56px;
  margin-top: 30px;
  overflow: hidden;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #111111;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(105deg, #f1eee8 0%, #ffffff 34%, #b8b4ae 100%);
  box-shadow:
    0 18px 40px rgba(241, 238, 232, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-button::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.85), transparent 28%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.premium-button:hover,
.premium-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 24px 58px rgba(241, 238, 232, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-indicator {
  display: none;
}

.section-pad {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 78px 20px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(2.6rem, 11vw, 3.15rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.underlined-link {
  position: relative;
  display: inline-flex;
  padding-bottom: 10px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  white-space: nowrap;
}

.underlined-link::after {
  bottom: 3px;
  transform: scaleX(1);
}

.underlined-link:hover,
.underlined-link:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(241, 238, 232, 0.22);
}

.product-grid,
.category-grid,
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid {
  gap: 16px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(241, 238, 232, 0.04);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 26px 80px rgba(241, 238, 232, 0.12);
  transform: translateY(-6px);
}

.favorite-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.42);
  backdrop-filter: blur(10px);
}

.favorite-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--text-soft);
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.favorite-button span {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1;
}

.product-photo {
  aspect-ratio: 3 / 4;
  background-position: center;
  background-size: cover;
  filter: saturate(88%) contrast(106%) brightness(96%);
  transition: transform 0.6s ease;
}

.product-card:hover .product-photo {
  transform: scale(1.045);
}

.photo-top {
  background-image: url("https://images.unsplash.com/photo-1509631179647-0177331693ae?auto=format&fit=crop&w=900&q=82");
}

.photo-top-2 {
  background-image: url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=900&q=82");
}

.photo-top-3 {
  background-image: url("https://images.unsplash.com/photo-1485230895905-ec40ba36b9bc?auto=format&fit=crop&w=900&q=82");
}

.photo-top-4 {
  background-image: url("https://images.unsplash.com/photo-1495385794356-15371f348c31?auto=format&fit=crop&w=900&q=82");
}

.photo-denim {
  background-image: url("https://images.unsplash.com/photo-1541099649105-f69ad21f3246?auto=format&fit=crop&w=900&q=82");
}

.photo-denim-2 {
  background-image: url("https://images.unsplash.com/photo-1542272604-787c3835535d?auto=format&fit=crop&w=900&q=82");
}

.photo-denim-3 {
  background-image: url("https://images.unsplash.com/photo-1582552938357-32b906df40cb?auto=format&fit=crop&w=900&q=82");
}

.photo-dress {
  background-image: url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=900&q=82");
}

.photo-dress-2 {
  background-image: url("https://images.unsplash.com/photo-1485968579580-b6d095142e6e?auto=format&fit=crop&w=900&q=82");
}

.photo-dress-3 {
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=900&q=82");
}

.photo-dress-4 {
  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=900&q=82");
}

.photo-necklace {
  background-image: url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=900&q=82");
}

.photo-necklace-2 {
  background-image: url("https://images.unsplash.com/photo-1506630448388-4e683c67ddb0?auto=format&fit=crop&w=900&q=82");
}

.photo-necklace-3 {
  background-image: url("https://images.unsplash.com/photo-1611085583191-a3b181a88401?auto=format&fit=crop&w=900&q=82");
}

.photo-necklace-4 {
  background-image: url("https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?auto=format&fit=crop&w=900&q=82");
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 16px 12px 14px;
}

.product-info h3 {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.cart-button {
  min-height: 40px;
  margin-top: 4px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.cart-button:hover,
.cart-button:focus-visible {
  border-color: #ffffff;
  color: var(--black);
  background: #ffffff;
  transform: translateY(-1px);
}

.category-grid {
  gap: 14px;
}

.category-card {
  position: relative;
  display: flex;
  aspect-ratio: 3 / 4;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.category-card::before,
.category-card::after,
.insta-shot::after,
.editorial::after {
  position: absolute;
  inset: 0;
  content: "";
}

.category-card::before {
  z-index: -2;
  background: inherit;
  filter: grayscale(18%) contrast(105%) saturate(88%);
  transition: transform 0.6s ease;
}

.category-card::after {
  z-index: -1;
  background: linear-gradient(0deg, rgba(11, 11, 11, 0.78) 0%, rgba(11, 11, 11, 0.04) 72%);
}

.category-card:hover::before {
  transform: scale(1.06);
}

.category-card span {
  width: 32px;
  height: 1px;
  margin-bottom: 14px;
  background: #ffffff;
}

.category-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.category-tops {
  background-image: url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=900&q=82");
}

.category-jeans {
  background-image: url("https://images.unsplash.com/photo-1542272604-787c3835535d?auto=format&fit=crop&w=900&q=82");
}

.category-dresses {
  background-image: url("https://images.unsplash.com/photo-1485968579580-b6d095142e6e?auto=format&fit=crop&w=900&q=82");
}

.category-accessories {
  background-image: url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=900&q=82");
}

.editorial {
  position: relative;
  display: grid;
  min-height: 420px;
  width: min(1500px, calc(100% - 40px));
  margin: 82px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-strong);
  isolation: isolate;
}

.editorial-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    url("https://images.unsplash.com/photo-1506629905607-d405d7d3b0d2?auto=format&fit=crop&w=1800&q=85")
    center / cover;
  filter: saturate(86%) contrast(106%) brightness(78%);
}

.editorial::after {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.85) 0%, rgba(11, 11, 11, 0.54) 46%, rgba(11, 11, 11, 0.1) 100%),
    radial-gradient(circle at 20% 35%, rgba(241, 238, 232, 0.06), transparent 22rem);
}

.editorial-copy {
  align-self: center;
  max-width: 560px;
  padding: 44px 20px;
}

.editorial h2 {
  max-width: 520px;
  font-size: clamp(3rem, 13vw, 4.1rem);
  letter-spacing: 0.01em;
  line-height: 1.02;
}

.editorial p:not(.eyebrow) {
  max-width: 400px;
  margin: 20px 0 24px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.instagram-head {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

.instagram h2 {
  font-size: clamp(2.5rem, 10vw, 3.05rem);
  line-height: 1.06;
}

.instagram-head a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.instagram-head a:hover,
.instagram-head a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(241, 238, 232, 0.18);
}

.instagram-grid {
  gap: 12px;
}

.insta-shot {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  filter: saturate(88%) contrast(106%) brightness(96%);
  transition: transform 0.6s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.insta-shot::after {
  background: linear-gradient(180deg, transparent, rgba(11, 11, 11, 0.22));
}

.insta-shot:hover,
.insta-shot:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(241, 238, 232, 0.1);
  transform: scale(1.06);
}

.insta-one {
  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=720&q=82");
}

.insta-two {
  background-image: url("https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=720&q=82");
}

.insta-three {
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=720&q=82");
}

.insta-four {
  background-image: url("https://images.unsplash.com/photo-1520975682031-a89af567c3d7?auto=format&fit=crop&w=720&q=82");
}

.site-footer {
  width: min(1500px, 100%);
  margin: 86px auto 0;
  padding: 46px 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.footer-brand .brand {
  justify-self: start;
  font-size: 24px;
}

.footer-brand p {
  max-width: 370px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.footer-grid div:not(.footer-brand):not(.social-icons) {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-grid h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.footer-grid a {
  color: #b8b3ac;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.35;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(241, 238, 232, 0.16);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-icons a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-soft);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted-deep);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

.cart-toast {
  position: fixed;
  right: 50%;
  bottom: 22px;
  z-index: 80;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--black);
  background:
    radial-gradient(circle at 25% 0%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(105deg, #f1eee8, #b8b4ae);
  box-shadow: 0 20px 60px rgba(241, 238, 232, 0.16);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(50%, 16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.reveal {
  animation: fade-up 0.72s ease both;
}

.reveal:nth-child(2) {
  animation-delay: 0.15s;
}

.reveal:nth-child(3) {
  animation-delay: 0.3s;
}

.reveal:nth-child(4) {
  animation-delay: 0.45s;
}

.product-card:nth-child(2),
.category-card:nth-child(2),
.insta-shot:nth-child(2) {
  animation-delay: 0.15s;
}

.product-card:nth-child(3),
.category-card:nth-child(3),
.insta-shot:nth-child(3) {
  animation-delay: 0.3s;
}

.product-card:nth-child(4),
.category-card:nth-child(4),
.insta-shot:nth-child(4) {
  animation-delay: 0.45s;
}

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

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

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

@media (min-width: 768px) {
  .nav-shell {
    padding: 0 40px;
  }

  .hero-content {
    padding-right: 40px;
    padding-left: 40px;
  }

  .section-pad {
    padding: 92px 40px 0;
  }

  .editorial-copy {
    padding: 60px 40px;
  }

  .site-footer {
    padding-right: 40px;
    padding-left: 40px;
  }

  .product-grid {
    gap: 20px;
  }

  .category-grid,
  .instagram-grid {
    gap: 16px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .site-header {
    height: 86px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 56px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    gap: 30px;
    justify-self: start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .main-nav a::after {
    bottom: 3px;
  }

  .header-actions {
    gap: 12px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 11, 11, 0.92) 0%, rgba(11, 11, 11, 0.58) 38%, rgba(11, 11, 11, 0.08) 76%),
      linear-gradient(0deg, rgba(11, 11, 11, 0.6), transparent 32%);
  }

  .hero-content {
    justify-content: center;
    padding: 140px 56px 80px;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 7vw, 6.6rem);
  }

  .hero-indicator {
    position: absolute;
    right: 56px;
    bottom: 106px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }

  .hero-indicator span {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.35);
  }

  .section-pad {
    padding: 116px 56px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .product-grid,
  .category-grid,
  .instagram-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-grid {
    gap: 24px;
  }

  .product-info {
    padding: 18px 16px 16px;
  }

  .editorial {
    min-height: 520px;
    width: min(1500px, calc(100% - 112px));
    margin-top: 116px;
  }

  .editorial-copy {
    padding: 76px 56px;
  }

  .editorial h2 {
    font-size: 48px;
  }

  .site-footer {
    margin-top: 116px;
    padding: 56px 56px 34px;
  }
}

@media (max-width: 520px) {
  .header-actions button:nth-child(2) {
    display: none;
  }

  .brand {
    font-size: 20px;
  }

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

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

  .product-grid,
  .category-grid,
  .instagram-grid {
    gap: 12px;
  }

  .product-card,
  .category-card,
  .insta-shot {
    border-radius: 14px;
  }

  .product-info {
    padding: 13px 10px 12px;
  }

  .cart-button {
    min-height: 38px;
    padding-right: 8px;
    padding-left: 8px;
    letter-spacing: 0.1em;
  }
}

body {
  overflow-x: hidden;
}

main,
.site-footer {
  width: min(100%, var(--mobile-shell));
  margin-right: auto;
  margin-left: auto;
  background: var(--black);
}

.site-header {
  left: 50%;
  width: min(100%, var(--mobile-shell));
  height: 74px;
  transform: translateX(-50%);
}

.nav-shell {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  width: 100%;
  padding: 0 20px;
}

.nav-shell > .brand {
  left: 50%;
  font-size: 20px;
}

.menu-toggle {
  display: grid;
}

.header-actions {
  gap: 8px;
}

.header-actions button {
  width: 34px;
  height: 34px;
}

.header-actions button:nth-child(2) {
  display: none;
}

.main-nav {
  position: fixed;
  top: 74px;
  right: auto;
  left: 50%;
  display: grid;
  gap: 2px;
  width: min(calc(100vw - 32px), 448px);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(13, 13, 13, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.nav-open .main-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.main-nav a {
  padding: 15px 16px;
}

.hero {
  min-height: 720px;
}

.hero-media {
  background-position: 54% 18%;
}

.hero-overlay {
  background:
    linear-gradient(0deg, rgba(11, 11, 11, 0.97) 0%, rgba(11, 11, 11, 0.74) 34%, rgba(11, 11, 11, 0.18) 100%),
    linear-gradient(90deg, rgba(11, 11, 11, 0.72) 0%, rgba(11, 11, 11, 0.16) 72%),
    radial-gradient(circle at 72% 18%, rgba(241, 238, 232, 0.1), transparent 18rem);
}

.hero-content {
  justify-content: end;
  width: 100%;
  max-width: 100%;
  padding: 132px 20px 72px;
}

.hero h1 {
  max-width: min(100%, 420px);
  font-size: clamp(3rem, 13.5vw, 3.55rem);
  letter-spacing: -0.025em;
  overflow-wrap: normal;
}

.hero-copy {
  max-width: min(100%, 390px);
}

.premium-button {
  max-width: 100%;
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3rem);
  }

  .hero-copy {
    font-size: 14px;
  }
}

.hero-indicator {
  display: none;
}

.section-pad {
  width: 100%;
  padding: 78px 20px 0;
}

.section-head {
  align-items: start;
  flex-direction: column;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(2.6rem, 11vw, 3.15rem);
}

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

.product-grid,
.category-grid,
.instagram-grid {
  gap: 12px;
}

.product-card,
.category-card,
.insta-shot {
  border-radius: 14px;
}

.product-info {
  padding: 13px 10px 12px;
}

.cart-button {
  min-height: 38px;
  padding-right: 8px;
  padding-left: 8px;
  letter-spacing: 0.1em;
}

.editorial {
  min-height: 420px;
  width: min(calc(100% - 40px), 440px);
  margin-top: 82px;
}

.editorial-copy {
  padding: 44px 20px;
}

.editorial h2 {
  font-size: clamp(3rem, 13vw, 4.1rem);
}

.site-footer {
  margin-top: 86px;
  padding: 46px 20px 28px;
}

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

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

.header-actions button:nth-child(2) {
  display: grid;
}

.favorite-button.is-active {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(135deg, rgba(241, 238, 232, 0.22), rgba(255, 255, 255, 0.06));
  box-shadow: 0 0 30px rgba(241, 238, 232, 0.14);
}

.favorite-button.is-active svg {
  fill: var(--text-soft);
}

.favorite-button.is-active span {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(241, 238, 232, 0.34);
}

.product-card.is-highlighted {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 1px rgba(241, 238, 232, 0.18), 0 26px 80px rgba(241, 238, 232, 0.16);
}

.panel-scrim {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.shop-panel {
  position: fixed;
  right: 50%;
  bottom: 14px;
  z-index: 70;
  display: flex;
  width: min(calc(100% - 28px), 452px);
  max-height: calc(100dvh - 96px);
  flex-direction: column;
  gap: 18px;
  overflow: auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: var(--text);
  background:
    radial-gradient(circle at 24% 0%, rgba(241, 238, 232, 0.08), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(13, 13, 13, 0.98);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.shop-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
}

.panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.panel-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
}

.panel-close,
.panel-secondary,
.panel-primary,
.search-form button,
.quantity-button,
.result-add {
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-close {
  padding: 10px 0 10px 12px;
  color: var(--muted);
}

.panel-close:hover,
.panel-close:focus-visible {
  color: #ffffff;
}

.search-form,
.profile-form {
  display: grid;
  gap: 10px;
}

.search-form label,
.profile-form label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.search-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.search-form input,
.profile-form input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  outline: 0;
  padding: 13px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.search-form input:focus,
.profile-form input:focus {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(241, 238, 232, 0.06);
}

.search-form button,
.panel-primary {
  padding: 0 14px;
  color: var(--black);
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(105deg, #f1eee8 0%, #ffffff 34%, #b8b4ae 100%);
  box-shadow: 0 16px 34px rgba(241, 238, 232, 0.11);
}

.panel-primary {
  min-height: 46px;
}

.panel-secondary {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.panel-list {
  display: grid;
  gap: 10px;
}

.result-item,
.cart-item {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.result-text {
  min-width: 0;
  padding: 0;
  text-align: left;
}

.result-text:hover h3,
.result-text:focus-visible h3 {
  color: #ffffff;
}

.result-item {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.result-item h3,
.cart-item h3 {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-item p,
.cart-item p,
.empty-state,
.saved-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.result-add {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.cart-item {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.cart-controls span {
  min-width: 22px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-summary strong {
  font-size: 14px;
}

.panel-actions {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 10px;
}

.saved-note {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
}

.cart-icon.has-items {
  box-shadow: 0 0 24px rgba(241, 238, 232, 0.13);
}
