/* ==========================================
   deen.ng — Design System
   Colors: Pink (#ffb6c3, #ff8aa3) + Blue
   Font: Outfit + Playfair Display
   ========================================== */

/* --- CSS Variables --- */
:root {
  /* Primary palette */
  --pink: #e8368f;
  --pink-soft: #fce4f0;
  --pink-hover: #d42a7d;
  --blue: #4f6ef7;
  --blue-soft: #e8edff;
  --violet: #7c5cfc;
  --gradient: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  --gradient-soft: linear-gradient(135deg, #fce4f0 0%, #e8edff 100%);
  --gold: #d4a853;

  /* Backgrounds */
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f8f9fc;
  --bg-card: #ffffff;
  --bg-dark: #0f1029;
  --text: #1a1a2e;
  --text-body: #555566;
  --text-light: #8888a0;
  --border: #ebebf0;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.12);
  --shadow-pink: 0 8px 30px rgba(232,54,143,.2);

  /* Layout tokens */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 50px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);

  /* Computed gradients */
  --gradient-pink: var(--gradient);
  --gradient-blue: linear-gradient(135deg, var(--blue), var(--violet));
  --gradient-hero: linear-gradient(135deg, #0f1029 0%, #1a1045 40%, #2d1458 100%);

  /* Backward-compatible aliases */
  --pink-light: var(--pink-soft);
  --pink-deep: var(--pink-hover);
  --blue-light: var(--blue-soft);
  --blue-deep: var(--violet);
  --blue-dark: #0f1029;
  --bg-primary: var(--bg);
  --bg-secondary: var(--bg-alt);
  --text-primary: var(--text);
  --text-secondary: var(--text-body);
  --text-white: var(--white);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Typography --- */
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-badge {
  display: inline-block; padding: 6px 18px; border-radius: var(--radius-full);
  background: var(--pink-soft); color: var(--pink);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent;
  text-align: center;
  position: relative; overflow: hidden; z-index: 1;
  transition: color 0.4s cubic-bezier(.4,0,.2,1),
              box-shadow 0.4s cubic-bezier(.4,0,.2,1),
              transform 0.3s cubic-bezier(.4,0,.2,1),
              border-color 0.4s cubic-bezier(.4,0,.2,1);
}
/* Sliding hover overlay */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  z-index: -1;
  border-radius: inherit;
  transition: width 0.45s cubic-bezier(.25,.8,.25,1);
}
.btn:hover::before { width: 100%; }

/* — Primary — */
.btn-primary {
  background: var(--gradient); color: #fff; border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}
.btn-primary::before {
  background: linear-gradient(135deg, var(--pink-hover) 0%, #a83279 100%);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232,54,143,0.4);
  border-color: var(--pink-hover);
}

/* — Secondary — */
.btn-secondary {
  background: var(--gradient-blue); color: #fff;
  box-shadow: 0 4px 20px rgba(79,110,247,0.3);
}
.btn-secondary::before {
  background: linear-gradient(135deg, #3a52d4 0%, #5a3fc7 100%);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(79,110,247,0.45);
}

/* — Outline — */
.btn-outline { background: transparent; color: var(--pink); border-color: var(--pink); }
.btn-outline::before { background: var(--pink); }
.btn-outline:hover { color: #fff; border-color: var(--pink); }

/* — Outline White — */
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-white::before { background: rgba(255,255,255,0.18); }
.btn-outline-white:hover { border-color: #fff; color: #fff; }

/* — Gold — */
.btn-gold {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-color: #d97706;
  box-shadow: 0 10px 26px rgba(217,119,6,0.3);
}
.btn-gold::before {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(217,119,6,0.45);
  border-color: #b45309;
}

/* — Disabled — no hover effect */
.btn:disabled::before,
.btn[disabled]::before { display: none; }
.btn:disabled,
.btn[disabled] {
  opacity: 0.6; cursor: not-allowed; transform: none;
}

/* Sizes */
.btn-sm { padding: 8px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }

/* --- Top Bar --- */
.top-bar {
  background: var(--blue-dark); color: rgba(255,255,255,0.7); font-size: 0.82rem; padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-links { display: flex; gap: 18px; }
.top-bar-links a { color: rgba(255,255,255,0.7); }
.top-bar-links a:hover { color: var(--pink-light); }
.top-bar-links i { margin-right: 4px; }

/* --- Site Announcement Bar (Dynamic) --- */
.site-announcement {
  padding: 8px 0; color: #fff; font-size: 0.88rem; font-weight: 600; overflow: hidden; position: relative; z-index: 1001;
}
.site-announcement.style-default { background: #0a0a0a; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-announcement.style-info { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.site-announcement.style-success { background: linear-gradient(135deg, #059669, #10b981); }
.site-announcement.style-warning { background: linear-gradient(135deg, #d97706, #f59e0b); }
.announcement-container { display: flex; align-items: center; justify-content: space-between; }
.marquee-wrapper { flex: 1; overflow: hidden; position: relative; white-space: nowrap; box-sizing: border-box; }
.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}
.marquee-wrapper:hover .marquee-content { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/* --- Navbar --- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0; transition: var(--transition);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.6rem; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--blue-deep); }
.logo-dot { color: var(--pink); }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu-auth { display: none; }
.nav-link {
  padding: 8px 16px; border-radius: var(--radius-full); color: var(--text-secondary);
  font-weight: 500; font-size: 0.9rem; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--pink); background: var(--pink-soft); }
.nav-link i { margin-right: 5px; font-size: 0.8rem; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-icon-btn {
  position: relative; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-body); font-size: 0.95rem; transition: var(--transition);
}
.nav-icon-btn:hover { background: var(--pink-soft); color: var(--pink); }
.nav-icon-badge {
  position: absolute; top: 2px; right: 0;
  min-width: 18px; height: 18px; border-radius: 50%;
  background: var(--pink); color: #fff; font-size: 0.62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid var(--bg-card);
}

/* User dropdown */
.nav-user-menu { position: relative; }
.nav-user-btn {
  display: flex; align-items: center; gap: 8px; padding: 5px 14px 5px 5px;
  border-radius: var(--radius-full); border: 1px solid var(--border);
  background: var(--bg-secondary); cursor: pointer; transition: var(--transition);
  font-family: 'Outfit', sans-serif;
}
.nav-user-btn:hover { border-color: var(--pink-light); }
.nav-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.nav-username { font-weight: 500; font-size: 0.88rem; color: var(--text-primary); }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 200px;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); opacity: 0; visibility: hidden;
  transform: translateY(-10px); transition: var(--transition); overflow: hidden;
}
.nav-dropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px;
  color: var(--text-secondary); font-size: 0.9rem;
}
.nav-dropdown a:hover { background: var(--bg-secondary); color: var(--pink); }
.nav-dropdown .logout-link:hover { color: #e74c3c; }
.dropdown-divider { height: 1px; background: var(--border); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 5px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* --- Flash Messages --- */
.flash-message { padding: 14px 0; font-size: 0.9rem; font-weight: 500; }
.flash-message .container { display: flex; justify-content: space-between; align-items: center; }
.flash-success { background: #d4edda; color: #155724; }
.flash-error { background: #f8d7da; color: #721c24; }
.flash-info { background: #d1ecf1; color: #0c5460; }
.flash-close { background: none; border: none; cursor: pointer; font-size: 1.1rem; color: inherit; opacity: 0.6; }

/* --- Hero Slider --- */
.hero { position: relative; height: 92vh; min-height: 600px; overflow: hidden; background: var(--gradient-hero); }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,36,64,0.82) 0%, rgba(58,31,71,0.7) 50%, rgba(15,36,64,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 650px; padding-left: 5%;
  animation: heroFadeUp 0.8s ease-out;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem); color: #fff; margin-bottom: 18px;
  line-height: 1.15;
}
.hero-content h1 span { color: var(--pink-light); }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 30px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5);
  background: transparent; cursor: pointer; transition: var(--transition);
}
.hero-dot.active { background: var(--pink); border-color: var(--pink); width: 32px; border-radius: 6px; }
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0;
}
.hero-stats .container { display: flex; justify-content: center; gap: 60px; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--pink-light); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Featured Profiles Section --- */
.featured-profiles { padding: 90px 0; background: var(--bg-secondary); }
.profiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.profile-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid var(--border);
}
.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.profile-card-img {
  position: relative; height: 300px; overflow: hidden;
}
.profile-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.profile-card:hover .profile-card-img img { transform: scale(1.05); }
.profile-card-badge {
  position: absolute; top: 14px; left: 14px; padding: 4px 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600;
  color: var(--blue-deep);
}
.profile-card-fav {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(255,255,255,0.9); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); color: var(--text-light);
}
.profile-card-fav:hover, .profile-card-fav.liked { color: var(--pink); background: #fff; }
.profile-card-body { padding: 20px; }
.profile-card-name {
  font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; margin-bottom: 6px;
}
.profile-card-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.profile-card-meta span {
  font-size: 0.82rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 4px;
}
.profile-card-meta i { color: var(--pink); font-size: 0.75rem; }
.profile-card-desc {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 16px;
}
.profile-card-footer { display: flex; justify-content: space-between; align-items: center; }
.profile-card-footer .btn { padding: 8px 20px; font-size: 0.82rem; }

/* Subscription badge on profile card */
.badge-premium {
  background: linear-gradient(135deg, var(--gold), #f0c27f); color: #5a3e1b;
  padding: 3px 10px; border-radius: var(--radius-full); font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-free {
  background: var(--bg-secondary); color: var(--text-light);
  padding: 3px 10px; border-radius: var(--radius-full); font-size: 0.72rem;
  font-weight: 600;
}

/* --- How It Works --- */
.how-it-works { padding: 90px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 35px; }
.step-card { text-align: center; padding: 40px 25px; position: relative; }
.step-number {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: #fff; background: var(--gradient-pink);
  box-shadow: var(--shadow-pink);
}
.step-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.step-card p { color: var(--text-secondary); font-size: 0.92rem; }
.step-icon { font-size: 2.5rem; margin-bottom: 15px; }

/* --- Why Choose Us --- */
.why-us { padding: 90px 0; background: var(--gradient-hero); color: #fff; position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  pointer-events: none;
  border-radius: 50%; background: rgba(232,54,143,0.06);
}
.why-us .section-header h2 { color: #fff; }
.why-us .section-header p { color: rgba(255,255,255,0.65); }
.why-us .section-badge { background: rgba(232,54,143,0.15); color: var(--pink-soft); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.why-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 35px 28px; transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-card-icon {
  width: 55px; height: 55px; border-radius: var(--radius-md);
  background: var(--gradient-pink); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; margin-bottom: 18px;
}
.why-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.1rem; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* --- CTA Section --- */
.cta-section {
  padding: 90px 0; text-align: center;
  background: var(--bg-secondary);
}
.cta-box {
  background: #fff; border-radius: var(--radius-lg); padding: 60px 40px;
  box-shadow: var(--shadow-md); max-width: 700px; margin: 0 auto;
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-pink);
}
.cta-box h2 { margin-bottom: 14px; }
.cta-box p { color: var(--text-secondary); margin-bottom: 30px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); position: relative; padding-top: 0; }
.footer-wave { margin-bottom: -2px; }
.footer-wave svg { display: block; width: 100%; height: 80px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding: 60px 0 40px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-logo .logo-text { color: #fff; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-socials a:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
.footer-links h4, .footer-contact h4 {
  color: #fff; font-family: 'Outfit', sans-serif; font-size: 1rem;
  font-weight: 600; margin-bottom: 20px;
}
.footer-links li, .footer-contact li { margin-bottom: 12px; font-size: 0.88rem; }
.footer-links a:hover { color: var(--pink-light); padding-left: 4px; }
.footer-contact i { margin-right: 8px; color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--pink-light); }
/* --- Hero Tag Badge --- */
.hero-tag {
  display: inline-block; padding: 8px 20px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px; margin-bottom: 16px;
  animation: heroFadeUp 0.8s 0.2s both;
}

/* --- Quick Search Section --- */
.quick-search {
  padding: 0; position: relative; z-index: 10;
  margin-top: -55px;
}
.qs-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 35px 40px; border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.qs-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient);
}
.qs-header {
  margin-bottom: 24px;
}
.qs-header h2 {
  font-size: 1.3rem; margin-bottom: 4px; color: var(--text);
}
.qs-header p {
  font-size: 0.9rem; color: var(--text-secondary);
}
.qs-form {
  display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
}
.qs-field {
  flex: 1; min-width: 140px;
}
.qs-field label {
  display: block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--text-light); margin-bottom: 7px;
}
.qs-field select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  color: var(--text); background: var(--bg-alt);
  outline: none; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  transition: var(--transition);
}
.qs-field select:hover { border-color: var(--pink-light); }
.qs-field select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,54,143,0.1);
  background-color: #fff;
}

/* Age range sub-fields */
.qs-age-inputs {
  display: flex; align-items: center; gap: 8px;
}
.qs-age-inputs select { flex: 1; }
.qs-separator {
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-light); white-space: nowrap;
}

/* Search button field */
.qs-submit { flex: 0 0 auto; min-width: auto; }
.qs-btn {
  padding: 12px 32px !important;
  border-radius: var(--radius-sm) !important;
  white-space: nowrap;
}

/* No profiles fallback */
.no-profiles-msg {
  text-align: center; padding: 40px 20px;
  background: var(--bg-alt); border-radius: var(--radius-lg);
  font-size: 1rem; color: var(--text-body);
}
.no-profiles-msg a { color: var(--pink); font-weight: 600; }
.no-profiles-msg a:hover { text-decoration: underline; }

/* --- Testimonials --- */
.testimonials {
  padding: 90px 0;
  background: var(--bg-alt);
  position: relative;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; align-items: stretch;
}
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card.featured {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              var(--gradient) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow-md);
}
.testimonial-card.featured::before {
  content: '⭐ Top Story';
  position: absolute; top: -10px; right: 20px;
  background: var(--gradient); color: #fff;
  padding: 3px 14px; border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.testimonial-stars {
  color: #f59e0b; font-size: 1rem;
  letter-spacing: 2px; margin-bottom: 14px;
}
.testimonial-quote {
  font-size: 0.95rem; color: var(--text-body);
  line-height: 1.7; flex: 1;
  font-style: italic; margin-bottom: 22px;
  position: relative; padding-left: 14px;
  border-left: 3px solid var(--pink-soft);
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-info strong {
  display: block; font-size: 0.92rem;
  color: var(--text); font-family: 'Playfair Display', serif;
}
.testimonial-info span {
  font-size: 0.78rem; color: var(--text-light);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats .container { gap: 30px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .hide-mobile { display: none !important; }

  /* Solid navbar on mobile (avoid translucent/blur look) */
  .navbar {
    background: var(--bg);
    backdrop-filter: none;
  }

  /* Backdrop when mobile menu is open */
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 998;
  }

  /* ── Mobile nav — menu slides in from right ── */
  .nav-menu {
    position: fixed; top: 70px; right: 0; bottom: 0; left: auto;
    width: min(78vw, 320px);
    background: var(--bg-card);
    opacity: 1;
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    border-left: 1px solid var(--border);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 6px;
    padding: 24px 18px;
    transform: translateX(105%); transition: var(--transition);
    z-index: 10000;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-link { font-size: 0.95rem; padding: 10px 12px; }

  .nav-menu-auth {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: 14px; width: 100%;
  }
  .nav-menu-auth .btn {
    width: 100%;
    justify-content: center;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  /* ── Prevent hamburger overlapping auth buttons ──
     Keep only icon btns + toggle on mobile; hide text auth buttons.
     Auth links are added inside nav-menu instead. */
  .nav-actions {
    gap: 6px;
  }
  /* Hide Login / Register pill buttons on mobile — user taps hamburger */
  .nav-actions > .btn { display: none; }

  /* Hero */
  .hero { height: 85vh; min-height: 500px; }
  .hero-content { padding: 0 20px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-stats .container { flex-wrap: wrap; gap: 20px; }
  .stat-item { flex: 1; min-width: 80px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .profiles-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns .btn { padding: 11px 24px; font-size: 0.88rem; }

  /* Quick Search */
  .quick-search { margin-top: -40px; }
  .qs-card { padding: 24px 20px; }
  .qs-form { flex-direction: column; gap: 14px; }
  .qs-field { min-width: 100%; }
  .qs-age-inputs { flex-direction: row; }
  .qs-submit { width: 100%; }
  .qs-btn { width: 100%; justify-content: center; }

  /* Testimonials — plain stack */
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child { grid-column: auto; }
}

@media (max-width: 480px) {
  .profiles-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}

/* ==========================================
   Auth Pages — Split Screen Layout
   ========================================== */
.auth-section { min-height: 100vh; display: flex; align-items: stretch; }
.auth-container { display: flex; width: 100%; min-height: calc(100vh - 120px); }

/* Visual panel (left side) */
.auth-visual {
  flex: 0 0 44%; position: relative; overflow: hidden;
  background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center;
}
.auth-visual-overlay {
  position: absolute; inset: 0;
  background: url('../../assets/images/sliders/slide2.png') center/cover;
  opacity: 0.15;
}
.auth-visual-content { position: relative; z-index: 2; padding: 50px; text-align: center; color: #fff; }
.auth-visual-icon { font-size: 3.5rem; margin-bottom: 20px; }
.auth-visual-content h2 {
  font-size: 2rem; color: #fff; margin-bottom: 14px;
}
.auth-visual-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 35px; }
.auth-visual-features { text-align: left; display: inline-block; }
.auth-feature {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 0.92rem; margin-bottom: 14px;
}
.auth-feature i { color: var(--pink-light); }

/* Form panel (right side) */
.auth-form-panel {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 50px 60px; max-width: 680px; overflow-y: auto;
}
.auth-form-header { margin-bottom: 30px; }
.auth-logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.auth-form-header h1 { font-size: 1.8rem; margin-bottom: 6px; }
.auth-form-header p { color: var(--text-secondary); font-size: 0.95rem; }

/* Form elements */
.auth-form { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 6px;
}
.input-icon-wrap {
  position: relative; display: flex; align-items: center;
}
.input-icon-wrap i {
  position: absolute; left: 14px; color: var(--text-light); font-size: 0.88rem;
  pointer-events: none;
}
.input-icon-wrap input,
.input-icon-wrap select {
  width: 100%; padding: 12px 14px 12px 42px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  color: var(--text-primary); background: #fff;
  transition: var(--transition); outline: none;
}
.input-icon-wrap input:focus,
.input-icon-wrap select:focus {
  border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,54,143,0.12);
}
.input-icon-wrap input::placeholder { color: var(--text-light); }
.form-group-extra { display: flex; justify-content: flex-end; margin-top: 6px; }
.forgot-link { font-size: 0.82rem; color: var(--pink); font-weight: 500; }
.forgot-link:hover { color: var(--pink-deep); }

/* Checkbox */
.form-check {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px; accent-color: var(--pink);
  cursor: pointer; flex-shrink: 0;
}
.form-check label { font-size: 0.85rem; color: var(--text-secondary); cursor: pointer; }
.form-check label a { color: var(--pink); font-weight: 600; }
.form-check label a:hover { text-decoration: underline; }

/* Block button */
.btn-block { width: 100%; justify-content: center; }

/* Auth switch link */
.auth-switch {
  text-align: center; margin-top: 24px; font-size: 0.9rem; color: var(--text-secondary);
}
.auth-switch a { color: var(--pink); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

/* Error display */
.auth-errors {
  background: #fff0f0; border: 1px solid #ffd0d0; border-radius: var(--radius-sm);
  padding: 14px 18px; margin-bottom: 22px;
}
.auth-error-item {
  font-size: 0.85rem; color: #c0392b; margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.auth-error-item:last-child { margin-bottom: 0; }
.auth-error-item i { font-size: 0.78rem; flex-shrink: 0; }

/* Demo hint box */
.demo-hint {
  background: var(--bg-secondary); border: 1px dashed var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px; margin-top: 18px;
  text-align: center;
}
.demo-hint p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; }
.demo-hint code {
  background: var(--pink-soft); color: var(--pink-hover);
  padding: 2px 6px; border-radius: 4px; font-size: 0.8rem;
}

/* Auth responsive */
@media (max-width: 900px) {
  .auth-container { flex-direction: column; }
  .auth-visual { flex: none; min-height: 260px; }
  .auth-visual-content h2 { font-size: 1.5rem; }
  .auth-visual-features { display: none; }
  .auth-form-panel { padding: 35px 25px; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================
   Dashboard
   ========================================== */
.dashboard { padding: 40px 0 80px; background: var(--bg-alt); min-height: 80vh; }

/* Welcome Banner */
.dash-welcome {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 28px 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 28px;
}
.dash-welcome-left { display: flex; align-items: center; gap: 18px; }
.dash-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--pink-soft); }
.dash-welcome-left h1 { font-size: 1.4rem; margin-bottom: 2px; }
.dash-welcome-left p { color: var(--text-body); font-size: 0.9rem; }
.dash-welcome-right { display: flex; align-items: center; gap: 12px; }

/* Stat Cards */
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.dash-stat-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border-radius: var(--radius-md); padding: 22px 20px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition);
}
.dash-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dash-stat-icon {
  width: 50px; height: 50px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.dash-stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--text); }
.dash-stat-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }

/* Main grid */
.dash-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; }
.dash-main { display: flex; flex-direction: column; gap: 24px; }
.dash-sidebar { display: flex; flex-direction: column; gap: 24px; }

/* Cards */
.dash-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.dash-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dash-card-header h3 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.dash-card-header h3 i { color: var(--pink); font-size: 0.9rem; }

/* Progress Bar */
.progress-bar-wrap { margin-bottom: 10px; }
.progress-bar { height: 10px; background: var(--bg-alt); border-radius: var(--radius-full); overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient); border-radius: var(--radius-full); transition: width 1s ease; }
.progress-text { font-size: 0.82rem; font-weight: 600; color: var(--pink); margin-top: 6px; display: block; }
.dash-hint { font-size: 0.85rem; color: var(--text-light); }

/* Suggestions */
.dash-suggestions { display: flex; flex-direction: column; gap: 14px; }
.dash-suggest-card {
  display: flex; align-items: center; gap: 14px; padding: 14px;
  background: var(--bg-alt); border-radius: var(--radius-md); transition: var(--transition);
}
.dash-suggest-card:hover { background: var(--pink-soft); }
.dash-suggest-card img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.dash-suggest-info { flex: 1; }
.dash-suggest-info h4 { font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.dash-suggest-info span { font-size: 0.78rem; color: var(--text-light); margin-right: 10px; }
.dash-suggest-info span i { color: var(--pink); margin-right: 3px; }

/* Interests List */
.dash-interest-list { display: flex; flex-direction: column; gap: 12px; }
.dash-interest-item {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px;
  background: var(--bg-alt); border-radius: var(--radius-md);
}
.dash-interest-item img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.dash-interest-info { flex: 1; }
.dash-interest-info strong { display: block; font-size: 0.9rem; }
.dash-interest-info span { font-size: 0.78rem; color: var(--text-light); }
.dash-interest-actions { display: flex; gap: 8px; }
.btn-icon {
  width: 34px; height: 34px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.82rem; transition: var(--transition);
}
.btn-accept { background: #e8f8f5; color: #1abc9c; }
.btn-accept:hover { background: #1abc9c; color: #fff; }
.btn-reject { background: #fde8e8; color: #e74c3c; }
.btn-reject:hover { background: #e74c3c; color: #fff; }

/* Empty state */
.dash-empty-state { text-align: center; padding: 30px 10px; }
.dash-empty-icon { font-size: 2.5rem; margin-bottom: 10px; }
.dash-empty-state p { color: var(--text-light); font-size: 0.9rem; }
.dash-empty { color: var(--text-light); font-size: 0.9rem; text-align: center; padding: 20px; }

/* Sidebar Profile Card */
.dash-profile-card { padding: 0; overflow: hidden; }
.dash-profile-cover { height: 80px; background: var(--gradient); }
.dash-profile-body { padding: 0 20px 24px; text-align: center; }
.dash-profile-img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--bg-card); margin-top: -40px;
}
.dash-profile-body h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 600; margin: 8px 0 4px; }
.dash-profile-meta { font-size: 0.82rem; color: var(--text-light); margin-bottom: 2px; }
.dash-profile-meta i { margin-right: 4px; color: var(--pink); }

/* Quick Actions */
.dash-quick-links { display: flex; flex-direction: column; gap: 6px; }
.dash-quick-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--text-body);
  transition: var(--transition);
}
.dash-quick-link:hover { background: var(--pink-soft); color: var(--pink); }
.dash-quick-link i { width: 18px; text-align: center; color: var(--blue); }

/* Premium Upsell Card */
.dash-premium-card {
  background: var(--gradient-hero); color: #fff; text-align: center; border: none;
}
.dash-premium-icon { font-size: 2.5rem; margin-bottom: 10px; }
.dash-premium-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.dash-premium-card p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 18px; }

/* Dashboard Responsive */
@media (max-width: 1024px) {
  .dash-grid { grid-template-columns: 1fr; }
  .dash-sidebar { order: -1; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .dash-welcome { flex-direction: column; align-items: flex-start; gap: 14px; }
  .dash-welcome-left h1 { font-size: 1.15rem; }
  .dash-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dash-stat-card { padding: 16px; }
}
@media (max-width: 480px) {
  .dash-stats { grid-template-columns: 1fr; }
}

/* ==========================================
   Search Page
   ========================================== */
.search-hero {
  background: var(--gradient-hero); padding: 60px 0 50px; text-align: center;
}
.search-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.search-hero h1 span { color: var(--pink-soft); }
.search-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; }

.search-section { padding: 40px 0 80px; background: var(--bg-alt); }

/* Filter Bar */
.search-filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 24px;
}
.filter-search-wrap {
  position: relative; flex: 1; min-width: 200px;
}
.filter-search-wrap i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-light); font-size: 0.88rem;
}
.filter-search-wrap input {
  width: 100%; padding: 10px 14px 10px 40px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; outline: none;
  transition: var(--transition);
}
.filter-search-wrap input:focus { border-color: var(--pink); }
.filter-group select,
.filter-group input {
  padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; outline: none;
  background: #fff; min-width: 130px; transition: var(--transition);
}
.filter-group select:focus,
.filter-group input:focus { border-color: var(--pink); }

.search-results-info {
  margin-bottom: 20px; font-size: 0.9rem; color: var(--text-body);
}

.search-empty {
  text-align: center; padding: 60px 20px;
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.search-empty h3 { margin: 10px 0 8px; }
.search-empty p { color: var(--text-light); }

@media (max-width: 768px) {
  .search-filter-bar { flex-direction: column; }
  .filter-search-wrap { width: 100%; }
  .filter-group { width: 100%; }
  .filter-group select, .filter-group input { width: 100%; }
}

/* ==========================================
   Profile View Page — Redesigned
   ========================================== */

/* Hero Banner */
.pv-hero {
  position: relative; padding: 60px 0 50px; overflow: hidden;
}
.pv-hero-bg {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
}
.pv-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232,54,143,0.12) 0%, transparent 60%);
}
.pv-hero .container { position: relative; z-index: 2; }
.pv-hero-content { display: flex; align-items: center; gap: 32px; }

/* Photo */
.pv-hero-photo {
  position: relative; flex-shrink: 0;
}
.pv-hero-photo img {
  width: 160px; height: 160px; border-radius: 50%; object-fit: cover;
  border: 5px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.pv-verified {
  position: absolute; bottom: 8px; right: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: #1abc9c; color: #fff; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid rgba(15,16,41,0.8);
}

/* Info */
.pv-hero-info { flex: 1; }
.pv-name-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.pv-name-row h1 { font-size: clamp(1.5rem, 3.5vw, 2rem); color: #fff; margin: 0; }

/* Tags */
.pv-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.pv-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.08);
}
.pv-tag i { color: var(--pink-soft); font-size: 0.72rem; }

/* Actions row */
.pv-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pv-match-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--radius-full);
  background: var(--gradient); color: #fff; font-weight: 600; font-size: 0.9rem;
  box-shadow: var(--shadow-pink);
  animation: matchPulse 2s ease-in-out infinite;
}
@keyframes matchPulse {
  0%, 100% { box-shadow: var(--shadow-pink); }
  50% { box-shadow: 0 8px 40px rgba(232,54,143,0.4); }
}

/* Body */
.pv-body { padding: 40px 0 80px; background: var(--bg-alt); }
.pv-layout { display: grid; grid-template-columns: 1fr 360px; gap: 30px; }
.pv-col-main { display: flex; flex-direction: column; gap: 24px; }
.pv-col-side { display: flex; flex-direction: column; gap: 22px; }

/* Content Blocks */
.pv-block {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.pv-block-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.pv-block-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--pink-soft); color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.pv-block-head h2 {
  font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 600; margin: 0;
}
.pv-block-text { color: var(--text-body); font-size: 0.92rem; line-height: 1.8; }
.pv-empty-text { color: var(--text-light); font-style: italic; }

/* Info Grid */
.pv-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.pv-info-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.pv-info-item:hover { background: var(--bg-alt); }
.pv-info-item:nth-child(odd) { border-right: 1px solid var(--border); }
.pv-info-item:nth-last-child(-n+2) { border-bottom: none; }
.pv-info-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-alt); color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; flex-shrink: 0;
}
.pv-info-label {
  display: block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-light); font-weight: 600;
}
.pv-info-value {
  display: block; font-size: 0.88rem; color: var(--text); font-weight: 500; margin-top: 1px;
}

/* Locked Block */
.pv-locked { border: 2px dashed var(--border); background: var(--bg-alt); }
.pv-locked-content {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px;
}
.pv-locked-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gradient-soft); color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.pv-locked-content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pv-locked-content p { color: var(--text-body); font-size: 0.88rem; margin-bottom: 20px; max-width: 400px; }

/* Sidebar — At a Glance */
.pv-glance h3 {
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.pv-glance-list { display: flex; flex-direction: column; }
.pv-glance-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.pv-glance-row:last-child { border-bottom: none; }
.pv-glance-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-light);
}
.pv-glance-label i { color: var(--pink); width: 16px; text-align: center; font-size: 0.78rem; }
.pv-glance-val { font-size: 0.88rem; font-weight: 600; color: var(--text); }

/* Sidebar — Gifts */
.pv-gift-block h3 {
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.pv-gift-block h3 i { color: var(--pink); }
.pv-gift-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pv-gift-card {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 10px; border-radius: var(--radius-md);
  background: var(--bg-alt); border: 1px solid var(--border);
  text-align: center; transition: var(--transition);
}
.pv-gift-card:hover { border-color: var(--pink); background: var(--pink-soft); transform: translateY(-2px); }
.pv-gift-emoji { font-size: 1.6rem; }
.pv-gift-label { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.pv-gift-cost { font-size: 0.72rem; color: var(--pink); font-weight: 600; }

/* Profile View Gallery */
.pv-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pv-gallery-thumb {
  border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1;
  border: 1px solid var(--border); cursor: pointer;
}
.pv-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.pv-gallery-thumb:hover img { transform: scale(1.08); }

/* Image Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-content {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  max-width: 90vw; max-height: 85vh;
  animation: lbFade 0.25s ease;
}
@keyframes lbFade { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.lightbox-content img {
  max-width: 90vw; max-height: 80vh; object-fit: contain;
  border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-counter {
  color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 600;
  background: rgba(255,255,255,0.1); padding: 5px 16px; border-radius: 20px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px; z-index: 10;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem;
  cursor: pointer; transition: 0.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1rem;
  cursor: pointer; transition: 0.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* Profile View Responsive */
@media (max-width: 900px) {
  .pv-layout { grid-template-columns: 1fr; }
  .pv-hero-content { flex-direction: column; text-align: center; }
  .pv-hero-photo img { width: 120px; height: 120px; }
  .pv-hero-tags { justify-content: center; }
  .pv-hero-actions { justify-content: center; flex-wrap: wrap; }
  .pv-name-row { justify-content: center; }
  .pv-info-grid { grid-template-columns: 1fr; }
  .pv-info-item:nth-child(odd) { border-right: none; }
  .pv-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================
   Favorites Page
   ========================================== */
.fav-page { padding: 40px 0 80px; background: var(--bg-alt); min-height: 80vh; }
.fav-header { margin-bottom: 28px; }
.fav-header h1 {
  font-size: 1.6rem; display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.fav-header h1 i { color: var(--pink); }
.fav-header p { color: var(--text-body); font-size: 0.95rem; }

/* Tabs */
.fav-tabs {
  display: flex; gap: 4px; margin-bottom: 28px;
  background: var(--bg-card); border-radius: var(--radius-md);
  padding: 5px; border: 1px solid var(--border); width: fit-content;
}
.fav-tab {
  padding: 10px 24px; border-radius: var(--radius-sm); border: none;
  background: transparent; font-family: 'Outfit', sans-serif; font-size: 0.88rem;
  font-weight: 500; color: var(--text-body); cursor: pointer;
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.fav-tab:hover { background: var(--bg-alt); }
.fav-tab.active { background: var(--gradient); color: #fff; }
.fav-tab.active .fav-count { background: rgba(255,255,255,0.25); color: #fff; }
.fav-count {
  padding: 2px 8px; border-radius: var(--radius-full); font-size: 0.72rem;
  font-weight: 700; background: var(--bg-alt); color: var(--text-body);
}
.fav-lock { color: var(--text-light); font-size: 0.75rem; }

/* Tab content */
.fav-tab-content { display: none; }
.fav-tab-content.active { display: block; }

/* Empty states */
.fav-empty {
  text-align: center; padding: 60px 20px;
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.fav-empty-icon { font-size: 3rem; margin-bottom: 14px; }
.fav-empty h3 { margin-bottom: 8px; }
.fav-empty p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }
.fav-premium-lock { border: 2px dashed var(--border); background: var(--gradient-soft); }

/* ==========================================
   Profile Edit Page — Premium Layout
   ========================================== */
.ep-page { padding: 30px 0 80px; background: var(--bg-alt); }
.ep-top-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
}
.ep-top-bar h1 { font-size: 1.5rem; display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.ep-top-bar h1 i { color: var(--pink); }
.ep-top-bar p { color: var(--text-body); font-size: 0.9rem; }

.ep-completeness-pill { display: flex; align-items: center; gap: 10px; }
.ep-pill-bar { width: 120px; height: 8px; background: var(--border); border-radius: var(--radius-full); overflow: hidden; }
.ep-pill-fill { height: 100%; background: var(--gradient); border-radius: var(--radius-full); transition: width 0.5s ease; }
.ep-completeness-pill span { font-size: 0.82rem; font-weight: 700; color: var(--pink); }

/* 2-column layout */
.ep-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: flex-start; }
.ep-main { min-width: 0; }

/* Step cards */
.ep-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 20px;
}
.ep-card-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.ep-step {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient); color: #fff; font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ep-card-head h3 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; }

/* Form inputs inside ep-card */
.ep-card .form-group input, .ep-card .form-group select, .ep-card .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--text); background: #fff;
  outline: none; transition: var(--transition);
}
.ep-card .form-group input:focus, .ep-card .form-group select:focus, .ep-card .form-group textarea:focus {
  border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,54,143,0.1);
}
.ep-card .form-group textarea { resize: vertical; line-height: 1.6; }
.ep-card .form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }

/* Photo area */
.ep-photo-area { display: flex; gap: 22px; align-items: center; }
.ep-photo-preview {
  position: relative; width: 130px; height: 130px; border-radius: var(--radius-lg);
  overflow: hidden; flex-shrink: 0; border: 3px solid var(--border);
}
.ep-photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.ep-photo-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem; gap: 4px; opacity: 0; transition: var(--transition); cursor: pointer;
}
.ep-photo-overlay i { font-size: 1.3rem; }
.ep-photo-preview:hover .ep-photo-overlay { opacity: 1; }
.ep-photo-info { flex: 1; }
.ep-photo-hint { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }

/* Submit */
.edit-actions { display: flex; gap: 14px; margin-top: 10px; }

/* ---- Sidebar ---- */
.ep-sidebar { position: sticky; top: 90px; }
.ep-side-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 18px;
}
.ep-side-title {
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.ep-side-title i { color: var(--pink); font-size: 0.85rem; }

/* Preview card */
.ep-preview-card { text-align: center; padding-top: 0; overflow: hidden; }
.ep-preview-cover { height: 80px; background: var(--gradient); margin: 0 -22px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.ep-preview-img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--bg-card); margin-top: -40px;
}
.ep-preview-card h4 { font-size: 1rem; margin: 8px 0 2px; }
.ep-preview-card p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; }

/* Stats */
.ep-side-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; text-align: center; }
.ep-side-stat { background: var(--bg-alt); border-radius: var(--radius-sm); padding: 12px 6px; }
.ep-side-stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--pink); }
.ep-side-stat span:last-child { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }

/* Checklist */
.ep-check-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
  font-size: 0.82rem; color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.ep-check-item:last-child { border-bottom: none; }
.ep-check-item i { font-size: 0.9rem; color: var(--border); }
.ep-done i { color: #1abc9c; }
.ep-done span { text-decoration: line-through; color: var(--text-light); }

/* Tips */
.ep-tips-card { background: var(--gradient-soft); }
.ep-tips-list { padding-left: 18px; }
.ep-tips-list li { font-size: 0.82rem; color: var(--text-body); margin-bottom: 8px; line-height: 1.5; }

/* Gallery grid */
.ep-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ep-gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 1; border: 1px solid var(--border);
}
.ep-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.ep-gallery-delete {
  position: absolute; top: 6px; right: 6px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(231,76,60,0.9); color: #fff; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.ep-gallery-item:hover .ep-gallery-delete { opacity: 1; }
.ep-gallery-add {
  border: 2px dashed var(--border); border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; color: var(--text-light); font-size: 0.8rem; cursor: pointer;
  aspect-ratio: 1; transition: var(--transition);
}
.ep-gallery-add i { font-size: 1.3rem; }
.ep-gallery-add:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-soft); }

/* Premium Upgrade Modal */
.premium-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9999;
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.premium-modal-overlay.active { display: flex; }
.premium-modal {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 40px 36px; max-width: 420px; width: 90%; text-align: center;
  box-shadow: var(--shadow-xl); position: relative;
  animation: modalPop 0.3s ease;
}
@keyframes modalPop { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.premium-modal-close {
  position: absolute; top: 14px; right: 14px; background: none; border: none;
  font-size: 1.2rem; color: var(--text-light); cursor: pointer;
}
.premium-modal-icon { font-size: 3.5rem; margin-bottom: 14px; }
.premium-modal h3 { font-size: 1.3rem; margin-bottom: 8px; }
.premium-modal p { color: var(--text-body); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }
.premium-modal-features {
  text-align: left; margin-bottom: 24px; padding: 16px; border-radius: var(--radius-md);
  background: var(--gradient-soft);
}
.premium-modal-features li {
  font-size: 0.85rem; color: var(--text-body); padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
}
.premium-modal-features li i { color: var(--pink); font-size: 0.8rem; }


@media (max-width: 900px) {
  .ep-layout { grid-template-columns: 1fr; }
  .ep-sidebar { position: static; }
  .ep-photo-area { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 768px) {
  .fav-tabs { width: 100%; }
  .fav-tab { flex: 1; justify-content: center; font-size: 0.82rem; padding: 10px 12px; }

}

/* ==========================================
   About Page
   ========================================== */
.about-hero {
  background: var(--gradient-hero); padding: 70px 0 60px; text-align: center;
}
.about-hero h1 { color: #fff; margin-bottom: 12px; }
.about-hero h1 span { color: var(--pink-soft); }
.about-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.about-mission { padding: 80px 0; }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-mission-text p { color: var(--text-body); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.about-mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about-stat-card {
  background: var(--bg-card); border-radius: var(--radius-md); padding: 28px 20px;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.about-stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--pink); }
.about-stat-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }

.about-values { padding: 80px 0; background: var(--bg-alt); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--gradient); color: #fff; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { color: var(--text-body); font-size: 0.88rem; }

@media (max-width: 768px) {
  .about-mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   Pricing Page
   ========================================== */
.pricing-hero {
  background: var(--gradient-hero); padding: 80px 0 70px; text-align: center;
  position: relative; overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(232,54,143,0.18), transparent 55%),
              radial-gradient(circle at 85% 10%, rgba(79,110,247,0.2), transparent 50%);
}
.pricing-hero .container { position: relative; z-index: 1; }
.pricing-hero h1 { color: #fff; margin-bottom: 12px; }
.pricing-hero h1 span { color: var(--pink-soft); }
.pricing-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

.pricing-section { padding: 70px 0 90px; background: var(--bg-alt); }
.pricing-header {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  margin-bottom: 30px;
}
.pricing-header h2 { margin-bottom: 10px; }
.pricing-header p { color: var(--text-body); max-width: 520px; }
.pricing-header-actions .btn { white-space: nowrap; }

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pricing-plan {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 32px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: var(--transition);
}
.pricing-plan::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient); opacity: 0.85;
}
.pricing-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-plan-popular { border-color: rgba(232,54,143,0.4); box-shadow: var(--shadow-pink); }
.pricing-plan-best {
  border-color: rgba(217,119,6,0.4);
  background: linear-gradient(180deg, #fff 0%, #fff7eb 100%);
}
.pricing-plan-saver::before { background: var(--gradient-blue); }
.pricing-plan-best::before { background: linear-gradient(135deg, #d97706, #f59e0b); }

.pricing-plan-ribbon {
  position: absolute; top: 18px; right: 18px;
  background: var(--gradient); color: #fff; padding: 5px 12px;
  border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
}
.pricing-plan-best .pricing-plan-ribbon {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.pricing-plan-head { text-align: left; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px dashed var(--border); }
.pricing-kicker {
  text-transform: uppercase; letter-spacing: 0.8px; font-size: 0.7rem;
  color: var(--text-light); margin-bottom: 6px; font-weight: 700;
}
.pricing-icon { font-size: 2.1rem; display: block; margin-bottom: 10px; }
.pricing-plan-head h3 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.pricing-amount { display: flex; align-items: baseline; justify-content: flex-start; gap: 2px; }
.pricing-currency { font-size: 1.2rem; font-weight: 600; color: var(--text-body); }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 2.35rem; font-weight: 700; color: var(--text); }
.pricing-period { font-size: 0.85rem; color: var(--text-light); }
.pricing-plan-head p { font-size: 0.9rem; color: var(--text-light); margin-top: 6px; }

.pricing-features { flex: 1; margin-bottom: 24px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 0.88rem; color: var(--text-body);
}
.pricing-features .included i { color: #1abc9c; }
.pricing-features .excluded i { color: var(--border); }
.pricing-features .excluded { color: var(--text-light); }

/* Pricing CTA — sizing override only (slide effect inherited from global .btn) */
.pricing-plan-cta { margin-top: auto; text-align: center; padding-top: 8px; }
.pricing-plan-cta .btn {
  padding: 10px 28px; font-size: 0.85rem;
  width: auto; max-width: 100%;
  justify-content: center;
}

/* FAQ */
.faq-hero {
  background: var(--gradient-hero); padding: 80px 0 70px; text-align: center;
  position: relative; overflow: hidden;
}
.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(232,54,143,0.2), transparent 55%),
              radial-gradient(circle at 80% 10%, rgba(79,110,247,0.22), transparent 50%);
}
.faq-hero .container { position: relative; z-index: 1; }
.faq-hero h1 { color: #fff; margin-bottom: 10px; }
.faq-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

.faq-section { padding: 70px 0 90px; background: var(--bg-alt); }
.faq-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px;
  align-items: start;
}
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-main .faq-list { max-width: 100%; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 10px; overflow: hidden;
}
.faq-question {
  width: 100%; padding: 16px 20px; border: none; background: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 600;
  color: var(--text); cursor: pointer; text-align: left;
}
.faq-question i { color: var(--pink); transition: var(--transition); font-size: 0.8rem; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 20px 16px; font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }

.faq-side { display: grid; gap: 18px; }
.faq-card {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.faq-card h3 { margin-bottom: 10px; }
.faq-card h4 { margin-bottom: 10px; font-size: 1rem; }
.faq-card p { color: var(--text-body); margin-bottom: 16px; }
.faq-card-muted { background: var(--bg-secondary); }
.faq-tip-list { display: grid; gap: 8px; color: var(--text-body); font-size: 0.88rem; }
.faq-tip-list li { display: flex; align-items: center; gap: 8px; }
.faq-tip-list li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient);
}

@media (max-width: 900px) {
  .pricing-header { flex-direction: column; align-items: flex-start; }
  .pricing-header-actions { width: 100%; }
  .faq-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pricing-table { grid-template-columns: 1fr; }
}

/* ==========================================
   Quiz System
   ========================================== */
.quiz-page { padding: 40px 0 80px; background: var(--bg-alt); min-height: 80vh; }
.quiz-hero-header { text-align: center; margin-bottom: 40px; }
.quiz-hero-header h1 { margin-bottom: 8px; }
.quiz-hero-header p { color: var(--text-body); }

.quiz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.quiz-cat-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  text-align: center; transition: var(--transition);
}
.quiz-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quiz-cat-icon { font-size: 2.5rem; margin-bottom: 14px; }
.quiz-cat-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.quiz-cat-card p { color: var(--text-body); font-size: 0.88rem; margin-bottom: 14px; }
.quiz-cat-meta { display: flex; justify-content: center; gap: 16px; font-size: 0.8rem; color: var(--text-light); }
.quiz-cat-meta i { margin-right: 4px; }
.quiz-best-score { color: var(--pink); font-weight: 600; }

/* Quiz Player */
.quiz-play { padding: 40px 0 80px; background: var(--bg-alt); min-height: 80vh; }
.quiz-play-header { text-align: center; margin-bottom: 30px; }
.quiz-back {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem;
  color: var(--text-body); margin-bottom: 14px;
}
.quiz-back:hover { color: var(--pink); }
.quiz-play-header h1 { margin-bottom: 6px; }
.quiz-play-header p { color: var(--text-body); }

.quiz-container { max-width: 680px; margin: 0 auto; }

/* Progress */
.quiz-progress { margin-bottom: 24px; }
.quiz-progress-bar { height: 8px; background: var(--border); border-radius: var(--radius-full); overflow: hidden; }
.quiz-progress-fill { height: 100%; background: var(--gradient); border-radius: var(--radius-full); transition: width 0.4s ease; }
.quiz-progress-text { display: block; text-align: center; margin-top: 8px; font-size: 0.82rem; color: var(--text-light); font-weight: 600; }

/* Question Card */
.quiz-question-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 20px;
}
.quiz-q-text { font-size: 1.15rem; line-height: 1.5; margin-bottom: 24px; text-align: center; }

/* Options */
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  border: 2px solid var(--border); border-radius: var(--radius-md);
  background: var(--bg-card); cursor: pointer; text-align: left;
  font-family: 'Outfit', sans-serif; font-size: 0.92rem; color: var(--text);
  transition: var(--transition); width: 100%;
}
.quiz-opt:hover { border-color: var(--pink); background: var(--pink-soft); }
.quiz-opt.selected { border-color: var(--pink); background: var(--pink-soft); color: var(--pink); font-weight: 600; }
.quiz-opt-key {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; color: var(--text-body);
}
.quiz-opt.selected .quiz-opt-key { background: var(--pink); color: #fff; }

/* Navigation */
.quiz-nav { display: flex; justify-content: space-between; gap: 10px; }

/* Results */
.quiz-results-card {
  max-width: 500px; margin: 0 auto; text-align: center;
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 50px 36px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.quiz-results-icon { font-size: 3.5rem; margin-bottom: 14px; }
.quiz-results-card h2 { margin-bottom: 8px; }
.quiz-results-card p { color: var(--text-body); margin-bottom: 24px; }
.quiz-score-circle {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 24px;
  background: var(--gradient); display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: #fff;
}
.quiz-score-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.quiz-score-total { font-size: 0.82rem; opacity: 0.8; }
.quiz-results-actions { display: flex; gap: 12px; justify-content: center; }

/* ==========================================
   Messages Inbox
   ========================================== */
.msg-page { padding: 40px 0 80px; background: var(--bg-alt); min-height: 80vh; }
.msg-header { margin-bottom: 28px; }
.msg-header h1 { font-size: 1.6rem; display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.msg-header h1 i { color: var(--pink); }
.msg-header p { color: var(--text-body); font-size: 0.95rem; }

.msg-upgrade, .msg-empty {
  text-align: center; padding: 60px 20px; max-width: 500px; margin: 0 auto;
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.msg-upgrade { border: 2px dashed var(--border); background: var(--gradient-soft); }
.msg-upgrade-icon, .msg-empty-icon { font-size: 3rem; margin-bottom: 14px; }
.msg-upgrade h3, .msg-empty h3 { margin-bottom: 8px; }
.msg-upgrade p, .msg-empty p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }

.msg-list { max-width: 700px; }
.msg-item {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  background: var(--bg-card); border-radius: var(--radius-md);
  border: 1px solid var(--border); margin-bottom: 8px;
  transition: var(--transition); text-decoration: none; color: inherit;
}
.msg-item:hover { box-shadow: var(--shadow-sm); transform: translateX(3px); }
.msg-unread { border-left: 3px solid var(--pink); background: var(--pink-soft); }
.msg-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.msg-info { flex: 1; min-width: 0; }
.msg-top-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.msg-top-row h4 { font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 600; }
.msg-time { font-size: 0.72rem; color: var(--text-light); white-space: nowrap; }
.msg-preview { font-size: 0.82rem; color: var(--text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg-you { color: var(--pink); font-weight: 600; }
.msg-badge {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--pink); color: #fff; font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================
   Chat Page
   ========================================== */
.chat-page { padding: 0 0 0; background: var(--bg-alt); }
.chat-page .container { max-width: 750px; display: flex; flex-direction: column; height: calc(100vh - 120px); }

.chat-header {
  display: flex; align-items: center; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.chat-back { font-size: 1.1rem; color: var(--text-body); padding: 6px; }
.chat-back:hover { color: var(--pink); }
.chat-partner-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.chat-partner-info { flex: 1; }
.chat-partner-info h3 { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600; }
.chat-status { font-size: 0.75rem; color: #1abc9c; }

.chat-messages {
  flex: 1; overflow-y: auto; padding: 20px 0;
  display: flex; flex-direction: column; gap: 6px;
}

.chat-start {
  text-align: center; padding: 40px 20px; margin: auto 0;
}
.chat-start-icon { font-size: 2.5rem; margin-bottom: 10px; }
.chat-start p { color: var(--text-light); font-size: 0.9rem; }

.chat-date-divider {
  text-align: center; padding: 14px 0;
}
.chat-date-divider span {
  padding: 4px 14px; border-radius: var(--radius-full);
  background: var(--bg-alt); font-size: 0.72rem; color: var(--text-light);
  font-weight: 600;
}

.chat-bubble {
  max-width: 75%; padding: 12px 16px; border-radius: 16px; position: relative;
}
.chat-bubble p { font-size: 0.9rem; line-height: 1.5; margin-bottom: 2px; }
.chat-time { font-size: 0.68rem; color: rgba(0,0,0,0.35); }

.chat-sent {
  align-self: flex-end; background: var(--gradient); color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-sent .chat-time { color: rgba(255,255,255,0.6); }
.chat-received {
  align-self: flex-start; background: var(--bg-card);
  border: 1px solid var(--border); border-bottom-left-radius: 4px;
}

.chat-input-bar {
  display: flex; gap: 10px; padding: 16px 0; border-top: 1px solid var(--border);
}
.chat-input-bar input {
  flex: 1; padding: 12px 18px; border: 1.5px solid var(--border);
  border-radius: var(--radius-full); font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; outline: none; transition: var(--transition);
}
.chat-input-bar input:focus { border-color: var(--pink); }
.chat-send-btn {
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--gradient); color: #fff; font-size: 1rem;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.chat-send-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-pink); }

/* ==========================================
   Notifications
   ========================================== */
.notif-page {
  position: relative;
  padding: 48px 0 84px;
  min-height: 80vh;
  background:
    radial-gradient(circle at top left, rgba(232,54,143,0.10), transparent 36%),
    radial-gradient(circle at top right, rgba(79,110,247,0.10), transparent 32%),
    linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}
.notif-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.28) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.18), transparent 80%);
  pointer-events: none;
}
.notif-page .container { position: relative; z-index: 1; }
.notif-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 50px rgba(17,24,39,0.08);
  backdrop-filter: blur(18px);
}
.notif-hero-copy { max-width: 680px; }
.notif-hero h1 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.notif-hero h1 i { color: var(--pink); }
.notif-hero p { color: var(--text-body); font-size: 0.98rem; max-width: 560px; }
.notif-hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.notif-summary-pill {
  min-width: 110px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(235,235,240,0.9);
  box-shadow: var(--shadow-sm);
}
.notif-summary-pill-soft { background: linear-gradient(180deg, rgba(248,249,252,0.95), rgba(255,255,255,0.9)); }
.notif-summary-value { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; line-height: 1; color: var(--text); }
.notif-summary-label { display: block; margin-top: 6px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.notif-mark-read { box-shadow: var(--shadow-pink); }

.notif-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}
.notif-main { min-width: 0; }
.notif-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 110px;
}
.notif-panel {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 14px 36px rgba(17,24,39,0.06);
  backdrop-filter: blur(16px);
}
.notif-panel-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,249,252,0.88));
  border-color: rgba(232,54,143,0.14);
}
.notif-panel-head h3 {
  margin-top: 8px;
  font-size: 1.03rem;
  line-height: 1.35;
}
.notif-panel-head .section-badge { display: inline-flex; }
.notif-quick-links,
.notif-stat-list,
.notif-mini-list { margin-top: 16px; }
.notif-quick-links {
  display: grid;
  gap: 10px;
}
.notif-quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(235,235,240,0.92);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}
.notif-quick-links a i { color: var(--pink); width: 18px; text-align: center; }
.notif-quick-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(232,54,143,0.16);
  box-shadow: 0 10px 24px rgba(17,24,39,0.06);
  color: var(--pink);
}
.notif-stat-list {
  display: grid;
  gap: 10px;
}
.notif-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(235,235,240,0.9);
  font-size: 0.88rem;
}
.notif-stat-row span { color: var(--text-body); }
.notif-stat-row strong {
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
}
.notif-mini-list {
  display: grid;
  gap: 12px;
}
.notif-mini-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
}
.notif-mini-item + .notif-mini-item { border-top: 1px solid rgba(235,235,240,0.8); }
.notif-mini-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 5px rgba(232,54,143,0.08);
  flex-shrink: 0;
}
.notif-mini-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 3px;
}
.notif-mini-item span {
  font-size: 0.72rem;
  color: var(--text-light);
}
.notif-panel-note {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.55;
}

.notif-empty {
  text-align: center;
  padding: 72px 24px;
  max-width: 460px;
  margin: 0 auto;
  background: rgba(255,255,255,0.8);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 18px 50px rgba(17,24,39,0.06);
  backdrop-filter: blur(10px);
}
.notif-empty-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--pink);
  background: linear-gradient(135deg, var(--pink-soft), #fff);
  box-shadow: inset 0 0 0 1px rgba(232,54,143,0.12);
}
.notif-empty h3 { margin-bottom: 8px; }
.notif-empty p { color: var(--text-light); font-size: 0.9rem; }

.notif-list { display: grid; gap: 14px; }
.notif-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px 18px 18px;
  background: rgba(255,255,255,0.9);
  border-radius: 22px;
  border: 1px solid rgba(235,235,240,0.92);
  box-shadow: 0 8px 28px rgba(17,24,39,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
  cursor: pointer;
}
.notif-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(17,24,39,0.08);
  border-color: rgba(232,54,143,0.18);
}

/* ── Read state (default/muted) ── */
.notif-item:not(.notif-unread) {
  opacity: 0.78;
}
.notif-item:not(.notif-unread) .notif-content h4 {
  font-weight: 600;
  color: var(--text-body);
}
.notif-item:not(.notif-unread) .notif-content p {
  color: var(--text-light);
}
.notif-item:not(.notif-unread):hover {
  opacity: 1;
}

/* ── Unread state (highlighted) ── */
.notif-unread {
  background: linear-gradient(135deg, rgba(232,54,143,0.04) 0%, rgba(79,110,247,0.04) 100%);
  border-color: rgba(232,54,143,0.18);
  box-shadow: 0 12px 30px rgba(232,54,143,0.10);
  opacity: 1;
}
.notif-unread::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gradient);
  border-radius: 0 0 0 22px;
}
.notif-unread .notif-content h4 {
  font-weight: 800;
  color: var(--text);
}
.notif-unread .notif-content p {
  color: var(--text-body);
  font-weight: 500;
}

.notif-accent {
  width: 4px;
  min-height: 54px;
  border-radius: 999px;
  flex-shrink: 0;
  margin-top: 2px;
}
.notif-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.75);
}
.notif-content { flex: 1; }
.notif-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
  transition: font-weight 0.3s, color 0.3s;
}
.notif-content p {
  font-size: 0.86rem;
  color: var(--text-body);
  margin-bottom: 6px;
  transition: color 0.3s;
}
.notif-time { font-size: 0.74rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.notif-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 8px;
  box-shadow: 0 0 0 6px rgba(232,54,143,0.1);
  animation: notifPulse 2s ease-in-out infinite;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.notif-dot.dot-hide {
  opacity: 0;
  transform: scale(0);
}
@keyframes notifPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,54,143,0.10); }
  50% { box-shadow: 0 0 0 8px rgba(232,54,143,0.06); }
}
.notif-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.notif-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  background: var(--pink-soft);
  color: var(--pink);
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  border: 1px solid rgba(232,54,143,0.18);
}
.notif-action-btn:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-pink);
}
.notif-action-match { background: var(--blue-soft); color: var(--blue); border-color: rgba(79,110,247,0.2); }
.notif-action-match:hover { background: var(--blue); color: #fff; }

@media (max-width: 768px) {
  .chat-page .container { height: calc(100vh - 100px); }
  .notif-page { padding: 28px 0 64px; }
  .notif-hero { flex-direction: column; align-items: flex-start; padding: 22px; border-radius: 22px; }
  .notif-hero-actions { width: 100%; justify-content: flex-start; }
  .notif-summary-pill { min-width: 96px; padding: 12px 14px; }
  .notif-layout { grid-template-columns: 1fr; }
  .notif-sidebar { position: static; }
  .notif-panel { padding: 18px; border-radius: 20px; }
  .notif-item { padding: 18px 16px 18px 14px; }
  .notif-accent { display: none; }
  .notif-icon { width: 46px; height: 46px; border-radius: 14px; }
}

/* ==========================================
   Interests Page
   ========================================== */
.int-page { padding: 40px 0 80px; background: var(--bg-alt); min-height: 80vh; }
.int-header { margin-bottom: 28px; }
.int-header h1 { font-size: 1.6rem; display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.int-header h1 i { color: var(--pink); }
.int-header p { color: var(--text-body); font-size: 0.95rem; }

.int-empty {
  text-align: center; padding: 60px 20px;
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.int-empty h3 { margin: 10px 0 8px; }
.int-empty p { color: var(--text-light); font-size: 0.9rem; }

.int-list { max-width: 750px; }
.int-item {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  background: var(--bg-card); border-radius: var(--radius-md);
  border: 1px solid var(--border); margin-bottom: 10px;
  transition: var(--transition);
}
.int-item:hover { box-shadow: var(--shadow-sm); }
.int-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.int-info { flex: 1; }
.int-info h4 { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.int-info h4 a { color: var(--text); }
.int-info h4 a:hover { color: var(--pink); }
.int-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 4px; }
.int-meta span { font-size: 0.78rem; color: var(--text-light); }
.int-meta i { color: var(--pink); margin-right: 3px; }
.int-time { font-size: 0.72rem; color: var(--text-light); }
.int-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Status badges */
.int-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 14px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600;
}
.int-pending { background: #fef3e2; color: #e67e22; }
.int-accepted { background: #e8f8f5; color: #1abc9c; }
.int-rejected { background: #fde8e8; color: #e74c3c; }

/* ==========================================
   Matches Page
   ========================================== */
.matches-page { padding: 40px 0 80px; background: var(--bg-alt); min-height: 80vh; }
.matches-header {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px;
}
.matches-header h1 { font-size: 1.6rem; display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.matches-header h1 i { color: var(--pink); }
.matches-header p { color: var(--text-body); font-size: 0.9rem; }

.matches-empty {
  text-align: center; padding: 60px 20px;
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.matches-empty h3 { margin: 10px 0 8px; }
.matches-empty p { color: var(--text-light); font-size: 0.9rem; max-width: 420px; margin: 0 auto; }

.matches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.match-card {
  background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition);
}
.match-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.match-card-top { position: relative; }
.match-photo { width: 100%; height: 220px; object-fit: cover; display: block; }
.match-unread {
  position: absolute; top: 12px; right: 12px;
  background: var(--pink); color: #fff; padding: 4px 12px;
  border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 700;
}
.match-date {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
  color: #fff; padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 500;
}
.match-date i { color: var(--pink-soft); margin-right: 4px; }

.match-card-body { padding: 18px 20px; }
.match-card-body h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.match-meta { display: flex; gap: 14px; margin-bottom: 6px; }
.match-meta span { font-size: 0.8rem; color: var(--text-light); }
.match-meta i { color: var(--pink); margin-right: 3px; }
.match-occupation { font-size: 0.82rem; color: var(--text-body); margin-bottom: 14px; }
.match-occupation i { color: var(--blue); margin-right: 4px; }
.match-actions { display: flex; gap: 8px; }
.match-actions .btn { flex: 1; justify-content: center; }

@media (max-width: 768px) {
  .matches-header { flex-direction: column; gap: 12px; }
  .matches-grid { grid-template-columns: 1fr; }
  .int-item { flex-wrap: wrap; }
  .int-actions { width: 100%; justify-content: flex-end; }
}

/* ==========================================
   Auth Pages — Login & Register
   ========================================== */
.auth-body {
  margin: 0; padding: 0;
  font-family: 'Outfit', sans-serif;
  background: var(--bg-alt);
  min-height: 100vh;
}
.auth-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Visual Panel (Left) */
.auth-visual-panel {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.auth-visual-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1128 0%, #2d1b4e 30%, #e8368f 70%, #ff6b9d 100%);
}
.auth-visual-inner {
  position: relative; z-index: 2; padding: 60px 50px;
  color: #fff; max-width: 480px;
}
.auth-brand, .auth-mobile-brand {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 700; color: #fff; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 48px;
}
.auth-brand span, .auth-mobile-brand span { color: var(--pink); font-weight: 400; }
.auth-mobile-brand { display: none; color: var(--text); margin-bottom: 24px; }
.auth-visual-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; line-height: 1.15;
  margin-bottom: 16px;
}
.auth-visual-text p {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 32px;
}
.auth-visual-features {
  display: flex; flex-direction: column; gap: 12px;
}
.auth-visual-features div {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: rgba(255,255,255,0.85);
}
.auth-visual-features i { color: #1abc9c; font-size: 0.85rem; }

/* Decorative circles */
.auth-visual-decoration { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.auth-deco-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.auth-deco-circle.c1 { width: 300px; height: 300px; top: -80px; right: -60px; animation: authFloat 8s ease-in-out infinite; }
.auth-deco-circle.c2 { width: 200px; height: 200px; bottom: 60px; left: -40px; animation: authFloat 6s ease-in-out infinite reverse; }
.auth-deco-circle.c3 { width: 120px; height: 120px; bottom: -30px; right: 80px; background: rgba(255,255,255,0.03); animation: authFloat 10s ease-in-out infinite; }
@keyframes authFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Form Panel (Right) */
.auth-form-panel {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px; background: #fff;
  overflow-y: auto;
}
.auth-form-inner {
  width: 100%; max-width: 440px;
}
.auth-form-header { margin-bottom: 28px; }
.auth-form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--text);
  margin-bottom: 6px;
}
.auth-form-header p { color: var(--text-light); font-size: 0.9rem; }

/* Alert */
.auth-alert {
  padding: 14px 16px; border-radius: var(--radius-md);
  margin-bottom: 20px; font-size: 0.85rem;
}
.auth-alert-error {
  background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
}
.auth-alert div { display: flex; align-items: center; gap: 8px; padding: 3px 0; }
.auth-alert i { color: #dc2626; font-size: 0.8rem; flex-shrink: 0; }

/* Social Buttons */
.auth-social { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.auth-social-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px; border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); border: 1.5px solid var(--border);
  background: #fff; color: var(--text);
}
.auth-social-btn:hover { background: var(--bg-alt); border-color: #ccc; transform: translateY(-1px); }
.auth-social-btn.google svg { flex-shrink: 0; }
.auth-social-btn.facebook { background: #1877F2; color: #fff; border-color: #1877F2; }
.auth-social-btn.facebook:hover { background: #1565d8; }
.auth-social-btn.facebook i { font-size: 1rem; }

/* Divider */
.auth-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 20px 0; color: var(--text-light); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* Form Fields */
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-field label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.auth-label-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.auth-label-row label { margin-bottom: 0; }
.auth-forgot {
  font-size: 0.78rem; color: var(--pink); text-decoration: none; font-weight: 500;
}
.auth-forgot:hover { text-decoration: underline; }
.auth-input-wrap {
  display: flex; align-items: center; gap: 10px;
  padding: 0 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); background: #fff;
  transition: var(--transition);
}
.auth-input-wrap:focus-within { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,54,143,0.08); }
.auth-input-wrap i { color: var(--text-light); font-size: 0.85rem; flex-shrink: 0; width: 16px; text-align: center; }
.auth-input-wrap input, .auth-input-wrap select {
  flex: 1; border: none; outline: none; padding: 12px 0;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--text);
  background: transparent;
}
.auth-input-wrap select { cursor: pointer; }
.auth-toggle-pw {
  background: none; border: none; color: var(--text-light); cursor: pointer;
  padding: 4px; font-size: 0.9rem;
}
.auth-toggle-pw:hover { color: var(--pink); }

/* Row (2-col) */
.auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Remember / Terms */
.auth-remember {
  display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: var(--text-body);
}
.auth-remember input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--pink); margin-top: 2px; flex-shrink: 0;
}
.auth-remember a { color: var(--pink); text-decoration: none; }
.auth-remember a:hover { text-decoration: underline; }

/* Submit */
.auth-submit-btn {
  width: 100%; padding: 14px; border: none; border-radius: var(--radius-md);
  background: var(--gradient); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.auth-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,54,143,0.3); }

/* Switch link */
.auth-switch {
  text-align: center; margin-top: 24px; font-size: 0.85rem; color: var(--text-light);
}
.auth-switch a { color: var(--pink); font-weight: 600; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

/* Auth Responsive */
@media (max-width: 900px) {
  .auth-wrapper { grid-template-columns: 1fr; }
  .auth-visual-panel { display: none; }
  .auth-mobile-brand { display: inline-flex; }
  .auth-form-panel { padding: 30px 20px; min-height: 100vh; align-items: flex-start; padding-top: 40px; }
  .auth-row { grid-template-columns: 1fr; }
}
