:root {
  /* Luxe beauty palette */
  --cream: #FDF8F5;
  --blush: #FCEEE9;
  --rose: #E8A5A8;
  --rose-deep: #D4848A;
  --champagne: #F5E6DC;
  --gold: #C9A86C;
  --gold-light: #E8D5B5;
  --mauve: #C4A6B0;
  --plum: #8B6B7B;
  --espresso: #3D2C2E;
  --text: #4A3638;
  --text-soft: #7D6264;
  --text-muted: #B09698;
  --white: #FFFFFF;
  --shadow-soft: rgba(139, 107, 123, 0.08);
  --shadow-rose: rgba(212, 132, 138, 0.15);
  --shadow-deep: rgba(61, 44, 46, 0.12);
  /* Semantic status colours */
  --green: #3D8B6A;
  --green-bg: #E6F4ED;
  --amber: #B8863A;
  --amber-bg: #FDF4EA;
  --red: #B86A6A;
  --red-bg: #FBEAE8;
  --border-mid: rgba(196, 166, 176, 0.35);
}

/* ═══════════════════════════════════════
   LOGO
═══════════════════════════════════════ */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-gem {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 50%, var(--mauve) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--shadow-rose), inset 0 1px 1px rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.logo-gem::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 50%;
  bottom: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
  border-radius: 6px 4px 8px 4px;
}
.logo-gem svg {
  width: 16px;
  height: 16px;
  fill: white;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.02em;
}
.logo.sm .logo-gem { width: 28px; height: 28px; border-radius: 8px; }
.logo.sm .logo-gem svg { width: 14px; height: 14px; }
.logo.sm .logo-text { font-size: 18px; }

/* ═══════════════════════════════════════
   WISHLIST ICON (navbar)
═══════════════════════════════════════ */
.wishlist-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
}
.wishlist-icon:active { opacity: 0.7; }
.wishlist-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--rose);
  stroke: var(--rose);
  stroke-width: 1;
}
.wishlist-count {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   CIRCLE ICON (navbar)
═══════════════════════════════════════ */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.circle-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
}
.circle-icon:active { opacity: 0.7; }
.circle-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--mauve);
  stroke-width: 1.5;
}
.circle-count {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   CIRCLE TRACKING BADGE (Product Detail)
═══════════════════════════════════════ */
.circle-tracking-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(196, 166, 176, 0.12);
  border-radius: 10px;
  cursor: pointer;
}
.circle-tracking-badge:active { opacity: 0.7; }
.circle-tracking-badge svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--mauve);
  stroke-width: 1.5;
}
.circle-tracking-badge span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   CIRCLE DOT (Product Cards)
═══════════════════════════════════════ */
.circle-dot {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  box-shadow: 0 2px 6px var(--shadow-soft);
}
.circle-dot svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--mauve);
  stroke-width: 1.8;
}
.circle-dot span {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-soft);
}

/* ═══════════════════════════════════════
   SHARE DEAL BLOCK (Confirmed Screen)
═══════════════════════════════════════ */
.share-deal-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(135deg, rgba(212, 132, 138, 0.08) 0%, rgba(196, 166, 176, 0.08) 100%);
  border: 1px dashed rgba(212, 132, 138, 0.3);
  border-radius: 14px;
  padding: 14px 16px;
}
.share-deal-prompt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.share-deal-prompt svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--rose-deep);
  stroke-width: 1.5;
}
.share-deal-channels {
  display: flex;
  gap: 8px;
}
.share-channel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
}
.share-channel:active { opacity: 0.7; }
.share-channel svg {
  width: 14px;
  height: 14px;
}
.share-channel.whatsapp svg { fill: #25D366; stroke: none; }
.share-channel.sms svg { fill: none; stroke: var(--mauve); stroke-width: 1.5; }
.share-channel.link svg { fill: none; stroke: var(--mauve); stroke-width: 1.5; }

/* ═══════════════════════════════════════
   CHAT CHROME
═══════════════════════════════════════ */
.chat-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.chat-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 14px;
  border-bottom: 1px solid rgba(196, 166, 176, 0.2);
  background: linear-gradient(180deg, var(--cream) 0%, rgba(253,248,245,0.8) 100%);
}
.chat-thread {
  flex: 1;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(252,238,233,0.3) 0%, var(--cream) 100%);
}
.chat-thread::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════════
   INPUT BAR
═══════════════════════════════════════ */
.input-bar {
  padding: 12px 16px 10px;
  background: var(--cream);
  border-top: 1px solid rgba(196, 166, 176, 0.15);
}
.input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(196, 166, 176, 0.3);
  border-radius: 24px;
  padding: 8px 8px 8px 18px;
  box-shadow: 0 2px 12px var(--shadow-soft);
}
.input-field {
  flex: 1;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  background: transparent;
  border: none;
  outline: none;
}
.input-field::placeholder { color: var(--text-muted); }
.send-btn {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--shadow-rose);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
}
.send-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px var(--shadow-rose);
}
.send-btn:active {
  transform: scale(0.95);
}
.send-btn.dim { opacity: 0.4; pointer-events: none; }

.home-bar {
  width: 134px;
  height: 5px;
  background: var(--espresso);
  border-radius: 100px;
  margin: 8px auto;
  opacity: 0.15;
}

/* ═══════════════════════════════════════
   MESSAGE BUBBLES
═══════════════════════════════════════ */
.msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: white;
  padding: 14px 18px;
  border-radius: 22px 22px 6px 22px;
  font-size: 14px;
  font-weight: 400;
  max-width: 78%;
  line-height: 1.55;
  box-shadow: 0 4px 16px var(--shadow-rose);
}
.msg-ai {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.ai-text {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid rgba(196, 166, 176, 0.25);
  padding: 14px 18px;
  border-radius: 22px 22px 22px 6px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  max-width: 85%;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

/* ═══════════════════════════════════════
   TYPING INDICATOR
═══════════════════════════════════════ */
.typing {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid rgba(196, 166, 176, 0.25);
  padding: 16px 20px;
  border-radius: 22px 22px 22px 6px;
  display: flex;
  gap: 6px;
  box-shadow: 0 4px 16px var(--shadow-soft);
}
.typing span {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  border-radius: 50%;
  animation: pulse 1.4s infinite ease-in-out;
}
.typing span:nth-child(1) { animation-delay: 0s; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse {
  0%, 60%, 100% { transform: scale(0.8); opacity: 0.4; }
  30% { transform: scale(1.1); opacity: 1; }
}

/* ═══════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════ */
.cards-wrap {
  position: relative;
}
.cards-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cream));
  pointer-events: none;
}
.cards-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}
.cards-scroll::-webkit-scrollbar { display: none; }

.pcard {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  min-width: 180px;
  max-width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px var(--shadow-soft), 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-rose), 0 4px 12px var(--shadow-soft);
}
.pcard:active {
  transform: scale(0.98);
}
.pcard-img {
  width: 100%;
  height: 130px;
  background: linear-gradient(145deg, #FDF0EC 0%, #F8DED6 60%, #F2CFC6 100%);
  position: relative;
  overflow: hidden;
}
.pcard-img::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}
.pcard-img::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 50px;
  background: linear-gradient(180deg, rgba(212,132,138,0.3) 0%, rgba(196,166,176,0.4) 100%);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.pcard-img.v2 { background: linear-gradient(145deg, #F8EBF0 0%, #F0D8E0 60%, #E8CAD4 100%); }
.pcard-img.v3 { background: linear-gradient(145deg, #F5EAE0 0%, #EDD8CA 60%, #E5C8B8 100%); }

.pcard-body { padding: 14px 14px 16px; }
.pcard-brand {
  font-size: 9px;
  font-weight: 600;
  color: var(--mauve);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pcard-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.3;
  margin-bottom: 10px;
}
.pcard-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pcard-price {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
}
.pcard-price-col { display: flex; flex-direction: column; }
.pcard-unit {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}
.pcard-avail {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background: linear-gradient(135deg, #6DC895 0%, #3D8B6A 100%);
  box-shadow: 0 0 7px rgba(61,139,106,0.35);
}
.pcard-avail.amber {
  background: linear-gradient(135deg, #F5D088 0%, #D4901A 100%);
  box-shadow: 0 0 7px rgba(212,144,26,0.35);
}
.pcard-promo {
  position: absolute;
  top: 9px;
  left: 9px;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold) 0%, #9A7030 100%);
  color: white;
  letter-spacing: 0.03em;
  z-index: 1;
}
.pcard-why {
  font-size: 11px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 8px;
  padding-right: 4px;
}
.pcard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}
.pcard-chip {
  font-size: 9px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 10px;
  background: var(--blush);
  color: var(--plum);
}
.pcard-match {
  position: absolute;
  bottom: 10px;
  left: 9px;
  right: 9px;
  font-size: 9px;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  color: var(--plum);
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.pcard-match .match-icon {
  display: inline-block;
  margin-right: 4px;
  color: var(--rose-deep);
}
.pcard-why-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: var(--rose-deep);
  padding: 10px 14px 12px;
  border-top: 1px solid rgba(196, 166, 176, 0.15);
  cursor: pointer;
  background: var(--white);
}
.pcard-why-trigger svg {
  width: 10px;
  height: 10px;
}
.pcard-why-expanded {
  background: var(--blush);
  padding: 12px 14px 12px;
  border-radius: 0 0 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pcard-why-expanded p {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0 0 10px 0;
}
.pcard-why-expanded .why-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--mauve);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pcard-why-expanded .pcard-chips {
  margin-bottom: 10px;
}

/* Quick feedback */
.pcard-feedback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(196, 166, 176, 0.2);
}
.feedback-heart {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  transition: color 0.2s ease;
}
.feedback-heart:hover {
  color: var(--rose-deep);
}
.feedback-heart:hover svg {
  fill: var(--rose-deep);
  stroke: var(--rose-deep);
}
.feedback-heart.active {
  color: var(--rose-deep);
}
.feedback-heart.active svg {
  fill: var(--rose-deep);
  stroke: var(--rose-deep);
}
.feedback-heart svg {
  width: 12px;
  height: 12px;
  fill: var(--rose);
  stroke: var(--rose);
  stroke-width: 1;
}
.feedback-dismiss {
  font-size: 10px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}
.feedback-dismiss:hover {
  color: var(--text-soft);
}
.tap-hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
  padding: 4px 0 0;
}

/* Selected card state */
.pcard.selected {
  box-shadow:
    0 0 0 2px var(--rose-deep),
    0 4px 20px var(--shadow-soft),
    0 2px 8px rgba(0,0,0,0.04);
}

/* ═══════════════════════════════════════
   QUICK QUESTION CHIPS
═══════════════════════════════════════ */
.quick-questions {
  padding: 12px 16px 0;
}
.quick-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quick-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--rose-deep);
  background: var(--white);
  border: 1px solid var(--rose);
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.quick-chip:hover {
  background: var(--blush);
  border-color: var(--rose-deep);
}
.quick-chip.freeform {
  color: var(--text-soft);
  border-color: var(--mauve);
  border-style: dashed;
}
.quick-chip.freeform:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}

/* ═══════════════════════════════════════
   DETAIL CARD (inline in chat)
═══════════════════════════════════════ */
.detail-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 8px 32px var(--shadow-soft),
    0 2px 8px rgba(0,0,0,0.04);
}
.dc-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(145deg, #FDF0EC 0%, #F8DED6 50%, #F2CFC6 100%);
  position: relative;
  overflow: hidden;
}
.dc-img::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  animation: shimmer 4s infinite;
}
.dc-img::after {
  content: '';
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 80px;
  background: linear-gradient(180deg, rgba(212,132,138,0.35) 0%, rgba(196,166,176,0.45) 100%);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.dc-body { padding: 20px 20px 0; }
.dc-brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 4px;
}
.dc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 10px;
}
.dc-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.65;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(196, 166, 176, 0.2);
}
.dc-stores { padding: 18px 0 0; }
.dc-stores-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.dc-store {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(196, 166, 176, 0.15);
}
.dc-store:last-child { border-bottom: none; }
.dc-store-left { flex: 1; }
.dc-store-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dc-store-fresh {
  font-size: 11px;
  color: var(--text-muted);
}
.dc-store-link {
  color: var(--mauve);
  opacity: 0.8;
  cursor: pointer;
  flex-shrink: 0;
}
.dc-store-fresh.fresh { color: var(--green); }
.dc-store-fresh.stale { color: var(--amber); }
.dc-store-unit {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 1px;
}
.dc-store-promo {
  font-size: 10px;
  font-weight: 600;
  color: var(--amber);
  margin-top: 3px;
}
.dc-store-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.dc-store-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--espresso);
}
.stock {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.02em;
}
.stock.in {
  background: linear-gradient(135deg, #E6F4ED 0%, #D4EBE0 100%);
  color: #3D8B6A;
}
.stock.low {
  background: linear-gradient(135deg, #FDF4EA 0%, #F5E8D8 100%);
  color: #B8863A;
}
.stock.out {
  background: linear-gradient(135deg, #FBEAE8 0%, #F5DAD6 100%);
  color: #B86A6A;
}
.dc-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 2px;
}
.dc-attr {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 14px;
  background: var(--blush);
  color: var(--plum);
}
.dc-report {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  padding: 10px 0 2px;
}
.dc-report a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(176,150,152,0.4);
  text-underline-offset: 2px;
}
.dc-footer {
  padding: 18px 20px 20px;
}
.notify-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px var(--shadow-rose);
  transition: transform 0.2s, box-shadow 0.2s;
}
.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--shadow-rose);
}

/* ═══════════════════════════════════════
   BOTTOM SHEET (base appearance)
═══════════════════════════════════════ */
.sheet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 44, 46, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
}
.sheet {
  background: var(--cream);
  border-radius: 28px 28px 0 0;
  width: 100%;
  max-height: 88%;
  overflow-y: auto;
  scrollbar-width: none;
}
.sheet::-webkit-scrollbar { display: none; }
.sheet-handle {
  width: 40px;
  height: 4px;
  background: var(--mauve);
  opacity: 0.3;
  border-radius: 100px;
  margin: 12px auto 0;
}
.sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(196, 166, 176, 0.2);
}
.sheet-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--espresso);
}
.sheet-close {
  width: 32px;
  height: 32px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.sheet-close:hover { background: var(--champagne); }
.sheet-close:active { background: var(--champagne); }
.sheet-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sheet-sub {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-top: -8px;
}

/* ═══════════════════════════════════════
   FORM FIELDS
═══════════════════════════════════════ */
.field { display: flex; flex-direction: column; gap: 10px; }
.flabel {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  border: 1.5px solid rgba(196, 166, 176, 0.35);
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--rose); }
.chip:active { transform: scale(0.97); }
.chip.sel {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px var(--shadow-rose);
}

.price-input {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid rgba(196, 166, 176, 0.35);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.price-input:focus-within { border-color: var(--rose); }
.price-cur {
  padding: 14px 12px 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.price-inp {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text);
  padding: 14px 16px 14px 0;
}

.scope-toggle {
  display: flex;
  background: var(--blush);
  border-radius: 14px;
  padding: 4px;
}
.scope-opt {
  flex: 1;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border-radius: 11px;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.scope-opt.sel {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 2px 8px var(--shadow-soft);
}

.store-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--blush);
  border-radius: 16px;
}
.chk-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.chk {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 2px solid var(--mauve);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.chk.on {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-color: transparent;
  box-shadow: 0 2px 8px var(--shadow-rose);
}

.channels { display: flex; flex-direction: column; gap: 12px; }
.ch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid rgba(196, 166, 176, 0.25);
  border-radius: 14px;
}
.ch-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.ch-input {
  background: var(--white);
  border: 1.5px solid rgba(196, 166, 176, 0.35);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.ch-input:focus {
  border-color: var(--rose);
}
.toggle {
  width: 48px;
  height: 28px;
  border-radius: 100px;
  background: var(--champagne);
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle.on {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
}
.toggle::after {
  content: '';
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.toggle.on::after { transform: translateX(20px); }

.phone-input-wrap {
  display: flex;
  gap: 8px;
}
.country-select {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid rgba(196, 166, 176, 0.35);
  border-radius: 14px;
  padding: 14px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  min-width: 95px;
}
.country-select .flag { font-size: 18px; line-height: 1; }
.country-select .code { font-weight: 500; }
.country-select .arrow { margin-left: auto; color: var(--text-muted); }
.phone-number-input {
  flex: 1;
  background: var(--white);
  border: 1.5px solid rgba(196, 166, 176, 0.35);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
}
.phone-number-input:focus { border-color: var(--rose); }
.phone-number-input::placeholder { color: var(--text-muted); }

.set-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 17px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px var(--shadow-rose);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.set-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--shadow-rose);
}
.set-btn:active {
  transform: scale(0.98);
}

/* ═══════════════════════════════════════
   START SCREEN
═══════════════════════════════════════ */
.start-screen {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}
.start-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 16px;
}
.start-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px 40px;
  gap: 40px;
}
.start-greeting {
  text-align: center;
}
.start-greeting h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 12px;
}
.start-greeting p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
}
.prompts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.prompt {
  background: var(--white);
  border: 1px solid rgba(196, 166, 176, 0.25);
  border-radius: 18px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.prompt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-rose);
  border-color: var(--rose);
}
.prompt:active {
  transform: scale(0.98);
  border-color: var(--rose);
}
.prompt-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--champagne) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prompt-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--rose-deep);
  stroke-width: 1.5;
  fill: none;
}

/* ═══════════════════════════════════════
   WISHLIST SCREEN
═══════════════════════════════════════ */
.wishlist-header {
  padding: 16px 22px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(196, 166, 176, 0.2);
  background: var(--cream);
}
.wishlist-back {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.wishlist-back:active { opacity: 0.6; }
.wishlist-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.wishlist-subtitle {
  font-size: 11px;
  color: var(--text-muted);
}
.wishlist-search-bar {
  padding: 12px 22px;
  background: var(--cream);
}
.wishlist-search-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid rgba(196, 166, 176, 0.35);
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.wishlist-search-input:active { border-color: var(--rose); }
.wishlist-search-input svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}
.wishlist-search-input span {
  font-size: 14px;
  color: var(--text-muted);
}
.wishlist-items {
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wishlist-item {
  background: var(--white);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  gap: 14px;
  box-shadow: 0 2px 12px var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.2s;
}
.wishlist-item:active { transform: scale(0.98); }
.wishlist-item-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  flex-shrink: 0;
}
.wishlist-item-info {
  flex: 1;
  min-width: 0;
}
.wishlist-item-brand {
  font-size: 9px;
  font-weight: 600;
  color: var(--mauve);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.wishlist-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 6px;
}
.wishlist-item-price {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.wishlist-tracker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wishlist-checked {
  font-size: 10px;
  color: var(--text-muted);
}
.wishlist-tracker {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 8px;
}
.wishlist-tracker.price {
  background: var(--blush);
}
.wishlist-tracker.price svg { stroke: var(--rose-deep); }
.wishlist-tracker.price span { color: var(--rose-deep); }
.wishlist-tracker.stock {
  background: var(--amber-bg);
}
.wishlist-tracker.stock svg { stroke: var(--amber); }
.wishlist-tracker.stock span { color: var(--amber); }
.wishlist-tracker svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke-width: 1.5;
}
.wishlist-tracker span {
  font-size: 10px;
  font-weight: 600;
}
.wishlist-notify-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.wishlist-notify-btn:active { transform: scale(0.96); }
.wishlist-notify-btn svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: white;
  stroke-width: 1.5;
}

/* ═══════════════════════════════════════
   WISHLIST SEARCH OVERLAY (base)
═══════════════════════════════════════ */
.wishlist-search-overlay {
  position: absolute;
  inset: 0;
  background: var(--cream);
  z-index: 90;
  display: flex;
  flex-direction: column;
}
.wishlist-search-header {
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(196, 166, 176, 0.2);
  background: var(--cream);
}
.wishlist-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--rose);
  border-radius: 14px;
  padding: 12px 16px;
}
.wishlist-search-field svg {
  width: 18px;
  height: 18px;
  color: var(--rose);
  flex-shrink: 0;
}
.wishlist-search-field input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
}
.wishlist-search-field input::placeholder { color: var(--text-muted); }
.wishlist-search-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.wishlist-search-close:active { opacity: 0.6; }
.wishlist-search-results {
  flex: 1;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}
.wishlist-search-count {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.wishlist-search-result {
  background: var(--white);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  gap: 12px;
  box-shadow: 0 2px 8px var(--shadow-soft);
}
.wishlist-search-result-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  flex-shrink: 0;
}
.wishlist-search-result-info {
  flex: 1;
  min-width: 0;
}
.wishlist-search-result-brand {
  font-size: 9px;
  font-weight: 600;
  color: var(--mauve);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.wishlist-search-result-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}
.wishlist-search-result-price {
  font-size: 12px;
  color: var(--text-soft);
}
.wishlist-add-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--blush);
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--rose-deep);
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
}
.wishlist-add-btn:active { transform: scale(0.95); }
.wishlist-add-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--rose-deep);
  stroke-width: 2;
}
.wishlist-add-btn.saved {
  background: transparent;
  cursor: default;
}
.wishlist-add-btn.saved svg {
  fill: var(--rose);
  stroke: var(--rose);
  stroke-width: 1;
}

/* ═══════════════════════════════════════
   PHASE 3: MY CIRCLE SCREEN
═══════════════════════════════════════ */
.circle-screen {
  min-height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.circle-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(196, 166, 176, 0.2);
}
.circle-back {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.circle-back:active { opacity: 0.6; }
.circle-header-text { flex: 1; }
.circle-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.circle-header-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.circle-menu {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.circle-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}
.circle-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.circle-member {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(196, 166, 176, 0.12);
}
.circle-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--plum);
  flex-shrink: 0;
}
.circle-avatar.pending {
  background: var(--champagne);
  color: var(--text-muted);
}
.circle-member-info { flex: 1; }
.circle-member-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.circle-member-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.circle-member-action {
  font-size: 11px;
  font-weight: 500;
  color: var(--rose-deep);
  cursor: pointer;
}
.circle-member-action:active { opacity: 0.6; }
.circle-divider {
  margin: 20px 0;
  border: none;
  border-top: 1px dashed rgba(196, 166, 176, 0.3);
}
.circle-invite-cta {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 14px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px var(--shadow-rose);
}
.circle-invite-cta:active { transform: scale(0.98); }
.circle-invite-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
}
.circle-share-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════
   PHASE 3: MY EDITS SCREEN
═══════════════════════════════════════ */
.edits-screen {
  min-height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.edits-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(196, 166, 176, 0.2);
}
.edits-back {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.edits-header-text { flex: 1; }
.edits-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.edits-header-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.edits-add-btn {
  width: 32px;
  height: 32px;
  background: var(--blush);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.edits-add-btn:active { opacity: 0.7; }
.edits-add-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--rose-deep);
  stroke-width: 2;
  fill: none;
}
.edits-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}
.edit-card {
  background: var(--white);
  border: 1px solid rgba(196, 166, 176, 0.2);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.edit-card:active {
  transform: scale(0.98);
}
.edit-card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.edit-card-emoji {
  font-size: 20px;
  line-height: 1;
}
.edit-card-info { flex: 1; }
.edit-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.edit-card-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.edit-card-visibility {
  display: flex;
  align-items: center;
  gap: 3px;
}
.edit-card-visibility svg {
  width: 10px;
  height: 10px;
  stroke: var(--mauve);
  fill: none;
}
.edit-card-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.edit-card-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(145deg, #FDF0EC 0%, #F8DED6 100%);
}
.edit-card-thumb.v2 { background: linear-gradient(145deg, #F8EBF0 0%, #F0D8E0 100%); }
.edit-card-thumb.v3 { background: linear-gradient(145deg, #F5EAE0 0%, #EDD8CA 100%); }
.edit-card-thumb.v4 { background: linear-gradient(145deg, #E8F0F5 0%, #D4E4ED 100%); }
.create-edit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px dashed var(--mauve);
  border-radius: 14px;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  width: 100%;
}
.create-edit-btn:active { opacity: 0.7; }
.create-edit-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--mauve);
  fill: none;
}

/* ═══════════════════════════════════════
   PHASE 3: EDIT DETAIL SCREEN
═══════════════════════════════════════ */
.edit-detail-screen {
  min-height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.edit-detail-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(196, 166, 176, 0.2);
}
.edit-detail-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.edit-detail-back {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.edit-detail-title {
  flex: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.edit-detail-menu {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.edit-detail-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.edit-detail-visibility {
  display: flex;
  align-items: center;
  gap: 4px;
}
.edit-detail-visibility svg {
  width: 12px;
  height: 12px;
  stroke: var(--mauve);
  fill: none;
}
.edit-detail-stats {
  display: flex;
  gap: 16px;
  padding: 12px 20px;
  background: var(--blush);
  font-size: 12px;
  color: var(--text-soft);
}
.edit-detail-actions {
  display: flex;
  gap: 10px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-mid);
}
.edit-follow-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: linear-gradient(145deg, var(--rose) 0%, var(--rose-deep) 100%);
  border: none;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 12px var(--shadow-rose);
}
.edit-follow-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px var(--shadow-rose);
}
.edit-follow-btn:active {
  transform: scale(0.97);
}
.edit-follow-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
}
.edit-follow-btn.following {
  background: var(--white);
  border: 1.5px solid var(--rose);
  color: var(--rose-deep);
  box-shadow: none;
}
.edit-follow-btn.following svg {
  stroke: var(--rose-deep);
}
.edit-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.edit-copy-btn:hover {
  border-color: var(--mauve);
  background: var(--cream);
}
.edit-copy-btn:active {
  transform: scale(0.97);
}
.edit-copy-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--text-soft);
  stroke-width: 1.5;
}
.edit-detail-content {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
}
.edit-gem-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(196, 166, 176, 0.15);
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
}
.edit-gem-card:active { opacity: 0.8; }
.edit-gem-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(145deg, #FDF0EC 0%, #F8DED6 100%);
  flex-shrink: 0;
}
.edit-gem-img.v2 { background: linear-gradient(145deg, #F8EBF0 0%, #F0D8E0 100%); }
.edit-gem-img.v3 { background: linear-gradient(145deg, #F5EAE0 0%, #EDD8CA 100%); }
.edit-gem-img.v4 { background: linear-gradient(145deg, #E8F0F5 0%, #D4E4ED 100%); }
.edit-gem-info { flex: 1; min-width: 0; }
.edit-gem-brand {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
}
.edit-gem-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 2px 0;
}
.edit-gem-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--espresso);
}
.edit-gem-alert {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--rose-deep);
  margin-left: 8px;
}
.edit-gem-alert svg {
  width: 10px;
  height: 10px;
  fill: var(--rose-deep);
}
.edit-share-section {
  padding: 16px 20px;
  border-top: 1px solid rgba(196, 166, 176, 0.15);
}
.edit-share-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px var(--shadow-rose);
}
.edit-share-btn:active { transform: scale(0.98); }
/* ═══════════════════════════════════════
   PHASE 3: ADD TO EDIT SHEET
═══════════════════════════════════════ */
.add-edit-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.add-edit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid rgba(196, 166, 176, 0.2);
  border-radius: 12px;
  cursor: pointer;
}
.add-edit-row:active { opacity: 0.8; }
.add-edit-row.selected {
  border-color: var(--rose);
  background: rgba(232, 165, 168, 0.08);
}
.add-edit-check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-mid);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.add-edit-row.selected .add-edit-check {
  background: var(--rose);
  border-color: var(--rose);
}
.add-edit-check svg {
  width: 12px;
  height: 12px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  opacity: 0;
}
.add-edit-row.selected .add-edit-check svg { opacity: 1; }
.add-edit-emoji { font-size: 16px; }
.add-edit-info { flex: 1; }
.add-edit-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.add-edit-count {
  font-size: 11px;
  color: var(--text-muted);
}
.add-edit-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--rose-deep);
  text-decoration: none;
  cursor: pointer;
}
.add-edit-link:active { opacity: 0.7; }
.add-edit-divider {
  border: none;
  border-top: 1px dashed var(--border-mid);
  margin: 12px 0;
}
.add-edit-create {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px dashed var(--mauve);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  margin-bottom: 16px;
}
.add-edit-create:active { opacity: 0.7; }
.add-edit-done {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow-rose);
}
.add-edit-done:active { transform: scale(0.98); }

/* ═══════════════════════════════════════
   PHASE 3: SHARE WITH CIRCLE SHEET
═══════════════════════════════════════ */
.share-circle-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--blush);
  border-radius: 12px;
  margin-bottom: 16px;
}
.share-circle-thumb {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(145deg, #FDF0EC 0%, #F8DED6 100%);
  flex-shrink: 0;
}
.share-circle-info { flex: 1; min-width: 0; }
.share-circle-brand {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
}
.share-circle-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.share-circle-list {
  margin-bottom: 16px;
}
.share-circle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(196, 166, 176, 0.12);
}
.share-circle-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--plum);
}
.share-circle-username {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.share-circle-send {
  padding: 6px 14px;
  background: var(--blush);
  border: 1px solid var(--rose);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--rose-deep);
  cursor: pointer;
}
.share-circle-send:active { opacity: 0.7; }
.share-circle-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 11px;
  color: var(--text-muted);
}
.share-circle-divider::before,
.share-circle-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196, 166, 176, 0.3);
}

/* ═══════════════════════════════════════
   PHASE 3: SAVED HEADER TABS
═══════════════════════════════════════ */
.saved-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.saved-tab {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
}
.saved-tab.active {
  color: var(--rose-deep);
  background: rgba(212, 132, 138, 0.1);
}
.saved-tab-divider {
  color: var(--border-mid);
  font-size: 12px;
}
.saved-tab-arrow {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 500;
  color: var(--rose-deep);
  cursor: pointer;
}
.saved-tab-arrow svg {
  width: 12px;
  height: 12px;
  stroke: var(--rose-deep);
  fill: none;
}

/* ═══════════════════════════════════════
   PHASE 3: ADD TO EDIT BUTTON (Product Detail)
═══════════════════════════════════════ */
.add-to-edit-btn {
  width: 100%;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--rose);
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.add-to-edit-btn:active { transform: scale(0.98); }
.add-to-edit-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--rose-deep);
  fill: none;
}

/* ═══════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════ */

/* Layout */
.u-flex        { display: flex; }
.u-flex-col    { display: flex; flex-direction: column; }
.u-flex-center { display: flex; align-items: center; }
.u-flex-between { display: flex; align-items: center; justify-content: space-between; }
.u-flex-1      { flex: 1; }
.u-flex-1-min0 { flex: 1; min-width: 0; }
.u-shrink-0    { flex-shrink: 0; }
.u-text-center { text-align: center; }
.u-wrap        { flex-wrap: wrap; }

/* Tag chips */
.tag-chip {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 12px;
  background: var(--blush);
  color: var(--plum);
}

/* Status chips */
.status-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
}
.status-chip--stock   { background: var(--green-bg); color: var(--green); }
.status-chip--oos     { background: var(--red-bg); color: var(--red); }
.status-chip--unknown { background: var(--champagne); color: var(--text-muted); }

/* Dot separator (·) */
.dot-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mauve);
  opacity: 0.5;
  display: inline-block;
}

/* Gradient divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
  opacity: 0.5;
}

/* Section label (uppercase) */
.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Brand label */
.brand-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve);
}

/* Store row */
.store-row {
  padding: 11px 0;
  border-bottom: 1px solid rgba(196, 166, 176, 0.18);
}

/* Store name */
.store-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* Price */
.price {
  font-size: 15px;
  font-weight: 600;
  color: var(--espresso);
}

/* Followup link (extends existing .followup-link class) */
.followup-link {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--rose-deep);
  background: var(--white);
  border: 1px solid var(--rose);
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none;
}
.followup-link--dashed {
  color: var(--text-soft);
  border: 1px dashed var(--mauve);
}

/* Accordion row */
.accordion-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(196, 166, 176, 0.12);
  cursor: pointer;
}
.accordion-row:last-child { border-bottom: none; }

/* Product detail nav icon button */
.nav-icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Summary card (sheet product preview) */
.summary-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blush);
  border-radius: 14px;
  padding: 12px 14px;
}
.summary-card-thumb {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #FDF0EC, #F8DED6);
  border-radius: 10px;
}
