﻿:root {
  --bg-0: #04050c;
  --bg-1: #0f1327;
  --bg-2: #1f1136;
  --bg-3: #072837;
  --text: #f7fbff;
  --muted: #bfd0ea;
  --line: rgba(255, 255, 255, 0.2);
  --line-soft: rgba(255, 255, 255, 0.12);
  --mint: #73ffd4;
  --cyan: #6fb8ff;
  --gold: #ffd78a;
  --rose: #ff7da6;
  --violet: #a57dff;
  --danger: #ff667d;
  --ink-gold: #2d1f08;
  --radius: 20px;
  --shadow-xl: 0 40px 100px rgba(2, 4, 14, 0.55);
  --shadow-lg: 0 24px 56px rgba(2, 4, 14, 0.42);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: Manrope, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(1000px 700px at -8% -12%, rgba(111, 184, 255, 0.24), transparent 70%),
    radial-gradient(980px 560px at 108% -4%, rgba(255, 125, 166, 0.22), transparent 66%),
    radial-gradient(1200px 720px at 48% 112%, rgba(115, 255, 212, 0.14), transparent 72%),
    linear-gradient(145deg, var(--bg-0), var(--bg-1) 36%, var(--bg-2) 72%, var(--bg-3));
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(#fff 0.45px, transparent 0.45px);
  background-size: 3px 3px;
}

.bg-orb {
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  animation: drift 12s ease-in-out infinite;
}

.orb-a {
  top: 0;
  left: -220px;
  background: radial-gradient(circle, rgba(111, 184, 255, 0.95), transparent 72%);
}

.orb-b {
  top: 36%;
  right: -220px;
  background: radial-gradient(circle, rgba(255, 125, 166, 0.86), transparent 72%);
  animation-delay: -5s;
}

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: relative;
  overflow: hidden;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(90deg, rgba(115, 255, 212, 0.2), rgba(111, 184, 255, 0.18), rgba(255, 125, 166, 0.18));
}

.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.27), transparent 68%);
  transform: translateX(-120%);
  animation: sweep 4.1s linear infinite;
}

.topbar p {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 11px;
  color: #f3f8ff;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(130%);
  background: rgba(8, 12, 26, 0.72);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  text-decoration: none;
  color: #fff;
  font-family: Unbounded, sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  background: linear-gradient(120deg, #fff, var(--mint), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: #d2e0f8;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--mint), var(--rose));
  transition: width 0.25s ease;
}

.nav-links a:hover::after { width: 100%; }

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

.pill {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  color: #ebf4ff;
  text-decoration: none;
  padding: 8px 13px;
  font-size: 12px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.pill:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 26px rgba(111, 184, 255, 0.24);
}

.account-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.account-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: #1a1330;
  background: linear-gradient(120deg, var(--mint), var(--rose), var(--violet));
}

.account-pill.logged-in {
  border-color: rgba(173, 133, 255, 0.68);
}

.cart-count {
  display: none;
  margin-left: 6px;
  border-radius: 999px;
  padding: 2px 8px;
  background: linear-gradient(120deg, var(--gold), #ffedc2);
  color: var(--ink-gold);
  font-weight: 800;
}

.hero {
  position: relative;
  margin-top: 18px;
  min-height: 74vh;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  align-items: center;
  padding: 80px 28px 58px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(620px 320px at 12% 12%, rgba(115,255,212,0.26), transparent 74%),
    radial-gradient(640px 340px at 85% 80%, rgba(165,125,255,0.2), transparent 72%),
    linear-gradient(140deg, rgba(7,12,26,0.95), rgba(11,16,34,0.95) 50%, rgba(28,12,42,0.95));
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 32%, rgba(255,255,255,0.13), transparent 62%);
  pointer-events: none;
  animation: sweep 6s linear infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 12px auto;
  max-width: 760px;
  text-align: center;
  font-family: Unbounded, sans-serif;
  font-size: clamp(34px, 5.6vw, 68px);
  line-height: 1.06;
  background: linear-gradient(120deg, #ffffff, #dceeff, #ffd9ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-type {
  margin: 0 auto 10px;
  max-width: 680px;
  text-align: center;
  color: #def1ff;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.type-cycle {
  position: relative;
  display: inline-block;
  min-width: 260px;
  padding: 2px 8px 2px 0;
  color: transparent;
  font-weight: 800;
  background: linear-gradient(100deg, #ffffff, var(--mint), #b4a3ff, #ffffff);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 26px rgba(115, 255, 212, 0.25);
  animation: typeShimmer 3.6s linear infinite;
}

.type-cycle::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 1px;
  width: 2px;
  height: 1.05em;
  background: #f3f9ff;
  animation: blink .9s steps(1) infinite;
}

.hero-copy p {
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
  color: #c5d8f4;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-wordmark {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: Unbounded, sans-serif;
  font-size: clamp(54px, 9vw, 122px);
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: left;
  margin: 0 0 6px;
  transform: translateY(-34px);
  color: transparent;
  background-image: linear-gradient(
    100deg,
    #73ffd4 0%,
    #68d4ff 16%,
    #9f8bff 32%,
    #ff88b6 48%,
    #ffc774 64%,
    #b8ff84 80%,
    #73ffd4 100%
  );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.15px rgba(236, 246, 255, 0.84);
  text-shadow:
    0 0 16px rgba(109, 186, 255, 0.26),
    0 0 26px rgba(255, 153, 182, 0.24);
  animation: desakFlow 7.2s linear infinite;
  pointer-events: none;
}

.hero-frame {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  box-shadow: var(--shadow-lg);
}

.hero-frame.main {
  width: min(500px, 94%);
  padding: 16px;
  position: relative;
  z-index: 3;
  transform-style: preserve-3d;
  will-change: transform;
  animation: floatCard 5s ease-in-out infinite;
}

.hero-frame.main img {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.hero-frame.main video {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.hero-label {
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(111,184,255,0.18), rgba(255,125,166,0.16));
  padding: 10px;
  color: #f0f7ff;
  font-size: 13px;
  text-align: center;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  animation: orbitSpin 16s linear infinite;
}

.orbit-card {
  --angle: 0deg;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112px;
  height: 148px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  padding: 6px;
  box-shadow: 0 18px 34px rgba(4, 8, 20, 0.45);
  transform: rotate(var(--angle)) translateY(-206px) rotate(calc(-1 * var(--angle)));
  animation: orbitReveal 4.5s ease-in-out infinite;
}

.orbit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: saturate(1.1);
}

.orbit-card:nth-child(1) { --angle: 0deg; animation-delay: 0s; }
.orbit-card:nth-child(2) { --angle: 72deg; animation-delay: .35s; }
.orbit-card:nth-child(3) { --angle: 144deg; animation-delay: .7s; }
.orbit-card:nth-child(4) { --angle: 216deg; animation-delay: 1.05s; }
.orbit-card:nth-child(5) { --angle: 288deg; animation-delay: 1.4s; }

.motion-lab {
  margin-top: 18px;
  padding: 34px 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(500px 300px at 10% 0%, rgba(115,255,212,0.14), transparent 70%),
    radial-gradient(480px 300px at 88% 100%, rgba(255,125,166,0.13), transparent 72%),
    linear-gradient(145deg, rgba(10,14,30,0.9), rgba(17,22,40,0.92));
  box-shadow: var(--shadow-lg);
}

.motion-lab .section-head {
  position: relative;
  padding-left: 18px;
}

.motion-lab .section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 88%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mint), #8ab8ff, var(--rose));
  box-shadow: 0 0 24px rgba(115, 255, 212, 0.3);
}

.motion-eyebrow {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: #d8e7ff;
}

.motion-lab .section-head h2 {
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.08;
  background: linear-gradient(120deg, #ffffff, #dbeaff, #ffcde0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.motion-lab .section-head p {
  max-width: 760px;
  color: #c7d8f2;
}

.motion-ticker {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(120deg, rgba(111,184,255,0.15), rgba(255,125,166,0.16));
}

.ticker-track {
  display: inline-flex;
  gap: 34px;
  white-space: nowrap;
  padding: 10px 20px;
  min-width: 100%;
  animation: ticker 18s linear infinite;
}

.ticker-track span {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f2f8ff;
}

.motion-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.motion-card {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}

.motion-card.pulse {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.motion-card h3 {
  margin: 0;
  font-family: Unbounded, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.motion-card p {
  margin: 8px 0 0;
  color: #c5d7f2;
  font-size: 13px;
  line-height: 1.6;
}

.motion-media {
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}

.motion-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  animation: zoomPulse 7s ease-in-out infinite;
}

.motion-card.glow::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -65px;
  right: -45px;
  border-radius: 50%;
  filter: blur(16px);
  background: radial-gradient(circle, rgba(115,255,212,0.52), transparent 70%);
  animation: drift 8s ease-in-out infinite;
}

.stacked-mini {
  margin-top: 12px;
  min-height: 340px;
  flex: 1;
  position: relative;
}

.stacked-mini span {
  position: absolute;
  left: 50%;
  width: 92%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  transform: translateX(-50%);
  background: linear-gradient(125deg, rgba(111,184,255,0.26), rgba(255,125,166,0.22));
  box-shadow: 0 14px 24px rgba(0,0,0,0.26);
  animation: stackPulse 4.2s ease-in-out infinite;
  overflow: hidden;
}

.stacked-mini span:nth-child(1) { top: 0; bottom: 132px; width: 92%; animation-delay: 0s; z-index: 4; }
.stacked-mini span:nth-child(2) { top: 44px; bottom: 88px; width: 88%; animation-delay: .2s; z-index: 3; }
.stacked-mini span:nth-child(3) { top: 88px; bottom: 44px; width: 84%; animation-delay: .4s; z-index: 2; }
.stacked-mini span:nth-child(4) { top: 132px; bottom: 0; width: 80%; animation-delay: .6s; z-index: 1; }

.stacked-mini span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.stacked-mini span.pulse-top {
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
}

.stacked-mini span.pulse-top img {
  object-fit: cover;
  background: transparent;
  padding: 0;
}

.wave-row {
  margin-top: 22px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.wave-row span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(140deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  font-weight: 800;
  color: #f2f8ff;
  animation: waveRise 1.4s ease-in-out infinite;
}

.wave-row span:nth-child(1) { animation-delay: 0s; }
.wave-row span:nth-child(2) { animation-delay: .12s; }
.wave-row span:nth-child(3) { animation-delay: .24s; }
.wave-row span:nth-child(4) { animation-delay: .36s; }
.wave-row span:nth-child(5) { animation-delay: .48s; }

.wave-brand-copy {
  margin-top: 14px;
  color: #d4e3f9;
  font-size: 12px;
  line-height: 1.7;
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}

.desak-story {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.story-line {
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(140deg, rgba(255,255,255,0.11), rgba(255,255,255,0.03));
}

.story-cinematic {
  font-size: 12px;
  line-height: 1.7;
  color: #deebff;
}

.story-manifesto {
  font-family: Unbounded, sans-serif;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #f7fbff;
}

.story-editorial {
  font-size: 12px;
  line-height: 1.75;
  color: #d6f2ea;
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold {
  border: 0;
  color: var(--ink-gold);
  background: linear-gradient(120deg, var(--gold), #ffe7b7);
  box-shadow: 0 12px 26px rgba(255, 206, 126, 0.3);
}

.btn-ghost {
  color: #ebf4ff;
  background: linear-gradient(120deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
}

.section {
  padding: 62px 0 12px;
}

.section-head h2 {
  margin: 0;
  font-family: Unbounded, sans-serif;
  font-size: clamp(24px, 3.8vw, 37px);
  background: linear-gradient(120deg, #fff, #dceeff, #ffd7e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.product-grid {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 14px;
  scroll-snap-type: x mandatory;
}

.product-grid::-webkit-scrollbar {
  height: 8px;
}

.product-grid::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
}

.product-card {
  flex: 0 0 min(300px, 84vw);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(10, 12, 18, 0.96), rgba(18, 21, 28, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 20px 40px rgba(3, 6, 14, 0.44);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: pointer;
  scroll-snap-align: start;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.12), rgba(255,255,255,0));
  filter: blur(6px);
  opacity: 0.36;
  z-index: 0;
  pointer-events: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 22px;
  background: linear-gradient(158deg, rgba(7, 12, 24, 0.96), rgba(13, 20, 36, 0.9) 46%, rgba(17, 12, 32, 0.88));
  z-index: 0;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.44);
  box-shadow:
    0 34px 66px rgba(4, 7, 16, 0.58),
    0 0 0 1px rgba(255,255,255,0.24);
}

.product-media {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #111c2f, #0f1728);
  overflow: hidden;
}

.product-body {
  position: relative;
  z-index: 1;
  background: linear-gradient(176deg, rgba(8, 13, 24, 0.95), rgba(11, 17, 32, 0.88));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.product-card:hover .product-image {
  transform: scale(1.03);
  filter: saturate(1.03) contrast(1.02);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 24, 0.02), rgba(8, 13, 24, 0.06) 52%, rgba(8, 13, 24, 0.38));
  pointer-events: none;
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f9fbff;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 12, 18, 0.72);
}

.wish-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(255,255,255,0.22), rgba(255,255,255,0.04)),
    rgba(8, 14, 26, 0.74);
  color: #f4f8ff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.wish-heart:hover {
  transform: translateY(-1px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.wish-heart svg {
  width: 19px;
  height: 19px;
}

.wish-heart svg path {
  vector-effect: non-scaling-stroke;
}

.wish-heart .heart-main {
  fill: transparent;
  stroke: #f7fbff;
  stroke-width: 1.7;
  transition: fill .22s ease, stroke .22s ease, filter .22s ease;
}

.wish-heart.active {
  border-color: rgba(255, 143, 176, 0.62);
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(255, 174, 196, 0.32), rgba(255, 111, 151, 0.1)),
    rgba(28, 10, 19, 0.74);
}

.wish-heart.active .heart-main {
  fill: #ff7ca6;
  stroke: #ff7ca6;
  filter: drop-shadow(0 0 8px rgba(255, 124, 166, 0.35));
}

.wish-heart.ignite {
  border-color: rgba(227, 180, 88, 0.9);
  background:
    radial-gradient(circle at 35% 30%, rgba(232, 193, 116, 0.76), rgba(150, 36, 58, 0.3) 68%),
    rgba(30, 8, 14, 0.84);
  box-shadow:
    0 0 18px rgba(128, 33, 49, 0.52),
    0 0 30px rgba(201, 154, 71, 0.44);
  animation: wishIgnite .45s ease;
}

.wish-heart.ignite .heart-main {
  fill: #9f2d44;
  stroke: #e1bb6c;
  filter: drop-shadow(0 0 10px rgba(214, 170, 86, 0.58));
}

.wish-fly-heart {
  position: fixed;
  width: 16px;
  height: 16px;
  z-index: 130;
  pointer-events: none;
}

.wish-fly-heart svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wish-fly-heart path {
  fill: #9f2d44;
  stroke: #e0b768;
  stroke-width: 1.2;
  filter:
    drop-shadow(0 0 10px rgba(200, 151, 66, 0.72))
    drop-shadow(0 0 16px rgba(133, 37, 55, 0.48));
}

#wishlist-toggle.wishlist-hit {
  transform: translateY(-1px) scale(1.08);
  border-color: rgba(225, 183, 103, 0.84);
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(232, 196, 117, 0.78), rgba(141, 34, 56, 0.2)),
    linear-gradient(130deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  box-shadow:
    0 0 16px rgba(202, 156, 76, 0.56),
    0 0 28px rgba(130, 34, 54, 0.34);
  color: #ffefcb;
}

#cart-toggle.bag-hit {
  transform: translateY(-1px) scale(1.08);
  border-color: rgba(221, 177, 96, 0.86);
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(226, 188, 108, 0.82), rgba(148, 45, 55, 0.25)),
    linear-gradient(130deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  box-shadow:
    0 0 14px rgba(199, 152, 73, 0.58),
    0 0 24px rgba(124, 34, 50, 0.34);
  color: #ffeec9;
}

.bag-spark {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 130;
  pointer-events: none;
  background: radial-gradient(circle, #f7e5be, #d8a454 64%, #8a2d3f);
  box-shadow: 0 0 10px rgba(198, 147, 65, 0.85);
  animation: bagSpark .55s ease-out forwards;
}

.product-body { padding: 14px; }

.product-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  color: #f4f8ff;
}

.product-description {
  margin: 9px 0 0;
  min-height: 40px;
  color: #c4d4ef;
  font-size: 13px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.rating-stars {
  color: #f2cf88;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.rating-meta {
  color: #b6c8e6;
  font-size: 12px;
}

.product-price-wrap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-price {
  color: #ffffff;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.01em;
}

.product-price-cut {
  color: #95a9c9;
  font-size: 12px;
  text-decoration: line-through;
}

.product-meta-row {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #d9e8ff;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.btn-cart {
  margin-top: 12px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.28);
  background: linear-gradient(150deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  color: #f4f8ff;
  padding: 11px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-cart:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.52);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
  filter: none;
}

.btn-cart svg {
  width: 15px;
  height: 15px;
}

.btn-cart svg path {
  fill: #ecf5ff;
}

.btn-cart.bag-ignite {
  border-color: rgba(222, 179, 99, 0.82);
  background: linear-gradient(125deg, rgba(220, 179, 98, 0.34), rgba(145, 40, 56, 0.24));
  box-shadow:
    0 0 0 2px rgba(205, 159, 78, 0.26),
    0 10px 24px rgba(114, 33, 49, 0.34);
}

.drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: min(420px, 100vw);
  height: 100vh;
  z-index: 60;
  border-left: 1px solid var(--line-soft);
  background: linear-gradient(170deg, #0c111d, #111c30);
  display: flex;
  flex-direction: column;
  transition: right .28s ease;
}

.drawer.open { right: 0; }

.drawer-head,
.drawer-foot {
  padding: 14px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.drawer-foot {
  border-bottom: 0;
  border-top: 1px solid var(--line-soft);
  flex-direction: column;
  align-items: stretch;
}

.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 14px;
}

.cart-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 10px;
  background: linear-gradient(130deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.cart-row img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
}

.row-controls {
  margin-top: 8px;
  display: flex;
  gap: 6px;
}

.btn-small {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: #e9f2ff;
  padding: 6px 8px;
  font-size: 12px;
  cursor: pointer;
}

.cart-total {
  font-weight: 700;
  color: #d9e9ff;
}

.search-overlay {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 14px 20px;
  background: rgba(4, 7, 13, 0.85);
  z-index: 70;
}

.search-overlay.active { display: flex; }

.search-panel {
  width: min(920px, 96vw);
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #0b1220, #101a2e);
  padding: 14px;
}

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

#searchInput {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #ecf4ff;
  padding: 12px 14px;
}

.search-controls {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  padding: 12px;
  display: grid;
  gap: 10px;
}

.filter-group {
  display: grid;
  gap: 8px;
}

.filter-group span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bfd0ea;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #e8f2ff;
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.38);
}

.filter-chip.active {
  border-color: rgba(255, 214, 123, 0.7);
  background: linear-gradient(120deg, rgba(255, 214, 123, 0.26), rgba(255, 140, 167, 0.17));
  color: #fff6de;
  box-shadow: 0 8px 18px rgba(255, 194, 97, 0.24);
}

.filter-clear {
  justify-self: end;
}

.search-results {
  margin-top: 10px;
  max-height: 60vh;
  overflow: auto;
}

.search-list { display: grid; gap: 8px; }

.search-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 8px;
  text-decoration: none;
  color: #e8f1ff;
  background: rgba(255,255,255,0.04);
}

.search-item img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  gap: 8px;
  align-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(130deg, #0b1220, #10182a);
  padding: 8px;
}

.toast.show { display: flex; }

.site-footer {
  margin-top: 30px;
  border-top: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  padding: 24px 0;
}

.footer-grid h4,
.footer-grid h5 {
  margin: 0 0 8px;
  font-family: Unbounded, sans-serif;
  font-size: 14px;
}

.footer-grid p,
.footer-grid a {
  margin: 0 0 6px;
  color: var(--muted);
  text-decoration: none;
}

.footer-grid a:hover { color: #fff; }

.copyright {
  margin: 0;
  border-top: 1px solid var(--line-soft);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 10px;
}

.auth-page,
.account-page,
.cart-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .75s ease forwards;
}

.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

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

@keyframes drift {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-22px) translateX(16px); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate3d(1, 1, 0, 0deg); }
  50% { transform: translateY(-9px) rotate3d(1, 1, 0, 1.6deg); }
}

@keyframes sweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitReveal {
  0%, 100% { transform: rotate(var(--angle)) translateY(-206px) rotate(calc(-1 * var(--angle))) scale(.94); }
  38% { transform: rotate(var(--angle)) translateY(-168px) rotate(calc(-1 * var(--angle))) scale(1.02); }
  68% { transform: rotate(var(--angle)) translateY(-194px) rotate(calc(-1 * var(--angle))) scale(.97); }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes wishIgnite {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes bagSpark {
  from { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  to { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.2); opacity: 0; }
}

@keyframes typeShimmer {
  from { background-position: 0% 50%; }
  to { background-position: 220% 50%; }
}

@keyframes desakFlow {
  from { background-position: 0% 50%; }
  to { background-position: 260% 50%; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes zoomPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes stackPulse {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50% { transform: translateX(-50%) translateY(-8px) rotate(1.8deg); }
}

@keyframes waveRise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1060px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .motion-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .hero {
    padding: 58px 16px 40px;
    border-radius: 22px;
  }
  .hero-orbit { opacity: 0.8; }
  .orbit-card {
    width: 88px;
    height: 120px;
  }
  .hero-wordmark {
    font-size: clamp(42px, 13vw, 86px);
    -webkit-text-stroke: 1px rgba(236, 246, 255, 0.78);
    transform: translateY(-24px);
  }
  .motion-lab {
    padding: 24px 16px;
    border-radius: 20px;
  }
  .motion-lab .section-head {
    padding-left: 14px;
  }
  .motion-grid { grid-template-columns: 1fr; }
  .search-top { grid-template-columns: 1fr; }
  .filter-clear { justify-self: stretch; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-collections { display: none; }
  .hero-actions a[href^="#"] { display: none; }
}

@media (max-width: 520px) {
  .hero-copy h1 { font-size: clamp(30px, 10vw, 48px); }
  .hero-type { font-size: 14px; }
  .type-cycle { min-width: 200px; }
  .product-card { flex-basis: 86vw; }
}
