@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── TOKENS ─── */
:root {
  --ink:          #171717;
  --ink-50:       rgba(23,23,23,0.58);
  --ink-15:       rgba(23,23,23,0.08);
  --paper:        #f7f7f4;
  --surface:      #ffffff;
  --line:         #deded8;
  --gold:         #8f6b32;
  --gold-lt:      #b1843d;
  --gold-glow:    rgba(143,107,50,0.16);
  --deep:         #173733;
  --deep-lt:      #22534d;
  --blush:        #b84747;
  --mint:         #e9f1ee;
  --slate:        #edf1f2;
  --shadow-sm:    0 2px 10px rgba(23,23,23,0.05);
  --shadow-md:    0 12px 34px rgba(23,23,23,0.1);
  --shadow-lg:    0 24px 64px rgba(23,23,23,0.14);
  --r:            6px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
img { display: block; }

/* ─── TOPBAR ─── */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(20px, 5vw, 72px);
  height: 88px;
  background: rgba(5,5,4,0.82);
  border-bottom: 1px solid rgba(177,132,61,0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: transparent;
  color: var(--gold-lt);
  border-radius: 0;
}

.nav-links {
  display: flex;
  gap: clamp(28px, 5vw, 58px);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0;
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-lt); }

.cart-button {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-button:hover {
  background: rgba(177,132,61,0.16);
  border-color: var(--gold-lt);
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 700;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: min(720px, 92vh);
  display: grid;
  align-items: center;
  padding: 128px clamp(24px, 6vw, 96px) clamp(64px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,5,4,0.96) 0%, rgba(5,5,4,0.76) 36%, rgba(5,5,4,0.18) 74%, rgba(5,5,4,0.32) 100%),
    url("assets/dark-gold-gift-hero.jpg") center right / cover no-repeat;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-size: 150px;
  opacity: 0.4;
  pointer-events: none;
}

.hero::after { display: none; }

.hero-copy {
  max-width: 560px;
  padding-bottom: 0;
  color: #fff;
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── EYEBROW ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--gold-lt);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.hero .eyebrow { color: #c9a86c; }
.section-heading .eyebrow,
.checkout-copy .eyebrow { color: var(--gold); }
.surprise-band .eyebrow { color: #c9a86c; }
.cart-panel .eyebrow    { color: var(--gold); }

.profile-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.profile-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* ─── TYPE ─── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.6rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0;
  margin-bottom: 24px;
}
h1 em { font-style: italic; color: #c9a86c; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.hero-copy p {
  max-width: 520px;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ─── CTA BUTTONS ─── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-link, .secondary-link,
.checkout-link, .pay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.primary-link { cursor: pointer; }

.primary-link, .pay-button, .checkout-link {
  background: linear-gradient(135deg, #c99a4d 0%, #9b7131 100%);
  color: #fff;
  border: 0;
}
.primary-link:hover, .pay-button:hover, .checkout-link:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(168,124,62,0.32);
}

.secondary-link {
  background: transparent;
  color: #f4d491;
  border: 1px solid rgba(244,212,145,0.58);
  cursor: pointer;
}
.secondary-link:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

/* ─── CREATOR STRIP ─── */
.creator-strip {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1200px;
  margin: -52px auto 0;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 4;
}

.avatar {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: var(--r);
  outline: 3px solid var(--line);
  outline-offset: 3px;
}

.creator-strip h2 { margin-bottom: 4px; font-size: 1.6rem; }

.creator-strip > div > p:last-child {
  margin: 0;
  color: var(--ink-50);
  font-size: 0.9rem;
  font-weight: 300;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.trust-row span {
  padding: 7px 14px;
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── SECTION HEADING ─── */
.section-heading {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
  padding: 88px 0 32px;
}
.section-heading h2 { max-width: 600px; }

/* ─── WISHLIST GRID ─── */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.gift-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.gift-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.img-wrap {
  position: relative;
  overflow: hidden;
}
.gift-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.gift-card:hover img { transform: scale(1.05); }

.gift-tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 3px 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink-50);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gift-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}
.gift-body > div:first-child { flex: 1; }
.gift-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.gift-body p {
  color: var(--ink-50);
  font-size: 0.86rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0;
}

.gift-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.gift-footer strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
}

.gift-footer button {
  min-height: 36px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.gift-footer button:hover { background: var(--gold); }

/* ─── SURPRISE BAND ─── */
.surprise-band {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,400px);
  gap: 40px;
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  margin: 28px auto 44px;
  padding: clamp(36px, 5vw, 60px);
  background: var(--deep);
  color: #fff;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}

.surprise-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.surprise-band::after {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 160px; height: 160px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.surprise-band h2 { color: #fff; }
.surprise-band > div > p {
  color: rgba(255,255,255,0.62);
  margin-bottom: 0;
  font-weight: 300;
}

.surprise-form { display: grid; gap: 14px; }

label {
  display: grid;
  gap: 8px;
  color: var(--ink-50);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.surprise-form label { color: rgba(255,255,255,0.65); }

input, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
textarea { resize: vertical; }
input:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.surprise-form input {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.surprise-form input::placeholder { color: rgba(255,255,255,0.35); }
.surprise-form input:focus {
  background: rgba(255,255,255,0.1);
  border-color: #c9a86c;
  box-shadow: 0 0 0 3px rgba(201,168,108,0.18);
}

.surprise-form button {
  min-height: 50px;
  background: var(--gold);
  color: #fff;
  border: 0;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.surprise-form button:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

/* ─── CHECKOUT ─── */
.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0,0.8fr) minmax(360px,1fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: start;
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
  padding: 96px 0;
}

.checkout-copy { position: sticky; top: 96px; }
.checkout-copy h2 { max-width: 360px; }
.checkout-copy p,
.checkout-copy li {
  color: var(--ink-50);
  line-height: 1.75;
  font-weight: 300;
}
.checkout-copy ul { padding-left: 18px; margin: 0; }
.checkout-copy li { margin-bottom: 6px; }

.checkout-panel {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 3.5vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
}
legend {
  padding: 0 8px;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.choice {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}
.choice input {
  width: 17px; height: 17px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.order-summary {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #f4ede4;
  border-radius: 3px;
}
.order-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
}
.order-summary div:last-child {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 600;
}

.pay-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 0.84rem;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card-logo.visa {
  color: #1a1f71;
  font-style: italic;
}

.card-logo.mastercard {
  position: relative;
  gap: 0;
  width: 78px;
  color: transparent;
  overflow: hidden;
}

.card-logo.mastercard span {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.card-logo.mastercard span:first-child {
  left: 19px;
  background: #eb001b;
}

.card-logo.mastercard span:nth-child(2) {
  left: 34px;
  background: rgba(247,158,27,0.88);
}

.card-logo.amex {
  background: #2e77bc;
  border-color: #2e77bc;
  color: #fff;
}

.card-logo.discover {
  color: #111827;
  background: linear-gradient(90deg, #fff 0%, #fff 58%, #f58220 100%);
}

.payment-note {
  margin: 0;
  color: var(--ink-50);
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ─── CART DRAWER ─── */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  justify-content: flex-end;
  background: rgba(18,16,14,0.5);
  backdrop-filter: blur(4px);
}
.cart-drawer.is-open { display: flex; }

.cart-panel {
  width: min(440px, 100%);
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 20px;
  padding: 30px 26px;
  background: var(--paper);
  box-shadow: -28px 0 80px rgba(0,0,0,0.2);
  overflow-y: auto;
  animation: slideIn 0.28s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.cart-head h2 { margin-bottom: 0; font-size: 1.7rem; }

.icon-button {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.icon-button:hover { background: var(--line); }

.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 8px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.cart-line strong { font-size: 0.92rem; }
.cart-line p { margin: 0; color: var(--ink-50); font-size: 0.82rem; }
.cart-line button {
  align-self: start;
  border: 0;
  background: transparent;
  color: var(--blush);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 2px;
  transition: opacity 0.2s;
}
.cart-line button:hover { opacity: 0.65; }

.empty-cart {
  padding: 28px 20px;
  color: var(--ink-50);
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--r);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 300;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.checkout-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
}

/* ─── RECIPIENT MODAL ─── */
.recipient-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(23,23,23,0.56);
  backdrop-filter: blur(6px);
}

.recipient-modal.is-open { display: grid; }

.recipient-modal-panel {
  width: min(460px, 100%);
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.25s cubic-bezier(0.22,1,0.36,1) both;
}

.recipient-modal-photo {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: var(--r);
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.recipient-modal-panel h2 {
  margin-bottom: 8px;
  font-size: 1.9rem;
}

.recipient-modal-name {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.recipient-modal-help {
  margin: 0;
  color: var(--ink-50);
  font-size: 0.9rem;
}

.recipient-confirm-form {
  display: grid;
  gap: 14px;
}

.recipient-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.recipient-modal-actions .secondary-link {
  color: var(--ink);
  border-color: var(--line);
}

.recipient-modal-actions .secondary-link:hover {
  background: var(--slate);
  box-shadow: none;
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  max-width: min(340px, calc(100% - 48px));
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.toast.is-visible { transform: translateY(0); opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .wishlist-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 980px) {
  .checkout-shell { grid-template-columns: 1fr; }
  .creator-strip  { grid-template-columns: auto 1fr; }
  .surprise-band  { grid-template-columns: 1fr; }
  .trust-row      { display: none; }
  .checkout-copy  { position: static; }
  .recipient-panel { grid-template-columns: 1fr; }
  .celeb-profile {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0 0;
  }
}

@media (max-width: 640px) {
  .topbar    { height: 76px; padding: 0 18px; }
  .brand     { font-size: 1.45rem; }
  .brand-mark { width: 34px; height: 34px; }
  .nav-links { display: none; }

  .hero {
    min-height: 640px;
    padding: 110px 22px 48px;
    align-items: center;
  }
  .hero::after { display: none; }
  .hero-copy   { padding-bottom: 28px; }
  .hero-copy p { font-size: 0.94rem; }
  h1           { font-size: clamp(2.8rem, 12vw, 4rem); }

  .creator-strip {
    margin-top: 0;
    width: calc(100% - 32px);
  }

  .wishlist-grid  { grid-template-columns: 1fr; }
  .form-row.two   { grid-template-columns: 1fr; }
  .checkout-shell { padding-top: 60px; }
}

/* ═══════════════════════════════════════════
   CELEBRITY SELECTOR
═══════════════════════════════════════════ */

.celeb-section {
  background: #fbfaf7;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding: clamp(42px, 5vw, 64px) 0;
}

.celeb-section-inner {
  width: min(1320px, calc(100% - 40px));
  margin-inline: auto;
}

.recipient-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 0.95fr) minmax(330px, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

/* ── Header row ── */
.celeb-header {
  display: block;
  margin-bottom: 0;
}

.celeb-header h2 { margin-bottom: 6px; }

.celeb-sub {
  color: var(--ink-50);
  font-size: 0.92rem;
  font-weight: 300;
  margin: 0;
}

.recipient-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  max-width: 720px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.recipient-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--ink-50);
  font-size: 0.84rem;
}

.recipient-status::before {
  content: '⌕';
  margin-right: 8px;
  color: var(--ink-50);
}

.recipient-status.is-error {
  color: var(--blush);
}

.recipient-suggestions {
  grid-column: 1 / -1;
  display: none;
  gap: 8px;
  margin-top: -4px;
}

.recipient-suggestions.is-visible {
  display: grid;
}

.recipient-suggestion {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.recipient-suggestion:hover {
  background: var(--surface);
  border-color: var(--gold);
}

.recipient-suggestion img {
  width: 42px;
  height: 42px;
  border-radius: 3px;
  object-fit: cover;
}

.recipient-suggestion strong {
  display: block;
}

.recipient-suggestion strong {
  font-size: 0.92rem;
}

.recipient-entry label {
  color: var(--ink);
}

.recipient-entry button {
  align-self: end;
  min-height: 50px;
  padding: 0 28px;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.recipient-entry button:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

/* ── Category pills ── */
.celeb-cat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.celeb-cat-pill {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-50);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.celeb-cat-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.celeb-cat-pill.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ── Celebrity grid ── */
.celeb-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.celeb-empty {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--ink-50);
  font-size: 0.92rem;
}

/* ── Celebrity card ── */
.celeb-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.celeb-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.1);
  transform: translateY(-4px);
}
.celeb-card.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow), 0 14px 34px rgba(23, 23, 23, 0.12);
  transform: translateY(-4px);
}

/* ── Card image ── */
.celeb-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.celeb-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}
.celeb-card:hover .celeb-card-img-wrap img,
.celeb-card.is-selected .celeb-card-img-wrap img {
  transform: scale(1.06);
}

/* gradient overlay on image */
.celeb-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,16,14,0.55) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Checkmark badge ── */
.celeb-card-check {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.celeb-card.is-selected .celeb-card-check {
  opacity: 1;
  transform: scale(1);
}

/* ── Card body ── */
.celeb-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 12px 14px;
}

.celeb-card-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.celeb-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

.celeb-card-known {
  font-size: 0.72rem;
  color: var(--ink-50);
  font-weight: 400;
}

/* ── Celebrity profile strip ── */
.celeb-profile {
  display: block;
  border-top: 0;
  border-left: 1px solid var(--line);
  padding: 0 0 0 clamp(26px, 4vw, 42px);
  animation: fadeUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.celeb-profile.is-visible { display: block; }

.celeb-profile-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px 24px;
  align-items: center;
}

.celeb-profile-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  outline: 3px solid var(--gold-lt);
  outline-offset: 3px;
}

.celeb-profile-info h2 { margin-bottom: 6px; font-size: 1.7rem; }
.celeb-profile-info p  { margin: 0; color: var(--ink-50); font-size: 0.9rem; font-weight: 300; }
.celeb-profile .trust-row {
  grid-column: 1 / -1;
  justify-content: flex-start;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .celeb-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .celeb-grid   { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .celeb-header { flex-direction: column; align-items: flex-start; }
  .recipient-entry { grid-template-columns: 1fr; width: 100%; }
  .recipient-entry button { width: 100%; }
  .celeb-profile-inner { grid-template-columns: auto 1fr; }
  .celeb-profile-inner .trust-row { display: none; }
}

@media (max-width: 480px) {
  .celeb-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .recipient-modal-actions { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .celeb-section {
    padding: 34px 0 38px;
  }

  .celeb-section-inner {
    width: min(100% - 28px, 520px);
  }

  .recipient-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .celeb-header h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1;
    margin-bottom: 10px;
  }

  .celeb-sub {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .recipient-entry {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .recipient-entry button {
    width: 100%;
    min-height: 52px;
  }

  .recipient-status {
    margin-top: 0;
    line-height: 1.4;
  }

  .recipient-suggestion {
    min-height: 58px;
  }

  .celeb-profile {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
  }

  .celeb-profile-inner {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
  }

  .celeb-profile-avatar {
    width: 72px;
    height: 72px;
    outline-width: 2px;
  }

  .celeb-profile-info h2 {
    font-size: 1.35rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .celeb-profile-info p {
    font-size: 0.86rem;
    line-height: 1.45;
  }
}
