/**
 * Hair SOS - Main Stylesheet
 * Luxury Salon Theme with Light/Dark Mode Support
 * 
 * Theme colors are defined via CSS variables in the layout
 * Change config/theme.php to customize colors
 */

/* ===========================================
   CSS RESET & BASE
   =========================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-base), color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
}

button {
    font-family: inherit;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: 1rem;
}

.text-accent {
    font-family: var(--font-accent);
    font-style: italic;
}

/* ===========================================
   LAYOUT
   =========================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--bg-tertiary);
}

/* ===========================================
   SKIP LINK (Accessibility)
   =========================================== */

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--text-light);
    border-radius: var(--radius-base);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 1rem;
}

/* ===========================================
   HEADER & NAVIGATION
   =========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    transition: background-color var(--transition-base), border-color var(--transition-base);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}

/* Logo */
.logo, .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-base);
    color: white;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
}

.logo-accent {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    color: var(--primary);
    font-style: italic;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-base);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg-tertiary);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
    border-color: var(--primary);
}

.theme-icon-dark { display: none; }

[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: block; }

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 220px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
}

.user-menu.open .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.user-dropdown-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.user-dropdown-email {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.user-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.user-dropdown-item:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
}

.user-dropdown-item svg {
    width: 16px;
    height: 16px;
}

.user-dropdown-form {
    margin: 0;
}

.user-dropdown-logout {
    color: var(--error);
}

.user-dropdown-logout:hover {
    background: rgba(244, 67, 54, 0.1);
    color: var(--error);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.mobile-menu-toggle.open .hamburger {
    background: transparent;
}

.mobile-menu-toggle.open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.open .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-secondary);
    padding: 1.5rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-base);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ===========================================
   BUTTONS
   =========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-base);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--text-base);
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-lg);
}

.btn-block {
    width: 100%;
}

/* ===========================================
   ALERTS
   =========================================== */

.alert {
    position: fixed;
    top: 80px; /* Below fixed header (72px + 8px gap) */
    right: 1rem;
    z-index: 999;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    min-width: 300px;
    max-width: calc(100% - 2rem);
    border-radius: var(--radius-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
}

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

.alert svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-success {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

.alert-info {
    background: #dbeafe;
    border: 1px solid #3b82f6;
    color: #1e40af;
}

.alert-info {
    background: #dbeafe;
    border: 1px solid #3b82f6;
    color: #1e40af;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

.alert-close {
    margin-left: auto;
    background: transparent;
    border: none;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.alert-close:hover {
    opacity: 1;
}

.alert ul {
    margin: 0;
    padding-left: 1rem;
    list-style: disc;
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 72px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--bg-primary) 0%,
        var(--bg-tertiary) 50%,
        var(--bg-primary) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 1.5rem;
}

.hero-content {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-accent {
    display: block;
    color: var(--primary);
    background-clip: text;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-trust-avatars {
    display: flex;
}

.trust-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    border: 3px solid var(--bg-primary);
    margin-left: -10px;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.hero-trust-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

.hero-trust-text strong {
    color: var(--text-primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px var(--shadow);
    transition: all var(--transition-base);
}

.hero-card-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    padding: 1.5rem;
}

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

.hero-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.status-success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.hero-card-status svg {
    width: 14px;
    height: 14px;
}

.hero-card-time {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.hero-card-issue {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.hero-card-response {
    margin-bottom: 1rem;
}

.hero-card-stylist {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.stylist-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.stylist-info {
    display: flex;
    flex-direction: column;
}

.stylist-name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-primary);
}

.stylist-title {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.hero-card-advice {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.hero-card-rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.star-filled {
    width: 16px;
    height: 16px;
    color: var(--accent);
    fill: var(--accent);
}

.hero-card-rating span {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-style: italic;
}

/* Floating Cards */
.hero-card-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
    animation: float 3s ease-in-out infinite;
}

.hero-card-float-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.hero-card-float-2 {
    bottom: 15%;
    left: 0;
    animation-delay: 1.5s;
}

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

.float-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* ===========================================
   SECTION HEADERS
   =========================================== */

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header.text-center {
    text-align: center;
}

.section-header .section-title-centered {
    margin-bottom: 1rem;
}

.section-header .section-subtitle-centered {
    margin-top: 0;
    margin-bottom: 0;
}

/* Inline section header (title left, subtitle right) */
.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-title-left {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    white-space: nowrap;
}

.section-subtitle-right {
    color: var(--text-secondary);
    margin: 0;
    text-align: right;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-header-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .section-subtitle-right {
        text-align: left;
    }
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--bg-tertiary);
    color: var(--primary);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

[data-theme="dark"] .section-badge {
    background: rgba(212, 165, 172, 0.1);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 0;
}

/* ===========================================
   STEPS SECTION
   =========================================== */

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    font-size: var(--text-sm);
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-title {
    font-size: var(--text-lg);
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    color: var(--border);
    margin-top: 4rem;
}

.step-connector svg {
    width: 24px;
    height: 24px;
}

/* ===========================================
   SERVICES SECTION
   =========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    color: white;
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-title {
    font-size: var(--text-lg);
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

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

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.service-list svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* ===========================================
   TESTIMONIALS SECTION
   =========================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
}

.testimonial-featured {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 20px 40px var(--shadow);
}

.testimonial-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.testimonial-rating {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-service {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ===========================================
   PRICING SECTION
   =========================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
}

.pricing-featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px var(--shadow);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.launch-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.price-original {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.25rem;
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pricing-name {
    font-size: var(--text-lg);
    margin-bottom: 0.75rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

/* ===========================================
   CTA SECTIONS
   =========================================== */

.section-cta {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-primary));
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px var(--shadow);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.cta-badge svg {
    width: 16px;
    height: 16px;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cta-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.cta-visual {
    display: flex;
    justify-content: center;
}

.cta-earnings-card {
    padding: 2rem;
    background: var(--primary);
    border-radius: var(--radius-xl);
    color: white;
    min-width: 280px;
}

.earnings-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.earnings-header svg {
    width: 18px;
    height: 18px;
}

.earnings-amount {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.earnings-detail {
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* Final CTA */
.section-final-cta {
    background: var(--primary);
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.final-cta-description {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.section-final-cta .btn-primary {
    background: white;
    color: var(--primary);
    border-color: white;
}

.section-final-cta .btn-primary:hover {
    background: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.final-cta-note {
    font-size: var(--text-sm);
    opacity: 0.8;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* ===========================================
   FOOTER
   =========================================== */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

/* Social links - appealing with subtle color on hover */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: linear-gradient(135deg, #3D3D3D 0%, #2A2A2A 100%);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-heading {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-list a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-copyright,
.footer-made {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

.footer-made {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.heart-icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
    fill: var(--primary);
}

/* ===========================================
   FORMS
   =========================================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label,
.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Override for toggle labels */
.form-group label.toggle-label {
    display: flex !important;
    margin-bottom: 0.375rem;
}

.form-input,
.form-textarea,
.form-select,
.form-control {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: var(--radius-base);
    transition: all var(--transition-fast);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus,
.form-control:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder,
.form-control::placeholder {
    color: var(--text-muted);
}

input.form-input,
input.form-control {
    height: 50px;
}

select.form-select,
select.form-control {
    height: 50px;
    cursor: pointer;
}

.form-textarea,
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Global checkbox accent color */
input[type="checkbox"] {
    accent-color: #22C55E;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #22C55E;
}

.form-checkbox span {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.form-checkbox span a {
    text-decoration: underline;
    color: var(--primary);
}

.form-checkbox span a:hover {
    color: var(--primary-hover);
}

.form-error {
    font-size: var(--text-sm);
    color: var(--error);
    margin-top: 0.375rem;
}

/* ===========================================
   AUTH PAGES
   =========================================== */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: calc(72px + 2rem);
}

.auth-card {
    width: 100%;
    max-width: 440px;
    padding: 2.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px var(--shadow);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Auth Logo - like header logo */
.auth-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    border-radius: 12px;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.auth-logo-icon svg {
    width: 26px;
    height: 26px;
}

.auth-logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.auth-title {
    font-size: var(--text-2xl);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.auth-footer a {
    font-weight: 500;
}

/* Role Selection Cards */
.role-selection {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.role-card {
    flex: 1;
    position: relative;
    cursor: pointer;
    border: 2px solid var(--border);
    border-radius: var(--radius-base);
    padding: 1.25rem;
    transition: all 0.3s ease;
    background: var(--background);
}

.role-card:hover {
    border-color: #22C55E;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.role-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.role-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.role-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: var(--background);
}

.role-check svg {
    width: 14px;
    height: 14px;
    color: transparent;
    transition: all 0.3s ease;
}

.role-card input[type="radio"]:checked ~ .role-card-content .role-check {
    background: #22C55E;
    border-color: #22C55E;
}

.role-card input[type="radio"]:checked ~ .role-card-content .role-check svg {
    color: white;
}

.role-card input[type="radio"]:checked ~ .role-card-content {
    color: var(--text-primary);
}

.role-card:has(input[type="radio"]:checked) {
    border-color: #22C55E;
    background: rgba(34, 197, 94, 0.03);
}

[data-theme="dark"] .role-card:has(input[type="radio"]:checked) {
    background: rgba(34, 197, 94, 0.08);
}

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

.role-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

.role-info span {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-featured {
        transform: none;
    }
    
    .testimonial-featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-featured {
        transform: none;
    }
    
    .pricing-featured:hover {
        transform: translateY(-5px);
    }
    
    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem;
    }
    
    .cta-stats {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .auth-card {
        padding: 1.5rem;
    }
}

/* ===========================================
   UTILITIES
   =========================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.hidden { display: none !important; }
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* ===========================================
   DASHBOARD
   =========================================== */

.dashboard {
    padding: calc(72px + 2rem) 0 2rem; /* Account for fixed header (72px) + 2rem padding */
    min-height: calc(100vh - 80px);
}

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

.dashboard-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.dashboard-subtitle {
    color: var(--text-muted);
    font-size: var(--text-base);
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.stat-card-link {
    text-decoration: none;
    cursor: pointer;
}

.stat-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.stat-card-highlight {
    border: 2px solid var(--primary);
    background: var(--bg-secondary);
    position: relative;
    flex-direction: column;
    align-items: flex-start;
}

.stat-card-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #7c3aed 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stat-action-link {
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-base);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.stat-action-link:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.stat-info {
    margin-top: 0.5rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    opacity: 0.9;
}

/* Old featured card styles - keep for backward compatibility but make subtle */
.stat-card-featured {
    border: 2px solid var(--primary);
    position: relative;
}

.stat-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stat-action {
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-base);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.stat-action:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Stat icons - appealing with subtle color accents */
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.stat-icon-primary {
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    color: #FFFFFF;
}

.stat-icon-primary::before {
    background: linear-gradient(135deg, rgba(199, 144, 129, 0.4) 0%, rgba(199, 144, 129, 0) 70%);
}

.stat-icon-secondary {
    background: linear-gradient(135deg, #3D3D3D 0%, #2A2A2A 100%);
    color: #FFFFFF;
}

.stat-icon-secondary::before {
    background: linear-gradient(135deg, rgba(139, 169, 169, 0.4) 0%, rgba(139, 169, 169, 0) 70%);
}

.stat-icon-success {
    background: linear-gradient(135deg, #2D4A3D 0%, #1A2D26 100%);
    color: #6EE7A0;
}

.stat-icon-success::before {
    background: linear-gradient(135deg, rgba(110, 231, 160, 0.3) 0%, rgba(110, 231, 160, 0) 70%);
}

.stat-icon-warning {
    background: linear-gradient(135deg, #4A3D2D 0%, #2D261A 100%);
    color: #F5C97A;
}

.stat-icon-warning::before {
    background: linear-gradient(135deg, rgba(245, 201, 122, 0.3) 0%, rgba(245, 201, 122, 0) 70%);
}

.stat-icon-danger {
    background: linear-gradient(135deg, #4A2D2D 0%, #2D1A1A 100%);
    color: #F59090;
}

.stat-icon-danger::before {
    background: linear-gradient(135deg, rgba(245, 144, 144, 0.3) 0%, rgba(245, 144, 144, 0) 70%);
}

.stat-icon-info {
    background: linear-gradient(135deg, #2D3D4A 0%, #1A262D 100%);
    color: #90C5F5;
}

.stat-icon-info::before {
    background: linear-gradient(135deg, rgba(144, 197, 245, 0.3) 0%, rgba(144, 197, 245, 0) 70%);
}

/* Colorful Stat Icons */
.stat-icon-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}

.stat-icon-purple svg {
    color: white;
}

.stat-icon-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.stat-icon-green svg {
    color: white;
}

.stat-icon-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.stat-icon-blue svg {
    color: white;
}

.stat-icon-amber {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.stat-icon-amber svg {
    color: white;
}

.stat-icon-pink {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.35);
}

.stat-icon-pink svg {
    color: white;
}

.stat-icon-red {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.stat-icon-red svg {
    color: white;
}

.stat-icon-teal {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.35);
}

.stat-icon-teal svg {
    color: white;
}

/* Clickable Stat Cards */
.stat-card-link {
    text-decoration: none;
    cursor: pointer;
}

.stat-card-link:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15);
}

.stat-card-active {
    border-color: var(--primary);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}

/* Filter Indicator */
.filter-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-base);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: var(--text-sm);
}

.filter-indicator strong {
    color: var(--primary);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Dashboard Sections */
.dashboard-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.dashboard-section h2 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.dashboard-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    text-align: left;
    max-width: none;
}

.dashboard-section .section-header h2 {
    margin-bottom: 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Charts Grid */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.chart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 50%, #EC4899 100%);
    opacity: 0.8;
}

.chart-card:nth-child(2)::before {
    background: linear-gradient(90deg, #EC4899 0%, #F59E0B 50%, #10B981 100%);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.chart-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.chart-header h3 svg {
    width: 20px;
    height: 20px;
    color: #8B5CF6;
}

/* Different icon colors for each chart */
.chart-card:nth-child(1) .chart-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
}
.chart-card:nth-child(1) .chart-header h3 svg {
    color: #3B82F6;
}

.chart-card:nth-child(2) .chart-header {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
}
.chart-card:nth-child(2) .chart-header h3 svg {
    color: #EC4899;
}

.chart-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.chart-body {
    padding: 1.5rem;
    min-height: 200px;
}

.chart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
    color: var(--text-muted);
}

.chart-empty svg {
    width: 56px;
    height: 56px;
    opacity: 0.5;
    margin-bottom: 0.75rem;
    color: #8B5CF6;
}

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

/* Bar Chart */
.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 160px;
    gap: 0.5rem;
}

.bar-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.bar-wrapper {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bar {
    width: 70%;
    max-width: 40px;
    background: linear-gradient(180deg, #8B5CF6 0%, #6D28D9 100%);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    position: relative;
    min-height: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.bar:hover {
    opacity: 0.9;
    transform: scaleX(1.1);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.bar-completed {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

/* Multiple bar colors for variety */
.bar-column:nth-child(1) .bar { background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%); box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3); }
.bar-column:nth-child(2) .bar { background: linear-gradient(180deg, #8B5CF6 0%, #6D28D9 100%); box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3); }
.bar-column:nth-child(3) .bar { background: linear-gradient(180deg, #EC4899 0%, #DB2777 100%); box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3); }
.bar-column:nth-child(4) .bar { background: linear-gradient(180deg, #F59E0B 0%, #D97706 100%); box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3); }
.bar-column:nth-child(5) .bar { background: linear-gradient(180deg, #10B981 0%, #059669 100%); box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3); }
.bar-column:nth-child(6) .bar { background: linear-gradient(180deg, #EF4444 0%, #DC2626 100%); box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3); }

.bar-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
}

.bar-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Colorful bar values matching bar colors */
.bar-column:nth-child(1) .bar-value { color: #3B82F6; }
.bar-column:nth-child(2) .bar-value { color: #8B5CF6; }
.bar-column:nth-child(3) .bar-value { color: #EC4899; }
.bar-column:nth-child(4) .bar-value { color: #F59E0B; }
.bar-column:nth-child(5) .bar-value { color: #10B981; }
.bar-column:nth-child(6) .bar-value { color: #EF4444; }

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Colorful legend colors */
.chart-legend .legend-item:nth-child(1) .legend-color {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%) !important;
}
.chart-legend .legend-item:nth-child(2) .legend-color {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
}

/* Donut Chart */
.donut-chart-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.donut-chart {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.donut-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2), 0 2px 8px rgba(236, 72, 153, 0.15);
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.donut-total {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.donut-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.donut-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.donut-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.donut-legend-item .legend-color {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.donut-legend-item .legend-text {
    flex: 1;
    color: var(--text-secondary);
}

.donut-legend-item .legend-count {
    font-weight: 600;
    color: var(--text-primary);
}

/* Scrollable Consultations Container */
.consultations-scroll-container {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
}

.consultations-scroll-container .consultation-list {
    padding: 0;
}

.consultations-scroll-container .consultation-list-item {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
}

.consultations-scroll-container .consultation-list-item:last-child {
    border-bottom: none;
}

.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    background: var(--bg-tertiary);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: -1px;
}

.scroll-hint svg {
    width: 16px;
    height: 16px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* Section Header with Icon */
.dashboard-section .section-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-section .section-header h2 svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

@media (max-width: 992px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .donut-chart-container {
        flex-direction: column;
        text-align: center;
    }
    
    .donut-legend {
        width: 100%;
    }
    
    .consultations-scroll-container {
        max-height: 300px;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

/* Empty state icons - appealing styling */
.empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.empty-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 144, 129, 0.35) 0%, rgba(199, 144, 129, 0) 65%);
}

.empty-icon svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.empty-state h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.quick-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-base);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.quick-action-card:hover {
    border-color: #E0E0E0;
    background: #FAFAFA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Quick action icons - appealing with color accents */
.quick-action-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-action-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 144, 129, 0.35) 0%, rgba(199, 144, 129, 0) 65%);
}

.quick-action-icon svg {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.quick-action-card:hover .quick-action-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Colorful hover states for quick action icons */
.quick-action-card:nth-child(1):hover .quick-action-icon {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.quick-action-card:nth-child(2):hover .quick-action-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.quick-action-card:nth-child(3):hover .quick-action-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.quick-action-card:nth-child(4):hover .quick-action-icon {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
}

.quick-action-card:nth-child(5):hover .quick-action-icon {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.quick-action-card:nth-child(6):hover .quick-action-icon {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

/* Different accent colors for quick actions */
.quick-action-card:nth-child(1) .quick-action-icon::before {
    background: linear-gradient(135deg, rgba(199, 144, 129, 0.4) 0%, rgba(199, 144, 129, 0) 70%);
}

.quick-action-card:nth-child(2) .quick-action-icon::before {
    background: linear-gradient(135deg, rgba(139, 169, 169, 0.4) 0%, rgba(139, 169, 169, 0) 70%);
}

.quick-action-card:nth-child(3) .quick-action-icon::before {
    background: linear-gradient(135deg, rgba(169, 154, 134, 0.4) 0%, rgba(169, 154, 134, 0) 70%);
}

.quick-action-card:nth-child(4) .quick-action-icon::before {
    background: linear-gradient(135deg, rgba(154, 139, 169, 0.4) 0%, rgba(154, 139, 169, 0) 70%);
}

.quick-action-card:nth-child(5) .quick-action-icon::before {
    background: linear-gradient(135deg, rgba(139, 154, 169, 0.4) 0%, rgba(139, 154, 169, 0) 70%);
}

.quick-action-card:nth-child(6) .quick-action-icon::before {
    background: linear-gradient(135deg, rgba(169, 139, 154, 0.4) 0%, rgba(169, 139, 154, 0) 70%);
}

.quick-action-card span {
    font-size: var(--text-sm);
    color: var(--text-primary);
    font-weight: 500;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
}

.status-available {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.status-busy {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-offline {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

/* Dashboard Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dashboard {
        padding: 1rem 0;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   HOW IT WORKS PAGE
   =========================================== */

.hero-small {
    padding: 6rem 0 2rem;
    min-height: auto;
    text-align: center;
}

.hero-small .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-small .hero-content {
    max-width: 700px;
    text-align: center;
}

.hero-small + .section {
    padding-top: 2rem;
}

.hero-small .hero-title {
    font-size: var(--text-3xl);
    margin-bottom: 0.5rem;
}

.hero-small .hero-subtitle {
    font-size: var(--text-lg);
}

/* Steps Detailed */
.steps-detailed {
    padding: 4rem 0;
}

.steps-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-detailed-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--transition-base);
}

.step-detailed-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
}

.step-icon-large {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Dark gradient */
    border-radius: 16px; /* Rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-icon-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(196, 164, 132, 0.2) 0%, rgba(196, 164, 132, 0) 70%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.step-icon-large:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.step-icon-large:hover::before {
    opacity: 1;
}

.step-icon-large svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF; /* White icons */
    z-index: 1;
}

.step-detailed-card h2 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-tips {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-tips li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.step-tips li svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Help Grid */
.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.help-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
}

.help-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.help-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Dark gradient */
    border-radius: 14px; /* Rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.help-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(108, 168, 156, 0.2) 0%, rgba(108, 168, 156, 0) 70%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.help-icon:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.help-icon:hover::before {
    opacity: 1;
}

.help-icon svg {
    width: 28px;
    height: 28px;
    color: #FFFFFF; /* White icons */
    z-index: 1;
}

.help-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.help-card p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
}

/* Feature icons - appealing with color accents */
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 144, 129, 0.35) 0%, rgba(199, 144, 129, 0) 65%);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.feature-card:nth-child(1) .feature-icon::before {
    background: linear-gradient(135deg, rgba(199, 144, 129, 0.4) 0%, rgba(199, 144, 129, 0) 70%);
}

.feature-card:nth-child(2) .feature-icon::before {
    background: linear-gradient(135deg, rgba(139, 169, 169, 0.4) 0%, rgba(139, 169, 169, 0) 70%);
}

.feature-card:nth-child(3) .feature-icon::before {
    background: linear-gradient(135deg, rgba(169, 154, 134, 0.4) 0%, rgba(169, 154, 134, 0) 70%);
}

.feature-card:nth-child(4) .feature-icon::before {
    background: linear-gradient(135deg, rgba(154, 139, 169, 0.4) 0%, rgba(154, 139, 169, 0) 70%);
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    padding: 4rem 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: white;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* How It Works Responsive */
@media (max-width: 1024px) {
    .steps-detailed-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

/* ===========================================
   FOR STYLISTS PAGE
   =========================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Dark gradient */
    border-radius: 50%; /* Circular */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(196, 164, 132, 0.2) 0%, rgba(196, 164, 132, 0) 70%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.benefit-icon:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.benefit-icon:hover::before {
    opacity: 1;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF; /* White icons */
    z-index: 1;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Stylist Steps */
.stylist-steps {
    max-width: 700px;
    margin: 0 auto;
}

.stylist-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.stylist-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.stylist-step .step-number {
    position: static;
    flex-shrink: 0;
}

.stylist-step .step-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stylist-step .step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Requirements Section */
.requirements-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.requirements-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.requirements-content > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li svg {
    width: 20px;
    height: 20px;
    color: #FFFFFF; /* White icon */
    flex-shrink: 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    padding: 6px;
    border-radius: 50%;
    box-sizing: content-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.requirements-list li span {
    color: var(--text-secondary);
}

.requirements-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Dark gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(196, 164, 132, 0.15) 0%, rgba(196, 164, 132, 0) 70%);
    opacity: 0.8;
}

.image-placeholder svg {
    width: 120px;
    height: 120px;
    color: #FFFFFF; /* White icon */
    z-index: 1;
}

/* For Stylists Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .requirements-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .requirements-image {
        order: -1;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .image-placeholder svg {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stylist-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===========================================
   PRICING PAGE
   =========================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

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

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.pricing-description {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--text-primary);
    font-weight: 700;
}

.price-period {
    display: block;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

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

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled svg {
    color: var(--text-muted);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* Pricing Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   CONTACT PAGE
   =========================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Dark gradient */
    border-radius: 10px; /* Rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(196, 164, 132, 0.2) 0%, rgba(196, 164, 132, 0) 70%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.contact-icon:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.contact-icon:hover::before {
    opacity: 1;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: #FFFFFF; /* White icon */
    z-index: 1;
}

.contact-details h4 {
    font-size: var(--text-sm);
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-base);
    transition: all var(--transition-base);
}

.social-link-large:hover {
    background: var(--primary-light);
    color: #FFFFFF;
}

.social-link-large svg {
    width: 20px;
    height: 20px;
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        flex-direction: row;
    }
    
    .contact-info-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
    }
}

/* ===========================================
   CONSULTATION PAGES
   =========================================== */

/* Consultation Form */
.consultation-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.form-section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--text-light);
    font-weight: 600;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.form-section-header h2 {
    font-size: var(--text-xl);
    margin-bottom: 0.25rem;
}

.form-section-header p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.category-card {
    cursor: pointer;
    position: relative;
}

.category-card input {
    display: none;
}

.category-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    min-height: 120px;
}

/* Green tick indicator when selected */
.category-content::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #22C55E;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}

.category-card input:checked + .category-content::after {
    opacity: 1;
    transform: scale(1);
}

.category-card input:checked + .category-content {
    border-color: #22C55E;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
}

.category-card:hover .category-content {
    border-color: var(--border-focus);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

/* Category-specific colors */
/* Colour Correction - Vibrant purple/magenta */
.category-card:nth-child(1) .category-icon {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

/* Damage Repair - Warm coral/red */
.category-card:nth-child(2) .category-icon {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(248, 113, 113, 0.3);
}

/* Cutting Issues - Cool blue */
.category-card:nth-child(3) .category-icon {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

/* Styling Help - Rose gold/pink */
.category-card:nth-child(4) .category-icon {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

/* Product Advice - Teal/green */
.category-card:nth-child(5) .category-icon {
    background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.3);
}

/* Other - Amber/orange */
.category-card:nth-child(6) .category-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card input:checked + .category-content .category-icon {
    transform: scale(1.1);
}

.category-icon svg {
    width: 28px;
    height: 28px;
}

.category-label {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.category-card:hover .category-label {
    color: var(--primary);
}

.category-card input:checked + .category-content .category-label {
    color: #16a34a;
    font-weight: 700;
}

/* Upload Area */
.upload-area {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.upload-area:hover,
.upload-area.drag-over {
    border-color: var(--primary);
    background: var(--primary);
}

.upload-area:hover .upload-content,
.upload-area:hover .upload-content h3,
.upload-area:hover .upload-content p,
.upload-area:hover .upload-content small,
.upload-area.drag-over .upload-content,
.upload-area.drag-over .upload-content h3,
.upload-area.drag-over .upload-content p,
.upload-area.drag-over .upload-content small {
    color: white;
}

.upload-area:hover .upload-icon svg,
.upload-area.drag-over .upload-icon svg {
    color: white;
}

.upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    color: var(--primary);
}

.upload-icon svg {
    width: 32px;
    height: 32px;
}

.upload-area:hover .upload-icon,
.upload-area.drag-over .upload-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.upload-content h3 {
    margin-bottom: 0.5rem;
}

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

.upload-content small {
    color: var(--text-muted);
    font-size: var(--text-xs);
}

.upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.preview-item {
    width: 100px;
    text-align: center;
}

.preview-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-base);
    margin-bottom: 0.5rem;
}

.preview-name {
    font-size: var(--text-xs);
    color: var(--text-muted);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.photo-tips {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-base);
}

.photo-tips h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.photo-tips h4 svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.photo-tips ul {
    list-style: none;
    padding-left: 1.5rem;
}

.photo-tips li {
    position: relative;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.photo-tips li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--success);
}

/* Urgency Options */
.urgency-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.urgency-card {
    cursor: pointer;
    position: relative;
}

.urgency-card input {
    display: none;
}

.urgency-content {
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

/* Green tick indicator when selected */
.urgency-content::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #22C55E;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

.urgency-card input:checked + .urgency-content::after {
    opacity: 1;
    transform: scale(1);
}

.urgency-card input:checked + .urgency-content {
    border-color: #22C55E;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
}

.urgency-card:hover .urgency-content {
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Standard card styling */
.urgency-card:first-child .urgency-content {
    border-left: 4px solid #3b82f6;
}

.urgency-card:first-child .urgency-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

/* Express card styling */
.urgency-card.urgency-express .urgency-content,
.urgency-card:last-child .urgency-content {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.urgency-card.urgency-express .urgency-content::before,
.urgency-card:last-child .urgency-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.urgency-card.urgency-express input:checked + .urgency-content,
.urgency-card:last-child input:checked + .urgency-content {
    border-color: #22C55E;
    border-left-color: #22C55E;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.urgency-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.urgency-name {
    font-weight: 600;
    font-size: var(--text-lg);
    color: #1e293b;
}

.urgency-price {
    margin-left: auto;
    font-weight: 700;
    font-size: var(--text-xl);
    color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.urgency-card.urgency-express .urgency-price,
.urgency-card:last-child .urgency-price {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.urgency-time {
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.25rem;
}

.urgency-description {
    font-size: var(--text-sm);
    color: #64748b;
}

/* Form Summary */
.form-summary {
    background: var(--primary);
    color: var(--text-light);
}

.summary-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.summary-content h3 {
    font-size: var(--text-2xl);
    margin-bottom: 0.5rem;
}

.summary-content p {
    opacity: 0.9;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: var(--text-lg);
}

.price-amount {
    font-size: var(--text-3xl);
    font-weight: 700;
}

.form-summary .btn {
    background: var(--bg-secondary);
    color: var(--primary);
    border: none;
}

.form-summary .btn:hover {
    background: var(--text-light);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: var(--text-sm);
    opacity: 0.9;
}

.form-note svg {
    width: 16px;
    height: 16px;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Consultation List */
.consultation-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.consultation-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px var(--shadow);
}

.consultation-list-item:hover {
    box-shadow: 0 4px 16px var(--shadow-hover);
    transform: translateY(-2px);
}

.consultation-list-content {
    flex: 1;
}

.consultation-list-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.consultation-list-category {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.consultation-list-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.consultation-list-excerpt {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.consultation-list-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.consultation-list-date,
.consultation-list-price,
.consultation-list-earnings {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.consultation-list-date svg,
.consultation-list-price svg,
.consultation-list-earnings svg {
    width: 14px;
    height: 14px;
}

.consultation-list-arrow {
    color: var(--text-muted);
}

.consultation-list-arrow svg {
    width: 20px;
    height: 20px;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge svg {
    width: 12px;
    height: 12px;
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

.badge-info {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.badge-primary {
    background: rgba(139, 92, 246, 0.15);
    color: #7c3aed;
}

.badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.badge-secondary {
    background: rgba(107, 114, 128, 0.15);
    color: #6b7280;
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.badge-express {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #fff;
    font-weight: 600;
}

.badge-express-sm {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #fff;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
}

.badge-express-sm svg {
    width: 10px;
    height: 10px;
}

/* Consultation Detail Page */
.page-back {
    margin-bottom: 1.5rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.btn-back:hover {
    color: var(--primary);
}

.btn-back svg {
    width: 16px;
    height: 16px;
}

.consultation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.consultation-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.consultation-title {
    font-size: var(--text-2xl);
    margin-bottom: 0.5rem;
}

.consultation-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.consultation-date svg {
    width: 14px;
    height: 14px;
}

.consultation-actions {
    text-align: right;
}

.action-hint {
    margin-top: 0.5rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

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

/* Hide PWA details toggle on desktop */
.pwa-details-toggle {
    display: none;
}

.consultation-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.consultation-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.consultation-card h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-lg);
    margin-bottom: 1rem;
}

.consultation-card h2 svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.consultation-description {
    color: var(--text-secondary);
    line-height: 1.7;
    white-space: pre-wrap;
    text-align: left;
}

.consultation-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.consultation-image {
    display: block;
    border-radius: var(--radius-base);
    overflow: hidden;
    aspect-ratio: 1;
}

.consultation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.consultation-image:hover img {
    transform: scale(1.05);
}

/* Response Placeholder */
.response-placeholder {
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-base);
    text-align: center;
}

.response-placeholder p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.status-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    border: 2px solid var(--border);
}

.timeline-item.completed .timeline-marker {
    background: #22C55E;
    border-color: #22C55E;
}

.timeline-item.active .timeline-marker {
    background: #3B82F6;
    border-color: #3B82F6;
}

.timeline-item.pending .timeline-marker {
    background: #F59E0B;
    border-color: #F59E0B;
}

.timeline-item.cancelled .timeline-marker {
    background: #EF4444;
    border-color: #EF4444;
}

.timeline-title {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
}

.timeline-date {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Sidebar */
.consultation-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.sidebar-card h3 {
    font-size: var(--text-base);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

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

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
}

.user-details {
    display: flex;
    flex-direction: column;
}

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

.user-since,
.user-role {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.waiting-stylist {
    text-align: center;
    padding: 1rem;
}

.waiting-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    color: var(--text-muted);
}

.waiting-icon svg {
    width: 24px;
    height: 24px;
}

.waiting-stylist p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.pricing-row.total {
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--text-primary);
}

.help-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Pending Requests */
.header-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pending-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    font-weight: 500;
    color: var(--text-secondary);
}

.pending-count svg {
    width: 16px;
    height: 16px;
}

.pending-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pending-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 2px 8px var(--shadow);
}

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

.pending-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pending-category {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.pending-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.pending-time svg {
    width: 14px;
    height: 14px;
}

.pending-title {
    font-size: var(--text-xl);
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.pending-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.pending-images {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pending-image-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-base);
    overflow: hidden;
}

.pending-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pending-image-more {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-base);
    font-weight: 600;
    color: var(--text-muted);
}

.pending-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.pending-footer-top {
    display: flex;
    justify-content: flex-start;
}

.pending-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pending-client {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.client-avatar-sm {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-xs);
}

.client-name {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.pending-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pending-payout {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--success);
}

.pending-payout i {
    width: 18px;
    height: 18px;
}

/* Button Badge */
.btn-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    margin-left: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

/* Stats Grid Variations */
.stats-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .stats-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Button Variants */
.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #16a34a;
}

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

.btn-danger:hover {
    background: var(--error);
    color: white;
}

/* Empty State Small */
.empty-state-small {
    padding: 2rem;
}

.empty-state-small .empty-icon {
    width: 48px;
    height: 48px;
}

.empty-state-small .empty-icon svg {
    width: 24px;
    height: 24px;
}

.empty-state-small h3 {
    font-size: var(--text-base);
}

.empty-state-small p {
    font-size: var(--text-sm);
}

/* Consultation Responsive */
@media (max-width: 1024px) {
    .consultation-layout {
        grid-template-columns: 1fr;
    }
    
    .consultation-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .consultation-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .consultation-actions {
        text-align: left;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .form-section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   MESSAGING SYSTEM
   =========================================== */

.messaging-card {
    display: flex;
    flex-direction: column;
    max-height: 600px;
}

.messaging-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

.messaging-header h2 {
    margin: 0;
}

.messaging-header .status-actions {
    margin: 0;
}

/* Messages Container */
.messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    min-height: 300px;
    max-height: 400px;
    scroll-behavior: smooth;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
}

.messages-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--text-muted);
    gap: 1rem;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.messages-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--text-muted);
    text-align: center;
}

.messages-empty .empty-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.messages-empty .empty-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 169, 169, 0.35) 0%, rgba(139, 169, 169, 0) 65%);
}

.messages-empty .empty-icon svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.messages-pending {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    color: var(--text-muted);
}

.messages-pending .pending-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.messages-pending .pending-icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
}

/* Messages List */
.messages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 0.5rem;
}

/* Individual Message */
.message {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
    margin-bottom: 1rem;
}

/* Add extra spacing when switching between senders */
.message-own + .message-other,
.message-other + .message-own {
    margin-top: 1.5rem;
}

.message-own {
    flex-direction: row-reverse;
    margin-left: auto;
}

.message-other {
    margin-right: auto;
}

.message-avatar {
    flex-shrink: 0;
    position: relative;
    width: 40px;
    height: 40px;
}

.avatar-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Stylist avatar - different color */
.avatar-initials.avatar-stylist {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #6d28d9;
}

/* Online status indicator - attached to avatar circle (overlapping the edge) */
.message-avatar.status-online::after,
.message-avatar.status-away::after,
.message-avatar.status-offline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2.5px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Online status - green */
.message-avatar.status-online::after {
    background: #22c55e;
}

/* Away status - amber */
.message-avatar.status-away::after {
    background: #f59e0b;
}

/* Offline status - gray */
.message-avatar.status-offline::after {
    background: #94a3b8;
}

.avatar-initials.avatar-stylist {
    background: var(--primary);
    color: white;
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.message-sender {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-primary);
}

.sender-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Client badge - different color */
.sender-badge.client-badge {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.message-time {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}

.message-sender {
    font-weight: 600;
    font-size: 0.8rem;
    color: #334155;
}

.message-own .message-sender {
    color: #64748b;
}

.message-body {
    background: white;
    padding: 0.875rem 1rem;
    border-radius: 18px;
    border-top-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    color: #1e293b;
    line-height: 1.5;
}

/* Own messages - modern blue gradient like iMessage */
.message-own .message-body {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-top-left-radius: 18px;
    border-top-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

/* Other's messages - clean light style */
.message-other .message-body {
    background: white;
    border: 1px solid #e2e8f0;
}

.message-body p {
    margin: 0;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.message-attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.message-attachment {
    display: block;
    max-width: 200px;
    border-radius: var(--radius-base);
    overflow: hidden;
}

.message-attachment img {
    width: 100%;
    height: auto;
    display: block;
}

/* Message Input */
.message-input-container {
    border-top: 1px solid #e2e8f0;
    padding: 1rem;
    margin-top: auto;
    background: #f8fafc;
    border-radius: 0 0 12px 12px;
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message-input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    background: white;
    border-radius: 24px;
    padding: 0.5rem 0.75rem;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.message-input-wrapper:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.message-input {
    flex: 1;
    border: none;
    background: transparent;
    resize: none;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1e293b;
    padding: 0.5rem;
    min-height: 40px;
    max-height: 150px;
    outline: none;
}

.message-input::placeholder {
    color: #94a3b8;
}

.message-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.attachment-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
    background: transparent;
}

.attachment-btn:hover {
    background: #f1f5f9;
    color: #3b82f6;
}

.attachment-btn svg {
    width: 20px;
    height: 20px;
}

.send-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.send-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.send-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.send-btn svg {
    width: 18px;
    height: 18px;
}

/* Attachment Preview */
.attachment-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.attachment-item {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-base);
    overflow: hidden;
}

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

.remove-attachment {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-attachment svg {
    width: 12px;
    height: 12px;
}

/* Message Closed State */
.message-closed {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-base);
    color: var(--text-muted);
    gap: 0.5rem;
}

.message-closed svg {
    width: 16px;
    height: 16px;
}

/* Messaging Responsive */
@media (max-width: 768px) {
    .messaging-card {
        max-height: none;
    }
    
    .messages-container {
        max-height: 350px;
    }
    
    .message {
        max-width: 95%;
    }
    
    .messaging-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* ===========================================
   PAYMENT SYSTEM
   =========================================== */

.payment-page {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

.payment-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Order Summary */
.order-summary .card-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: var(--text-xl);
}

.order-summary .card-header h2 svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.order-item {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.order-item-details h3 {
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
}

.order-category {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.order-description {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.order-item-price .price {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
}

.order-divider {
    height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
}

.order-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.order-line.order-total {
    padding-top: 1rem;
    border-top: 2px solid var(--border);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
}

.order-line .total-price {
    font-size: var(--text-xl);
    color: var(--primary);
}

/* What's Included */
.whats-included .card-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: var(--text-base);
}

.whats-included .card-header h3 svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.included-list li svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

/* Payment Form Container */
.payment-form-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.payment-card .card-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: var(--text-xl);
}

.payment-card .card-header h2 svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Secure Badge */
.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--success-light, rgba(34, 197, 94, 0.1));
    border-radius: var(--radius-base);
    color: var(--success);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.secure-badge svg {
    width: 18px;
    height: 18px;
}

/* Payment Methods Icons */
.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-method-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-base);
}

.payment-method-icons img {
    height: 24px;
    opacity: 0.7;
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--text-lg);
}

#pay-button svg {
    width: 20px;
    height: 20px;
}

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

/* Payment Error */
.payment-error {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--error-light, rgba(239, 68, 68, 0.1));
    border-radius: var(--radius-base);
    color: var(--error);
    font-size: var(--text-sm);
    text-align: center;
}

/* Demo Payment */
.demo-payment {
    text-align: center;
}

.demo-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--warning-light, rgba(245, 158, 11, 0.1));
    border-radius: var(--radius-base);
    margin-bottom: 1.5rem;
    text-align: left;
}

.demo-notice svg {
    width: 24px;
    height: 24px;
    color: var(--warning);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.demo-notice strong {
    display: block;
    color: var(--warning);
    margin-bottom: 0.25rem;
}

.demo-notice p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-muted);
    font-size: var(--text-xs);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success-light, rgba(34, 197, 94, 0.1));
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 24px;
    height: 24px;
    color: var(--success);
}

.guarantee-content h4 {
    margin: 0 0 0.25rem;
    font-size: var(--text-base);
}

.guarantee-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* Payment History */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tbody tr:hover {
    background: var(--bg-tertiary);
}

.date-text {
    display: block;
    font-weight: 500;
}

.time-text {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.payment-description {
    color: var(--text-primary);
    text-decoration: none;
}

.payment-description:hover {
    color: var(--primary);
}

.payment-type {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
}

.payment-type svg {
    width: 16px;
    height: 16px;
}

.payment-type-payment {
    color: var(--primary);
}

.payment-type-refund {
    color: var(--success);
}

.payment-type-payout {
    color: var(--accent);
}

.payment-amount {
    font-weight: 600;
    font-size: var(--text-base);
}

/* Help Card */
.help-card {
    margin-top: 2rem;
}

.help-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.checkout-help .help-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.checkout-help .help-icon svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.help-text {
    flex: 1;
}

.help-text h4 {
    margin: 0 0 0.25rem;
}

.help-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* Payment Page Responsive */
@media (max-width: 1024px) {
    .payment-page {
        grid-template-columns: 1fr;
    }
    
    .payment-form-container {
        position: static;
    }
}

@media (max-width: 768px) {
    .order-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .order-item-price {
        text-align: left;
    }
    
    .trust-badges {
        flex-wrap: wrap;
    }
    
    .help-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .data-table th,
    .data-table td {
        padding: 0.75rem 0.5rem;
        font-size: var(--text-sm);
    }
}

/* Payment Required Banner */
.payment-required-banner {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.payment-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.payment-banner-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.payment-banner-icon svg {
    width: 32px;
    height: 32px;
}

.payment-banner-text {
    flex: 1;
}

.payment-banner-text h3 {
    margin: 0 0 0.5rem;
    font-size: var(--text-xl);
}

.payment-banner-text p {
    margin: 0;
    opacity: 0.9;
}

.payment-banner-content .btn {
    background: white;
    color: var(--primary);
    flex-shrink: 0;
}

.payment-banner-content .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .payment-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-banner-content .btn {
        width: 100%;
    }
}

/* Payment Status in Sidebar */
.payment-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: var(--radius-base);
    font-weight: 500;
    font-size: var(--text-sm);
    margin-top: 1rem;
}

.payment-status svg {
    width: 18px;
    height: 18px;
}

.payment-status.unpaid {
    background: var(--warning-light, rgba(245, 158, 11, 0.1));
    color: var(--warning);
}

.payment-status.paid {
    background: var(--success-light, rgba(34, 197, 94, 0.1));
    color: var(--success);
}

.payment-status.refunded {
    background: var(--info-light, rgba(59, 130, 246, 0.1));
    color: var(--info, #3b82f6);
}

/* ===========================================
   EARNINGS PAGE
   =========================================== */

.stats-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.earnings-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .earnings-layout {
        grid-template-columns: 1fr;
    }
}

/* Monthly Chart */
.monthly-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-bar {
    display: grid;
    grid-template-columns: 80px 1fr 80px 60px;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.bar-container {
    height: 24px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius-full);
    min-width: 4px;
    transition: width 0.5s ease;
}

.bar-value {
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

.bar-count {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .chart-bar {
        grid-template-columns: 60px 1fr 70px;
    }
    
    .bar-count {
        display: none;
    }
}

/* Payout Card */
.payout-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payout-balance {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary);
    border-radius: var(--radius-lg);
    color: white;
}

.balance-label {
    display: block;
    font-size: var(--text-sm);
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.balance-amount {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
}

.payout-action {
    text-align: center;
}

.payout-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.payout-info {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.payout-minimum {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-base);
}

.payout-minimum svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.payout-minimum p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.payout-details {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.payout-details h4 {
    font-size: var(--text-sm);
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.payout-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payout-details li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.payout-details li svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* Earnings Amount */
.earnings-amount {
    font-weight: 600;
    color: var(--success);
}

.consultation-link {
    color: var(--text-primary);
    text-decoration: none;
}

.consultation-link:hover {
    color: var(--primary);
}

/* ===========================================
   EARNINGS DASHBOARD - Enhanced Visual Design
   =========================================== */

.earnings-dashboard {
    padding-top: 2rem;
}

/* Earnings Header Banner */
.earnings-dashboard .earnings-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #a5616c) 50%, #8B5A6A 100%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    color: white;
    margin-top: 2rem;
    font-size: var(--text-base);
    opacity: 1;
}

.earnings-header-total {
    text-align: right;
}

/* Stats Grid with New Class Names */
.earnings-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.earnings-stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.earnings-stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.earnings-stat-pending::before { background: linear-gradient(180deg, #10B981 0%, #059669 100%); }
.earnings-stat-paid::before { background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%); }
.earnings-stat-jobs::before { background: linear-gradient(180deg, #8B5CF6 0%, #7C3AED 100%); }
.earnings-stat-avg::before { background: linear-gradient(180deg, #F59E0B 0%, #D97706 100%); }

.earnings-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.earnings-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.earnings-stat-icon svg {
    width: 24px;
    height: 24px;
}

.earnings-stat-pending .earnings-stat-icon { background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%); color: #10B981; }
.earnings-stat-paid .earnings-stat-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%); color: #3B82F6; }
.earnings-stat-jobs .earnings-stat-icon { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%); color: #8B5CF6; }
.earnings-stat-avg .earnings-stat-icon { background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%); color: #F59E0B; }

.earnings-stat-content {
    flex: 1;
    min-width: 0;
}

.earnings-stat-value {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
    line-height: 1.2;
}

.earnings-stat-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.earnings-stat-indicator {
    opacity: 0.3;
}

.earnings-stat-indicator svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

/* Main Grid Layout */
.earnings-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Chart Card */
.earnings-chart-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.earnings-chart-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.earnings-chart-card .card-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-lg);
    margin: 0;
}

.earnings-chart-card .card-header h2 svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.chart-period {
    font-size: var(--text-sm);
    color: var(--text-muted);
    background: var(--bg-tertiary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.earnings-chart-card .card-body {
    padding: 1.5rem;
}

/* Empty State for Chart */
.empty-state-chart {
    padding: 3rem 2rem;
    text-align: center;
}

.empty-state-chart .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-chart .empty-icon svg {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
}

/* Revenue Chart Container */
.revenue-chart {
    display: flex;
    gap: 1rem;
    min-height: 280px;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0.5rem 40px 0;
    width: 60px;
    text-align: right;
}

.chart-y-axis span {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-family: var(--font-mono, monospace);
}

.chart-bars-container {
    flex: 1;
    position: relative;
}

.chart-grid-lines {
    position: absolute;
    inset: 0;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.grid-line {
    height: 1px;
    background: var(--border);
    opacity: 0.5;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 40px;
    position: relative;
    gap: 8px;
}

.chart-bar-wrapper {
    flex: 1;
    max-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

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

.chart-bar-inner {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
}

.chart-bar-fill {
    width: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark, #a5616c) 100%);
    border-radius: var(--radius-base) var(--radius-base) 0 0;
    min-height: 4px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.chart-bar-fill:hover {
    filter: brightness(1.1);
    transform: scaleX(1.05);
}

.chart-bar-value {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    background: var(--bg-secondary);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.chart-bar-fill:hover .chart-bar-value {
    opacity: 1;
}

.chart-bar-label {
    text-align: center;
    padding-top: 8px;
    border-top: 2px solid var(--border);
    width: 100%;
}

.chart-bar-label .month {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.chart-bar-label .jobs {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Monthly Summary Cards (inside chart) */
.earnings-chart-card .monthly-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.summary-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.summary-this-month {
    border-left: 3px solid var(--primary);
}

.summary-last-month {
    border-left: 3px solid var(--text-muted);
}

.summary-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-base);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
}

.summary-icon svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.summary-this-month .summary-icon {
    background: rgba(183, 110, 121, 0.1);
}

.summary-this-month .summary-icon svg {
    color: var(--primary);
}

.summary-content {
    flex: 1;
}

.summary-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-value {
    display: block;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.summary-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--text-sm);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-base);
}

.summary-change.positive {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

.summary-change.negative {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
}

.summary-change svg {
    width: 14px;
    height: 14px;
}

/* Payout Card */
.earnings-payout-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.earnings-payout-card .payout-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.earnings-payout-card .payout-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #a5616c) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.earnings-payout-card .payout-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.earnings-payout-card h2 {
    margin: 0;
    font-size: var(--text-lg);
}

.payout-balance-display {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #a5616c) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    color: white;
    margin-bottom: 1rem;
}

.payout-balance-display .balance-label {
    display: block;
    font-size: var(--text-sm);
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.payout-balance-display .balance-amount {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.balance-progress {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.progress-text {
    font-size: var(--text-xs);
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.progress-text svg {
    width: 14px;
    height: 14px;
}

.btn-payout {
    width: 100%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-payout:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.payout-coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0.75rem 0 0;
    text-align: center;
}

.payout-coming-soon svg {
    width: 16px;
    height: 16px;
}

.payout-locked {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.payout-locked svg {
    width: 16px;
    height: 16px;
}

.earnings-payout-card .payout-info-list {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.earnings-payout-card .payout-info-list h4 {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.earnings-payout-card .payout-info-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.earnings-payout-card .payout-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.info-icon {
    width: 28px;
    height: 28px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-base);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* Recent Jobs Card */
.earnings-recent-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.earnings-recent-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.earnings-recent-card .card-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-lg);
    margin: 0;
}

.earnings-recent-card .card-header h2 svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.earnings-recent-card .card-body {
    padding: 1rem;
}

/* Recent Jobs List */
.recent-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.job-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s ease;
}

.job-row:hover {
    border-color: var(--primary);
    background: var(--bg-tertiary);
    transform: translateX(4px);
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
    flex: 1;
}

.job-title-text {
    font-weight: 500;
    color: var(--text-primary);
    font-size: var(--text-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-meta-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-sm);
}

.category-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
}

.category-tag.colour_correction {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
}

.category-tag.damage_repair {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.category-tag.cutting_issues,
.category-tag.cutting {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.category-tag.product_advice,
.category-tag.product {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.category-tag.styling_advice,
.category-tag.styling {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.category-tag.general,
.category-tag.other {
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.job-date {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.job-earning {
    font-size: var(--text-lg);
    font-weight: 600;
    color: #10B981;
    flex-shrink: 0;
    margin-left: 1rem;
}

/* Responsive for Earnings Dashboard */
@media (max-width: 1200px) {
    .earnings-main-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 1024px) {
    .earnings-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .earnings-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .earnings-dashboard .earnings-header {
        padding: 1.5rem;
    }
    
    .earnings-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .earnings-header-total {
        text-align: center;
        width: 100%;
    }
    
    .earnings-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .earnings-chart-card .monthly-summary {
        grid-template-columns: 1fr;
    }
    
    .chart-bars {
        min-height: 200px;
    }
    
    .chart-bar-wrapper {
        max-width: 60px;
    }
}

@media (max-width: 480px) {
    .total-amount {
        font-size: var(--text-2xl);
    }
    
    .earnings-stat-value {
        font-size: var(--text-xl);
    }
    
    .chart-bar-wrapper {
        max-width: 40px;
    }
    
    .chart-bar-label .month {
        font-size: var(--text-xs);
    }
    
    .chart-bar-label .jobs {
        display: none;
    }
    
    .job-row {
        flex-wrap: wrap;
    }
    
    .job-earning {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: right;
    }
}

/* ===========================================
   ADMIN SETTINGS
   =========================================== */

.settings-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.settings-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    align-self: start;
}

.settings-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-base);
    transition: all 0.2s ease;
}

.settings-nav-item:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.settings-nav-item.active {
    background: var(--primary);
    color: #ffffff !important;
    font-weight: 500;
}

.settings-nav-item.active svg {
    color: #ffffff;
}

.settings-nav-item svg {
    width: 20px;
    height: 20px;
}

.settings-sidebar {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.settings-main {
    min-width: 0;
}

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

.settings-page-header h1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.settings-page-header h1 svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.settings-page-header p {
    color: var(--text-secondary);
    margin: 0.25rem 0 0;
}

/* Notification Options */
.notification-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.notification-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.notification-option:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notification-option:first-child {
    padding-top: 0;
}

.notification-option:hover {
    background-color: var(--bg-secondary);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

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

.option-info strong {
    font-weight: 600;
    color: var(--text-primary);
}

.option-info span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.push-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.push-info svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper .form-control {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: var(--primary);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

/* Tips List */
.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.tips-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
}

.settings-content {
    min-width: 0;
}

.settings-panel {
    display: none;
}

.settings-panel.active {
    display: block;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.form-hint {
    display: block;
    margin-top: 0.375rem;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.font-mono {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: var(--text-sm);
}

/* Input with Toggle */
.input-with-toggle {
    position: relative;
    display: flex;
}

.input-with-toggle .form-control {
    padding-right: 3rem;
}

.btn-toggle-password {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.btn-toggle-password:hover {
    color: var(--text-primary);
}

.btn-toggle-password svg {
    width: 18px;
    height: 18px;
}

/* Info Box */
.info-box {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-base);
    margin-bottom: 1.5rem;
}

.info-box-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.info-box-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.info-box-content h4 {
    margin: 0 0 0.5rem;
    font-size: var(--text-base);
}

.info-box-content p {
    margin: 0 0 0.5rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.info-box-content ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.info-box-content a {
    color: var(--primary);
}

/* Test Result */
.test-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.test-result svg {
    width: 20px;
    height: 20px;
}

.test-success {
    background: var(--success-light, rgba(34, 197, 94, 0.1));
    color: var(--success);
}

.test-error {
    background: var(--error-light, rgba(239, 68, 68, 0.1));
    color: var(--error);
}

/* Webhook Info */
.webhook-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.webhook-info h4 {
    margin: 0 0 0.5rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.webhook-info > p {
    margin: 0 0 0.75rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.webhook-url {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-base);
    margin-bottom: 0.75rem;
}

.webhook-url code {
    flex: 1;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: var(--text-sm);
    word-break: break-all;
}

.btn-copy {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.btn-copy:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

.btn-copy svg {
    width: 16px;
    height: 16px;
}

.webhook-info small {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.webhook-info small code {
    background: var(--bg-tertiary);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
}

/* Price Preview */
.price-preview {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
}

.price-preview h4 {
    margin: 0 0 1rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.price-preview-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preview-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.preview-value {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
}

/* Stat Card Small */
.stat-card-small {
    padding: 1rem;
    text-align: center;
}

.stat-card-small .stat-value {
    font-size: var(--text-lg);
}

.stat-card-small .stat-label {
    font-size: var(--text-xs);
}

/* Card Header with Badge */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.card-header .badge svg {
    width: 14px;
    height: 14px;
}

/* Settings Responsive */
@media (max-width: 1024px) {
    .settings-layout {
        grid-template-columns: 1fr;
    }
    
    .settings-nav {
        flex-direction: row;
        overflow-x: auto;
        position: static;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--border);
    }
    
    .settings-nav-item {
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .price-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .info-box {
        flex-direction: column;
    }
}

/* ===========================================
   STYLIST PROFILE PAGE
   =========================================== */

.profile-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Profile Sidebar */
.profile-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.profile-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* Stylist Profile Page Header */
.profile-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-page-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.profile-page-header h1 svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.profile-page-header p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.profile-page-header .page-header-actions {
    display: flex;
    gap: 0.75rem;
}

/* Profile Avatar Section */
.profile-avatar-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Subtle pattern overlay for texture */
.profile-avatar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.02) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Avatar Circle - Professional Black & White Design */
.avatar-circle {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(145deg, #3a3a3a 0%, #1a1a1a 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 1rem;
    overflow: visible;
    transition: all 0.25s ease;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.05);
}

.avatar-circle:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.03);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.5),
        inset 0 2px 15px rgba(255, 255, 255, 0.08);
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.3s ease;
}

.avatar-circle:hover img {
    filter: grayscale(80%) contrast(1.05);
}

/* Default user icon when no photo - Professional Person Icon */
.avatar-circle .avatar-default-icon {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.7);
    stroke-width: 1.2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Person silhouette SVG icon */
.avatar-circle .avatar-person-icon {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    opacity: 0.4;
    pointer-events: none;
}

/* Name overlay inside the avatar circle */
.avatar-circle .avatar-name-overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 2;
}

/* Camera badge - bottom right, professional black & white styling */
.avatar-camera-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.avatar-circle:hover .avatar-camera-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.avatar-camera-badge svg {
    width: 14px;
    height: 14px;
    color: #333;
}

.profile-name {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    color: white;
}

.profile-role {
    opacity: 0.75;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    color: white;
}

.profile-avatar-section .badge {
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.profile-avatar-section .badge-success {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border);
}

.profile-stat {
    padding: 1rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.profile-stat:last-child {
    border-right: none;
}

.profile-stat .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.profile-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.availability-section {
    padding: 1rem 1.5rem;
}

.availability-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.availability-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.availability-label svg {
    width: 18px;
    height: 18px;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: 0.3s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #22C55E;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Quick Links */
.profile-quick-links {
    margin-top: 1rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    transition: background-color var(--transition-fast);
}

.quick-link:last-child {
    border-bottom: none;
}

.quick-link:hover {
    background-color: var(--bg-secondary);
    color: var(--primary);
}

.quick-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.quick-link:hover svg {
    color: var(--primary);
}

.quick-links-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 1rem;
}

.quick-link.quick-link-danger {
    color: #ef4444;
}

.quick-link.quick-link-danger svg {
    color: #ef4444;
}

.quick-link.quick-link-danger:hover {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.quick-link.quick-link-danger:hover svg {
    color: #ef4444;
}

/* Profile Main Content */
.profile-main {
    min-width: 0;
}

.profile-section {
    margin-bottom: 1.5rem;
}

.profile-section .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.profile-section .card-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.profile-section .card-header h3 svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.profile-section .card-body {
    padding: 1.5rem;
}

.section-intro {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Profile Completion Alert */
.profile-completion-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.completion-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.completion-info svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.completion-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.completion-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.completion-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.progress-bar {
    width: 120px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Specialties Grid */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.875rem;
}

.specialty-checkbox {
    display: block;
    cursor: pointer;
}

.specialty-checkbox input {
    display: none;
}

.specialty-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    min-height: 60px; /* Uniform height for all boxes */
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #555;
}

/* Tick icon container */
.specialty-label svg {
    width: 20px;
    height: 20px;
    min-width: 20px; /* Prevent shrinking */
    color: #d1d5db;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

/* Hover state - more vibrant */
.specialty-checkbox:hover .specialty-label {
    border-color: #22C55E;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.specialty-checkbox:hover .specialty-label svg {
    color: #86efac;
}

/* Selected state - green theme */
.specialty-checkbox input:checked + .specialty-label {
    background: linear-gradient(135deg, #22C55E 0%, #16a34a 100%);
    border-color: #16a34a;
    color: white;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.specialty-checkbox input:checked + .specialty-label svg {
    color: white;
}

/* Active/pressed state */
.specialty-checkbox:active .specialty-label {
    transform: translateY(0);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-base);
    overflow: hidden;
    background: var(--bg-secondary);
}

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

.portfolio-delete-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.portfolio-delete-btn:hover {
    background: var(--danger);
}

.portfolio-delete-btn svg {
    width: 16px;
    height: 16px;
}

.portfolio-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-base);
    border: 2px dashed var(--border);
}

.portfolio-empty svg {
    width: 48px;
    height: 48px;
    color: var(--text-secondary);
    margin: 0 auto 1rem;
}

.portfolio-empty p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Certifications */
.certifications-list {
    margin-bottom: 1.5rem;
}

.certification-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-base);
    margin-bottom: 0.5rem;
}

.certification-info strong {
    display: block;
    color: var(--text-primary);
}

.certification-issuer {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.certification-year {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.certification-delete-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.certification-delete-btn:hover {
    background: var(--danger);
    color: white;
}

.certification-delete-btn svg {
    width: 16px;
    height: 16px;
}

.certifications-empty {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-base);
    border: 2px dashed var(--border);
}

.certifications-empty svg {
    width: 40px;
    height: 40px;
    color: var(--text-secondary);
    margin: 0 auto 0.5rem;
}

.certifications-empty p {
    color: var(--text-secondary);
    margin: 0;
}

/* Add Certification Form */
.add-certification-form .form-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

.add-certification-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

.add-certification-form .form-group-sm {
    flex: 0 0 80px;
}

/* Hidden Input */
.hidden-input {
    display: none;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #22C55E;
}

/* Responsive */
@media (max-width: 1024px) {
    .profile-layout {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 768px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        position: static;
    }
    
    .profile-completion-alert {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .completion-progress {
        width: 100%;
    }
    
    .progress-bar {
        flex: 1;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialty-label {
        min-height: 56px;
        padding: 0.875rem 1rem;
    }
    
    .add-certification-form .form-row {
        flex-wrap: wrap;
    }
    
    .add-certification-form .form-group:first-child {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .profile-stats {
        grid-template-columns: 1fr;
    }
    
    .profile-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    
    .profile-stat:last-child {
        border-bottom: none;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .specialty-label {
        min-height: 52px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   Client Profile Page Specific Styles
   =========================================== */

/* Member Since */
.profile-member-since {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-top: 1px solid var(--border);
}

.profile-member-since svg {
    width: 16px;
    height: 16px;
}

/* Hair Concerns Grid */
.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.concern-checkbox {
    display: block;
    cursor: pointer;
}

.concern-checkbox input[type="checkbox"] {
    display: none;
}

.concern-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.concern-label svg {
    width: 20px;
    height: 20px;
    padding: 4px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 50%;
    opacity: 0;
    color: white;
    transition: all 0.3s ease;
}

.concern-checkbox input:checked + .concern-label {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #22c55e;
}

.concern-checkbox input:checked + .concern-label svg {
    opacity: 1;
    background: #22c55e;
    border-color: #22c55e;
}

.concern-checkbox:hover .concern-label {
    border-color: #22c55e;
}

/* Recent Consultations List */
.recent-consultations-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recent-consultation-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.recent-consultation-item:hover {
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateX(4px);
}

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

.consultation-info strong {
    color: var(--text);
    font-weight: 600;
}

.consultation-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Favourite Categories */
.favourite-categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.favourite-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.category-name {
    font-weight: 600;
    color: var(--text);
}

.category-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

/* Account Actions */
.account-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.account-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.account-action:hover {
    background: rgba(var(--primary-rgb), 0.05);
}

.account-action > svg:first-child {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.account-action > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.account-action > div strong {
    font-weight: 600;
    color: var(--text);
}

.account-action > div span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.account-action > svg:last-child {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.account-action-danger:hover {
    background: rgba(var(--danger-rgb), 0.05);
}

.account-action-danger > svg:first-child {
    color: var(--danger);
}

.account-action-danger:hover > div strong {
    color: var(--danger);
}

/* Section Intro */
.section-intro {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

/* Responsive for client profile */
@media (max-width: 768px) {
    .concerns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recent-consultation-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

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

/* ===========================================
   PAGINATION STYLES
   =========================================== */

.pagination-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.pagination-wrapper:first-child {
    border-top: none;
    border-bottom: 1px solid var(--border-color);
    margin-top: 0;
    margin-bottom: 1rem;
    padding-top: 0;
}

.pagination-info {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pagination-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pagination-per-page {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pagination-per-page select {
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.pagination-per-page select:hover {
    border-color: var(--primary);
}

.pagination-per-page select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pagination-btn:hover:not(.disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

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

.pagination-btn svg {
    width: 1rem;
    height: 1rem;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.pagination-page:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.pagination-page.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .pagination-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-nav {
        width: 100%;
        justify-content: center;
    }
    
    .pagination-btn span {
        display: none;
    }
    
    .pagination-per-page {
        justify-content: center;
    }
}

/* ===========================================
   NOTIFICATIONS
   =========================================== */

/* Notification Bell in Header */
.notification-bell {
    position: relative;
}

/* Notification toggle - appealing styling */
.notification-bell {
    position: relative;
}

.notification-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: var(--radius-base);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
}

.notification-toggle:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.notification-toggle svg {
    width: 20px;
    height: 20px;
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #ef4444;
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--bg-primary);
    pointer-events: none;
}

/* Notification Dropdown */
.notification-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    max-height: 480px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1000;
    overflow: hidden;
}

.notification-bell.active .notification-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.notification-dropdown-title {
    font-weight: 600;
    color: var(--text-primary);
}

.notification-mark-all {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-base);
    transition: all var(--transition-base);
}

.notification-mark-all:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
}

.notification-mark-all svg {
    width: 18px;
    height: 18px;
}

.notification-dropdown-body {
    max-height: 340px;
    overflow-y: auto;
}

.notification-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.loading-spinner-sm {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Notification Item (Dropdown) */
.notification-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.notification-item:hover {
    background: var(--bg-tertiary);
}

.notification-item.unread {
    background: rgba(168, 85, 247, 0.05);
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
}

.notification-item-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-base);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-item-icon svg {
    width: 18px;
    height: 18px;
}

.notification-item-content {
    flex: 1;
    min-width: 0;
}

.notification-item-title {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.notification-item-message {
    font-size: 0.8125rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-item-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.notification-dropdown-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.notification-dropdown-footer a {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.notification-dropdown-footer a:hover {
    text-decoration: underline;
}

.notification-empty {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.notification-empty svg {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

/* Notification Colors */
.notification-primary .notification-item-icon,
.notification-page-icon.notification-primary {
    background: rgba(168, 85, 247, 0.15);
    color: var(--primary);
}

.notification-success .notification-item-icon,
.notification-page-icon.notification-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.notification-warning .notification-item-icon,
.notification-page-icon.notification-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.notification-danger .notification-item-icon,
.notification-page-icon.notification-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.notification-info .notification-item-icon,
.notification-page-icon.notification-info {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.notification-secondary .notification-item-icon,
.notification-page-icon.notification-secondary {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

/* Notifications Page */
.notification-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.notification-stat {
    display: flex;
    flex-direction: column;
}

.notification-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.notification-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.notification-page-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
}

.notification-page-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
}

.notification-page-item.unread {
    background: rgba(168, 85, 247, 0.03);
    border-left: 3px solid var(--primary);
}

.notification-page-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-base);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-page-icon svg {
    width: 22px;
    height: 22px;
}

.notification-page-content {
    flex: 1;
    min-width: 0;
}

.notification-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.notification-page-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.notification-page-time {
    font-size: 0.8125rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.notification-page-message {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.notification-page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.notification-page-link:hover {
    text-decoration: underline;
}

.notification-page-link svg {
    width: 14px;
    height: 14px;
}

.notification-page-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Button icons - appealing styling */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    color: var(--text-secondary);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-base);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-icon:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.btn-icon svg {
    width: 16px;
    height: 16px;
}

.delete-notification-btn:hover {
    border-color: var(--danger);
    color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
}

@media (max-width: 768px) {
    .notification-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 70vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .notification-page-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .notification-page-header {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .notification-page-actions {
        align-self: flex-end;
    }
}

/* ===========================================
   ADMIN REVENUE SUMMARY
   =========================================== */

.revenue-summary {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.revenue-summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.revenue-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.revenue-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.revenue-positive {
    color: #22c55e;
}

.revenue-negative {
    color: #ef4444;
}

@media (max-width: 768px) {
    .revenue-summary {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===========================================
   TOGGLE SWITCH
   =========================================== */

.toggle-label {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
}

.toggle-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    background: #cbd5e1;
    border-radius: 13px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.toggle-label input:checked + .toggle-switch {
    background: #10b981;
}

.toggle-label input:checked + .toggle-switch::after {
    transform: translateX(22px);
}

.toggle-label input:focus + .toggle-switch {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.toggle-text {
    font-weight: 500;
    color: var(--text-primary);
    display: inline-block;
    line-height: 26px;
}

/* ===========================================
   FORM DIVIDER & SECTION
   =========================================== */

.form-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.form-section-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0 0 1.5rem 0;
}

/* ===========================================
   LEGAL PAGES
   =========================================== */

.legal-page {
    padding: 6rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.legal-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.legal-section li strong {
    color: var(--text-primary);
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section code {
    background: var(--bg-secondary);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9em;
}

.contact-details {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
}

.contact-details p {
    margin: 0 0 0.5rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Cookie Table */
.cookie-table {
    margin: 1rem 0 1.5rem;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--border);
}

.cookie-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-table td {
    color: var(--text-secondary);
}

.cookie-table tr:nth-child(even) td {
    background: var(--bg-tertiary);
}

/* Legal Footer */
.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 5rem 0 3rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .cookie-table {
        font-size: 0.85rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem 0.75rem;
    }
}

/* ==========================================
   COOKIE CONSENT BANNER & MODAL
   ========================================== */

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cookie-consent-text h3 svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.cookie-consent-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    text-decoration: none;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.cookie-consent-actions .btn {
    white-space: nowrap;
}

.cookie-consent-actions .btn svg {
    width: 16px;
    height: 16px;
}

/* Cookie Settings Modal Overlay */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-modal-overlay.visible {
    opacity: 1;
}

/* Cookie Settings Modal */
.cookie-modal {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
}

.cookie-modal-overlay.visible .cookie-modal {
    transform: scale(1) translateY(0);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cookie-modal-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.cookie-modal-header h3 svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.cookie-modal-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-tertiary);
    border-radius: var(--border-radius);
    transition: all 0.2s;
}

.cookie-modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.cookie-modal-close svg {
    width: 20px;
    height: 20px;
}

.cookie-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-intro {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

/* Cookie Category */
.cookie-category {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-category-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-category-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.cookie-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.cookie-badge-required {
    background: var(--success-bg);
    color: var(--success);
}

.cookie-category-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0.75rem 0 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    border-radius: 26px;
    transition: all 0.3s ease;
}

.cookie-toggle-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background: var(--text-tertiary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--primary);
    border-color: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    background: white;
    transform: translateX(22px);
}

.cookie-toggle input:focus + .cookie-toggle-slider {
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

/* Cookie Modal Footer */
.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

/* Cookie Consent Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        padding: 1.25rem 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-text {
        min-width: 100%;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-actions .btn {
        flex: 1;
        min-width: 100px;
    }
    
    .cookie-modal {
        max-height: 85vh;
    }
    
    .cookie-modal-body {
        padding: 1rem;
    }
    
    .cookie-category {
        padding: 0.875rem 1rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .cookie-toggle {
        align-self: flex-end;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-consent-actions .btn {
        width: 100%;
    }
}

/* ===========================================
   MODERN THEME STYLES (Warm Elegance)
   =========================================== */

/* Modern Header - Light background with dark text for monochrome theme */
.header-modern {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    box-shadow: none;
}

.header-modern .logo-text-modern {
    color: var(--text-primary);
}

.header-modern .nav-link {
    color: var(--text-secondary);
}

.header-modern .nav-link:hover,
.header-modern .nav-link.active {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.header-modern .theme-toggle {
    color: var(--text-secondary);
    border-color: var(--border);
}

.header-modern .theme-toggle:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border-color: var(--text-secondary);
}

.header-modern .nav-link-signin {
    color: var(--text-secondary);
}

.header-modern .nav-link-signin:hover {
    color: var(--text-primary);
}

.header-modern .nav-search-btn {
    color: var(--text-secondary);
}

.header-modern .nav-search-btn:hover {
    color: var(--text-primary);
}

.header-modern .hamburger,
.header-modern .hamburger::before,
.header-modern .hamburger::after {
    background: var(--text-primary);
}

.header-modern .btn-primary {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.header-modern .btn-primary:hover {
    background: white;
    color: black;
    border: 2px solid black;
    box-shadow: 0 4px 15px var(--shadow-hover);
}

.header-modern .user-avatar {
    background: var(--primary);
    color: var(--text-light);
}

.header-modern .user-menu-toggle svg {
    color: var(--text-primary);
}

.header-modern .notification-toggle {
    color: var(--text-secondary);
}

.header-modern .notification-toggle:hover {
    background: black;
    color: white;
    border: 2px solid black;
}

.logo-modern {
    display: flex;
    align-items: center;
}

.logo-text-modern {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    font-style: normal;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links-modern {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-links-modern .nav-link {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-primary);
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-links-modern .nav-link:hover {
    color: var(--primary);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-primary);
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown-toggle:hover {
    color: var(--primary);
}

.nav-dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
    z-index: 1000;
}

[data-theme="dark"] .nav-dropdown-menu {
    background: var(--bg-secondary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0.75rem;
}

.nav-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.2s ease;
}

.nav-dropdown-item:hover {
    background: var(--bg-tertiary);
}

.nav-dropdown-item svg {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.nav-dropdown-item-title {
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
    color: var(--text-primary);
}

.nav-dropdown-item-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Mobile Nav Submenu */
.mobile-nav-submenu {
    position: relative;
}

.mobile-nav-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
}

.mobile-nav-submenu-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.mobile-nav-submenu.active .mobile-nav-submenu-icon {
    transform: rotate(180deg);
}

.mobile-nav-submenu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
    border-left: 2px solid var(--border);
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-nav-submenu.active .mobile-nav-submenu-content {
    max-height: 500px;
}

.mobile-nav-sublink {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    border-radius: var(--radius-base);
    transition: all 0.2s ease;
}

.mobile-nav-sublink:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
}

.mobile-nav-sublink svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Nav CTA Button */
.nav-links-modern .nav-cta {
    margin-left: 0.25rem;
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
    border-radius: 2rem;
}

.nav-link-signin {
    font-weight: 500 !important;
}

.nav-search-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-search-btn:hover {
    color: var(--primary);
}

.nav-search-btn svg {
    width: 20px;
    height: 20px;
}

/* Modern Hero Section */
.hero-modern {
    background: var(--bg-hero, #E8DDD6);
    padding: 0;
    min-height: auto;
    margin-top: 72px;
}

.hero-modern-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-modern-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 2rem 1.5rem 4rem;
}

.hero-modern-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-modern-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 400px;
}

.hero-cta {
    align-self: flex-start;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2rem;
    background: var(--primary);
    color: white;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    color: white;
}

.hero-modern-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
}

.hero-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    object-position: center center;
}

/* How It Works Modern */
.how-it-works-modern {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.section-title-centered {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-subtitle-centered {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.5;
}

.steps-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-modern {
    text-align: center;
}

.step-modern-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 12px;
    color: var(--primary);
}

.step-modern-icon svg {
    width: 28px;
    height: 28px;
}

.step-modern-number {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-modern-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Stylists Section */
.stylists-section {
    background: var(--bg-tertiary);
    padding: 0;
}

.stylists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

.stylists-grid-reversed {
    grid-template-columns: 1fr 1fr;
}

.stylists-grid-reversed .stylists-image {
    order: 1;
}

.stylists-grid-reversed .stylists-content {
    order: 2;
}

.stylists-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 4rem 1.5rem 2rem;
}

.stylists-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.stylists-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

.stylists-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
}

.stylist-photo {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    object-position: center center;
}

/* Services Modern */
.services-modern {
    padding: 5rem 0;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card-modern {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow);
}

.service-icon-modern {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--primary);
}

.service-icon-modern svg {
    width: 24px;
    height: 24px;
}

.service-card-modern h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-card-modern p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Modern */
.pricing-modern {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.pricing-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.pricing-card-modern {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pricing-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow);
}

.pricing-card-modern.featured {
    background: var(--bg-secondary);
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card-modern.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge-modern {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.launch-badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.price-original-modern {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-current-modern {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-period-modern {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.price-value-modern {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-name-modern {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.pricing-desc-modern {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-price-modern {
    margin-bottom: 1.5rem;
}

.pricing-price-modern .price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    vertical-align: top;
}

.pricing-price-modern .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

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

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

.pricing-features-modern li svg {
    width: 16px;
    height: 16px;
    color: #6B9B7A;
    flex-shrink: 0;
}

/* Testimonials Modern */
.testimonials-modern {
    padding: 5rem 0;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-modern {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars .star-filled {
    width: 16px;
    height: 16px;
    color: #F59E0B;
    fill: #F59E0B;
}

.testimonial-text-modern {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author-modern .author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-author-modern .author-service {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Stylists CTA */
.stylists-cta {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.stylists-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.stylists-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

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

/* Final CTA Modern */
.final-cta-modern {
    background: var(--bg-tertiary);
    padding: 5rem 0;
}

.final-cta-content-modern {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content-modern h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.final-cta-content-modern > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.final-cta-content-modern .btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    border-radius: 2rem;
}

.final-cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Responsive Styles for Modern Theme */
@media (max-width: 1024px) {
    .hero-modern-container {
        grid-template-columns: 1fr;
    }
    
    .hero-modern-content {
        padding: 2rem 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .hero-modern-subtitle {
        max-width: 100%;
    }
    
    .hero-cta {
        align-self: center;
    }
    
    .hero-modern-image {
        max-height: 300px;
    }
    
    .stylists-grid {
        grid-template-columns: 1fr;
    }
    
    .stylists-grid-reversed .stylists-image {
        order: 1;
    }
    
    .stylists-grid-reversed .stylists-content {
        order: 2;
    }
    
    .stylists-content {
        padding: 3rem 2rem;
        text-align: center;
        align-items: center;
    }
    
    .stylists-text {
        max-width: 100%;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid-modern {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card-modern.featured {
        transform: none;
    }
    
    .pricing-card-modern.featured:hover {
        transform: translateY(-4px);
    }
    
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .steps-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .hero-modern-title {
        font-size: 2.5rem;
    }
    
    .stylists-title {
        font-size: 2rem;
    }
    
    .nav-links-modern {
        display: none;
    }
}

/* ===========================================
   PROFESSIONAL BLACK & WHITE THEME ENHANCEMENTS
   =========================================== */

/* Grayscale Image Filter */
.grayscale-img {
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.grayscale-img:hover {
    filter: grayscale(100%) contrast(1.2) brightness(1.05);
}

/* Sharp edges - no border radius for modern B&W aesthetic */
.hero-image,
.stylist-photo,
.service-card-modern,
.pricing-card-modern,
.testimonial-card-modern,
.step-modern-icon {
    border-radius: 0 !important;
}

/* Enhanced contrast for B&W theme */
.hero-modern {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

[data-theme="dark"] .hero-modern {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

/* Dramatic typography for B&W theme */
.hero-modern-title {
    font-weight: 300;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.section-title-centered {
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title-centered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--text-primary);
}

/* Service cards - clean B&W style */
.service-card-modern {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover {
    border-color: var(--text-primary);
    transform: translateY(-4px);
}

/* Service icons - appealing with color accents */
.service-icon-modern {
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    color: var(--bg-primary);
    border-radius: 14px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 144, 129, 0.35) 0%, rgba(199, 144, 129, 0) 65%);
    opacity: 1;
}

.service-icon-modern svg {
    position: relative;
    z-index: 1;
}

.service-card-modern:nth-child(1) .service-icon-modern::before {
    background: linear-gradient(135deg, rgba(199, 144, 129, 0.4) 0%, rgba(199, 144, 129, 0) 70%);
}

.service-card-modern:nth-child(2) .service-icon-modern::before {
    background: linear-gradient(135deg, rgba(139, 169, 169, 0.4) 0%, rgba(139, 169, 169, 0) 70%);
}

.service-card-modern:nth-child(3) .service-icon-modern::before {
    background: linear-gradient(135deg, rgba(169, 154, 134, 0.4) 0%, rgba(169, 154, 134, 0) 70%);
}

.service-card-modern:nth-child(4) .service-icon-modern::before {
    background: linear-gradient(135deg, rgba(154, 139, 169, 0.4) 0%, rgba(154, 139, 169, 0) 70%);
}

.service-card-modern:hover .service-icon-modern {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* Pricing cards - dramatic B&W */
.pricing-card-modern {
    border: 1px solid var(--border);
    background: var(--bg-secondary);
}

.pricing-card-modern.featured {
    border: 2px solid var(--text-primary);
    background: var(--bg-primary);
}

.pricing-card-modern.featured::before {
    display: none;
}

.pricing-badge-modern {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

/* Testimonials - clean lines */
.testimonial-card-modern {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

/* Testimonial stars - warm golden color */
.testimonial-stars .star-filled {
    color: #D4A574 !important;
    fill: #D4A574 !important;
}

/* Steps - appealing icons with subtle color accents */
.step-modern-icon {
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    color: var(--bg-primary);
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-modern-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 144, 129, 0.3) 0%, rgba(199, 144, 129, 0) 60%);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.step-modern-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.step-modern-icon svg {
    position: relative;
    z-index: 1;
}

/* Individual step icon colors */
.step-modern:nth-child(1) .step-modern-icon::before {
    background: linear-gradient(135deg, rgba(199, 144, 129, 0.4) 0%, rgba(199, 144, 129, 0) 70%);
}

.step-modern:nth-child(2) .step-modern-icon::before {
    background: linear-gradient(135deg, rgba(139, 169, 169, 0.4) 0%, rgba(139, 169, 169, 0) 70%);
}

.step-modern:nth-child(3) .step-modern-icon::before {
    background: linear-gradient(135deg, rgba(169, 154, 134, 0.4) 0%, rgba(169, 154, 134, 0) 70%);
}

/* Buttons - sharp B&W style */
.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 2px solid var(--text-primary);
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

/* Stylists section - dramatic */
.stylists-section {
    background: var(--bg-tertiary);
}

.stylists-title {
    font-weight: 300;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Final CTA - bold B&W */
.final-cta-modern {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.final-cta-modern h2,
.final-cta-modern p {
    color: var(--bg-primary);
}

.final-cta-modern .btn-primary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--bg-primary);
}

.final-cta-modern .btn-primary:hover {
    background: transparent;
    color: var(--bg-primary);
    border-color: var(--bg-primary);
}

/* Stylists CTA section */
.stylists-cta {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Header - clean B&W */
.header {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .header {
    background: rgba(0, 0, 0, 0.95);
}

/* Logo styling */
.logo {
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===========================================
   ADMIN - USER MANAGEMENT STYLES
   =========================================== */

/* Filters */
.filters-form {
    width: 100%;
}

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

.filters-row-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    align-items: flex-end;
}

.filters-row-extended .filter-actions {
    grid-column: span 1;
    display: flex;
    gap: 0.5rem;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.table th {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    background: var(--bg-secondary);
}

.table-hover tbody tr:hover {
    background: var(--bg-secondary);
}

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

.user-avatar-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: 600;
    flex-shrink: 0;
}

.user-name {
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-buttons .btn-sm {
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 8px;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.action-buttons .btn-sm svg {
    width: 15px;
    height: 15px;
    stroke-width: 2;
}

.action-buttons .btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.action-buttons .btn-sm:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Professional action button colors */
.action-buttons .btn-sm:nth-child(1) {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

.action-buttons .btn-sm:nth-child(2) {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

.action-buttons .btn-sm:nth-child(3) {
    background: linear-gradient(135deg, #4ADE80 0%, #22C55E 100%);
}

.action-buttons .btn-sm:nth-child(4) {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
}

.action-buttons .btn-sm:nth-child(5),
.action-buttons .btn-sm.btn-danger {
    background: linear-gradient(135deg, #F87171 0%, #EF4444 100%);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid var(--border);
}

.pagination {
    display: flex;
    gap: 0.25rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-base);
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.pagination-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--text-muted);
}

.pagination-btn.active {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

.pagination-info {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

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

.modal {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-sm {
    max-width: 400px;
}

.modal-lg {
    max-width: 800px;
}

/* Consultation Details Modal Styles */
.consultation-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.detail-section {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
}

.detail-section h4 {
    margin: 0 0 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.detail-value {
    font-weight: 500;
    color: var(--text-primary);
}

.description-text {
    color: var(--text-secondary);
    line-height: 1.6;
    white-space: pre-wrap;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.gallery-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-lg {
        max-width: 95%;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: var(--text-lg);
}

.modal-header h3 svg {
    width: 20px;
    height: 20px;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

.modal-body .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* User Details in Modal */
.user-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.detail-label {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.detail-value {
    font-weight: 500;
    color: var(--text-primary);
}

.user-details hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0.5rem 0;
}

/* Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

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

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-base);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1100;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.toast-success {
    border-left: 4px solid #22C55E;
}

.toast-success svg {
    color: #22C55E;
}

.toast-error {
    border-left: 4px solid #EF4444;
}

.toast-error svg {
    color: #EF4444;
}

.toast-info {
    border-left: 4px solid #3B82F6;
}

.toast-info svg {
    color: #3B82F6;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filters-row {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-actions {
        width: 100%;
    }
    
    .filter-actions .btn {
        flex: 1;
    }
    
    .pagination-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .action-buttons {
        flex-wrap: wrap;
    }
}

/* ===========================================
   REVIEW MODAL STYLES
   =========================================== */

.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

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

.review-modal {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

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

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

.review-modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.review-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.review-modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.review-modal-body {
    padding: 1.5rem 2rem;
}

/* Consultation Info */
.review-consultation-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.review-stylist-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-consultation-details h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.review-consultation-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.review-category {
    display: inline-block;
    background: var(--bg-tertiary);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.review-date {
    font-size: 0.8rem;
}

.review-stylist-name {
    margin-top: 0.25rem !important;
}

/* Rating Section */
.review-rating-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.review-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.star-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.star-btn:hover {
    transform: scale(1.15);
}

.star-btn svg {
    width: 100%;
    height: 100%;
    stroke: #d1d5db;
    fill: transparent;
    transition: all 0.2s ease;
}

.star-btn.active svg {
    stroke: #fbbf24;
    fill: #fbbf24;
}

.star-btn:hover svg {
    stroke: #fbbf24;
}

.review-rating-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* Feedback Section */
.review-feedback-section {
    margin-bottom: 1rem;
}

.review-feedback-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.review-feedback-label .optional {
    font-weight: 400;
    color: var(--text-muted);
}

.review-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

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

.review-char-count {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Modal Footer */
.review-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.review-skip-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.review-submit-btn {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

/* Thank You Modal */
.review-thank-you {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 400px;
}

.review-thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22C55E 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.review-thank-you-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.review-thank-you-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

/* Spinner for loading state */
.review-submit-btn .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Responsive */
@media (max-width: 480px) {
    .review-modal {
        max-height: 100vh;
        border-radius: var(--radius-lg);
    }
    
    .review-modal-header {
        padding: 1.5rem 1.25rem 1rem;
    }
    
    .review-modal-body {
        padding: 1.25rem;
    }
    
    .review-modal-footer {
        padding: 1.25rem;
        flex-direction: column;
    }
    
    .review-skip-btn,
    .review-submit-btn {
        flex: none;
        width: 100%;
    }
    
    .star-btn {
        width: 40px;
        height: 40px;
    }
    
    .review-modal-title {
        font-size: 1.25rem;
    }
}

/* ===========================================
   STYLIST PROFILE - REVIEWS SECTION
   =========================================== */

.review-stats-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.review-stats-overall {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-average {
    text-align: center;
}

.review-average-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.review-average-stars {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.review-average-stars .star-icon {
    width: 20px;
    height: 20px;
}

.review-average-stars .star-filled {
    color: #FFD700;
    fill: #FFD700;
}

.review-average-stars .star-empty {
    color: var(--border);
    fill: none;
}

.review-total-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.review-stats-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.review-bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-bar-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    width: 50px;
    flex-shrink: 0;
}

.review-bar-track {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.review-bar-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    width: 30px;
    text-align: right;
    flex-shrink: 0;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 1.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.review-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

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

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    gap: 0.125rem;
}

.review-rating .star-icon {
    width: 16px;
    height: 16px;
}

.review-rating .star-filled {
    color: #FFD700;
    fill: #FFD700;
}

.review-rating .star-empty {
    color: var(--border);
    fill: none;
}

.review-consultation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.review-consultation i {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
}

.review-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Empty Reviews State */
.reviews-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}

.reviews-empty i {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.reviews-empty h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.reviews-empty p {
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .review-stats-summary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-stats-overall {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border);
    }
    
    .review-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .review-rating {
        margin-left: 52px;
    }
}

/* ===========================================
   REVIEWS TABLE & PAGINATION
   =========================================== */

.reviews-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.reviews-table {
    width: 100%;
    border-collapse: collapse;
}

.reviews-table th,
.reviews-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.reviews-table th {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
    white-space: nowrap;
}

.reviews-table tbody tr:hover {
    background: var(--bg-secondary);
}

/* Review Client Cell */
.review-client {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-client-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.review-client-name {
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Review Rating Cell */
.review-rating-cell {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star-icon-sm {
    width: 14px;
    height: 14px;
}

.star-icon-sm.star-filled {
    color: #FFD700;
    fill: #FFD700;
}

.star-icon-sm.star-empty {
    color: var(--border);
    fill: none;
}

.rating-number {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

/* Review Consultation Cell */
.review-consultation-cell {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.consultation-title {
    font-weight: 500;
    color: var(--text-primary);
    /* Removed max-width restriction to show full title */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.consultation-category {
    font-size: 0.75rem;
    width: fit-content;
}

/* Review Feedback Cell */
.review-feedback-cell {
    max-width: 300px;
}

.feedback-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.btn-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--primary-hover);
}

/* Review Date */
.review-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.pagination-controls:first-of-type {
    border-top: none;
    border-bottom: 1px solid var(--border);
}

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

.pagination-per-page {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-per-page label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
}

.per-page-select {
    width: auto;
    min-width: 70px;
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-nav .btn {
    padding: 0.4rem 0.6rem;
}

.pagination-nav .btn i {
    width: 16px;
    height: 16px;
}

/* Quick Link Badge */
.quick-link-badge {
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    margin-left: auto;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .pagination-info {
        text-align: center;
    }
    
    .pagination-per-page {
        justify-content: center;
    }
    
    .pagination-nav {
        justify-content: center;
    }
    
    .reviews-table th,
    .reviews-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .review-feedback-cell {
        max-width: 150px;
    }
    
    .consultation-title {
        /* Removed max-width to allow full title on mobile */
    }
}

/* ===========================================
   ADMIN REVIEWS PAGE
   =========================================== */

/* Rating Distribution */
.rating-distribution-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-dist-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-dist-label {
    display: flex;
    gap: 0.125rem;
    width: 90px;
    flex-shrink: 0;
}

.star-icon-xs {
    width: 14px;
    height: 14px;
}

.star-icon-xs.star-filled {
    color: #FFD700;
    fill: #FFD700;
}

.rating-dist-bar {
    flex: 1;
    height: 10px;
    background: var(--border);
    border-radius: 5px;
    overflow: hidden;
}

.rating-dist-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 5px;
    transition: width 0.3s ease;
}

.rating-dist-count {
    width: 40px;
    text-align: right;
    font-weight: 600;
    color: var(--text-primary);
}

.rating-dist-percent {
    width: 50px;
    text-align: right;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Admin Reviews Table */
.admin-reviews-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-reviews-table th,
.admin-reviews-table td {
    padding: 0.875rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-reviews-table th {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
    white-space: nowrap;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.admin-reviews-table tbody tr:hover {
    background: var(--bg-secondary);
}

.review-id {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* User Info Cell */
.user-info-cell {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.user-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.user-avatar-sm.stylist-avatar {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.user-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Rating Cell */
.rating-cell {
    display: flex;
    gap: 0.125rem;
}

/* Comment Cell */
.comment-cell {
    max-width: 180px;
}

.comment-preview {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Consultation Cell */
.consultation-cell {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: 150px;
}

.consultation-cell .consultation-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.consultation-cell .badge {
    font-size: 0.7rem;
    width: fit-content;
}

/* Review Date */
.review-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.review-time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Inline Form */
.inline-form {
    display: inline;
}

/* Review Detail Modal */
.review-detail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-detail-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.review-detail-section p {
    margin: 0;
    color: var(--text-primary);
}

.review-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.review-detail-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.review-detail-comment {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.review-detail-comment p {
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    color: var(--text-muted);
}

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

/* Error State */
.error-state {
    text-align: center;
    padding: 2rem;
    color: var(--error);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-state i {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.empty-state h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Responsive Admin Reviews */
@media (max-width: 1200px) {
    .admin-reviews-table {
        font-size: 0.85rem;
    }
    
    .admin-reviews-table th,
    .admin-reviews-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .user-avatar-sm {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }
    
    .comment-cell {
        max-width: 120px;
    }
}

@media (max-width: 992px) {
    .rating-distribution-grid {
        max-width: 100%;
    }
    
    .review-detail-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .admin-reviews-table {
        display: block;
        overflow-x: auto;
    }
    
    .rating-dist-label {
        width: 70px;
    }
    
    .rating-dist-count,
    .rating-dist-percent {
        width: 35px;
        font-size: 0.8rem;
    }
}

/* ============================================
   PWA Install Banner & Components
   ============================================ */

.pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 1rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    display: none !important; /* Force hide - we use auth pages now */
    border-top: 2px solid #333;
}

.pwa-install-banner.pwa-banner-show {
    transform: translateY(0);
    display: none !important; /* Force hide - we use auth pages now */
}

.pwa-install-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pwa-install-icon {
    flex-shrink: 0;
}

.pwa-install-icon img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: white;
    padding: 4px;
}

.pwa-install-text {
    flex: 1;
    min-width: 200px;
}

.pwa-install-text strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pwa-install-text span {
    color: #cccccc;
    font-size: 0.875rem;
}

.pwa-install-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.pwa-install-actions .btn {
    white-space: nowrap;
}

.pwa-install-actions .btn-ghost {
    color: #cccccc;
    border-color: #555;
}

.pwa-install-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.pwa-install-actions .btn-primary {
    background: #ef4444;
    color: #ffffff;
    border: none;
}

.pwa-install-actions .btn-primary:hover {
    background: #dc2626;
}

@media (max-width: 480px) {
    .pwa-install-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pwa-install-text {
        min-width: 100%;
    }
    
    .pwa-install-actions {
        width: 100%;
        justify-content: center;
    }
}

/* iOS Install Prompt */
.pwa-ios-prompt {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.pwa-ios-content {
    background: var(--surface);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pwa-ios-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.pwa-ios-close:hover {
    background: var(--border);
    color: var(--text-primary);
}

.pwa-ios-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.pwa-ios-icon img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
}

.pwa-ios-content h3 {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pwa-ios-content p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pwa-ios-content ol {
    padding-left: 1.5rem;
    margin: 0;
}

.pwa-ios-content li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    line-height: 1.5;
}

.pwa-ios-content li strong {
    color: var(--text-primary);
}

.ios-share-icon {
    display: inline-block;
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    vertical-align: middle;
}

/* Update Toast */
.pwa-update-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--cream);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    animation: fadeInUp 0.3s ease-out;
}

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

.pwa-update-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pwa-update-content i,
.pwa-update-content svg {
    width: 18px;
    height: 18px;
    color: var(--rose);
}

.pwa-update-content span {
    font-size: 0.875rem;
}

/* Footer Install App Section */
.footer-app {
    text-align: left;
}

.footer-app-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-install-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-install-btn i,
.footer-install-btn svg {
    width: 16px;
    height: 16px;
}

/* Standalone Mode Adjustments */
@media (display-mode: standalone) {
    /* Add safe area insets for notched devices */
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    /* Hide install banner when in standalone mode */
    .pwa-install-banner,
    .footer-app {
        display: none !important;
    }
    
    /* Show PWA details toggle in standalone mode */
    .pwa-details-toggle {
        display: inline-flex !important;
    }
    
    /* Adjust header for standalone */
    .header {
        padding-top: max(1rem, env(safe-area-inset-top));
    }
    
    /* Adjust footer for standalone */
    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* ===========================================
   2FA SETUP STEPS
   =========================================== */

.setup-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-base);
    border-left: 3px solid var(--primary);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem;
    font-size: var(--text-base);
    color: var(--text-primary);
}

.step-content p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

#qr-code-container {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-base);
    border: 2px dashed var(--border-color);
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-base);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--text-primary);
}

.alert svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

/* ===========================================
   STRIPE CARD ELEMENT
   =========================================== */

.card-element {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-base);
    background: var(--bg-primary);
    transition: border-color 0.2s ease;
}

.card-element:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.test-card-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-base);
}

.test-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #3b82f6;
    font-size: 0.875rem;
}

.test-card-header svg {
    width: 16px;
    height: 16px;
}

.test-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.test-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--bg-primary);
    border-radius: 4px;
    font-size: 0.813rem;
}

.test-card-number {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

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

.test-card-details {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.test-card-details p {
    margin: 0.25rem 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.test-card-details strong {
    color: var(--text-primary);
}


/* ===========================================
   ACTIVITY FEED
   =========================================== */

.activity-feed {
    padding: 0;
}

.activity-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

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

.activity-item:hover {
    background: var(--bg-secondary);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon svg {
    width: 20px;
    height: 20px;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.activity-header strong {
    font-weight: 600;
    color: var(--text-primary);
}

.activity-role {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
}

.activity-description {
    margin: 0.25rem 0 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

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

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

.section-header h2 {
    margin: 0;
}



/*
PWA
Install
Button
Hover
Styles
*/

/* PWA Install Button Hover Styles */
#auth-pwa-install-btn {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
    border: 2px solid #333 !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

#auth-pwa-install-btn:hover {
    background: white !important;
    border: 2px solid #000000 !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#auth-pwa-install-btn:hover strong,
#auth-pwa-install-btn:hover small {
    color: #000000 !important;
    opacity: 1 !important;
}

#auth-pwa-install-btn:active {
    transform: translateY(0);
}

/* Hide theme toggle - forcing light mode */
.theme-toggle {
    display: none !important;
}