:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #FFF1F2;
    --bg-tertiary: #FFF5F6;
    --bg-card: #FFF1F2;
    --pink: #FB7185;
    --pink-light: #FFF1F2;
    --pink-dark: #E11D48;
    --pink-soft: #FECDD3;
    --rose-gold: #E8A5A5;
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8962E;
    --text-primary: #1F2937;
    --text-heading: #111827;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --border-color: #D4AF37;
    --border-light: #D4AF37;
    --border-gold: 1px solid #D4AF37;
    --success: #10B981;
    --error: #EF4444;
    --shadow-soft: 0 4px 20px rgba(212, 175, 55, 0.08);
    --shadow-medium: 0 8px 30px rgba(212, 175, 55, 0.12);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
    --shadow-card: 0 4px 24px rgba(212, 175, 55, 0.1);
    color-scheme: light only;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #FFFFFF !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF !important;
    color: #1F2937 !important;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #111827 !important;
}

.card, .dashboard-panel, .scan-card, .results-card, .weather-card, 
.event-matcher-card, .budget-card, .wardrobe-item, .account-card, .style-vibe-card, .wardrobe-analysis-card {
    background-color: #FFF1F2 !important;
    border: 2px solid #D4AF37 !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}

nav, .sidebar, .landing-nav, .tab-navigation, .dashboard-header {
    background-color: #FFFFFF !important;
    border-bottom: 2px solid #D4AF37 !important;
}

.btn-primary, .btn-main, .primary-btn, .analyze-btn {
    background-color: #FB7185 !important;
    background: linear-gradient(135deg, #FB7185, #E11D48) !important;
    border: 2px solid #D4AF37 !important;
    color: #FFFFFF !important;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-main:hover, .primary-btn:hover, .analyze-btn:hover {
    background-color: #D4AF37 !important;
    background: linear-gradient(135deg, #D4AF37, #B8962E) !important;
    transform: scale(1.02);
}

i, .icon, [class*="fa-"], .tab-icon {
    color: #D4AF37 !important;
}

.landing-container, .dashboard-container, .pricing-container, .pricing-page {
    background-color: #FFFFFF !important;
    min-height: 100vh;
}

.tab-content, .dashboard-main, main {
    background-color: #FFFFFF !important;
}

.section-header h2, .section-header p {
    color: #111827 !important;
}

.section-subtitle {
    color: #4B5563 !important;
}

.result-section, .upload-card, .closet-card, .style-guide-card {
    background-color: #FFF1F2 !important;
    border: 2px solid #D4AF37 !important;
    border-radius: 20px !important;
}

.paywall-overlay {
    background: rgba(255, 255, 255, 0.95) !important;
}

.paywall-content {
    background-color: #FFF1F2 !important;
    border: 2px solid #D4AF37 !important;
}

.pricing-card {
    background-color: #FFF1F2 !important;
    border: 2px solid #D4AF37 !important;
    border-radius: 20px !important;
}

.pricing-card.featured {
    background-color: #FFFBEB !important;
    border: 3px solid #D4AF37 !important;
}

.pricing-header-nav, .pricing-hero {
    background-color: #FFFFFF !important;
}

.pricing-hero h1, .pricing-subtitle {
    color: #111827 !important;
}

.pricing-grid {
    background-color: #FFFFFF !important;
}

.tier-badge, .tier-subtitle, .price, .features-list li {
    color: #1F2937 !important;
}

.tier-badge.gold {
    color: #D4AF37 !important;
}

.visual-card {
    background-color: #FFF1F2 !important;
    border: 2px solid #D4AF37 !important;
    color: #1F2937 !important;
}

.hero-section, .hero-content, .hero-visual {
    background-color: #FFFFFF !important;
}

.hero-section {
    padding-top: 8rem !important;
    padding-bottom: 6rem !important;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: #FFF1F2;
    border: 2px solid #D4AF37;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
}

.notification-success {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border-color: #10B981;
}

.notification-icon {
    font-size: 1.25rem;
    color: #10B981;
}

.notification-text {
    color: #1F2937;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6B7280;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
}

.notification-close:hover {
    color: #1F2937;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trial-badge {
    background: linear-gradient(135deg, #D4AF37, #F5D76E);
    color: #1F2937;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.trial-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.trial-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.trial-modal {
    background: #FFFFFF;
    border: 3px solid #D4AF37;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s;
}

.trial-modal-overlay.active .trial-modal {
    transform: scale(1);
}

.trial-modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.trial-modal h2 {
    font-family: 'Playfair Display', serif;
    color: #111827;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.trial-modal-highlight {
    color: #D4AF37;
}

.trial-modal p {
    color: #4B5563;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.trial-modal-btn {
    background: linear-gradient(135deg, #FB7185, #F43F5E);
    color: white;
    border: 2px solid #D4AF37;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.trial-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 63, 94, 0.4);
}

.hero-title, .hero-subtitle {
    color: #111827 !important;
}

.hero-title .accent {
    color: #FB7185 !important;
}

.feature-item, .feature-icon {
    color: #D4AF37 !important;
}

.logo-text {
    color: #111827 !important;
}

.logo-icon {
    color: #D4AF37 !important;
}

.tab-btn {
    background-color: #FFFFFF !important;
    color: #4B5563 !important;
    border: none !important;
}

.tab-btn.active {
    background-color: #FFF1F2 !important;
    color: #FB7185 !important;
    border-bottom: 3px solid #D4AF37 !important;
}

.tab-text {
    color: inherit !important;
}

.dashboard-header {
    background-color: #FFFFFF !important;
    border-bottom: 2px solid #D4AF37 !important;
}

.tier-badge-header {
    background-color: #FFF1F2 !important;
    color: #4B5563 !important;
    border: 1px solid #D4AF37 !important;
}

.tier-badge-header.premium {
    background-color: #D4AF37 !important;
    color: #FFFFFF !important;
}

.user-name {
    color: #1F2937 !important;
}

.upgrade-btn {
    background-color: #FB7185 !important;
    color: #FFFFFF !important;
}

.logout-btn {
    color: #6B7280 !important;
    background-color: transparent !important;
}

.logout-btn:hover {
    color: #E11D48 !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--gold);
    font-size: 1.5rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.accent {
    color: var(--gold);
}

.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
}

.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav-login-btn {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    box-shadow: var(--shadow-soft);
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 4rem 4rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.title-line {
    display: block;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--pink), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.feature-icon {
    color: var(--gold);
    font-size: 0.75rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(251, 113, 133, 0.35);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.visual-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: slideIn 0.6s ease-out forwards;
    opacity: 0;
    box-shadow: var(--shadow-soft);
}

.visual-card:hover {
    border-color: var(--gold);
    transform: translateX(-10px);
    box-shadow: var(--shadow-gold);
}

.card-1 { animation-delay: 0.2s; }
.card-2 { animation-delay: 0.4s; }
.card-3 { animation-delay: 0.6s; }
.card-4 { animation-delay: 0.8s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-icon {
    font-size: 2rem;
}

.pricing-section {
    padding: 8rem 2rem;
    margin-top: 4rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle-main {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 260px;
    max-width: 300px;
    min-height: 450px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(180deg, #FFFBEB 0%, var(--bg-primary) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    padding: 0.35rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.pricing-header h3 {
    color: var(--pink);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.pricing-header .tier-slogan {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--pink);
    color: var(--pink);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    margin-top: auto;
}

.pricing-btn:hover {
    background: var(--pink);
    color: white;
}

.pricing-btn.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: 2px solid var(--gold);
    color: white;
}

.pricing-btn.gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
}

.landing-footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.dashboard-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.tier-badge-header {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.tier-badge-header.premium {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border: none;
}

.upgrade-btn {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
}

.upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.user-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid var(--gold);
    color: white;
}

.user-name {
    font-weight: 500;
    color: var(--text-primary);
}

.logout-btn {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    border-color: var(--error);
    color: var(--error);
}

.tab-navigation {
    display: flex;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    overflow-x: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 30px;
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-soft);
}

.tab-btn:hover {
    border-color: var(--pink-soft);
    color: var(--pink);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    border-color: var(--gold);
    box-shadow: var(--shadow-medium);
}

.tab-icon {
    font-size: 1.1rem;
}

.dashboard-main {
    flex: 1;
    padding: 2rem;
    background: var(--bg-primary);
    min-height: 100vh;
    height: auto;
    overflow: visible;
}

.tab-content {
    display: none;
    overflow: visible;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
    overflow: visible;
}

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

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.beauty-lab-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
}

.photo-guide-card {
    background: rgba(255, 241, 242, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--gold);
    max-width: 400px;
}

.photo-guide-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.photo-guide-header .guide-icon {
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.photo-guide-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-heading);
    font-weight: 600;
}

.photo-guide-rules {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-rule {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.rule-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 10px;
}

.rule-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.rule-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.guide-confirm-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border: 2px solid var(--gold);
    border-radius: 14px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 113, 133, 0.3);
}

.guide-confirm-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.guide-confirm-btn .btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.guide-confirm-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.scan-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.scan-upload-area {
    background: var(--bg-primary);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    padding: 3rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.scan-upload-area:hover {
    border-color: var(--pink);
    background: var(--pink-light);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.upload-icon {
    font-size: 3rem;
}

.upload-placeholder p {
    color: var(--text-secondary);
    font-weight: 500;
}

.upload-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.face-preview {
    max-width: 100%;
    border-radius: 12px;
}

.hidden {
    display: none !important;
}

.analyze-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.analyze-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.analyze-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.results-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.no-results-icon {
    font-size: 3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.results-content {
    display: grid;
    gap: 1.5rem;
}

.result-section {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.result-section h3 {
    font-size: 0.9rem;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.result-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.archetype-section {
    background: linear-gradient(135deg, var(--bg-secondary), #FFF5F6);
    border: 2px solid var(--gold);
    text-align: center;
    padding: 2rem;
}

.archetype-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.archetype-description {
    color: var(--text-secondary);
    font-style: italic;
}

.strengths-section {
    background: linear-gradient(135deg, #FEF3C7, #FFFBEB);
    border: 1px solid var(--gold);
}

.strengths-section h3 {
    color: var(--gold-dark);
}

.strengths-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.strengths-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.strengths-list li::before {
    content: "✦";
    color: var(--gold);
}

.glow-up-section {
    background: linear-gradient(135deg, var(--pink-light), #FFF5F6);
    border: 2px solid var(--pink);
}

.glow-up-section h3 {
    color: var(--pink-dark);
}

.glow-up-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.glow-up-item {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--pink);
}

.glow-up-item strong {
    color: var(--pink);
    display: block;
    margin-bottom: 0.25rem;
}

.color-palette {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.color-tag {
    padding: 0.35rem 0.75rem;
    background: var(--pink-light);
    color: var(--pink-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--pink-soft);
}

.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recommendation-item {
    padding: 0.75rem 1rem;
    background: var(--pink-light);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-left: 3px solid var(--pink);
}

.closet-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.stat-badge {
    padding: 0.35rem 1rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.stat-badge.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border: none;
}

.stat-badge.locked {
    background: var(--pink-light);
    color: var(--pink);
    border-color: var(--pink-soft);
}

.closet-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.upload-item-btn {
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-item-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.reset-laundry-btn {
    padding: 0.75rem 1.4rem;
    background: rgba(212,175,55,0.08);
    color: var(--gold, #D4AF37);
    border: 1.5px solid rgba(212,175,55,0.35);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.reset-laundry-btn:hover {
    background: rgba(212,175,55,0.16);
    border-color: var(--gold, #D4AF37);
    transform: translateY(-1px);
}

.reset-laundry-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.filter-controls {
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover, .filter-select:focus {
    border-color: var(--pink);
    outline: none;
}

.wardrobe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.wardrobe-item {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.wardrobe-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--pink);
}

.delete-item-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--error);
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wardrobe-item:hover .delete-item-btn {
    opacity: 1;
}

.wardrobe-item.is-dirty {
    border-color: #c8b86a;
}

.wardrobe-item-image-wrap {
    position: relative;
    overflow: hidden;
}

.wardrobe-item.is-dirty .wardrobe-item-image {
    filter: grayscale(0.55) brightness(0.88);
    opacity: 0.72;
}

.laundry-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background: rgba(30,25,10,0.38);
    pointer-events: none;
}

.laundry-overlay-icon {
    font-size: 2rem;
    line-height: 1;
}

.laundry-overlay-text {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.laundry-status-bar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border: none;
    border-top: 1px solid var(--border-light);
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease;
    text-align: left;
}

.laundry-status-bar:hover {
    background: rgba(0,0,0,0.04);
}

.laundry-status-bar.clean .laundry-bar-icon {
    font-size: 0.75rem;
    color: #16a34a;
    background: rgba(34,197,94,0.12);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.laundry-status-bar.dirty .laundry-bar-icon {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.laundry-bar-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    flex-shrink: 0;
}

.laundry-status-bar.dirty .laundry-bar-text {
    color: #b5860d;
}

.laundry-bar-action {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.laundry-status-bar:hover .laundry-bar-action {
    opacity: 1;
}

.laundry-alert-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(212,175,55,0.12));
    border: 1.5px solid rgba(212,175,55,0.3);
    border-radius: 18px;
    margin: 1.5rem 0;
}

.laundry-alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.laundry-alert-content strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.laundry-alert-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.laundry-alert-reset-btn {
    padding: 0.6rem 1.2rem;
    background: var(--gold, #D4AF37);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.laundry-alert-reset-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.laundry-warning-notice {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.2rem;
    background: rgba(212,175,55,0.07);
    border: 1px solid rgba(212,175,55,0.22);
    border-radius: 12px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.wardrobe-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wardrobe-item-info {
    padding: 1rem;
}

.wardrobe-item-type {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.wardrobe-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.tag {
    padding: 0.2rem 0.6rem;
    background: var(--pink-light);
    color: var(--pink-dark);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.tag.fabric {
    background: #E0E7FF;
    color: #4338CA;
}

.tag.style {
    background: #FEF3C7;
    color: var(--gold-dark);
}

.loading-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--pink-light);
    border-top-color: var(--pink);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--error);
}

.modal-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.upload-area {
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.upload-area:hover {
    border-color: var(--pink);
    background: var(--pink-light);
}

.clothing-preview {
    max-width: 100%;
    max-height: 300px;
    border-radius: 12px;
    object-fit: contain;
}

.style-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.weather-card, .event-matcher-card, .budget-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.weather-header h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.refresh-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.refresh-btn:hover {
    background: var(--pink-light);
    border-color: var(--pink);
    color: var(--pink);
}

.weather-content {
    margin-bottom: 1.5rem;
}

.weather-main {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.weather-temp {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.weather-desc {
    color: var(--text-secondary);
    text-transform: capitalize;
}

.weather-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.outfit-advice h4 {
    color: var(--pink);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

#outfit-tips-list {
    list-style: none;
}

#outfit-tips-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#outfit-tips-list li::before {
    content: "→";
    color: var(--gold);
}

.card-header-with-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.card-header-with-badge h3, .card-header-with-badge h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.expert-badge, .elite-badge {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.event-select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.event-select:focus {
    outline: none;
    border-color: var(--pink);
}

.generate-outfit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.generate-outfit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.outfit-suggestions {
    min-height: 100px;
}

.expert-advice-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.expert-header {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.budget-input-group {
    margin-bottom: 1.5rem;
}

.budget-input-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.budget-input-group input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
}

.budget-input-group input:focus {
    outline: none;
    border-color: var(--pink);
}

.get-products-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.get-products-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.get-products-btn.secondary-btn {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
}

.get-products-btn.secondary-btn:hover {
    background: var(--pink-light);
}

.photo-source-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.photo-source-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.photo-option {
    flex: 1;
    cursor: pointer;
}

.photo-option input {
    display: none;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-primary);
    transition: all 0.3s ease;
}

.photo-option input:checked + .option-content {
    border-color: var(--pink);
    background: var(--pink-light);
}

.option-icon {
    font-size: 1.5rem;
}

.option-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

.new-photo-upload {
    margin-bottom: 1.5rem;
}

.upload-zone {
    background: var(--bg-primary);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-zone:hover {
    border-color: var(--pink);
    background: var(--pink-light);
}

.photo-preview {
    position: relative;
    display: inline-block;
}

.photo-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 12px;
}

.remove-photo-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--error);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.luxury-progress-container {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--pink-light), #FFF5F6);
    border-radius: 16px;
    border: 1px solid var(--pink-soft);
}

.luxury-progress-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.progress-icon {
    color: var(--gold);
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.luxury-progress-bar {
    height: 6px;
    background: var(--pink-soft);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.luxury-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pink), var(--gold));
    border-radius: 3px;
    width: 0%;
    animation: progressFill 3s ease forwards;
}

@keyframes progressFill {
    0% { width: 0%; }
    33% { width: 35%; }
    66% { width: 70%; }
    100% { width: 100%; }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.step {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.step.active {
    color: var(--pink);
    font-weight: 500;
}

.power-trio-results {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.paywall-overlay {
    background: linear-gradient(135deg, var(--bg-secondary), #FFF5F6);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.paywall-content {
    max-width: 400px;
    margin: 0 auto;
}

.paywall-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.paywall-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.paywall-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.paywall-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.paywall-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.paywall-features li::before {
    content: "✦";
    color: var(--gold);
}

.paywall-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.paywall-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    padding: 2rem;
}

.error-content {
    text-align: center;
    max-width: 400px;
}

.error-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--gold);
}

.error-content h1 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.unique-glow-section {
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
    border: 2px solid var(--gold);
}

.unique-glow-section h3 {
    color: var(--gold-dark);
}

.glow-compliments {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.glow-compliments li {
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
    color: var(--text-secondary);
    font-style: italic;
}

.asset-score-section {
    background: var(--bg-card);
    border: 2px solid var(--gold);
}

.score-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-label {
    width: 100px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.score-bar {
    flex: 1;
    height: 12px;
    background: var(--pink-light);
    border-radius: 6px;
    overflow: hidden;
}

.score-bar.gold {
    background: linear-gradient(90deg, #FEF3C7, #FFFBEB);
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pink), var(--pink-dark));
    border-radius: 6px;
    transition: width 0.8s ease-out;
}

.score-bar.gold .score-fill {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.score-value {
    width: 60px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

.score-item.overall .score-value {
    color: var(--gold-dark);
    font-size: 1.1rem;
}

.score-comment {
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--pink-soft);
}

.glow-up-tip-section {
    background: linear-gradient(135deg, var(--pink-light), #FECDD3);
    border: 2px solid var(--pink);
}

.glow-up-tip-section h3 {
    color: var(--pink-dark);
}

.tip-content {
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 12px;
}

.tip-main {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.tip-impact {
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-style: italic;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.account-card {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.subscription-header {
    margin-bottom: 2rem;
}

.current-plan {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.plan-icon {
    font-size: 3rem;
}

.plan-info h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.plan-price {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.subscription-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.manage-sub-btn {
    padding: 1rem 1.5rem;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.manage-sub-btn:hover {
    background: var(--gold);
    color: white;
}

.upgrade-plan-btn {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border: 2px solid var(--gold);
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.upgrade-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.plan-features h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.profile-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-avatar-large img,
.avatar-placeholder-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.avatar-placeholder-large {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.profile-details p {
    margin-bottom: 0.25rem;
}

.profile-email {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.scan-card,
.results-card,
.weather-card,
.event-matcher-card,
.budget-card {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-card);
}

.wardrobe-item {
    background: var(--bg-card);
    border: 2px solid var(--gold);
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 7rem 2rem 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-visual {
        align-items: center;
        width: 100%;
    }
    
    .beauty-lab-grid {
        grid-template-columns: 1fr;
    }
    
    .style-guide-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .landing-nav {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .tab-navigation {
        padding: 1rem;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .tab-text {
        display: none;
    }
    
    .dashboard-main {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .closet-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-controls {
        flex-direction: column;
    }
    
    .photo-source-options {
        flex-direction: column;
    }
}

/* Luxury Shopping List Styles */
.luxury-shopping-list {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.luxury-product-card {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: var(--shadow-gold);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}

.luxury-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-brand {
    color: var(--gold-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.product-name {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.value-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.product-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.75rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.product-store {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.product-why {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0.75rem 0;
    font-style: italic;
}

.product-type {
    background: var(--pink-soft);
    color: var(--pink-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-shade {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

/* Gold Buy Now Button */
.buy-now-btn, .gold-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.buy-now-btn:hover, .gold-btn:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.buy-now-btn .btn-icon {
    font-size: 1.1rem;
}

/* Search hint under buy button */
.search-hint {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Ceneo disclaimer - price comparison note */
.ceneo-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #D4AF37;
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(251, 113, 133, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 500;
}

/* External link styling for Ceneo buttons */
.ceneo-external-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ceneo-external-link .external-icon {
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

.no-link-msg {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: #9CA3AF;
    padding: 0.5rem;
    font-style: italic;
}

/* Gold Link */
.gold-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: color 0.2s ease;
}

.gold-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Products Grid - Responsive Flexbox */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.products-grid > .luxury-product-card,
.products-grid > .elite-product-card {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
}

@media (min-width: 768px) {
    .products-grid > .luxury-product-card,
    .products-grid > .elite-product-card {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (min-width: 1200px) {
    .products-grid > .luxury-product-card,
    .products-grid > .elite-product-card {
        flex: 1 1 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }
}

/* Power Trio Products Container */
.power-trio-products {
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.power-trio-products .power-product-card {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-gold);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Product Recommendations Container */
#product-recommendations,
#enhancement-results {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

/* Product Details Row */
.product-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Product Buttons Container */
.product-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.product-buttons .primary-btn {
    flex: 1;
    min-width: 180px;
}

.product-buttons .secondary-btn {
    background: var(--bg-primary);
    color: var(--gold-dark);
    border: 2px solid var(--gold);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.product-buttons .secondary-btn:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

/* Alternative Links */
.alt-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.alt-link.secondary-link {
    color: var(--gold-dark);
    font-size: 0.8rem;
}

/* Elite Section Header */
.elite-section-header {
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

/* Budget Summary */
.budget-summary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.budget-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.budget-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.budget-total {
    font-size: 1.25rem;
    font-weight: 700;
}

.budget-remaining {
    font-size: 1rem;
    font-weight: 600;
}

.budget-remaining.negative {
    color: #ffcccc;
}

.budget-warning-row {
    background: rgba(255,80,80,0.18);
    border: 1px solid rgba(255,100,100,0.5);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #fff;
}

/* Strategy and Tips */
.strategy-tip {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.strategy-tip .tip-icon {
    color: var(--gold);
    font-size: 1.25rem;
}

.savings-tips {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.savings-tips h5 {
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

.savings-tips ul {
    list-style: none;
    padding: 0;
}

.savings-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.savings-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Alternatives Section */
.alternatives-section {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.alternatives-section h5 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.alt-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.alt-item:last-child {
    border-bottom: none;
}

.alt-item .original {
    color: var(--text-muted);
    text-decoration: line-through;
}

.alt-item .alternative {
    color: var(--text-primary);
    font-weight: 500;
}

.alt-item .alt-price {
    color: var(--gold-dark);
    font-weight: 600;
}

.alt-item .savings {
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Glow Routine */
.glow-routine {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.glow-routine h5 {
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.glow-routine p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Global Footer */
.global-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 1rem;
    margin-top: 2rem;
}

.global-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.global-footer .footer-links {
    margin-bottom: 0.75rem;
}

.global-footer .footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
}

.global-footer .footer-links a:hover {
    text-decoration: underline;
}

.global-footer .footer-divider {
    color: var(--text-muted);
    margin: 0 0.75rem;
}

.global-footer .footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Landing Page Footer */
.landing-footer .footer-links {
    margin-bottom: 0.75rem;
}

.landing-footer .footer-links a {
    color: var(--gold);
    text-decoration: none;
}

.landing-footer .footer-links a:hover {
    text-decoration: underline;
}

.landing-footer .footer-divider {
    color: var(--text-muted);
    margin: 0 0.75rem;
}

.landing-footer .terms-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.landing-footer .terms-note a {
    color: var(--gold);
}

/* Landing Page Decoy Pricing Styles */
.pricing-card.decoy {
    opacity: 0.92;
}

.pricing-card.elite-featured {
    transform: scale(1.05);
    border: 3px solid var(--gold);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.2);
    z-index: 2;
}

.pricing-card .featured-badge.gold-badge {
    background: linear-gradient(135deg, #D4AF37, #F5D76E);
    color: #1a1a1a;
    font-weight: 700;
}

.pricing-card .price-compare {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.pricing-features li.excluded {
    color: var(--text-muted);
    opacity: 0.6;
}

.pricing-features li.highlight {
    color: var(--gold-dark);
    font-weight: 600;
}

.trial-badge.gold-trial {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(251, 113, 133, 0.1));
    border: 1px solid var(--gold);
    color: var(--gold-dark);
}

.pricing-btn.pulse-btn {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6); }
}

/* Support FAB Button */
.support-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.support-fab .fab-icon {
    font-size: 1.75rem;
    color: white;
    font-weight: 700;
}

/* Support Modal Overlay */
.support-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.support-modal-overlay.active {
    display: flex;
}

/* Support Modal */
.support-modal {
    background: var(--bg-primary);
    border: 2px solid var(--gold);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.support-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.support-modal-close:hover {
    background: var(--pink-light);
    color: var(--text-primary);
}

.support-modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.support-modal-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.support-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.support-modal-header .gold-text {
    color: var(--gold);
}

.support-modal-content {
    padding: 1.5rem 2rem 2rem;
}

/* FAQ Section */
.faq-section h3,
.contact-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--pink-light);
}

.faq-arrow {
    font-size: 0.75rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer ol,
.faq-answer ul {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

.faq-answer li {
    margin-bottom: 0.25rem;
}

.faq-portal-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-portal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.faq-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.support-form .form-group {
    margin-bottom: 1rem;
}

.support-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.support-form select,
.support-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s ease;
}

.support-form select:focus,
.support-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.support-form textarea {
    resize: vertical;
    min-height: 100px;
}

.support-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border: 2px solid var(--gold);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 113, 133, 0.3);
}

.support-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Message */
.support-success {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(251, 113, 133, 0.05));
    border: 2px solid var(--gold);
    border-radius: 16px;
}

.support-success .success-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.support-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.support-success p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.support-close-success {
    padding: 0.6rem 1.5rem;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.support-close-success:hover {
    background: var(--gold-dark);
}

@media (max-width: 480px) {
    .support-modal {
        max-height: 90vh;
        border-radius: 16px;
    }
    
    .support-modal-content {
        padding: 1rem 1.25rem 1.5rem;
    }
    
    .support-fab {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
}

/* Support Chat Styles */
.support-modal-chat {
    max-width: 480px;
    height: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.support-modal-header .support-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.support-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    padding: 0 1rem;
}

.support-tab {
    flex: 1;
    padding: 0.75rem;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.support-tab:hover {
    color: var(--text-primary);
}

.support-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.support-tab-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.support-tab-content.hidden {
    display: none;
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    max-width: 90%;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-message.bot {
    align-self: flex-start;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.chat-message.bot .message-avatar {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.chat-message.user .message-avatar {
    background: var(--pink-light);
}

.message-content {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    border-radius: 16px 16px 4px 16px;
}

.chat-message.bot .message-content {
    border: 1px solid var(--border-color);
    border-radius: 16px 16px 16px 4px;
}

.message-content p {
    margin: 0;
}

.message-content p + p {
    margin-top: 0.5rem;
}

.message-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.chat-message.bot .message-content .message-hint {
    color: var(--text-muted);
}

.message-typing {
    display: flex;
    gap: 4px;
    padding: 0.5rem 0;
}

.message-typing span {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.message-typing span:nth-child(2) { animation-delay: 0.2s; }
.message-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.chat-form {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 24px;
    margin-top: 0.75rem;
}

.chat-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    outline: none;
}

.chat-form input::placeholder {
    color: var(--text-muted);
}

.chat-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chat-form button:hover {
    transform: scale(1.05);
}

.chat-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.send-icon {
    font-size: 1rem;
}

.refund-button-container {
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(251, 113, 133, 0.05));
    border: 2px solid var(--gold);
    border-radius: 12px;
    margin: 0.75rem 0;
    text-align: center;
}

.refund-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.refund-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.refund-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .support-modal-chat {
        height: 90vh;
        max-height: 90vh;
    }
}

.modal-content-large {
    max-width: 600px;
    width: 95%;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.multi-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
}

.multi-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gold);
    animation: fadeInUp 0.3s ease;
}

.multi-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.multi-preview-item .remove-preview {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.upload-progress {
    margin: 1rem 0;
    text-align: center;
}

.progress-bar {
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--pink));
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ai-selecting-animation {
    text-align: center;
    padding: 2rem;
    margin: 1rem 0;
}

.selecting-sparkles {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sparkle {
    font-size: 1.5rem;
    color: var(--gold);
    animation: sparkleFloat 1.5s infinite ease-in-out;
}

.sparkle.s1 { animation-delay: 0s; }
.sparkle.s2 { animation-delay: 0.3s; }
.sparkle.s3 { animation-delay: 0.6s; }

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
}

.selecting-text {
    color: var(--text-secondary);
    font-style: italic;
}

.btn-sparkle {
    margin-right: 0.5rem;
    animation: sparkleRotate 2s infinite linear;
}

@keyframes sparkleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wardrobe-analysis-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-card);
}

.wardrobe-analysis-card.paywall-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.elite-paywall-content {
    text-align: center;
    padding: 1.5rem;
}

.paywall-lock-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.elite-paywall-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}

.elite-paywall-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.paywall-mini-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    text-align: left;
}

.paywall-mini-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.paywall-mini-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.elite-upgrade-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.elite-upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.elite-badge.locked {
    background: linear-gradient(135deg, #9CA3AF, #6B7280);
}

.analyze-wardrobe-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.analyze-wardrobe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.wardrobe-analysis-result {
    margin-top: 1.5rem;
}

.analysis-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.analysis-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gap-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-left: 4px solid var(--gold);
}

.gap-item h5 {
    font-size: 0.95rem;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.gap-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ceneo-link-mini {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.ceneo-link-mini:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(251, 113, 133, 0.3);
}

.gap-item-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}

.zalando-link-btn {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: #FF6900;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
}

.zalando-link-btn:hover {
    background: #e55e00;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 105, 0, 0.35);
}

.google-inspo-btn {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid #D1D5DB;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.google-inspo-btn:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
    background: rgba(0,0,0,0.03);
}

.flat-lay-outfit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    margin: 1rem 0;
    border: 2px solid var(--gold);
}

.flat-lay-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    animation: itemPop 0.5s ease backwards;
}

.flat-lay-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flat-lay-item .item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 0.7rem;
    padding: 0.5rem 0.25rem 0.25rem;
    text-align: center;
}

@keyframes itemPop {
    0% { opacity: 0; transform: scale(0.8); }
    60% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

.flat-lay-item:nth-child(1) { animation-delay: 0.1s; }
.flat-lay-item:nth-child(2) { animation-delay: 0.2s; }
.flat-lay-item:nth-child(3) { animation-delay: 0.3s; }
.flat-lay-item:nth-child(4) { animation-delay: 0.4s; }
.flat-lay-item:nth-child(5) { animation-delay: 0.5s; }

/* Premium outfit card (replaces old .outfit-card-visual) */
.outfit-card-premium {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    animation: slideInUp 0.4s ease;
}

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

.outfit-card-header {
    margin-bottom: 0.6rem;
}

.outfit-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin: 0;
    color: var(--text-heading);
    line-height: 1.3;
}

.outfit-card-premium .outfit-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

/* Outfit item tags row */
.outfit-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.outfit-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    padding: 0.2rem 0.65rem;
}

.outfit-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.1);
}

.outfit-actions-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.25rem;
}

.outfit-tips-list {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 12px;
}

.outfit-tips-list h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--gold-dark);
}

.outfit-tips-list ul {
    margin: 0;
    padding-left: 1.25rem;
}

.outfit-tips-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

/* ============================================================
   VIBE SELECTOR
   ============================================================ */
.style-vibe-card {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 1.5rem;
}

.beta-badge {
    background: linear-gradient(135deg, #FB7185, #e11d48);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}

.prestige-badge-sm {
    background: linear-gradient(135deg, #FB7185, #e11d48);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}

.vibe-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.vibe-btn {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.vibe-btn:hover {
    border-color: var(--gold);
    background: #FFFBF0;
}

.vibe-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold-dark);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.vibe-saved-msg {
    margin-top: 0.75rem;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================================
   WARDROBE GOAL SELECTOR
   ============================================================ */
.wardrobe-goal-selector {
    margin-bottom: 1.25rem;
}

.goal-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.goal-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.goal-option {
    cursor: pointer;
    display: block;
}

.goal-option input[type="radio"] {
    display: none;
}

.goal-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    transition: all 0.2s ease;
}

.goal-option input[type="radio"]:checked + .goal-content {
    border-color: var(--gold);
    background: #FFFBF0;
    box-shadow: 0 2px 10px rgba(212,175,55,0.2);
}

.goal-icon {
    font-size: 1.25rem;
}

.goal-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.goal-text strong {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.goal-text small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* =========================================================
   SUBSCRIPTION EXPIRED BANNER
   ========================================================= */
.subscription-expired-banner {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fca5a5;
    border-radius: 14px;
    margin: 0 1.5rem 1rem;
    padding: 1rem 1.25rem;
}
.expired-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.expired-icon { font-size: 1.4rem; flex-shrink: 0; }
.expired-text {
    flex: 1;
    color: #991b1b;
    font-size: 0.9rem;
    min-width: 200px;
}
.expired-text strong { color: #7f1d1d; }
.expired-renew-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.expired-renew-btn:hover { transform: scale(1.03); }

/* =========================================================
   TRIAL BANNER
   ========================================================= */
.trial-banner {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid var(--gold, #D4AF37);
    border-radius: 14px;
    margin: 0 1.5rem 1rem;
    padding: 0.9rem 1.25rem;
}
.trial-banner-content {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}
.trial-icon { font-size: 1.3rem; flex-shrink: 0; }
.trial-text {
    flex: 1;
    color: #78350f;
    font-size: 0.88rem;
    min-width: 200px;
}
.trial-text strong { color: #451a03; }
.trial-upgrade-btn {
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #b8961e 100%);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.trial-upgrade-btn:hover { transform: scale(1.03); }
.trial-close-btn {
    background: none;
    border: none;
    color: #92400e;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.trial-close-btn:hover { opacity: 1; }

/* =========================================================
   TIER PAYWALL OVERLAY CARD (Style Advisor for BASIC)
   ========================================================= */
.paywall-overlay-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border: 2px dashed var(--gold);
    border-radius: 20px;
    margin: 1rem 0;
    gap: 1rem;
}
.paywall-overlay-card .paywall-icon { font-size: 3rem; }
.paywall-overlay-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
}
.paywall-overlay-card p { color: var(--text-secondary); font-size: 0.95rem; max-width: 400px; }
.paywall-sub { color: var(--text-muted) !important; font-size: 0.85rem !important; }
.paywall-upgrade-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    color: white !important;
    padding: 0.85rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
    display: inline-block;
}
.paywall-upgrade-btn:hover { transform: scale(1.03); box-shadow: 0 4px 20px rgba(251,113,133,0.4); }

/* =========================================================
   OCCASIONS LIMIT INFO (PRESTIŻ)
   ========================================================= */
.occasions-limit-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: #FFFBF0;
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin-top: 0.5rem;
}
.occasions-limit-info a { color: var(--gold); font-weight: 600; text-decoration: none; }

/* =========================================================
   PAYWALL CARD (locked feature cards in style advisor)
   ========================================================= */
.paywall-card .elite-paywall-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    gap: 0.75rem;
}
.paywall-card .paywall-lock-icon { font-size: 2rem; }
.paywall-card .elite-paywall-content p { color: var(--text-secondary); font-size: 0.85rem; }

/* =========================================================
   PLAN FEATURES — CROSSED OUT ITEMS
   ========================================================= */
.plan-features ul .feature-no { color: #9ca3af; opacity: 0.7; }

/* =========================================================
   TESTIMONIALS SECTION (Landing Page)
   ========================================================= */
.testimonials-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1100px;
    margin: 2.5rem auto 0;
}

.testimonial-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.1), 0 1px 6px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.18);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.18), 0 2px 8px rgba(0,0,0,0.07);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

.testimonial-stars span {
    color: var(--gold);
    font-size: 1.15rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.97rem;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-soft), var(--gold-light));
    color: var(--text-heading);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 3.5rem 1.25rem;
    }
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }
}

/* =========================================================
   REVIEW FORM (Dashboard — Twoje Konto)
   ========================================================= */
.review-card {
    grid-column: 1 / -1;
}

.review-card-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: -0.25rem;
    margin-bottom: 1.25rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.star-rating-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.star-rating-label,
.review-comment-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.star-rating {
    display: flex;
    gap: 0.35rem;
    cursor: pointer;
}

.star-rating .star {
    font-size: 2rem;
    color: #D1D5DB;
    transition: color 0.15s;
    line-height: 1;
    user-select: none;
}

.star-rating .star.active {
    color: var(--gold);
}

.star-rating .star:hover {
    color: var(--gold-light);
}

.review-comment-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-textarea {
    width: 100%;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.review-textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.12);
}

.review-textarea::placeholder {
    color: var(--text-muted);
}

.review-submit-btn {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--pink) 0%, var(--gold) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(251, 113, 133, 0.35);
}

.review-success {
    background: #F0FDF4;
    border: 1.5px solid #86EFAC;
    color: #15803D;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-error {
    background: #FFF1F2;
    border: 1.5px solid var(--pink);
    color: var(--pink-dark);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 600px) {
    .review-submit-btn {
        align-self: stretch;
        text-align: center;
    }
}

/* =========================================================
   BUDGET TIER SELECTOR (Wardrobe Assistant)
   ========================================================= */
.budget-tier-selector {
    margin-bottom: 1.25rem;
}

.budget-tier-options {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.budget-tier-option {
    flex: 1;
    min-width: 0;
    cursor: pointer;
    display: block;
}

.budget-tier-option input[type="radio"] {
    display: none;
}

.budget-tier-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.75rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    transition: all 0.2s ease;
    height: 100%;
}

.budget-tier-option input[type="radio"]:checked + .budget-tier-content {
    border-color: var(--gold);
    background: #FFFBF0;
    box-shadow: 0 2px 10px rgba(212,175,55,0.2);
}

.budget-tier-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.budget-tier-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.budget-tier-text strong {
    font-size: 0.82rem;
    color: var(--text-heading);
}

.budget-tier-text small {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
}

@media (max-width: 500px) {
    .budget-tier-options {
        flex-direction: column;
    }
}

/* =========================================================
   GAP ITEM — BRAND TAG
   ========================================================= */
.gap-brand-tag {
    font-size: 0.82rem;
    color: var(--gold-dark);
    margin-bottom: 0.25rem;
}

/* =========================================================
   BMI CALCULATOR PANEL
   ========================================================= */
.bmi-calculator-panel {
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-color, #EEE);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.bmi-panel-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.bmi-panel-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.bmi-panel-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.2rem;
}

.bmi-panel-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.bmi-inputs-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.bmi-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
    min-width: 100px;
}

.bmi-input-group label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bmi-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.bmi-input-wrap input[type="number"] {
    width: 100%;
    padding: 0.6rem 2.2rem 0.6rem 0.8rem;
    border: 1.5px solid var(--border-color, #EEE);
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--bg-secondary, #FAFAFA);
    transition: border-color 0.2s;
    -moz-appearance: textfield;
}

.bmi-input-wrap input[type="number"]::-webkit-outer-spin-button,
.bmi-input-wrap input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bmi-input-wrap input[type="number"]:focus {
    outline: none;
    border-color: var(--gold, #D4AF37);
}

.bmi-unit {
    position: absolute;
    right: 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    pointer-events: none;
}

.bmi-live-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 0.5rem 0.8rem;
    background: var(--bg-secondary, #FAFAFA);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    gap: 0.1rem;
}

.bmi-live-value {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    transition: color 0.3s;
}

.bmi-live-label {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.bmi-save-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #B8963A 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    align-self: flex-start;
}

.bmi-save-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}

.bmi-save-btn:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}

.bmi-result-card {
    background: var(--bg-secondary, #FAFAFA);
    border-radius: 14px;
    padding: 1.1rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.bmi-result-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bmi-result-score {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
}

.bmi-result-details {
    flex: 1;
}

.bmi-result-label {
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.bmi-result-note {
    font-size: 0.77rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.bmi-scale {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.bmi-scale-bar {
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #7BB3D6 0%, #7EC8A0 30%, #D4AF37 55%, #D4836E 75%, #C97A5A 100%);
    position: relative;
}

.bmi-scale-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bmi-scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.58rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

/* BMI badge inside body results */
.body-bmi-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 0.75rem;
}

.bmi-badge-icon { font-size: 1rem; }
.bmi-badge-value { font-size: 1.2rem; font-weight: 900; }
.bmi-badge-sep { color: var(--text-muted); }
.bmi-badge-label { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.bmi-badge-cat {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
    text-transform: capitalize;
}

/* =========================================================
   BODY SCANNER
   ========================================================= */
.body-scanner-section {
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.body-scanner-header {
    margin-bottom: 1.5rem;
}

.body-scanner-title-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.body-scanner-icon {
    font-size: 2rem;
    line-height: 1;
}

.body-scanner-title-row h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 0.2rem;
}

.body-scanner-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.body-scanner-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 1.5rem;
    align-items: start;
}

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

/* Upload panel */
.body-upload-panel {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.body-upload-guide {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.body-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 14px;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    overflow: hidden;
    position: relative;
}

.body-upload-area:hover {
    border-color: var(--gold);
    background: #FFFBF0;
}

.body-upload-area img.face-preview {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

/* Privacy notice */
.body-privacy-notice {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    background: #F6FBF4;
    border: 1px solid #C3E6CB;
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    font-size: 0.78rem;
    color: #3D6B47;
    line-height: 1.45;
}

.privacy-lock {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

/* Results panel */
.body-results-panel {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    min-height: 300px;
}

.body-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.body-mannequin-placeholder .mannequin-svg {
    width: 80px;
    opacity: 0.3;
}

/* Body type hero */
.body-type-hero {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.mannequin-container {
    flex-shrink: 0;
    width: 80px;
}

.mannequin-svg,
.body-type-svg {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(212,175,55,0.25));
}

.body-type-info {
    flex: 1;
    min-width: 0;
}

.body-type-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
    background: var(--gold);
}

.body-type-tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.body-notes-text {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.55;
    margin: 0;
}

/* Proportions grid */
.body-proportions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.proportion-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.55rem 0.75rem;
    background: var(--bg-secondary, #FAFAFA);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.proportion-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 600;
}

.proportion-value {
    font-size: 0.85rem;
    color: var(--text-heading);
    font-weight: 500;
    text-transform: capitalize;
}

/* Styling tips */
.body-styling-tips h4,
.body-silhouettes-section h4,
.body-icons-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 0.75rem;
}

.styling-tips-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.styling-tip-card {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #FFFBF0, #FFF);
    border: 1px solid #EDD98A;
    border-radius: 12px;
}

.styling-tip-rule {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold-dark, #9A7B1C);
    margin-bottom: 0.25rem;
}

.styling-tip-explanation {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 0.25rem;
}

.styling-tip-example {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Silhouette tags */
.silhouettes-tags,
.icons-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.silhouette-tag {
    padding: 0.3rem 0.75rem;
    background: #FFF9E6;
    border: 1px solid #D4AF37;
    border-radius: 20px;
    font-size: 0.78rem;
    color: #9A7B1C;
    font-weight: 500;
}

.icon-tag {
    padding: 0.3rem 0.75rem;
    background: #F5F0FF;
    border: 1px solid #C5A8FF;
    border-radius: 20px;
    font-size: 0.78rem;
    color: #6B3FA0;
}

/* Affirmation */
.body-affirmation-section {
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, var(--pink-light, #FFF0F5), white);
    border: 1px solid var(--pink-soft, #FFCCD5);
    border-radius: 12px;
}

.body-affirmation {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--pink-dark, #C0526A);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* =================== DELETE ACCOUNT =================== */

.delete-account-zone {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}

.delete-account-link {
    background: none;
    border: none;
    font-size: 0.75rem;
    color: #bbb;
    cursor: pointer;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0.3rem 0;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.delete-account-link:hover {
    color: #888;
}

.delete-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 4, 2, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: onboardingFadeIn 0.25s ease;
}

.delete-modal {
    background: #fff;
    border-radius: 24px;
    padding: 2.2rem 2rem;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    animation: onboardingSlideUp 0.3s cubic-bezier(.34,1.56,.64,1);
}

.delete-modal-icon {
    font-size: 2.8rem;
    line-height: 1;
    filter: grayscale(0);
}

.delete-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #c0392b;
    margin: 0;
    letter-spacing: 0.04em;
}

.delete-modal-warning {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.delete-modal-warning strong {
    color: #c0392b;
}

.delete-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    text-align: left;
}

.delete-modal-list li {
    font-size: 0.83rem;
    color: #7f1d1d;
    padding: 0.3rem 0;
    line-height: 1.4;
}

.delete-confirm-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.delete-confirm-label {
    font-size: 0.85rem;
    color: #555;
    text-align: left;
}

.delete-confirm-label strong {
    color: #c0392b;
    font-family: monospace;
    letter-spacing: 0.05em;
}

.delete-confirm-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #fca5a5;
    border-radius: 10px;
    font-size: 1rem;
    font-family: monospace;
    letter-spacing: 0.1em;
    text-align: center;
    color: #c0392b;
    font-weight: 700;
    background: #fff5f5;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.delete-confirm-input:focus {
    border-color: #ef4444;
    background: #fff;
}

.delete-modal-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.delete-cancel-btn {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    background: transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.delete-cancel-btn:hover {
    background: #f5f5f5;
}

.delete-confirm-btn {
    flex: 2;
    padding: 0.8rem 1rem;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(220,38,38,0.3);
}

.delete-confirm-btn:not(:disabled):hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(220,38,38,0.4);
}

.delete-confirm-btn:disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
}

.delete-modal-note {
    font-size: 0.72rem;
    color: #bbb;
    margin: 0;
    font-style: italic;
}

/* Global toast notification */
.global-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: #1a1510;
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    z-index: 99999;
    animation: toastSlideUp 0.4s cubic-bezier(.34,1.56,.64,1);
    white-space: nowrap;
}

.global-toast.farewell {
    background: linear-gradient(135deg, #1a1510, #2d2010);
    border: 1px solid rgba(212,175,55,0.3);
}

@keyframes toastSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes toastFadeOut {
    from { opacity: 1; transform: translateX(-50%) translateY(0); }
    to   { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ===================== ONBOARDING ===================== */

.onboarding-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 5, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: onboardingFadeIn 0.4s ease;
}

.onboarding-overlay.closing {
    animation: onboardingFadeOut 0.4s ease forwards;
}

@keyframes onboardingFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes onboardingFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

.onboarding-modal {
    background: #fff;
    border-radius: 28px;
    padding: 2.5rem 2rem 1.8rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 32px 80px rgba(0,0,0,0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: onboardingSlideUp 0.4s cubic-bezier(.34,1.56,.64,1);
    position: relative;
}

@keyframes onboardingSlideUp {
    from { transform: translateY(40px) scale(0.96); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

.onboarding-progress {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 2rem;
}

.onboarding-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e0d8;
    transition: all 0.3s ease;
}

.onboarding-dot.active {
    background: var(--gold, #D4AF37);
    width: 28px;
    border-radius: 4px;
}

.onboarding-step {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    width: 100%;
    margin-bottom: 1.8rem;
}

.onboarding-step.active {
    display: flex;
    animation: stepFadeIn 0.35s ease;
}

@keyframes stepFadeIn {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}

.onboarding-icon {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.onboarding-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: #1a1510;
    margin: 0;
    line-height: 1.2;
}

.onboarding-desc {
    font-size: 0.95rem;
    color: #5a5040;
    line-height: 1.65;
    margin: 0;
    max-width: 360px;
}

.onboarding-desc strong {
    color: #1a1510;
    font-weight: 600;
}

.onboarding-hint {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.04));
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    color: #7a6a30;
    font-style: italic;
}

.onboarding-hint-icon {
    color: var(--gold, #D4AF37);
    font-style: normal;
    font-size: 0.7rem;
}

.onboarding-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.onboarding-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid #e0d8cc;
    background: transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.onboarding-btn-back:hover {
    background: #f7f3ee;
    color: #555;
}

.onboarding-btn-next {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--gold, #D4AF37), #c49b25);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    box-shadow: 0 4px 18px rgba(212,175,55,0.3);
}

.onboarding-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,175,55,0.4);
}

.onboarding-btn-start {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, var(--pink, #E75480), #c94070);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(231,84,128,0.35);
    letter-spacing: 0.02em;
}

.onboarding-btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(231,84,128,0.45);
}

.onboarding-skip {
    background: none;
    border: none;
    font-size: 0.78rem;
    color: #bbb;
    cursor: pointer;
    font-family: inherit;
    padding: 0.5rem;
    transition: color 0.2s ease;
    margin-top: 0.2rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.onboarding-skip:hover {
    color: #888;
}

@media (max-width: 520px) {
    .onboarding-modal {
        padding: 2rem 1.4rem 1.5rem;
        border-radius: 20px;
    }
    .onboarding-title {
        font-size: 1.3rem;
    }
    .onboarding-icon {
        font-size: 2.8rem;
    }
}
