/* PhoneTok.com — Main Stylesheet v1.0.0 */

:root {
  --rose: #e8445a;
  --rose-light: #ff6b7a;
  --gold: #f5a623;
  --gold-light: #ffd166;
  --teal: #06d6a0;
  --dark: #0d0d1a;
  --darker: #07070f;
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --text: #f0eaff;
  --muted: rgba(240,234,255,0.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--darker);
  color: var(--text);
  overflow-x: hidden;
}

/* ── STARS BG ── */
.stars {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(232,68,90,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(6,214,160,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 30%, rgba(245,166,35,0.06) 0%, transparent 40%);
}
.stars::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 8%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 25%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 75%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 10%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 90%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 85%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 55%, rgba(255,255,255,0.2) 0%, transparent 100%);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(7,7,15,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-decoration: none;
}
.logo span { color: var(--teal); -webkit-text-fill-color: var(--teal); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: white !important; padding: 10px 24px; border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(232,68,90,0.3);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,68,90,0.5) !important; }

/* ── HERO ── */
#home {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 40px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,68,90,0.12);
  border: 1px solid rgba(232,68,90,0.3);
  border-radius: 50px; padding: 8px 20px; margin-bottom: 32px;
  font-size: 0.8rem; letter-spacing: 0.1em; color: var(--rose-light);
  font-weight: 600; text-transform: uppercase;
  animation: fadeDown 0.8s ease both;
}
.hero-badge::before { content: '✦'; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 24px;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--rose), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: var(--muted);
  max-width: 560px; line-height: 1.75; margin-bottom: 48px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 1s ease 0.3s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: white; border: none; padding: 16px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 30px rgba(232,68,90,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(232,68,90,0.6); }
.btn-secondary {
  background: var(--card); color: var(--text); border: 1px solid var(--card-border);
  padding: 16px 36px; border-radius: 50px; font-size: 1rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 72px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 1s ease 0.4s both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; margin-top: 4px; }

/* ── SECTIONS COMMON ── */
section { position: relative; z-index: 1; padding: 100px 40px; }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.18em; color: var(--rose);
  font-weight: 700; text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--rose); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 20px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 500px; }
.container { max-width: 1200px; margin: 0 auto; }

/* ── HOW IT WORKS ── */
#how {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; margin-top: 64px;
}
.step {
  padding: 48px 36px; background: var(--card);
  border: 1px solid var(--card-border);
  position: relative; overflow: hidden;
  transition: background 0.3s, transform 0.3s;
}
.step:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 900; line-height: 1;
  color: rgba(232,68,90,0.12); margin-bottom: 24px; display: block;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── PLANS ── */
.plans-header { text-align: center; margin-bottom: 64px; }
.plans-header .section-label { justify-content: center; }
.plans-header .section-label::before { display: none; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; align-items: stretch;
}
.plan-card {
  border-radius: 24px; border: 1px solid var(--card-border);
  padding: 40px 32px; background: var(--card);
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card.featured {
  background: linear-gradient(145deg, rgba(232,68,90,0.12), rgba(245,166,35,0.08));
  border-color: rgba(232,68,90,0.4);
  box-shadow: 0 0 60px rgba(232,68,90,0.15);
}
.plan-badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: white; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.plan-emoji { font-size: 2.4rem; margin-bottom: 20px; }
.plan-name { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 4px;
}
.plan-price span { font-size: 1rem; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.plan-tagline { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
.plan-features { list-style: none; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5;
}
.plan-features li::before { content: '✓'; color: var(--teal); font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.plan-btn {
  margin-top: 32px; display: block; text-align: center;
  padding: 14px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
}
.plan-btn-outline { border: 1px solid var(--card-border); color: var(--text); background: transparent; }
.plan-btn-outline:hover { border-color: var(--rose); color: var(--rose); }
.plan-btn-filled {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: white; border: none;
  box-shadow: 0 4px 20px rgba(232,68,90,0.35);
}
.plan-btn-filled:hover { box-shadow: 0 8px 30px rgba(232,68,90,0.55); transform: translateY(-2px); }

/* ── BIRTHDAY WISH ── */
#wish {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,68,90,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(245,166,35,0.1) 0%, transparent 60%);
  padding: 80px 24px;
}
.wish-card {
  max-width: 760px; width: 100%;
  background: linear-gradient(145deg, rgba(232,68,90,0.08), rgba(245,166,35,0.05), rgba(6,214,160,0.04));
  border: 1px solid rgba(232,68,90,0.25);
  border-radius: 40px; padding: 70px 60px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 40px 120px rgba(232,68,90,0.2), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.confetti-row {
  font-size: 1.8rem; margin-bottom: 32px; letter-spacing: 0.2em;
  animation: bounce 2s ease-in-out infinite;
}
.wish-from {
  font-size: 0.75rem; letter-spacing: 0.18em; color: var(--rose);
  font-weight: 700; text-transform: uppercase; margin-bottom: 16px;
}
.wish-name {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, var(--rose-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
  animation: glow 3s ease-in-out infinite alternate;
}
@keyframes glow {
  from { filter: drop-shadow(0 0 20px rgba(232,68,90,0.4)); }
  to   { filter: drop-shadow(0 0 40px rgba(245,166,35,0.6)); }
}
.wish-occasion {
  font-size: 1rem; color: var(--muted); letter-spacing: 0.05em;
  margin-bottom: 48px; font-style: italic;
}
.wish-message {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic; line-height: 1.85;
  color: rgba(240,234,255,0.9);
  margin-bottom: 48px; position: relative; padding: 0 20px;
}
.wish-message::before {
  content: '"';
  position: absolute; left: -10px; top: -20px;
  font-size: 5rem; color: rgba(232,68,90,0.2);
  font-family: 'Playfair Display', serif; line-height: 1;
}
.wish-message::after {
  content: '"';
  position: absolute; right: -10px; bottom: -40px;
  font-size: 5rem; color: rgba(245,166,35,0.2);
  font-family: 'Playfair Display', serif; line-height: 1;
}
.wish-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 40px 0; color: var(--muted);
}
.wish-divider::before, .wish-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,68,90,0.3), transparent);
}
.wish-emojis { font-size: 1.5rem; letter-spacing: 0.15em; }

/* Candles */
.candles-row {
  display: flex; justify-content: center; gap: 12px; margin: 32px 0; flex-wrap: wrap;
}
.candle { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.flame {
  width: 10px; height: 16px;
  background: radial-gradient(ellipse at 50% 80%, var(--gold) 0%, var(--rose) 60%, transparent 100%);
  border-radius: 50% 50% 20% 20%;
  animation: flicker 0.5s ease-in-out infinite alternate;
  filter: blur(0.5px);
}
.candle-body {
  width: 14px; height: 36px;
  background: linear-gradient(180deg, #fff 0%, #f0e0ff 100%);
  border-radius: 3px 3px 0 0; position: relative;
}
.wax-drip {
  position: absolute; top: 5px; left: 2px;
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 0 0 50% 50%;
}
@keyframes flicker {
  from { transform: scaleX(1) scaleY(1) rotate(-2deg); opacity: 0.9; }
  to   { transform: scaleX(0.85) scaleY(1.1) rotate(2deg); opacity: 1; }
}

/* Wish stats row */
.wish-stats-row {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 8px;
}
.wish-stat {
  border-radius: 16px; padding: 20px 28px; text-align: center;
}
.wish-stat--rose { background: rgba(232,68,90,0.1); border: 1px solid rgba(232,68,90,0.2); }
.wish-stat--teal { background: rgba(6,214,160,0.1); border: 1px solid rgba(6,214,160,0.2); }
.wish-stat--gold { background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2); }
.wish-stat-icon { font-size: 1.6rem; margin-bottom: 6px; }
.wish-stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; }
.wish-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 800;
}
.wish-stat--rose .wish-stat-value { color: var(--gold-light); }
.wish-stat--teal .wish-stat-value { color: var(--teal); }
.wish-stat--gold .wish-stat-value { color: var(--gold-light); }

.wish-footer {
  margin-top: 52px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem; color: var(--muted);
}
.wish-footer p { margin-bottom: 4px; }
.wish-footer strong { color: var(--rose-light); }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; margin-right: 8px;
  background: linear-gradient(135deg, rgba(6,214,160,0.15), rgba(6,214,160,0.08));
  border: 1px solid rgba(6,214,160,0.3);
  color: var(--teal); padding: 12px 28px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
}
.share-btn:hover { background: rgba(6,214,160,0.2); box-shadow: 0 4px 20px rgba(6,214,160,0.2); }

/* Floating particles */
.particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; border-radius: 40px;
}
.particle {
  position: absolute; border-radius: 50%;
  animation: floatUp linear infinite; opacity: 0;
}
@keyframes floatUp {
  0%   { transform: translateY(100%) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ── CTA ── */
#cta {
  text-align: center; padding: 120px 40px;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--card-border);
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-glow {
  display: inline-block; font-size: 3.5rem; margin-bottom: 32px;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 20px;
}
.cta-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 44px; }
.cta-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--rose), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.cta-price-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--card-border);
  padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; }
.footer-logo span {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-copy span {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-weight: 700;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .wish-card { padding: 48px 28px; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  section { padding: 70px 24px; }
}

/* ── COMMENTS SECTION ── */
#comments {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.comments-header { margin-bottom: 56px; }

/* Form Card */
.comment-form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 48px;
  margin-bottom: 56px;
}
.comment-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 32px; color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex; flex-direction: column;
  gap: 8px; margin-bottom: 20px;
}
.form-group label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--muted);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  resize: none;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(232,68,90,0.5);
  background: rgba(232,68,90,0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240,234,255,0.3);
}

/* Emoji Picker */
.emoji-picker {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 4px;
}
.emoji-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}
.emoji-btn:hover {
  background: rgba(232,68,90,0.12);
  border-color: rgba(232,68,90,0.4);
  transform: scale(1.15);
}
.emoji-btn.active {
  background: rgba(232,68,90,0.15);
  border-color: rgba(232,68,90,0.5);
  box-shadow: 0 0 12px rgba(232,68,90,0.2);
}

/* Submit Button */
.comment-submit-btn {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: white; border: none;
  padding: 15px 40px; border-radius: 50px;
  font-size: 1rem; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 6px 24px rgba(232,68,90,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.comment-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232,68,90,0.55);
}
.comment-submit-btn:active { transform: translateY(0); }

/* Comments List */
.comments-count {
  font-size: 0.85rem; color: var(--muted);
  font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
}
.comment-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  animation: fadeUp 0.4s ease both;
}
.comment-item:last-child { border-bottom: none; }
.comment-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: white;
  flex-shrink: 0; font-family: 'Playfair Display', serif;
}
.comment-body { flex: 1; }
.comment-meta {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 10px;
}
.comment-name {
  font-weight: 700; font-size: 0.95rem; color: var(--text);
}
.comment-relation {
  font-size: 0.75rem; color: var(--rose-light);
  background: rgba(232,68,90,0.1);
  border: 1px solid rgba(232,68,90,0.2);
  padding: 2px 10px; border-radius: 50px;
  font-weight: 600;
}
.comment-time {
  font-size: 0.75rem; color: var(--muted); margin-left: auto;
}
.comment-text {
  font-size: 0.95rem; color: rgba(240,234,255,0.8);
  line-height: 1.7; margin-bottom: 10px;
}
.comment-emoji { font-size: 1.4rem; }

/* Empty state */
.no-comments {
  text-align: center; padding: 48px 24px;
  color: var(--muted); font-size: 0.95rem;
}
.no-comments-icon { font-size: 3rem; margin-bottom: 12px; }

/* Responsive */
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .comment-form-card { padding: 28px 20px; }
  .comment-time { margin-left: 0; width: 100%; }
}
