/* ============================================================
   Vivi's — Fashion. Wellness. Life.
   Custom Design System
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --rose: #C4797D;
  --rose-light: #E8B4B8;
  --rose-dark: #A35D62;
  --rose-soft: rgba(196, 121, 125, 0.12);
  --sage: #8FAE8B;
  --sage-light: #B5CCAA;
  --gold: #D4AF8A;
  --cream: #FAF7F4;
  --cream-dark: #F0E8E0;
  --dark: #3D2B2B;
  --text: #5A3D3D;
  --text-light: #8B6E70;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(196, 121, 125, 0.10);
  --shadow-md: 0 4px 24px rgba(196, 121, 125, 0.15);
  --shadow-lg: 0 8px 48px rgba(196, 121, 125, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--dark); }
a { color: var(--rose); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rose-dark); }

/* ---------- Utilities ---------- */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.mt-6 { margin-top: 5rem; }
.text-rose { color: var(--rose) !important; }
.bg-rose { background-color: var(--rose) !important; }
.bg-rose-light { background-color: var(--rose-light) !important; }
.bg-cream-section { background-color: var(--cream-dark); }
.z-1 { z-index: 1; }

/* ---------- Buttons ---------- */
.btn-rose {
  background: var(--rose);
  color: white;
  border: 2px solid var(--rose);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  transition: all 0.25s;
}
.btn-rose:hover, .btn-rose:focus {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline-rose {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: all 0.25s;
}
.btn-outline-rose:hover, .btn-outline-rose:focus {
  background: var(--rose);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-outline-cream {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: all 0.25s;
}
.btn-outline-cream:hover {
  background: white;
  color: var(--rose);
}
.btn-google {
  background: white;
  color: #444;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-pill);
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.btn-google:hover {
  border-color: var(--rose-light);
  background: #fafafa;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

/* ---------- Event Banner ---------- */
.event-banner {
  background: linear-gradient(135deg, var(--rose) 0%, #9E5F64 100%);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}
.event-banner a { color: white; text-decoration: underline; }
.event-banner .btn-light {
  font-size: 0.75rem;
  padding: 2px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* ---------- Navbar ---------- */
.vivis-nav {
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 121, 125, 0.12);
  padding: 0.75rem 0;
  transition: all 0.3s;
  z-index: 1040;
}
.vivis-nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-script {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  font-style: italic;
  color: var(--rose);
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}
.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem !important;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--rose);
  background: var(--rose-soft);
}
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.5rem;
}
.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  transition: background 0.15s;
}
.dropdown-item:hover { background: var(--rose-soft); color: var(--rose); }

/* ---------- Toast / Messages ---------- */
.toast-success { background: var(--rose); }
.toast-info { background: var(--sage); }

/* ---------- Hero Section ---------- */
.hero-section {
  min-height: 62vh;
  background: linear-gradient(135deg, #3D1F20 0%, #6B3A3E 35%, #C4797D 75%, #E8B4B8 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(61,27,28,0.6) 0%, transparent 60%);
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-light);
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-brand {
  font-style: italic;
  color: var(--rose-light);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-top: 1.25rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.stat-num { font-size: 1.5rem; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  font-size: 1.25rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Section Headers ---------- */
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Featured Event ---------- */
.featured-event-section { background: var(--cream); }
.featured-event-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(196,121,125,0.1);
}
.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--rose);
  color: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: inline-flex;
}
.event-month { font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.event-day { font-size: 3rem; font-family: var(--font-heading); font-weight: 700; line-height: 1; }
.event-year { font-size: 0.85rem; opacity: 0.8; }
.featured-event-title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--dark); }
.event-price-tag {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rose);
  font-family: var(--font-heading);
}

/* ---------- Service Cards ---------- */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196,121,125,0.08);
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-light);
}
.service-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}
.fashion-icon { background: rgba(196,121,125,0.12); color: var(--rose); }
.beauty-icon { background: rgba(212,175,138,0.15); color: var(--gold); }
.wellness-icon { background: rgba(143,174,139,0.15); color: var(--sage); }
.community-icon { background: rgba(232,180,184,0.2); color: var(--rose-dark); }
.service-link { color: var(--rose); font-weight: 600; font-size: 0.9rem; }
.service-link:hover { color: var(--rose-dark); }
.service-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--text-light); font-size: 0.9rem; }

/* ---------- Tip Cards ---------- */
.tip-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196,121,125,0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.tip-card-img {
  height: 200px; overflow: hidden;
}
.tip-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.tip-card:hover .tip-card-img img { transform: scale(1.05); }
.tip-card-img-placeholder {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: white;
}
.tip-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.tip-category-badge {
  font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-pill);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.tip-category-badge.fashion { background: rgba(196,121,125,0.12); color: var(--rose-dark); }
.tip-category-badge.wellness { background: rgba(143,174,139,0.15); color: #5a8c5a; }
.tip-category-badge.parenting { background: rgba(212,175,138,0.2); color: #9a7040; }
.tip-category-badge.beauty { background: rgba(232,180,184,0.2); color: var(--rose); }
.tip-category-badge.food { background: rgba(143,174,139,0.2); color: #4a7a4a; }
.tip-category-badge.mindset { background: rgba(100,120,200,0.12); color: #4a5fa0; }
.tip-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--dark); }
.tip-excerpt { color: var(--text-light); font-size: 0.875rem; flex: 1; }
.tip-read-more { color: var(--rose); font-weight: 600; font-size: 0.875rem; }

/* ---------- Wellness CTA ---------- */
.wellness-cta-card {
  background: linear-gradient(135deg, #8FAE8B 0%, #6B9067 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  overflow: hidden;
  position: relative;
}
.wellness-cta-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.text-white-75 { color: rgba(255,255,255,0.75); }
.wellness-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.wellness-feature {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.wellness-feature i { font-size: 1.5rem; }

/* ---------- Community Grid ---------- */
/* Home page community post cards */
.home-post-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.home-post-img {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
}
.home-post-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.home-post-card:hover .home-post-img img { transform: scale(1.04); }
.home-post-img--text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.home-post-text-preview {
  color: rgba(255,255,255,0.95);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.home-post-category-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.home-post-body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-post-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.6rem;
}
.home-post-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--rose-light);
}
.home-post-avatar-initial {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose);
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--rose-light);
}
.home-post-author-name { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.home-post-date { font-size: 0.72rem; }
.home-post-excerpt {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 0.75rem;
}
.home-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--cream-dark);
  padding-top: 0.6rem;
  margin-top: auto;
}
.home-post-stats { font-size: 0.78rem; color: var(--text-light); display: flex; gap: 0.75rem; }
.home-post-read-more { font-size: 0.8rem; font-weight: 600; color: var(--rose); }
.home-post-read-more:hover { color: var(--rose-dark); }

/* ---------- About Section ---------- */
.about-image-frame { position: relative; padding: 1rem; }
.about-image-placeholder {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 60%, var(--rose-dark) 100%);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.about-image-placeholder.large { height: 450px; }
.vivis-monogram {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.4);
}
.vivis-monogram.large { font-size: 10rem; }
.about-social-badges {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 0.5rem; width: 85%;
}
.social-badge {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.85rem;
  backdrop-filter: blur(8px);
  transition: transform 0.2s;
}
.social-badge:hover { transform: scale(1.02); }
.social-badge.instagram { background: rgba(255,255,255,0.9); color: var(--dark); }
.social-badge.tiktok { background: rgba(0,0,0,0.8); color: white; }
.about-highlight {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: white;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.about-highlight strong { display: block; font-size: 0.9rem; }
.about-highlight p { font-size: 0.82rem; }

/* ---------- Footer ---------- */
.vivis-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
}
.footer-heading {
  color: white;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--rose-light); }
.footer-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.2s;
}
.footer-social:hover { background: var(--rose); color: white; transform: translateY(-2px); }
.footer-hr { border-color: rgba(255,255,255,0.1); margin: 2rem 0 1rem; }
.text-muted-light { color: rgba(255,255,255,0.55) !important; }
.footer-link-inline { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-link-inline:hover { color: var(--rose-light); }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.footer-links a:hover { color: var(--rose-light); }

/* ---------- Auth Pages ---------- */
.auth-page {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  min-height: 80vh;
  display: flex; align-items: center;
}
.auth-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(196,121,125,0.1);
}
.auth-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--rose);
  display: block;
  margin-bottom: 0.5rem;
}
.auth-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.auth-subtitle { color: var(--text-light); font-size: 0.9rem; }
.auth-divider {
  text-align: center; position: relative; margin: 1.25rem 0;
}
.auth-divider::before {
  content: '';
  position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: #e8ddd8;
}
.auth-divider span {
  background: white;
  padding: 0 1rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.magic-sent-icon { font-size: 3.5rem; }
.alert-rose {
  background: rgba(196,121,125,0.1);
  border: 1px solid rgba(196,121,125,0.2);
  color: var(--rose-dark);
  border-radius: var(--radius-md);
}
.auth-footer-links a { color: var(--text-light); font-size: 0.875rem; }
.auth-footer-links a:hover { color: var(--rose); }

/* ---------- Page Heroes ---------- */
.page-hero {
  padding: 5rem 0 3rem;
  position: relative;
}
.events-hero { background: linear-gradient(135deg, #4A2E2E 0%, #8B4A50 50%, #C4797D 100%); }
.wellness-hero { background: linear-gradient(135deg, #2E4A2E 0%, #4A8B50 50%, #8FAE8B 100%); }
.community-hero { background: linear-gradient(135deg, #2E3A4A 0%, #4A6080 50%, #7A9DBB 100%); }
.tips-hero { background: linear-gradient(135deg, #4A3828 0%, #8B6B50 50%, #D4AF8A 100%); }
.about-hero { background: linear-gradient(135deg, #3D2B2B 0%, #7A4A50 50%, #C4797D 100%); }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: white;
  text-shadow: 0 2px 16px rgba(0,0,0,0.2);
  margin-bottom: 0.75rem;
}
.page-hero-subtitle { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 540px; }

/* ---------- Filter Bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-chip {
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: white;
  border: 1px solid rgba(196,121,125,0.2);
  transition: all 0.2s;
}
.filter-chip:hover, .filter-chip.active {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
}

/* ---------- Event Cards ---------- */
.event-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196,121,125,0.08);
  transition: all 0.3s;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.event-card.past-event { opacity: 0.75; }
.event-card-img { height: 180px; overflow: hidden; position: relative; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; }
.event-card-placeholder {
  height: 180px; display: flex; align-items: center; justify-content: center; color: white;
}
.event-featured-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--gold); color: white;
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.event-card-body { padding: 1.25rem; }
.event-card-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.event-card-meta { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.25rem; }
.event-price { font-size: 1rem; }

/* Badges */
.badge-wellness { background: rgba(143,174,139,0.2); color: #4a8a4a; font-size: 0.75rem; }
.badge-fashion { background: rgba(196,121,125,0.15); color: var(--rose-dark); font-size: 0.75rem; }
.badge-social { background: rgba(100,150,200,0.15); color: #3a6a9a; font-size: 0.75rem; }
.badge-workshop { background: rgba(212,175,138,0.2); color: #8a6030; font-size: 0.75rem; }
.badge-popup { background: rgba(200,100,150,0.15); color: #8a3060; font-size: 0.75rem; }
.badge-featured { background: var(--gold); color: white; font-size: 0.75rem; }

/* Event detail */
.event-detail-img-placeholder {
  height: 340px; display: flex; align-items: center; justify-content: center;
}
.event-meta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (max-width: 576px) { .event-meta-grid { grid-template-columns: 1fr; } }
.event-meta-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: var(--cream-dark); padding: 0.875rem 1rem; border-radius: var(--radius-md);
}
.event-meta-item i { margin-top: 3px; font-size: 1rem; flex-shrink: 0; }
.event-meta-item strong { display: block; font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.event-meta-item span { font-size: 0.9rem; font-weight: 500; color: var(--dark); }
.event-sidebar-card {
  background: white; border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(196,121,125,0.1);
}
.event-price-display { text-align: center; margin-bottom: 1.25rem; }
.event-price-amount { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--rose); display: block; }
.event-price-label { font-size: 0.8rem; color: var(--text-light); }
.sidebar-detail-row { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.875rem; }
.sidebar-detail-row i { margin-top: 3px; flex-shrink: 0; }

/* ---------- Wellness Dashboard ---------- */
.wellness-stat-card {
  background: white; border-radius: var(--radius-md);
  padding: 1.5rem; display: flex; gap: 1rem; align-items: center;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,121,125,0.08);
}
.wellness-stat-card i { font-size: 2rem; }
.weight-card i { color: var(--rose); }
.calories-card i { color: #e67e22; }
.workout-card i { color: var(--sage); }
.goal-card i { color: var(--gold); }
.stat-content { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-light); font-weight: 500; margin-top: 0.15rem; }
.stat-date { font-size: 0.72rem; color: var(--text-light); }
.wellness-log-panel {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,121,125,0.08);
}
.wellness-tabs { border-bottom: 1px solid rgba(196,121,125,0.12); background: var(--cream-dark); padding: 0.5rem 0.5rem 0; }
.wellness-tabs .nav-link { color: var(--text-light); font-size: 0.85rem; font-weight: 500; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.wellness-tabs .nav-link.active { color: var(--rose); background: white; border-color: rgba(196,121,125,0.12) rgba(196,121,125,0.12) white; }
.wellness-tab-content { background: white; }
.wellness-chart-card {
  background: white; border-radius: var(--radius-md); padding: 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,121,125,0.08);
}
.wellness-log-card {
  background: white; border-radius: var(--radius-md); padding: 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,121,125,0.08);
}
.food-log-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(196,121,125,0.08);
  font-size: 0.875rem;
}
.food-log-item:last-child { border-bottom: none; }
.food-log-meal { font-size: 0.7rem; font-weight: 600; padding: 2px 8px; border-radius: var(--radius-pill); background: var(--cream-dark); flex-shrink: 0; }
.food-log-name { flex: 1; font-weight: 500; }
.food-log-meta { display: flex; gap: 0.5rem; flex-shrink: 0; }
.food-calories { color: var(--rose); font-weight: 600; }
.food-log-delete { color: rgba(0,0,0,0.2); font-size: 0.75rem; transition: color 0.2s; flex-shrink: 0; }
.food-log-delete:hover { color: #dc3545; }
.workout-log-item {
  display: flex; align-items: center; gap: 0.875rem; padding: 0.6rem 0;
  border-bottom: 1px solid rgba(196,121,125,0.08);
}
.workout-log-item:last-child { border-bottom: none; }
.workout-icon { font-size: 1.5rem; flex-shrink: 0; width: 36px; text-align: center; }
.workout-info { flex: 1; }
.workout-info strong { display: block; font-size: 0.875rem; }
.workout-info span { font-size: 0.78rem; color: var(--text-light); }

/* ---------- Community ---------- */
.create-post-card {
  background: white; border-radius: var(--radius-md); padding: 1.25rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,121,125,0.1);
}
.create-post-avatar, .post-avatar {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
}
.create-post-avatar-placeholder, .post-avatar-placeholder {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--rose); color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.create-post-prompt {
  flex: 1; padding: 0.6rem 1rem; border-radius: var(--radius-pill);
  background: var(--cream-dark); color: var(--text-light); font-size: 0.9rem;
  cursor: pointer; display: block; transition: background 0.2s;
}
.create-post-prompt:hover { background: var(--cream); color: var(--text-light); }
.post-type-btn {
  color: var(--text-light); font-size: 0.85rem; font-weight: 500; padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill); transition: background 0.2s;
}
.post-type-btn:hover { background: var(--cream-dark); color: var(--text); }
.posts-feed { display: flex; flex-direction: column; gap: 1rem; }
.post-card {
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,121,125,0.08);
  overflow: hidden;
}
.post-card-full { border-radius: var(--radius-lg); }
.post-header { padding: 1rem 1.25rem 0.5rem; display: flex; align-items: center; }
.post-meta { display: flex; align-items: center; }
.post-content { padding: 0.5rem 1.25rem 0.75rem; }
.post-content p { margin-bottom: 0; font-size: 0.95rem; }
.post-photos { display: grid; gap: 3px; }
.post-photos-1 { grid-template-columns: 1fr; }
.post-photos-2 { grid-template-columns: 1fr 1fr; }
.post-photos-3 { grid-template-columns: 1fr 1fr 1fr; }
.post-photos-4 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.post-photo { overflow: hidden; }
.post-photo img { width: 100%; height: 220px; object-fit: cover; display: block; }
.post-photos-1 .post-photo img { height: 360px; }
.post-actions {
  padding: 0.75rem 1.25rem; border-top: 1px solid rgba(196,121,125,0.08);
  display: flex; gap: 1.25rem; align-items: center;
}
.like-btn {
  background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 0.4rem;
  color: var(--text-light); font-size: 0.875rem; font-weight: 500; padding: 0;
  transition: color 0.2s;
}
.like-btn:hover, .like-btn.liked { color: var(--rose); }
.like-btn.liked i { color: var(--rose); }
.like-btn-disabled, .comment-btn-static { color: var(--text-light); font-size: 0.875rem; }
.comment-btn {
  color: var(--text-light); font-size: 0.875rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.2s;
}
.comment-btn:hover { color: var(--rose); }
.post-comments-preview { padding: 0.5rem 1.25rem; }
.comment-preview { font-size: 0.82rem; margin-bottom: 0.25rem; }
.add-comment-row { padding: 0.5rem 1.25rem 1rem; }
.sidebar-card {
  background: white; border-radius: var(--radius-md); padding: 1.25rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,121,125,0.08);
}
.community-values-list { list-style: none; padding: 0; margin: 0; }
.community-values-list li { padding: 0.4rem 0; font-size: 0.875rem; }
.social-sidebar-link {
  display: flex; align-items: center; padding: 0.5rem 0; color: var(--dark);
  transition: color 0.2s;
}
.social-sidebar-link:hover { color: var(--rose); }
.social-sidebar-link div { display: flex; flex-direction: column; }
.social-sidebar-link strong { font-size: 0.875rem; }
.social-sidebar-link span { font-size: 0.75rem; color: var(--text-light); }
.category-sidebar-chip {
  display: inline-block; padding: 0.3rem 0.75rem; margin: 0.2rem;
  border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 500;
  background: var(--cream-dark); color: var(--text);
  transition: all 0.2s;
}
.category-sidebar-chip:hover { background: var(--rose); color: white; }
/* Comment Section */
.comment-item {
  display: flex; gap: 0.75rem; margin-bottom: 1rem;
}
.comment-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.comment-avatar-placeholder {
  width: 36px; height: 36px; border-radius: 50%; background: var(--rose-light);
  color: var(--rose-dark); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.comment-body { flex: 1; }
.comment-meta { margin-bottom: 0.2rem; }
.add-comment-full { margin-top: 1rem; }

/* ---------- Tips Detail ---------- */
.tip-author-bar {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.875rem 1rem; background: var(--cream-dark);
  border-radius: var(--radius-md); margin-bottom: 1.5rem;
}
.author-avatar-placeholder {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--rose); color: white; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-heading); font-size: 1.2rem;
  font-weight: 700; flex-shrink: 0;
}
.tip-content { font-size: 1rem; line-height: 1.85; }
.tip-content p { margin-bottom: 1.25rem; }
.tip-share-section { padding-top: 1.5rem; border-top: 1px solid rgba(196,121,125,0.15); }
.related-tip-item {
  display: flex; gap: 0.875rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(196,121,125,0.1);
  color: var(--dark);
}
.related-tip-item:last-child { border-bottom: none; }
.related-tip-item:hover { color: var(--rose); }
.related-tip-img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.related-tip-placeholder { width: 60px; height: 60px; border-radius: var(--radius-sm); flex-shrink: 0; }
.related-tip-text { display: flex; flex-direction: column; justify-content: center; }
.related-tip-category { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }
.related-tip-text strong { font-size: 0.875rem; line-height: 1.3; }
.cta-sidebar { text-align: center; }
.sidebar-tip-item {
  border-bottom: 1px solid rgba(196,121,125,0.1);
}
.sidebar-tip-item:last-child { border-bottom: none; }
.sidebar-tip-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.55rem 0;
  color: var(--dark);
  transition: color 0.15s;
}
.sidebar-tip-link:hover { color: var(--rose); }
.sidebar-tip-category {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--rose);
}
.sidebar-tip-title {
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.35;
}
.sidebar-tip-date {
  font-size: 0.7rem;
  color: var(--text-light);
}
.vivis-monogram-sm {
  width: 52px; height: 52px; border-radius: 50%; background: var(--rose);
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.5rem; font-style: italic;
  font-weight: 700; margin: 0 auto;
}

/* ---------- Featured Tip ---------- */
.featured-tip-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(196,121,125,0.1);
}
.featured-tip-img { width: 100%; height: 300px; object-fit: cover; }
.featured-tip-img-placeholder { height: 300px; display: flex; align-items: center; justify-content: center; }
.featured-tip-title { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; }

/* ---------- Profile Page ---------- */
.profile-card {
  background: white; border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,121,125,0.08);
}
.profile-avatar { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--rose-light); }
.profile-avatar-placeholder {
  width: 90px; height: 90px; border-radius: 50%; background: var(--rose); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin: 0 auto;
}
.profile-nav {
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid rgba(196,121,125,0.08);
}
.profile-nav-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.25rem;
  color: var(--text); border-bottom: 1px solid rgba(196,121,125,0.08);
  font-size: 0.9rem; transition: background 0.2s;
}
.profile-nav-item:last-child { border-bottom: none; }
.profile-nav-item:hover { background: var(--cream-dark); }
.profile-section-card {
  background: white; border-radius: var(--radius-md); padding: 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,121,125,0.08);
}
.mini-stat-card {
  background: var(--cream-dark); border-radius: var(--radius-md); padding: 1rem;
  display: flex; gap: 0.75rem; align-items: center;
}
.mini-stat-card i { font-size: 1.5rem; flex-shrink: 0; }
.mini-stat-card div { display: flex; flex-direction: column; }
.mini-stat-card strong { font-size: 1.1rem; }
.mini-stat-card span { font-size: 0.75rem; color: var(--text-light); }
.mini-post-card { display: block; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; }
.mini-post-card img { width: 100%; height: 100%; object-fit: cover; }
.mini-post-text { width: 100%; height: 100%; padding: 0.75rem; font-size: 0.75rem; color: white; }

/* ---------- Gradient Backgrounds ---------- */
.fashion-gradient { background: linear-gradient(135deg, #C4797D, #A35D62); }
.wellness-gradient { background: linear-gradient(135deg, #8FAE8B, #5a8c5a); }
.parenting-gradient { background: linear-gradient(135deg, #D4AF8A, #A07840); }
.beauty-gradient { background: linear-gradient(135deg, #E8B4B8, #C4797D); }
.food-gradient { background: linear-gradient(135deg, #8FAE8B, #6aB06a); }
.mindset-gradient { background: linear-gradient(135deg, #8090C0, #4a5fa0); }
.social-gradient { background: linear-gradient(135deg, #7A9DBB, #3a6a9a); }
.kids-gradient { background: linear-gradient(135deg, #D4AF8A, #C4797D); }
.general-gradient { background: linear-gradient(135deg, #8090C0, #C4797D); }
.fashion-bg { background: linear-gradient(135deg, #C4797D, #A35D62); }
.wellness-bg { background: linear-gradient(135deg, #8FAE8B, #5a8c5a); }
.kids-bg { background: linear-gradient(135deg, #D4AF8A, #A07840); }
.food-bg { background: linear-gradient(135deg, #8FAE8B, #4a8c4a); }
.life-bg { background: linear-gradient(135deg, #8090C0, #C4797D); }
.general-bg { background: linear-gradient(135deg, #8090C0, #6070A0); }

/* ---------- Vivis Card ---------- */
.vivis-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,121,125,0.08);
}

/* ---------- Empty States ---------- */
.empty-state { padding: 3rem; }
.empty-icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: white; border-radius: var(--radius-md); padding: 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,121,125,0.08);
}
.testimonial-card p { color: var(--text-light); font-size: 0.9rem; }

/* ---------- Badge category colors ---------- */
.badge-category-fashion { background: rgba(196,121,125,0.12); color: var(--rose-dark); }
.badge-category-wellness { background: rgba(143,174,139,0.15); color: #4a8a4a; }
.badge-category-kids { background: rgba(212,175,138,0.2); color: #8a6030; }
.badge-category-food { background: rgba(143,174,139,0.2); color: #4a7a4a; }
.badge-category-life { background: rgba(100,120,200,0.12); color: #4a5fa0; }
.badge-category-general { background: rgba(100,120,200,0.1); color: #5060a0; }
.badge-category-workouts { background: rgba(196,121,125,0.12); color: #b05060; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .brand-script { font-size: 1.5rem; }
  .about-social-badges { position: relative; transform: none; left: auto; bottom: auto; margin-top: 1rem; width: 100%; flex-direction: row; }
  .about-image-placeholder { height: 280px; }
  .wellness-cta-card { padding: 2rem; }
}
@media (max-width: 767px) {
  .hero-stats { gap: 1rem; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .event-meta-grid { grid-template-columns: 1fr; }
  .featured-event-card .row { flex-direction: column; }
}
