/* She Rises - Custom Styles */
/* Tailwind handles most styling, this adds custom utilities */

.gradient-bg {
    background: linear-gradient(135deg, #D4577A 0%, #B83D5F 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #D4577A, #B83D5F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* ── Hero Cover Section ───────────────────────────────────────────────────── */
.hero-cover {
    background: linear-gradient(135deg, #1a0a2e 0%, #3d1259 20%, #6b21a8 40%, #a855f7 60%, #D4577A 80%, #ec4899 100%);
    position: relative;
}

/* Floating Orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
    width: 300px; height: 300px;
    background: rgba(168, 85, 247, 0.25);
    top: -50px; left: -50px;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px; height: 250px;
    background: rgba(236, 72, 153, 0.2);
    bottom: -30px; right: -30px;
    animation-delay: 3s;
}

.orb-3 {
    width: 200px; height: 200px;
    background: rgba(192, 132, 252, 0.15);
    top: 30%; right: 10%;
    animation-delay: 6s;
}

.orb-4 {
    width: 180px; height: 180px;
    background: rgba(244, 114, 182, 0.15);
    bottom: 20%; left: 15%;
    animation-delay: 9s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

/* Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.particle {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 25%; right: 15%; animation-delay: 0.8s; }
.particle-3 { top: 60%; left: 8%; animation-delay: 1.6s; }
.particle-4 { top: 70%; right: 12%; animation-delay: 2.4s; }
.particle-5 { top: 40%; left: 25%; animation-delay: 3.2s; }
.particle-6 { top: 80%; left: 50%; animation-delay: 4s; }
.particle-7 { top: 20%; left: 60%; animation-delay: 4.8s; }
.particle-8 { top: 50%; right: 25%; animation-delay: 5.6s; }

@keyframes particleFloat {
    0%, 100% { opacity: 0.2; transform: translateY(0) rotate(0deg); }
    50% { opacity: 0.7; transform: translateY(-15px) rotate(180deg); }
}

/* Hero Text */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-line-1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    animation: heroFadeIn 0.8s ease forwards;
}

.hero-line-2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #fbbf24 30%, #f472b6 60%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: heroFadeIn 0.8s ease 0.2s forwards;
    filter: drop-shadow(0 4px 20px rgba(236, 72, 153, 0.3));
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
    animation: heroFadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-highlight {
    color: #fbbf24;
    font-weight: 600;
}

.hero-fade-in {
    animation: heroFadeIn 0.8s ease forwards;
    opacity: 0;
}

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

/* Hero Buttons */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    color: #1a0a2e;
    background: linear-gradient(135deg, #fff, #fce7f3);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(236, 72, 153, 0.2);
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(236, 72, 153, 0.3);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator { display: flex; flex-direction: column; align-items: center; }

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(8px); }
}

/* Mobile Hero */
@media (max-width: 640px) {
    .hero-line-1 { font-size: 1.25rem; }
    .hero-line-2 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-btn-primary, .hero-btn-secondary { padding: 0.875rem 1.5rem; font-size: 0.9rem; }
}

/* ── Feature Cards (Home Page) ─────────────────────────────────────────── */
.card-feature {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 25%, #fce7f3 60%, #f9a8d4 100%);
    border: 1.5px solid #f472b6;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-feature::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(236,72,153,0.2) 0%, rgba(212,87,122,0.08) 40%, transparent 70%);
    pointer-events: none;
}

.card-feature:hover {
    transform: translateY(-6px);
    border-color: #ec4899;
    box-shadow: 0 12px 30px rgba(236,72,153,0.18), 0 4px 12px rgba(0,0,0,0.06);
}

.card-feature h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #7c5e10;
    margin-bottom: 0.75rem;
}

.card-feature p {
    color: #475569;
    line-height: 1.65;
}

.card-icon-pink {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #D4577A, #B83D5F);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 87, 122, 0.3);
}

.card-icon-purple {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #A855F7, #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 87, 122, 0.1);
    box-shadow: 0 4px 30px rgba(212, 87, 122, 0.05);
    transition: all 0.3s ease;
}

.nav-modern.scrolled {
    box-shadow: 0 4px 30px rgba(212, 87, 122, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.nav-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(252,228,236,0.5) 0%, rgba(255,255,255,0.8) 50%, rgba(244,162,97,0.1) 100%);
    pointer-events: none;
}

.nav-pill-group {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    background: rgba(212, 87, 122, 0.06);
    border-radius: 9999px;
    border: 1px solid rgba(212, 87, 122, 0.08);
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-pill:hover {
    color: #B83D5F;
    background: rgba(212, 87, 122, 0.1);
}

.nav-pill-active {
    background: linear-gradient(135deg, #D4577A, #B83D5F) !important;
    color: #fff !important;
    box-shadow: 0 2px 12px rgba(212, 87, 122, 0.35);
}

.nav-pill-active:hover {
    box-shadow: 0 4px 20px rgba(212, 87, 122, 0.5);
    transform: translateY(-1px);
}

.nav-login-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #B83D5F;
    border: 1.5px solid rgba(184, 61, 95, 0.3);
    transition: all 0.25s ease;
}

.nav-login-btn:hover {
    background: rgba(212, 87, 122, 0.08);
    border-color: #B83D5F;
}

.nav-signup-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #D4577A, #B83D5F);
    box-shadow: 0 2px 12px rgba(212, 87, 122, 0.3);
    transition: all 0.25s ease;
}

.nav-signup-btn:hover {
    box-shadow: 0 4px 20px rgba(212, 87, 122, 0.5);
    transform: translateY(-1px);
}

.nav-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
}

.nav-logout-btn:hover {
    color: #dc2626;
    border-color: #fca5a5;
    background: #fef2f2;
}

.nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    color: #6b7280;
    transition: all 0.25s ease;
    cursor: pointer;
}

.nav-hamburger:hover {
    background: rgba(212, 87, 122, 0.1);
    color: #B83D5F;
}

/* Mobile Nav Links */
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(212, 87, 122, 0.1), rgba(168, 85, 247, 0.1));
    color: #B83D5F;
}

.mobile-nav-active {
    background: linear-gradient(135deg, #D4577A, #B83D5F) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(212, 87, 122, 0.3);
}

/* ── Tagline Banner ──────────────────────────────────────────────────────── */
.tagline-banner {
    position: relative;
    background: linear-gradient(135deg, #1a0a2e 0%, #3d1259 25%, #6b21a8 50%, #a855f7 75%, #D4577A 100%);
    border-bottom: 1px solid rgba(212, 87, 122, 0.3);
}

.tagline-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(168, 85, 247, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(236, 72, 153, 0.4) 0%, transparent 50%);
    animation: taglineShimmer 8s ease-in-out infinite;
}

@keyframes taglineShimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.tagline-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tagline-icon {
    font-size: 1rem;
    filter: drop-shadow(0 0 6px rgba(236, 72, 153, 0.6));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(236, 72, 153, 0.6)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 12px rgba(236, 72, 153, 0.9)); }
}

.tagline-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-shadow: 0 1px 8px rgba(168, 85, 247, 0.5);
    letter-spacing: 0.02em;
}

.tagline-divider {
    color: rgba(236, 72, 153, 0.8);
    font-weight: 300;
    font-size: 1.1rem;
}

.tagline-sub {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    font-style: italic;
}

/* Sparkle decorations */
.tagline-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    animation: sparkleFloat 4s ease-in-out infinite;
}

.sparkle-1 { top: 20%; left: 8%; animation-delay: 0s; }
.sparkle-2 { top: 60%; left: 15%; animation-delay: 0.8s; }
.sparkle-3 { top: 30%; right: 10%; animation-delay: 1.6s; }
.sparkle-4 { top: 70%; right: 18%; animation-delay: 2.4s; }
.sparkle-5 { top: 45%; left: 50%; animation-delay: 3.2s; }

@keyframes sparkleFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0) scale(1); }
    50% { opacity: 1; transform: translateY(-4px) scale(1.3); }
}

@media (max-width: 640px) {
    .tagline-main { font-size: 0.8rem; }
    .tagline-sub { font-size: 0.7rem; }
    .tagline-icon { font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   UNIFIED CARD SYSTEM — Every card across the portal uses this design
   ═══════════════════════════════════════════════════════════════════════════
   Base:     soft light blue/gray blending into vibrant magenta/pink at bottom-right
   Border:   crisp thin pink (#f472b6) outline
   Icon:     warm brown/mustard rounded square with white icon
   Title:    golden-brown bold (#9a7b2f)
   Desc:     light gray (#6b7280)
   Tags:     white pills with golden text (#9a7b2f)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Card Container (shared across ALL card types) ─────────────────────── */
.card-unified,
.card-book,
.card-silver-gold,
.card-gold-silver,
.card-double-shade {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 25%, #fce7f3 60%, #f9a8d4 100%);
    border: 1.5px solid #f472b6;
    border-radius: 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

/* Vibrant pink glow accent in bottom-right corner */
.card-unified::after,
.card-book::after,
.card-silver-gold::after,
.card-gold-silver::after,
.card-double-shade::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(236,72,153,0.2) 0%, rgba(212,87,122,0.08) 40%, transparent 70%);
    pointer-events: none;
}

.card-unified:hover,
.card-book:hover,
.card-silver-gold:hover,
.card-gold-silver:hover,
.card-double-shade:hover {
    transform: translateY(-4px);
    border-color: #ec4899;
    box-shadow: 0 12px 32px rgba(236,72,153,0.18), 0 4px 12px rgba(0,0,0,0.06);
}

/* ── Icon Badge (warm brown/mustard rounded square) ────────────────────── */
.card-icon,
.card-icon-badge {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: linear-gradient(135deg, #b45309, #92400e);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(180, 83, 9, 0.15);
}

.card-icon svg,
.card-icon-badge svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

/* ── Card Title (golden-brown bold) ────────────────────────────────────── */
.card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #7c5e10;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* ── Card Author / Subtitle ────────────────────────────────────────────── */
.card-author {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.15rem;
    font-weight: 500;
    font-style: italic;
}

/* ── Card Description ──────────────────────────────────────────────────── */
.card-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Card Detail Row (earnings, reading time, impact) ───────────────────── */
.card-detail-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    padding: 0.5rem 0;
}

/* ── Tag Pill (colorful, soft, pressable) ────────────────────────────────── */
.tag-pill {
    display: inline-flex;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
    user-select: none;
}
.tag-pill:active {
    transform: translateY(1px);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
}
.tag-pill.lang {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: #475569;
    border: 1px solid #cbd5e1;
}

/* ── Tag Pill Colors ─────────────────────────────────────────────────────── */

/* Pink (All / Empowerment) */
.tag-pink {
    background: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 100%);
    color: #be185d;
    border: 1px solid #f9a8d4;
    box-shadow: 0 1px 3px rgba(190,24,93,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.tag-pink:hover {
    background: linear-gradient(180deg, #fce7f3 0%, #fbcfe8 100%);
}

/* Green (Healing / No Investment / Kitchen) */
.tag-green {
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
    color: #15803d;
    border: 1px solid #86efac;
    box-shadow: 0 1px 3px rgba(21,128,61,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.tag-green:hover {
    background: linear-gradient(180deg, #dcfce7 0%, #bbf7d0 100%);
}

/* Blue (Self-Help / Low Investment / Skill-Based) */
.tag-blue {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    color: #1d4ed8;
    border: 1px solid #93c5fd;
    box-shadow: 0 1px 3px rgba(29,78,216,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.tag-blue:hover {
    background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
}

/* Purple (Grief / Low Investment) */
.tag-purple {
    background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
    color: #7c3aed;
    border: 1px solid #c4b5fd;
    box-shadow: 0 1px 3px rgba(124,58,237,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.tag-purple:hover {
    background: linear-gradient(180deg, #f3e8ff 0%, #e9d5ff 100%);
}

/* Orange (Parenting / High Investment) */
.tag-orange {
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
    color: #c2410c;
    border: 1px solid #fdba74;
    box-shadow: 0 1px 3px rgba(194,65,12,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.tag-orange:hover {
    background: linear-gradient(180deg, #ffedd5 0%, #fed7aa 100%);
}

/* Teal (Online / Garden) */
.tag-teal {
    background: linear-gradient(180deg, #f0fdfa 0%, #ccfbf1 100%);
    color: #0f766e;
    border: 1px solid #5eead4;
    box-shadow: 0 1px 3px rgba(15,118,110,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.tag-teal:hover {
    background: linear-gradient(180deg, #ccfbf1 0%, #99f6e4 100%);
}

/* ── Filter Buttons (soft, pressable, prominent, colorful) ────────────────── */
.filter-btn {
    padding: 0.65rem 1.4rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1.5px solid #d4d4d8;
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
    color: #52525b;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
    user-select: none;
    position: relative;
    overflow: hidden;
}
.filter-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), inset 0 1px 3px rgba(0,0,0,0.06);
}
.filter-btn:hover {
    transform: translateY(-1px);
}
.filter-btn.active,
.filter-btn-active {
    background: linear-gradient(180deg, #ec4899 0%, #db2777 50%, #be185d 100%) !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(219,39,119,0.35), 0 2px 4px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.2) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15) !important;
}
.filter-btn.active:active,
.filter-btn-active:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 6px rgba(219,39,119,0.3), inset 0 2px 4px rgba(0,0,0,0.1) !important;
    background: linear-gradient(180deg, #db2777 0%, #be185d 50%, #9d174d 100%) !important;
}
.filter-btn-inactive {
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
    color: #52525b;
    border: 1.5px solid #d4d4d8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
}
.filter-btn-inactive:hover {
    transform: translateY(-1px);
    border-color: #a1a1aa;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-btn-inactive:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), inset 0 1px 3px rgba(0,0,0,0.06);
}

/* ── Color Modifiers for Filter Buttons ──────────────────────────────────── */

/* Pink (All / default active) */
.filter-pink {
    background: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 100%);
    color: #be185d;
    border: 1.5px solid #f9a8d4;
    box-shadow: 0 2px 4px rgba(190,24,93,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-pink:hover {
    background: linear-gradient(180deg, #fce7f3 0%, #fbcfe8 100%);
    border-color: #f472b6;
    box-shadow: 0 4px 10px rgba(190,24,93,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-pink:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(190,24,93,0.12);
    background: linear-gradient(180deg, #fce7f3 0%, #f9a8d4 100%);
}

/* Green (Healing / Kitchen / Online / Garden) */
.filter-green {
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
    color: #15803d;
    border: 1.5px solid #86efac;
    box-shadow: 0 2px 4px rgba(21,128,61,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-green:hover {
    background: linear-gradient(180deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #4ade80;
    box-shadow: 0 4px 10px rgba(21,128,61,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-green:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(21,128,61,0.12);
    background: linear-gradient(180deg, #dcfce7 0%, #86efac 100%);
}

/* Blue (Self-Help / Skill-Based) */
.filter-blue {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    color: #1d4ed8;
    border: 1.5px solid #93c5fd;
    box-shadow: 0 2px 4px rgba(29,78,216,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-blue:hover {
    background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #60a5fa;
    box-shadow: 0 4px 10px rgba(29,78,216,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-blue:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(29,78,216,0.12);
    background: linear-gradient(180deg, #dbeafe 0%, #93c5fd 100%);
}

/* Purple (Grief / Empowerment) */
.filter-purple {
    background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
    color: #7c3aed;
    border: 1.5px solid #c4b5fd;
    box-shadow: 0 2px 4px rgba(124,58,237,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-purple:hover {
    background: linear-gradient(180deg, #f3e8ff 0%, #e9d5ff 100%);
    border-color: #a78bfa;
    box-shadow: 0 4px 10px rgba(124,58,237,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-purple:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(124,58,237,0.12);
    background: linear-gradient(180deg, #f3e8ff 0%, #c4b5fd 100%);
}

/* Orange (Low Investment / Parenting) */
.filter-orange {
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
    color: #c2410c;
    border: 1.5px solid #fdba74;
    box-shadow: 0 2px 4px rgba(194,65,12,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-orange:hover {
    background: linear-gradient(180deg, #ffedd5 0%, #fed7aa 100%);
    border-color: #fb923c;
    box-shadow: 0 4px 10px rgba(194,65,12,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-orange:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(194,65,12,0.12);
    background: linear-gradient(180deg, #ffedd5 0%, #fdba74 100%);
}

/* Teal (Garden / Online) */
.filter-teal {
    background: linear-gradient(180deg, #f0fdfa 0%, #ccfbf1 100%);
    color: #0f766e;
    border: 1.5px solid #5eead4;
    box-shadow: 0 2px 4px rgba(15,118,110,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-teal:hover {
    background: linear-gradient(180deg, #ccfbf1 0%, #99f6e4 100%);
    border-color: #2dd4bf;
    box-shadow: 0 4px 10px rgba(15,118,110,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-teal:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(15,118,110,0.12);
    background: linear-gradient(180deg, #ccfbf1 0%, #5eead4 100%);
}

/* ── Exercise Filter Buttons (soft, pressable) ─────────────────────────── */
.exercise-filter-btn {
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1.5px solid #d4d4d8;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
    color: #52525b;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
    user-select: none;
}
.exercise-filter-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), inset 0 1px 3px rgba(0,0,0,0.06);
    background: linear-gradient(180deg, #f4f4f5 0%, #e4e4e7 100%);
}

.exercise-filter-active {
    background: linear-gradient(180deg, #ec4899 0%, #db2777 50%, #be185d 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(219,39,119,0.35), 0 2px 4px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.exercise-filter-active:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(219,39,119,0.3), inset 0 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(180deg, #db2777 0%, #be185d 50%, #9d174d 100%);
}

.exercise-filter-inactive {
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
    color: #52525b;
    border: 1.5px solid #d4d4d8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
}
.exercise-filter-inactive:hover {
    border-color: #a1a1aa;
    color: #3f3f46;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
}
.exercise-filter-inactive:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), inset 0 1px 3px rgba(0,0,0,0.06);
    background: linear-gradient(180deg, #f4f4f5 0%, #e4e4e7 100%);
}
.fade-in {
    animation: fadeIn 0.5s ease;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.chat-bubble-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #D4577A;
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

.typing-dot {
    animation: typing 1.4s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { opacity: 0.3; }
    30% { opacity: 1; }
}

/* Custom scrollbar for chat */
#chat-messages::-webkit-scrollbar {
    width: 4px;
}
#chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
#chat-messages::-webkit-scrollbar-thumb {
    background: #D4577A;
    border-radius: 4px;
}

/* htmx loading indicator */
[hx-indicator] {
    opacity: 0;
    transition: opacity 0.3s;
}
.htmx-request [hx-indicator],
.htmx-request.htmx-indicator {
    opacity: 1;
}

/* ── Motivation Cards ───────────────────────────────────────────────────── */
.motivation-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.motivation-card {
    position: absolute;
    pointer-events: auto;
    max-width: 280px;
    width: calc(100vw - 2rem);
    border-radius: 1rem;
    padding: 1.25rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 25px 60px rgba(212,87,122,0.25), 0 8px 20px rgba(0,0,0,0.1);
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.motivation-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 30px 70px rgba(212,87,122,0.35), 0 12px 30px rgba(0,0,0,0.15);
}

.motivation-card .card-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    animation: iconPulse 2s ease-in-out infinite;
}

.motivation-card .card-message {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.motivation-card .card-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.5;
}

.motivation-card .card-dismiss {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.2);
    color: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.motivation-card .card-dismiss:hover {
    background: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.6);
    transform: rotate(90deg);
}

/* Card color themes */
.motivation-card.theme-rose {
    background: linear-gradient(135deg, #ff6b9d, #c44569, #e84393);
    color: #fff;
    box-shadow: 0 25px 60px rgba(255,107,157,0.4);
}
.motivation-card.theme-rose::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.motivation-card.theme-sunset {
    background: linear-gradient(135deg, #f093fb, #f5576c, #ff9a76);
    color: #fff;
    box-shadow: 0 25px 60px rgba(245,87,108,0.4);
}
.motivation-card.theme-sunset::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.motivation-card.theme-lavender {
    background: linear-gradient(135deg, #a18cd1, #8b5cf6, #c084fc);
    color: #fff;
    box-shadow: 0 25px 60px rgba(139,92,246,0.4);
}
.motivation-card.theme-lavender::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.motivation-card.theme-mint {
    background: linear-gradient(135deg, #43e97b, #38f9d7, #30d158);
    color: #fff;
    box-shadow: 0 25px 60px rgba(67,233,123,0.4);
}
.motivation-card.theme-mint::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.motivation-card.theme-ocean {
    background: linear-gradient(135deg, #667eea, #764ba2, #6366f1);
    color: #fff;
    box-shadow: 0 25px 60px rgba(99,102,241,0.4);
}
.motivation-card.theme-ocean::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.motivation-card.theme-peach {
    background: linear-gradient(135deg, #fccb90, #d57eeb, #e0c3fc);
    color: #fff;
    box-shadow: 0 25px 60px rgba(213,126,235,0.4);
}
.motivation-card.theme-peach::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.motivation-card.theme-glass {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    color: #1f2937;
    border: 2px solid rgba(212,87,122,0.3);
    box-shadow: 0 25px 60px rgba(212,87,122,0.2);
}
.motivation-card.theme-glass .card-sub { color: #6b7280; }

.motivation-card.theme-royal {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe, #fd79a8);
    color: #fff;
    box-shadow: 0 25px 60px rgba(108,92,231,0.4);
}
.motivation-card.theme-royal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.motivation-card.theme-coral {
    background: linear-gradient(135deg, #ff7675, #fd79a8, #e17055);
    color: #fff;
    box-shadow: 0 25px 60px rgba(253,121,168,0.4);
}
.motivation-card.theme-coral::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.motivation-card.theme-gold {
    background: linear-gradient(135deg, #f9ca24, #f0932b, #eb4d4b);
    color: #fff;
    box-shadow: 0 25px 60px rgba(240,147,43,0.4);
}
.motivation-card.theme-gold::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.motivation-card.theme-teal {
    background: linear-gradient(135deg, #00cec9, #0984e3, #6c5ce7);
    color: #fff;
    box-shadow: 0 25px 60px rgba(0,206,201,0.4);
}
.motivation-card.theme-teal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.motivation-card.theme-magenta {
    background: linear-gradient(135deg, #e84393, #fd79a8, #fab1a0);
    color: #fff;
    box-shadow: 0 25px 60px rgba(232,67,147,0.4);
}
.motivation-card.theme-magenta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-30%) translateY(-30%) rotate(0deg); }
    50% { transform: translateX(30%) translateY(30%) rotate(180deg); }
}

@keyframes slideInBottom {
    0% { transform: translateY(120px) scale(0.8); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes slideInLeft {
    0% { transform: translateX(-120px) scale(0.8); opacity: 0; }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}
@keyframes slideInRight {
    0% { transform: translateX(120px) scale(0.8); opacity: 0; }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}
@keyframes slideInTop {
    0% { transform: translateY(-120px) scale(0.8); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.anim-slide-bottom { animation: slideInBottom 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.anim-slide-left { animation: slideInLeft 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.anim-slide-right { animation: slideInRight 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.anim-slide-top { animation: slideInTop 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards; }

.motivation-card.show-float {
    animation: cardFloat 4s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes cardDismiss {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.7) translateY(30px); opacity: 0; }
}
.motivation-card.dismissing {
    animation: cardDismiss 0.4s ease forwards;
    pointer-events: none;
}

.motivation-card .card-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 0 0 1.5rem 1.5rem;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
    transition: width linear;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

@media (max-width: 640px) {
    .motivation-card {
        max-width: calc(100vw - 1.5rem);
        padding: 1rem;
    }
    .motivation-card .card-message {
        font-size: 1rem;
    }
}

/* Snap scroll for quotes */
.snap-x {
    scroll-snap-type: x mandatory;
}

.snap-center {
    scroll-snap-align: center;
}

#rotating-quotes {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

#rotating-quotes::-webkit-scrollbar {
    height: 6px;
}

#rotating-quotes::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#rotating-quotes::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #D4577A, #B83D5F);
    border-radius: 10px;
}

/* ── Skills Page ──────────────────────────────────────────────────────────── */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.skill-card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-card-hover:hover {
    transform: translateY(-8px) scale(1.02);
}

.skill-filter {
    scroll-behavior: smooth;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.skill-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    height: 100%;
}

.skill-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(212, 87, 122, 0.25);
}

#skills-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    #skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.skill-filter.active {
    background-color: #D4577A;
    color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.border-3 {
    border-width: 3px;
}

/* ── Toast Notifications ────────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    padding: 16px 24px;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    animation: toastSlideIn 0.5s ease forwards;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 350px;
}

.toast.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.toast.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.toast.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

@keyframes toastSlideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastSlideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

.toast.hiding {
    animation: toastSlideOut 0.3s ease forwards;
}

/* ── Loading Skeleton ─────────────────────────────────────────────────────── */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Mobile Bottom Navigation ────────────────────────────────────────────── */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 8px 0;
    z-index: 40;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 8px 12px;
        color: #6b7280;
        font-size: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 12px;
    }
    
    .mobile-bottom-nav a.active,
    .mobile-bottom-nav a:hover {
        color: #D4577A;
        background: rgba(212, 87, 122, 0.1);
    }
    
    .mobile-bottom-nav svg {
        width: 24px;
        height: 24px;
    }
    
    footer {
        padding-bottom: 80px !important;
    }
}

/* ── Scroll Reveal ────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Focus States ─────────────────────────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid #D4577A;
    outline-offset: 2px;
}

/* ── Page Transitions ─────────────────────────────────────────────────────── */
.page-transition {
    animation: pageFadeIn 0.4s ease;
}

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