/* Feature CSS Imports */
@import url('./css/session-notes.css');
@import url('./css/referrals.css');
@import url('./css/promo-code.css');
@import url('./css/onboarding.css');
@import url('./css/premium-onboarding.css');
@import url('./css/premium-auth.css');
@import url('./css/coach-profile.css');
@import url('./css/profile-editor.css');
@import url('./css/landing-page.css');
@import url('./css/discovery.css');
@import url('./css/quiz.css');
@import url('./css/seo-pages.css');
@import url('./css/booking.css');
@import url('./css/admin.css');
@import url('./css/marketing-pages.css');
@import url('./css/loading-animations.css');
@import url('./css/seo-content-pages.css');
@import url('./css/home-sections.css');
@import url('./css/coach-profile-page.css');
@import url('./css/conversion.css');
@import url('./css/utils.css');
@import url('./css/payments.css');
@import url('./css/analytics.css');
@import url('./css/pricing-page.css');

:root {
    /* Petrol color palette - ONLY these 3 colors allowed */
    --primary-petrol: #006266;
    --petrol-light: #4FCBCE;
    --petrol-dark: #004A4D;

    /* Derived colors from petrol palette */
    --bg-body: #f5f5f5;
    --bg-card: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #6b6b6b;
    --border-color: #e7e7e7;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --radius: 4px;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Navbar */
header {
    background-color: var(--primary-petrol);
    color: white;
    padding: 16px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--petrol-light);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 24px;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    opacity: 0.9;
}

.nav-auth-btn {
    background-color: white;
    color: var(--primary-petrol) !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 24px;
    transition: all 0.2s;
    border: 2px solid white;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.nav-auth-btn:hover {
    background-color: var(--petrol-light);
    color: white !important;
    border-color: var(--petrol-light);
}

/* Hero */
.hero {
    background-color: var(--primary-petrol);
    color: white;
    padding: 40px 0 80px;
    /* Extra padding bottom for search bar overlap */
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Search Box (Sticky/Overlapping) */
.search-container {
    background: var(--petrol-light);
    padding: 4px;
    border-radius: var(--radius);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    box-shadow: var(--shadow-md);
}

.search-form {
    background: white;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 98, 102, 0.1);
}

/* First Row: Search + Date + Toggle + Button */
.search-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
    flex-wrap: nowrap;
}

.search-input-group {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: white;
    transition: border-color 0.2s;
    height: 54px;
}

.search-input-group:focus-within {
    border-color: var(--petrol-light);
}

.search-icon {
    padding: 0 12px;
    color: var(--text-muted);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: 1;
}

.search-input {
    flex: 1;
    padding: 16px 12px 16px 4px;
    border: none !important;
    font-size: 1rem;
    outline: none !important;
    font-family: inherit;
    background: transparent;
    box-shadow: none !important;
}

.search-input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-input[type="date"] {
    cursor: pointer;
}

.search-input-group:has([type="date"]) {
    flex: 0 1 auto;
    min-width: 160px;
    max-width: 200px;
}

.search-input.rate-select {
    cursor: pointer;
    padding-right: 8px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-input-group:has(.rate-select) {
    flex: 0 1 auto;
    min-width: 140px;
    max-width: 180px;
}

.filter-toggle {
    flex-shrink: 0;
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    height: 54px;
}

.filter-toggle-btn {
    padding: 0 24px;
    background: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.filter-toggle-btn:first-child {
    border-right: 1px solid var(--border-color);
}

.filter-toggle-btn.active {
    background: var(--primary-petrol);
    color: white;
}

.filter-toggle-btn:hover:not(.active) {
    background: #f5f5f5;
}

.search-btn {
    flex-shrink: 0;
    background-color: var(--petrol-dark);
    color: white;
    border: none;
    padding: 0 32px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
    white-space: nowrap;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background-color: var(--primary-petrol);
}

/* Second Row: Location (only visible when On-Site selected) */
.location-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin-top: 8px;
}

.location-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: white;
    transition: border-color 0.2s;
}

.location-input-wrapper:focus-within {
    border-color: var(--petrol-light);
}

.location-input {
    flex: 1;
    padding: 16px 12px 16px 4px;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
    font-family: inherit;
    box-shadow: none;
}

.location-input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.use-location-btn {
    flex-shrink: 0;
    background: var(--primary-petrol);
    color: white;
    border: none;
    border-radius: 2px;
    margin: 4px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.2s;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-location-btn:hover:not(:disabled) {
    background-color: var(--petrol-dark);
}

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

.radius-select {
    flex-shrink: 0;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    outline: none;
    min-width: 160px;
    transition: border-color 0.2s;
    font-family: inherit;
}

.radius-select:focus {
    border-color: var(--petrol-light);
}

/* Coach List */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
}

.coach-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coach-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    gap: 24px;
    transition: box-shadow 0.2s;
}

.coach-card:hover {
    box-shadow: var(--shadow-md);
}

.coach-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.coach-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coach-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.coach-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-petrol);
    margin-bottom: 4px;
}

.coach-title {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}

.coach-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-badge {
    background-color: var(--petrol-dark);
    color: white;
    padding: 4px 6px;
    border-radius: 4px 4px 4px 0;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.coach-details {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
    flex: 1;
}

.coach-meta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.coach-price-section {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 150px;
}

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

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.btn-book {
    background-color: var(--primary-petrol);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    width: 100%;
    text-align: center;
}

.btn-book:hover {
    background-color: var(--petrol-dark);
}

/* Utilities */
.mt-4 {
    margin-top: 16px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .coach-card {
        flex-direction: column;
    }

    .coach-img {
        width: 100%;
        height: 200px;
    }

    .coach-price-section {
        text-align: left;
        margin-top: 16px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .btn-book {
        width: auto;
        margin-top: 0;
    }

    .search-container {
        position: static;
        transform: none;
        width: 100%;
        margin-top: -20px;
        margin-bottom: 20px;
    }

    .search-form {
        flex-direction: column;
    }

    .hero {
        padding-bottom: 40px;
    }
}

/* Mobile-only responsive (smaller than phone landscape) */
@media (max-width: 600px) {
    .search-row {
        flex-direction: column;
        gap: 12px;
    }

    .search-row .search-input-group,
    .search-row .filter-toggle,
    .search-row .search-btn {
        width: 100%;
        min-width: auto;
        max-width: none;
    }

    .location-row {
        flex-direction: column;
        gap: 12px;
    }

    .location-input-wrapper,
    .radius-select {
        width: 100%;
    }
}

/* Footer */
footer, .site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 40px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.footer-brand .logo {
    color: white;
}

.footer-brand .logo span {
    color: var(--petrol-light);
}

.footer-column h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--petrol-light);
}

/* Legacy footer styles for backward compatibility */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background-color: white;
    border-radius: var(--radius);
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.modal-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    line-height: 1.6;
    font-size: 0.95rem;
}

.modal-body h3 {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.modal-body p {
    margin-bottom: 12px;
}

/* Auth & Forms */
.auth-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 0 20px;
}

.auth-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-petrol);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.auth-btn:hover {
    background-color: var(--petrol-dark);
}

.auth-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.auth-switch-btn {
    background: none;
    border: none;
    color: var(--primary-petrol);
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
    margin-top: 10px;
}

/* Role Selection */
.user-type-label {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.role-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.role-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.role-option:hover {
    border-color: var(--petrol-light);
    background: #f8f9fa;
}

.role-option.selected {
    background-color: rgba(0, 98, 102, 0.05);
    border-color: var(--primary-petrol);
    box-shadow: 0 0 0 1px var(--primary-petrol);
}

.role-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

.role-text {
    flex: 1;
    text-align: left;
}

.role-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.role-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Onboarding Form */
.onboarding-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.auth-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    box-sizing: border-box;
}

.auth-textarea:focus {
    outline: none;
    border-color: var(--petrol-light);
}

/* Referral Code Field (Auth Page) */
.referral-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.referral-input-wrapper .auth-input {
    padding-right: 2.5rem;
}

.referral-input.referral-valid {
    border-color: #10b981;
    background-color: #f0fdf4;
}

.referral-input.referral-invalid {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.referral-input.referral-checking {
    border-color: #f59e0b;
    background-color: #fffbeb;
}

.referral-status-icon {
    position: absolute;
    right: 12px;
    font-size: 1rem;
    font-weight: bold;
}

.referral-status-icon.valid {
    color: #10b981;
}

.referral-status-icon.invalid {
    color: #ef4444;
}

.referral-status-icon.checking {
    color: #f59e0b;
}

.spinner-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f59e0b;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.referral-message {
    font-size: 0.85rem;
    padding: 0.25rem 0;
}

.referral-message.valid {
    color: #10b981;
}

.referral-message.invalid {
    color: #ef4444;
}

.auth-card .referral-success-banner {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.auth-card .referral-success-banner .success-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.auth-card .referral-success-banner .success-content {
    flex: 1;
}

.auth-card .referral-success-banner .success-content strong {
    display: block;
    color: #047857;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.auth-card .referral-success-banner .success-content p {
    color: #065f46;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.2s;
}

.checkbox-label:hover {
    background: #f8f9fa;
    border-color: var(--petrol-light);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 1rem;
    color: var(--text-main);
}

/* Language Selector */
.lang-selector {
    position: relative;
    margin-left: 16px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    height: 40px;
    color: white;
    box-sizing: border-box;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    flex-shrink: 0;
}

.lang-btn span,
.lang-option span {
    display: flex;
    align-items: center;
    line-height: 1;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    min-width: 140px;
    z-index: 100;
    margin-top: 4px;
}

.lang-dropdown.show {
    display: flex;
}

.lang-option {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-main);
}

.lang-option:hover {
    background-color: #f5f5f5;
}
/* Dashboard Styles */
.dashboard-container {
    max-width: 1200px;
    margin: 100px auto 40px;
    padding: 0 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.dashboard-tabs {
    display: flex;
    gap: 16px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 24px;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-muted);
    margin-bottom: -2px;
    transition: all 0.2s;
}

.tab-btn.active {
    color: var(--primary-petrol);
    border-bottom-color: var(--primary-petrol);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-petrol), var(--petrol-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 36px;
    flex-shrink: 0;
    opacity: 0.9;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-subtext {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

/* Stat card color variants */
.stat-card-blue {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-color: #bfdbfe;
}

.stat-card-blue .stat-value {
    color: #1e40af;
}

.stat-card-petrol {
    background: linear-gradient(135deg, #ffffff 0%, #f0fafa 100%);
    border-color: #a7d6d8;
}

.stat-card-petrol .stat-value {
    color: var(--primary-petrol);
}

.stat-card-yellow {
    background: linear-gradient(135deg, #ffffff 0%, #fefce8 100%);
    border-color: #fef08a;
}

.stat-card-yellow .stat-value {
    color: #ca8a04;
}

.stat-card-green {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-color: #bbf7d0;
}

.stat-card-green .stat-value {
    color: #15803d;
}

.stat-card-purple {
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
    border-color: #e9d5ff;
}

.stat-card-purple .stat-value {
    color: #7c3aed;
}

.stat-card-orange {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    border-color: #fed7aa;
}

.stat-card-orange .stat-value {
    color: #c2410c;
}

/* Skeleton loading states */
.skeleton-card {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    pointer-events: none;
}

.skeleton-line {
    background: #d0d0d0;
    border-radius: 4px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

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

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

/* Dashboard sections */
.dashboard-overview {
    animation: fadeInUp 0.4s ease-out;
}

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

.dashboard-section {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

/* Quick actions grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.quick-action-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.quick-action-card:hover {
    border-color: var(--primary-petrol);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(47, 128, 132, 0.15);
}

.quick-action-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.quick-action-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.quick-action-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* Dashboard two-column layout */
.dashboard-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

/* Upcoming sessions */
.upcoming-sessions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.upcoming-session-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-body);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.upcoming-session-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.session-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-petrol);
    color: white;
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 60px;
    flex-shrink: 0;
}

.session-date-day {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.session-date-month {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

.session-details {
    flex: 1;
}

.session-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.session-time {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.session-duration {
    font-size: 12px;
    color: var(--text-muted);
}

.session-status {
    flex-shrink: 0;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.status-completed {
    background: #dbeafe;
    color: #1e40af;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Activity list */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--bg-body);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.activity-item:hover {
    background: white;
    border-color: var(--border-color);
}

.activity-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.activity-time {
    font-size: 12px;
    color: var(--text-muted);
}

/* Empty states */
.empty-state-mini {
    text-align: center;
    padding: 32px 16px;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.empty-text {
    font-size: 14px;
    color: var(--text-muted);
}

.view-all-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-petrol);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.2s ease;
}

.view-all-link:hover {
    background: var(--primary-petrol);
    color: white;
    border-color: var(--primary-petrol);
}

/* Welcome card */
.welcome-card {
    background: linear-gradient(135deg, #f0fafa 0%, #ffffff 100%);
    border: 2px solid var(--primary-petrol);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-top: 24px;
}

.welcome-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.welcome-card p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0 0 20px 0;
}

/* Bookings Page Enhancements */
.bookings-container {
    animation: fadeInUp 0.4s ease-out;
}

.bookings-controls {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 24px;
}

.search-bar-container {
    margin-bottom: 16px;
}

.search-bar-container .search-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.search-bar-container .search-input:focus {
    outline: none;
    border-color: var(--primary-petrol);
    box-shadow: 0 0 0 3px rgba(47, 128, 132, 0.1);
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 16px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover {
    border-color: var(--primary-petrol);
    color: var(--primary-petrol);
}

.filter-tab.active {
    background: var(--primary-petrol);
    border-color: var(--primary-petrol);
    color: white;
}

.results-count {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-left: 4px;
}

.bookings-loading {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Articles System */
.articles-container {
    animation: fadeInUp 0.4s ease-out;
}

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.articles-loading {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 24px;
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.article-card-header {
    margin-bottom: 16px;
}

.article-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.article-card-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.article-card-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.article-card-excerpt {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-small {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    border: 2px solid;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-danger {
    background: white;
    color: #dc2626;
    border-color: #fca5a5;
}

.btn-danger:hover {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

/* Modern Article Editor */
.article-editor-modern {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 24px;
    animation: fadeInUp 0.3s ease-out;
}

.editor-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.editor-title-input {
    width: 100%;
    padding: 16px;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.editor-title-input:focus {
    outline: none;
    border-color: var(--primary-petrol);
    box-shadow: 0 0 0 3px rgba(47, 128, 132, 0.1);
}

.editor-excerpt-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.editor-excerpt-input:focus {
    outline: none;
    border-color: var(--primary-petrol);
    box-shadow: 0 0 0 3px rgba(47, 128, 132, 0.1);
}

.formatting-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--bg-body);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.toolbar-group {
    display: flex;
    gap: 4px;
}

.toolbar-btn {
    padding: 8px 12px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.toolbar-btn:hover {
    background: var(--primary-petrol);
    color: white;
    border-color: var(--primary-petrol);
}

.toolbar-btn.active {
    background: var(--primary-petrol);
    color: white;
    border-color: var(--primary-petrol);
}

.toolbar-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
}

.toolbar-spacer {
    flex: 1;
}

/* WYSIWYG Editor */
.wysiwyg-editor {
    width: 100%;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: white;
    transition: all 0.2s ease;
    cursor: text;
}

.wysiwyg-editor:focus {
    outline: none;
    border-color: var(--primary-petrol);
    box-shadow: 0 0 0 3px rgba(47, 128, 132, 0.1);
}

/* Placeholder for empty contenteditable */
.wysiwyg-editor:empty:before {
    content: attr(placeholder);
    color: #999;
    font-style: italic;
    pointer-events: none;
}

/* WYSIWYG Content Styling */
.wysiwyg-editor h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 24px 0 12px 0;
    line-height: 1.3;
}

.wysiwyg-editor h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 10px 0;
    line-height: 1.4;
}

.wysiwyg-editor p {
    margin: 12px 0;
    line-height: 1.7;
}

.wysiwyg-editor strong,
.wysiwyg-editor b {
    font-weight: 700;
    color: var(--text-dark);
}

.wysiwyg-editor em,
.wysiwyg-editor i {
    font-style: italic;
}

.wysiwyg-editor ul,
.wysiwyg-editor ol {
    margin: 12px 0;
    padding-left: 28px;
}

.wysiwyg-editor ul li {
    list-style-type: disc;
    margin: 6px 0;
    line-height: 1.6;
}

.wysiwyg-editor ol li {
    list-style-type: decimal;
    margin: 6px 0;
    line-height: 1.6;
}

.wysiwyg-editor a {
    color: var(--primary-petrol);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.wysiwyg-editor a:hover {
    color: var(--petrol-dark);
}

.wysiwyg-editor blockquote {
    border-left: 4px solid var(--primary-petrol);
    padding-left: 16px;
    margin: 16px 0;
    color: var(--text-muted);
    font-style: italic;
}

/* Ensure first element has no top margin */
.wysiwyg-editor > *:first-child {
    margin-top: 0;
}

/* Ensure last element has no bottom margin */
.wysiwyg-editor > *:last-child {
    margin-bottom: 0;
}

.preview-content h2 {
    font-size: 24px;
    margin: 24px 0 12px 0;
    color: var(--text-dark);
}

.preview-content h3 {
    font-size: 20px;
    margin: 20px 0 10px 0;
    color: var(--text-dark);
}

.preview-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.preview-content ul,
.preview-content ol {
    margin-bottom: 16px;
    padding-left: 28px;
}

.preview-content li {
    margin-bottom: 8px;
}

.preview-content a {
    color: var(--primary-petrol);
    text-decoration: underline;
}

.preview-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.editor-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.editor-actions-right {
    display: flex;
    gap: 12px;
}

.message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.message-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

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

/* Coach Articles on Profile */
.coach-articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.coach-article-preview {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.coach-article-preview:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.coach-article-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.coach-article-excerpt {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.coach-article-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Article Detail Modal */
.article-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.article-detail-modal {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.3s ease;
}

.article-detail-content {
    padding: 40px;
}

.article-detail-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-dark);
    line-height: 1.2;
}

.article-detail-meta {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.article-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-detail-body h2 {
    font-size: 24px;
    margin: 32px 0 16px 0;
    color: var(--text-dark);
}

.article-detail-body h3 {
    font-size: 20px;
    margin: 24px 0 12px 0;
    color: var(--text-dark);
}

.article-detail-body p {
    margin-bottom: 16px;
}

.article-detail-body ul,
.article-detail-body ol {
    margin: 16px 0;
    padding-left: 32px;
}

.article-detail-body li {
    margin-bottom: 8px;
}

.article-detail-body a {
    color: var(--primary-petrol);
    text-decoration: underline;
}

.article-detail-body strong {
    font-weight: 600;
}

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

.btn-primary {
    background-color: var(--primary-petrol);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: var(--petrol-dark);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-petrol);
    padding: 10px 20px;
    border: 2px solid var(--primary-petrol);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

/* Pro-bono Scheduler */
.probono-scheduler {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.time-slot {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot:hover {
    border-color: var(--petrol-light);
}

.time-slot.selected {
    background-color: var(--primary-petrol);
    color: white;
    border-color: var(--primary-petrol);
}

.time-slot.booked {
    background-color: var(--bg-body);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Booking Flow */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.booking-content {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.booking-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-body {
    padding: 24px;
}

.package-option {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.package-option:hover {
    border-color: var(--petrol-light);
}

.package-option.selected {
    border-color: var(--primary-petrol);
    background-color: rgba(0, 98, 102, 0.05);
}

.package-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-petrol);
    margin-bottom: 4px;
}

.package-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    margin: 8px 0;
}

.package-description {
    font-size: 14px;
    color: var(--text-muted);
}

/* Review System */
.review-list {
    margin-top: 24px;
}

.review-item {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-main);
}

.review-rating {
    color: var(--primary-petrol);
    font-weight: 600;
}

.review-text {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Admin Panel */
.admin-panel {
    max-width: 1000px;
    margin: 100px auto 40px;
    padding: 0 20px;
}

.feature-flag-item {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background-color: #ccc;
    border-radius: 13px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.toggle-switch.active {
    background-color: var(--primary-petrol);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    top: 2px;
    left: 2px;
    transition: left 0.2s;
}

.toggle-switch.active::after {
    left: 26px;
}

/* Infinite Scroll Loader */
.loader {
    text-align: center;
    padding: 24px;
    color: var(--text-muted);
}

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

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

/* Skeleton Loading */
@keyframes skeleton-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 0%,
        #e0e0e0 50%,
        #f0f0f0 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

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

.skeleton-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skeleton-header {
    display: flex;
    gap: 16px;
}

.skeleton-avatar {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    flex-shrink: 0;
}

.skeleton-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-title {
    width: 60%;
    height: 20px;
}

.skeleton-subtitle {
    width: 40%;
    height: 16px;
}

.skeleton-meta {
    width: 80%;
    height: 14px;
}

.skeleton-text {
    width: 100%;
    height: 14px;
}

.skeleton-text.short {
    width: 70%;
}

.skeleton-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.skeleton-badge {
    width: 80px;
    height: 28px;
    border-radius: 14px;
}

.skeleton-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.skeleton-price {
    width: 100px;
    height: 24px;
}

.skeleton-button {
    width: 120px;
    height: 40px;
    border-radius: 8px;
}

/* Filter Panel */
.filter-panel {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.filter-group {
    margin-bottom: 16px;
}

.filter-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 8px;
    display: block;
}

.filter-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chip {
    padding: 6px 12px;
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.chip:hover {
    border-color: var(--petrol-light);
}

.chip.selected {
    background-color: var(--primary-petrol);
    color: white;
    border-color: var(--primary-petrol);
}

/* Accessibility Improvements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary-petrol);
    outline-offset: 2px;
}

/* Enhanced Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.data-table th {
    background-color: var(--primary-petrol);
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
}

.data-table tr:hover {
    background-color: var(--bg-body);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-state-text {
    font-size: 18px;
    margin-bottom: 8px;
}

.empty-state-subtext {
    font-size: 14px;
}

/* Coach Detail Modal */
.coach-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.coach-detail-content {
    background: white;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.coach-detail-hero {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-petrol), var(--petrol-light));
}

.coach-detail-avatar {
    position: absolute;
    bottom: -60px;
    left: 32px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
}

.coach-detail-body {
    padding: 80px 32px 32px;
}

.coach-detail-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.coach-detail-title {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.coach-detail-location {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.coach-detail-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.coach-detail-stat {
    text-align: center;
}

.coach-detail-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-petrol);
}

.coach-detail-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.coach-detail-section {
    margin-bottom: 32px;
}

.coach-detail-section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
}

.badge-petrol {
    background-color: rgba(0, 98, 102, 0.1);
    color: var(--primary-petrol);
}

/* Alert Styles */
.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    border-left: 4px solid;
}

.alert-success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.alert-info {
    background-color: rgba(0, 98, 102, 0.1);
    border-color: var(--primary-petrol);
    color: var(--petrol-dark);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .coach-detail-avatar {
        width: 80px;
        height: 80px;
        bottom: -40px;
        left: 20px;
    }
    
    .coach-detail-body {
        padding: 60px 20px 20px;
    }
    
    .coach-detail-stats {
        flex-wrap: wrap;
    }
}

/* Debug Console Styles */
.debug-console {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #f0f0f0;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    z-index: 9999;
    border-top: 2px solid var(--primary-petrol);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.debug-console.visible {
    transform: translateY(0);
    height: 300px;
    max-height: 40vh;
}

.debug-console.hidden {
    transform: translateY(100%);
    height: 0;
}

.debug-console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #2a2a2a;
    border-bottom: 1px solid #444;
}

.debug-console-title {
    font-weight: bold;
    color: var(--petrol-light);
    font-size: 13px;
}

.debug-console-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.debug-console-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.debug-console-badge.error-badge {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.debug-console-badge.warn-badge {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.debug-console-badge .badge-count {
    min-width: 16px;
    text-align: center;
}

.debug-console-btn {
    background: #3a3a3a;
    border: 1px solid #555;
    color: #f0f0f0;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.debug-console-btn:hover {
    background: #4a4a4a;
}

.debug-console-btn:active {
    background: #2a2a2a;
}

.debug-console-body {
    height: calc(100% - 37px);
    overflow-y: auto;
    padding: 8px;
}

.debug-log {
    padding: 4px 8px;
    margin-bottom: 2px;
    border-left: 3px solid transparent;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.debug-log-log {
    border-left-color: #888;
}

.debug-log-info {
    border-left-color: var(--petrol-light);
    background: rgba(0, 139, 143, 0.1);
}

.debug-log-warn {
    border-left-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
}

.debug-log-error {
    border-left-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.debug-log-time {
    color: #888;
    margin-right: 8px;
    font-size: 11px;
}

.debug-log-type {
    font-weight: bold;
    margin-right: 8px;
}

.debug-log-log .debug-log-type {
    color: #888;
}

.debug-log-info .debug-log-type {
    color: var(--petrol-light);
}

.debug-log-warn .debug-log-type {
    color: #ffa500;
}

.debug-log-error .debug-log-type {
    color: #ff4444;
}

.debug-log-message {
    color: #f0f0f0;
}

/* Floating Action Button for Console */
.debug-console-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-petrol);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    transition: all 0.3s ease;
}

.debug-console-fab:hover {
    background: var(--petrol-dark);
    transform: scale(1.1);
}

.debug-console-fab:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .debug-console.visible {
        height: 250px;
        max-height: 50vh;
    }
    
    .debug-console-fab {
        bottom: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* Sign Out Confirmation Page */
.signout-container {
    max-width: 500px;
    margin: 120px auto 40px;
    padding: 0 20px;
}

.signout-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.signout-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.signout-card h2 {
    color: var(--primary-petrol);
    margin-bottom: 16px;
}

.signout-card p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.signout-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Old search filters - removed, using new search-row/location-row layout */

/* iPad Optimizations */
@media (max-width: 1024px) {
    .nav-flex {
        flex-wrap: wrap;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        flex-wrap: wrap;
    }
    
    .nav-links a,
    .nav-auth-btn {
        margin: 4px 8px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-container {
        position: static;
        transform: none;
        width: 100%;
        margin-top: -20px;
        margin-bottom: 20px;
    }
    
    .coach-card {
        flex-direction: column;
    }
    
    .coach-img {
        width: 100%;
        height: 250px;
    }
    
    .dashboard-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        white-space: nowrap;
    }
}

/* Touch-friendly enhancements for iPad */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap targets */
    .btn-primary,
    .btn-secondary,
    .auth-btn,
    .nav-auth-btn,
    .tab-btn {
        min-height: 44px;
        padding: 12px 24px;
    }
    
    .coach-card {
        padding: 20px;
    }
    
    .coach-card:active {
        background: var(--bg-body);
    }
    
    /* Better touch feedback */
    button:active,
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.98);
    }
}

/* Coach Detail Modal - Improved Layout */
.coach-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.btn-book-prominent {
    background-color: var(--primary-petrol);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 98, 102, 0.3);
}

.btn-book-prominent:hover {
    background-color: var(--petrol-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 98, 102, 0.4);
}

.btn-book-prominent:active {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* Currency Selector */
.currency-selector {
    position: relative;
    margin-left: 16px;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    height: 40px;
    color: white;
    box-sizing: border-box;
    font-weight: 600;
}

.currency-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    min-width: 120px;
    z-index: 100;
    margin-top: 4px;
}

.currency-dropdown.show {
    display: flex;
}

.currency-option {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
}

.currency-option:hover {
    background-color: #f5f5f5;
}

.currency-option.active {
    background-color: var(--primary-petrol);
    color: white;
}

/* Search Filters - Single Row */
.search-filters {
    margin-top: 12px;
}

/* Removed duplicate filter styles */

@media (max-width: 768px) {
    .coach-detail-header {
        flex-direction: column;
    }

    .btn-book-prominent {
        width: 100%;
    }
}

/* Availability Calendar */
.availability-calendar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.availability-day {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    background: white;
}

.availability-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.availability-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.availability-slot {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
}

.availability-empty {
    color: var(--text-muted);
    font-style: italic;
    padding: 12px;
    text-align: center;
}

.time-input {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-secondary {
    background: #f0f0f0;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #e0e0e0;
}

/* Booking Flow */
.booking-modal {
    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;
    padding: 20px;
}

.booking-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
}

.booking-header {
    margin-bottom: 24px;
}

.booking-header h2 {
    margin: 0 0 8px 0;
    color: var(--text-main);
}

.booking-step {
    margin-bottom: 24px;
}

.booking-step-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-petrol);
}

.date-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.date-btn {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.date-btn:hover {
    border-color: var(--primary-petrol);
    background: rgba(0, 98, 102, 0.05);
}

.date-btn.selected {
    border-color: var(--primary-petrol);
    background: var(--primary-petrol);
    color: white;
}

.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

.time-slot-btn {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.time-slot-btn:hover {
    border-color: var(--primary-petrol);
    background: rgba(0, 98, 102, 0.05);
}

.time-slot-btn.selected {
    border-color: var(--primary-petrol);
    background: var(--primary-petrol);
    color: white;
}

.time-slot-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.booking-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.summary-row.total {
    border-top: 2px solid var(--border-color);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 600;
    font-size: 18px;
}

.booking-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Bookings List */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    background: white;
    transition: box-shadow 0.2s;
}

.booking-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.booking-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-status.pending {
    background: #fff3cd;
    color: #856404;
}

.booking-status.confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.booking-status.completed {
    background: #d4edda;
    color: #155724;
}

.booking-status.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.booking-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.booking-actions-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Form Hints */
.form-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-row {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .time-slot-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .booking-modal {
        padding: 0;
    }

    .booking-content {
        max-height: 100vh;
        border-radius: 0;
    }
}

/* Booking Card Components */
.booking-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.booking-card-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-petrol);
}

.booking-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.booking-detail-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 14px;
}

.booking-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.booking-card h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--text-main);
}

/* Date selector for booking modal */
.date-btn {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    white-space: nowrap;
}

.date-btn:hover {
    border-color: var(--primary-petrol);
    background: var(--petrol-light);
    color: white;
}

.date-btn.selected {
    background: var(--primary-petrol);
    color: white;
    border-color: var(--primary-petrol);
}

.time-slot-btn {
    padding: 12px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.time-slot-btn:hover {
    border-color: var(--primary-petrol);
    background: #f0f9fa;
}

.time-slot-btn.selected {
    background: var(--primary-petrol);
    color: white;
    border-color: var(--primary-petrol);
}

/* Booking Summary */
.booking-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
}

.booking-summary h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-total {
    font-weight: bold;
    font-size: 18px;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid var(--primary-petrol);
}

/* ========================================
   IMPROVED COACH CARD STYLES v1.6.0
   ======================================== */

/* Filter Button - Same height as navbar buttons */
.coaches-header .filter-toggle-btn {
    padding: 8px 16px;
    height: 40px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s;
}

.coaches-header .filter-toggle-btn:hover {
    background: #f5f5f5;
    border-color: var(--primary-petrol);
}

.coaches-header .filter-toggle-btn.active {
    background: var(--primary-petrol);
    color: white;
    border-color: var(--primary-petrol);
}

.filter-count {
    background: #ff6b6b;
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

/* Coach Card Container */
.coach-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.coach-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.coach-card.has-video {
    border-left: 4px solid var(--primary-petrol);
}

/* Image Container with Video Overlay */
.coach-img-container {
    position: relative;
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
}

.coach-img-container.clickable {
    cursor: pointer;
}

.coach-img-container .coach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coach-img-container.clickable:hover .coach-img {
    transform: scale(1.05);
}

/* Video Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coach-img-container.clickable:hover .video-play-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.play-button span {
    font-size: 24px;
    color: var(--primary-petrol);
    margin-left: 4px;
}

.coach-img-container.clickable:hover .play-button {
    transform: scale(1.1);
}

.video-label {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Image Column - Contains image and rating stacked vertically */
.coach-image-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

/* Rating Section - Under Profile Picture */
.coach-rating-section {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
}

.rating-compact {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: background 0.2s;
}

.rating-compact:hover {
    background: #e9ecef;
}

.rating-stars-compact {
    display: flex;
    gap: 2px;
}

.star-compact {
    font-size: 0.9rem;
    color: #d1d5db;
}

.star-compact.filled {
    color: #f59e0b;
}

.rating-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-petrol);
}

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

.new-coach-compact {
    padding: 6px 12px;
    background: var(--primary-petrol);
    border-radius: 20px;
    transition: background 0.2s;
}

.new-coach-compact:hover {
    background: #005555;
}

.new-badge-compact {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

/* Coach Info Section */
.coach-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    text-align: left;
}

.coach-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-petrol);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    text-align: left;
    width: 100%;
}

.verified-check {
    background: #10b981;
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.coach-title {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    text-align: left;
    width: 100%;
}

/* Meta Row - Location and Languages */
.coach-meta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 4px;
    width: 100%;
}

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

/* Language Flags */
.language-flags {
    display: flex;
    align-items: center;
    gap: 4px;
}

.flag-icon {
    font-size: 1.2rem;
    cursor: default;
}

.flag-img {
    border-radius: 2px;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.more-langs {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Reviews Section - Prominent */
.coach-reviews-section {
    margin: 8px 0;
    cursor: pointer;
}

.reviews-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border-radius: 8px;
    border: 1px solid #f0e6b3;
    transition: all 0.2s;
}

.reviews-display.clickable:hover {
    background: linear-gradient(135deg, #fff3cc 0%, #ffe699 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rating-stars-prominent {
    display: flex;
    gap: 2px;
}

.star-prominent {
    font-size: 1.1rem;
    color: #ddd;
}

.star-prominent.filled {
    color: #f59e0b;
}

.rating-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
}

.reviews-count {
    font-size: 0.85rem;
    color: #b45309;
}

.view-reviews-link {
    font-size: 0.8rem;
    color: var(--primary-petrol);
    font-weight: 600;
    margin-left: auto;
}

/* NEW COACH Badge - Dark background with white text for readability */
.new-coach-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #006266 0%, #004d50 100%);
    border-radius: 8px;
    border: 1px solid #003d40;
}

.new-coach-badge .new-badge {
    font-weight: 600;
    color: white;
}

.new-coach-badge .be-first {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Coach Bio */
.coach-bio {
    margin: 4px 0;
    text-align: left;
}

.coach-bio p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
    text-align: left;
}

/* Specialty Tags */
.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.specialty-tag {
    background: #f0f9f8;
    color: var(--primary-petrol);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #d0e8e6;
}

.specialty-tag.more {
    background: #e5e5e5;
    color: #666;
    border-color: #d0d0d0;
}

/* Price Section */
.coach-price-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    min-width: 160px;
    gap: 12px;
}

.free-intro-badge {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #6ee7b7;
}

.price-info {
    text-align: right;
}

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

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.btn-book {
    background: var(--primary-petrol);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
    width: 100%;
    display: block;
}

.btn-book:hover {
    background: var(--petrol-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 98, 102, 0.3);
}

/* ========================================
   VIDEO POPUP STYLES
   ======================================== */

.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.video-popup-container {
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.video-popup-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-petrol);
}

.video-popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.video-popup-close:hover {
    background: #f0f0f0;
    color: #333;
}

.video-popup-content {
    padding: 0;
    background: #000;
}

.video-player {
    width: 100%;
    max-height: 70vh;
    display: block;
}

/* ========================================
   REVIEWS POPUP STYLES
   ======================================== */

.reviews-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.reviews-popup-container {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.reviews-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
}

.reviews-header-info h3 {
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    color: var(--text-main);
}

.reviews-avg-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.big-rating {
    font-size: 2rem;
    font-weight: 700;
    color: #92400e;
}

.rating-stars-large .star {
    font-size: 1.2rem;
    color: #ddd;
}

.rating-stars-large .star.filled {
    color: #f59e0b;
}

.total-reviews {
    font-size: 0.9rem;
    color: #b45309;
}

.reviews-popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.reviews-popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.reviews-popup-content {
    padding: 20px 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.reviews-loading {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.no-reviews {
    text-align: center;
    padding: 40px 20px;
}

.no-reviews-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.no-reviews p {
    margin: 0;
    color: var(--text-main);
    font-weight: 500;
}

.no-reviews-subtext {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px !important;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-item {
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

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

.reviewer-name {
    font-weight: 600;
    color: var(--text-main);
}

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

.review-rating {
    display: flex;
    gap: 2px;
}

.star-small {
    font-size: 0.9rem;
    color: #ddd;
}

.star-small.filled {
    color: #f59e0b;
}

.review-text {
    margin: 0;
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .coach-card {
        flex-direction: column;
        padding: 16px;
    }

    .coach-img-container {
        width: 100%;
        height: 200px;
    }

    .coach-name-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .coach-meta-row {
        flex-wrap: wrap;
    }

    .coach-price-section {
        width: 100%;
        flex-direction: row;
        align-items: center;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #eee;
    }

    .price-info {
        text-align: left;
    }

    .btn-book {
        width: auto;
        padding: 10px 20px;
    }

    .reviews-display {
        flex-wrap: wrap;
    }

    .view-reviews-link {
        width: 100%;
        margin-top: 4px;
        margin-left: 0;
    }

    .video-popup-container {
        max-width: 100%;
        margin: 10px;
    }

    .reviews-popup-container {
        max-width: 100%;
        margin: 10px;
    }
}

/* ========================================
   ADDITIONAL FIXES v1.6.2
   ======================================== */

/* Sort Button - Same height as filter button */
.sort-select-mobile {
    height: 40px;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.sort-select-mobile:hover {
    border-color: var(--primary-petrol);
}

.sort-select-mobile:focus {
    outline: none;
    border-color: var(--primary-petrol);
    box-shadow: 0 0 0 2px rgba(0, 98, 102, 0.1);
}

/* Video Popup - iframe support for YouTube/Vimeo */
.video-iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.video-error {
    padding: 40px;
    text-align: center;
    background: #f9fafb;
}

.video-error p {
    color: #6b7280;
    margin-bottom: 16px;
}

.video-external-link {
    color: var(--primary-petrol);
    text-decoration: none;
    font-weight: 500;
}

.video-external-link:hover {
    text-decoration: underline;
}

/* Review Form Styles */
.add-review-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-petrol);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.2s;
}

.add-review-btn:hover {
    background: var(--petrol-dark);
}

.add-review-btn.login-to-review {
    background: #6b7280;
}

.add-review-btn.login-to-review:hover {
    background: #4b5563;
}

.review-action-area {
    margin-bottom: 20px;
}

.already-reviewed-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    color: #166534;
    font-weight: 500;
}

.already-reviewed-notice .check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    font-size: 14px;
}

.add-review-form {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.add-review-form h4 {
    margin: 0 0 16px 0;
    color: var(--text-main);
}

.rating-select {
    margin-bottom: 16px;
}

.rating-select label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.star-select {
    display: flex;
    gap: 4px;
}

.star-selectable {
    font-size: 1.8rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
}

.star-selectable:hover {
    transform: scale(1.1);
}

.star-selectable.selected {
    color: #f59e0b;
}

.add-review-form .form-group {
    margin-bottom: 16px;
}

.add-review-form .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-main);
}

.add-review-form .form-group input,
.add-review-form .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.add-review-form .form-group input:focus,
.add-review-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-petrol);
}

.review-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 16px;
}

.review-form-actions .btn-cancel {
    padding: 10px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 0.95rem;
}

.review-form-actions .btn-submit {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: var(--primary-petrol);
    color: white;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
}

.review-form-actions .btn-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.review-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}

.review-message.success {
    background: #d1fae5;
    color: #065f46;
}

.review-message.error {
    background: #fee2e2;
    color: #991b1b;
}

/* Language Flags - Better Safari/cross-browser support */
.language-flags {
    display: flex;
    align-items: center;
    gap: 6px;
}

.flag-icon {
    font-size: 1.1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Fallback for browsers that don't render emoji flags well */
@supports not (font-family: "Apple Color Emoji") {
    .flag-icon {
        font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", sans-serif;
    }
}

.more-langs {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* Mobile responsive for video */
@media (max-width: 768px) {
    .video-iframe {
        height: 300px;
    }

    .star-selectable {
        font-size: 2rem;
    }
}

/* ============================================
   Subscription Dashboard Styles
   ============================================ */

.subscription-dashboard {
    max-width: 800px;
}

.subscription-status-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
}

.subscription-status-card.status-trial {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.subscription-status-card.status-active {
    border-left-color: #22c55e;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.subscription-status-card.status-expired,
.subscription-status-card.status-trial_expired {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.subscription-status-card.status-cancelled {
    border-left-color: #6b7280;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-badge.blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-badge.green {
    background: #dcfce7;
    color: #166534;
}

.status-badge.red {
    background: #fee2e2;
    color: #dc2626;
}

.status-badge.orange {
    background: #ffedd5;
    color: #c2410c;
}

.status-badge.gray {
    background: #f3f4f6;
    color: #4b5563;
}

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

.status-message {
    color: var(--text-main);
    line-height: 1.6;
}

.status-message p {
    margin: 0 0 8px 0;
}

.status-message.warning {
    color: #b91c1c;
}

.trial-ends, .renewal-date {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing Card */
.subscription-pricing-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-petrol);
    text-align: center;
}

.subscription-pricing-card h4 {
    margin: 0 0 16px 0;
    font-size: 1.25rem;
    color: var(--text-main);
}

.subscription-pricing-card .price-display {
    margin-bottom: 24px;
}

.subscription-pricing-card .price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-petrol);
}

.subscription-pricing-card .price-period {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: var(--text-main);
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-subscribe {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* FAQ Section */
.subscription-faq {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.subscription-faq h4 {
    margin: 0 0 16px 0;
    color: var(--text-main);
}

.subscription-faq details {
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

.subscription-faq details:last-child {
    border-bottom: none;
}

.subscription-faq summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--text-main);
    padding: 8px 0;
}

.subscription-faq summary:hover {
    color: var(--primary-petrol);
}

.subscription-faq details p {
    margin: 8px 0 0 0;
    padding-left: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .subscription-pricing-card .price-amount {
        font-size: 2.5rem;
    }

    .subscription-status-card,
    .subscription-pricing-card,
    .subscription-faq {
        padding: 20px;
    }
}
