/* ============================================
   CA Rachana Ranade - Rachana Ranade
   Design System: Dark + Gold/Yellow
   ============================================ */

:root {
    --primary-dark: #1A1A1A;
    --primary-yellow: #F5A623;
    --yellow-hover: #E09000;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #E5E5E5;
    --success: #4CAF50;
    --danger: #E53E3E;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    color-scheme: light;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

/* Toast above fixed header */
.blazored-toast-container { z-index: 9999 !important; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
html { scroll-behavior: smooth; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-yellow); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow-hover); }

/* ============ Layout ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ Header ============ */
.site-header {
    background: var(--primary-dark);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 18px;
}

.site-logo img { height: 40px; width: auto; }

.site-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-dark);
}

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}
.site-nav a:hover { opacity: 1; color: var(--primary-yellow); }
.site-nav a.active { color: var(--primary-yellow); opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-actions a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}
.header-actions a:hover { color: var(--primary-yellow); opacity: 1; }

.cart-btn {
    color: var(--white) !important;
    font-size: 18px !important;
    position: relative;
}
.cart-btn:hover { color: var(--primary-yellow) !important; }

.profile-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark) !important;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-login {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}
.btn-login:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow) !important;
}

.btn-signup {
    background: var(--primary-yellow);
    color: var(--primary-dark) !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.btn-signup:hover {
    background: var(--yellow-hover);
    transform: translateY(-1px);
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-dark);
}
.btn-primary:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
}

.btn-dark {
    background: var(--primary-dark);
    color: var(--white);
}
.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}
.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-buy {
    background: var(--primary-yellow);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
}
.btn-buy:hover { background: var(--yellow-hover); transform: translateY(-2px); }

/* ============ Hero Section ============ */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2D2D2D 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(245,166,35,0.1) 0%, transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.15);
    border: 1px solid var(--primary-yellow);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero-badge span {
    color: var(--primary-yellow);
    font-size: 13px;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}
.hero h1 .highlight { color: var(--primary-yellow); }

.hero-description {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 480px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-wrapper {
    width: 380px; height: 380px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3D3D3D 0%, #2A2A2A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, transparent 50%);
    border-radius: 50%;
    z-index: -1;
}
.hero-image-wrapper i {
    font-size: 120px;
    color: rgba(255,255,255,0.3);
}

/* ============ Stats ============ */
.stats {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.stat-item { text-align: center; padding: 20px; }
.stat-icon {
    width: 56px; height: 56px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary-dark);
}
.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}
.stat-label { color: var(--text-gray); font-size: 14px; }

/* ============ Section Headers ============ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.section-header p {
    color: var(--text-gray);
    font-size: 16px;
}

/* ============ Course Cards ============ */
.section-courses { padding: 80px 0; background: var(--white); }

.course-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.course-tab {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-gray);
}
.course-tab:hover { border-color: var(--primary-dark); color: var(--primary-dark); }
.course-tab.active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}
.course-tab-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px; padding: 0 6px;
    border-radius: 10px; font-size: 11px; font-weight: 700;
    background: var(--primary-yellow); color: var(--primary-dark);
    margin-left: 6px;
}
.course-tab.active .course-tab-count { background: rgba(255,255,255,0.25); color: white; }

/* Admin dialog tab bar override */
.admin-panel .course-tabs {
    justify-content: flex-start; gap: 0; margin-bottom: 0;
    border-bottom: 2px solid var(--border-color); padding: 0 24px;
    background: var(--light-bg);
}
.admin-panel .course-tab {
    border-radius: 0; border: none; border-bottom: 3px solid transparent;
    padding: 14px 20px; font-size: 13px; background: transparent;
    margin-bottom: -2px;
}
.admin-panel .course-tab:hover { background: rgba(0,0,0,0.03); border-bottom-color: #ccc; }
.admin-panel .course-tab.active {
    background: transparent; color: var(--primary-dark);
    border-bottom-color: var(--primary-yellow); font-weight: 700;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.course-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.course-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.course-image-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
}
.course-image-placeholder h4 { font-size: 20px; margin-bottom: 4px; }
.course-image-placeholder p { font-size: 12px; opacity: 0.8; }

.course-card:nth-child(3n+2) .course-image-placeholder {
    background: linear-gradient(135deg, #8B5A2B 0%, #A0522D 100%);
}
.course-card:nth-child(3n+3) .course-image-placeholder {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
}

.course-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--primary-yellow);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}
.course-badge.new { background: var(--success); color: var(--white); }
.course-badge.free { background: var(--success); color: var(--white); }

.course-content { padding: 20px; }
.course-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}
.course-content .description {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.course-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 12px;
}
.course-meta span { display: flex; align-items: center; gap: 4px; }

.course-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.rating-score { font-weight: 600; color: var(--primary-dark); font-size: 14px; }
.rating-stars { color: var(--primary-yellow); font-size: 12px; }
.rating-count { color: var(--text-light); font-size: 12px; }

.course-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price { display: flex; align-items: center; gap: 8px; }
.current-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}
.original-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.see-all-link { text-align: center; }
.see-all-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
}
.see-all-link a:hover { color: var(--primary-yellow); }

/* ============ Membership ============ */
.section-membership { padding: 80px 0; background: var(--light-bg); }

.membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}
.membership-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.membership-card:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-4px);
}
.membership-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFD93D 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
    flex-shrink: 0;
}
.membership-info h4 { font-size: 16px; margin-bottom: 4px; color: var(--primary-dark); }
.membership-info p { color: var(--text-gray); font-size: 13px; line-height: 1.5; }

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

/* ============ Features (dark bg) ============ */
.section-features {
    padding: 80px 0;
    background: var(--primary-dark);
}
.section-features .section-header h2 { color: var(--white); }
.section-features .section-header p { color: rgba(255,255,255,0.7); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.feature-item { text-align: center; padding: 20px; }
.feature-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    background: var(--primary-yellow);
    color: var(--primary-dark);
    transform: scale(1.1);
}
.feature-item h4 { color: var(--white); font-size: 16px; margin-bottom: 8px; }
.feature-item p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.5; }

/* ============ Testimonials ============ */
.section-testimonials { padding: 80px 0; background: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-4px);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}
.testimonial-avatar.pink { background: #E91E63; }
.testimonial-avatar.blue { background: #2196F3; }
.testimonial-avatar.green { background: #4CAF50; }
.testimonial-avatar.orange { background: #FF9800; }
.testimonial-avatar.purple { background: #9C27B0; }

.testimonial-info h5 { font-size: 14px; color: var(--primary-dark); margin-bottom: 2px; }
.testimonial-info p { font-size: 12px; color: var(--text-light); }

.testimonial-text {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
    font-style: italic;
}

/* ============ Products Grid ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.product-card-img {
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 48px;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 20px; }
.product-card-body h3 { font-size: 18px; margin-bottom: 8px; color: var(--primary-dark); }
.product-card-body .desc { color: var(--text-gray); font-size: 13px; margin-bottom: 16px; line-height: 1.5; }

/* ============ Footer ============ */
.site-footer {
    background: var(--primary-dark);
    padding: 60px 0 30px;
    color: var(--white);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-brand { max-width: 280px; }
.footer-brand .logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-brand .logo-text .ico {
    width: 36px; height: 36px;
    background: var(--primary-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-dark);
}
.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary-yellow);
    color: var(--primary-dark);
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--white);
}
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}
.footer-column ul li a:hover { color: var(--primary-yellow); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 12px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 12px; }
.footer-bottom-links a:hover { color: var(--primary-yellow); }

/* ============ Page Sections ============ */
.page-section {
    padding: 80px 0;
}
.page-section.bg-light { background: var(--light-bg); }
.page-section.bg-dark { background: var(--primary-dark); color: var(--white); }

.page-title-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2D2D2D 100%);
    padding: 120px 0 40px;
    color: var(--white);
}
.page-title-bar h1 { font-size: 36px; margin-bottom: 8px; }
.page-title-bar p { color: rgba(255,255,255,0.7); font-size: 16px; }

/* ============ Form Controls ============ */
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    transition: var(--transition);
    background: #FFFFFF !important;
    color: #1A1A1A !important;
}
select.form-control,
.admin-content select,
.admin-panel select,
select[class*="form-control"] {
    background: #FFFFFF !important;
    color: #333333 !important;
    appearance: auto;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    cursor: pointer;
}
select.form-control option,
.admin-content select option {
    background: #FFFFFF !important;
    color: #333333 !important;
    padding: 8px;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}

/* ============ Auth Pages ============ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2D2D2D 100%);
    padding: 120px 20px 60px;
}
.auth-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.auth-card h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

/* ============ Admin Table ============ */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}
.admin-table thead tr {
    background: var(--primary-dark) !important;
}
.admin-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--primary-dark);
    white-space: nowrap;
}
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}
.admin-table tbody tr:hover { background: rgba(245,166,35,0.04); }

/* ============ Badges ============ */
.badge-yellow {
    background: rgba(245,166,35,0.15);
    color: #B07800;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-green {
    background: rgba(76,175,80,0.15);
    color: #2E7D32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-red {
    background: rgba(229,62,62,0.15);
    color: #C62828;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-blue {
    background: rgba(41,128,185,0.15);
    color: #1A5276;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-orange {
    background: rgba(230,126,34,0.15);
    color: #A04000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-purple {
    background: rgba(142,68,173,0.15);
    color: #6C3483;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
    font-size: 12px;
    font-weight: 600;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image-wrapper { width: 280px; height: 280px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .courses-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 36px; }
    .site-nav { display: none; }
    .section-header h2 { font-size: 28px; }
    .courses-grid, .products-grid { grid-template-columns: 1fr; }
    .membership-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ============ MudBlazor Overrides ============ */
.mud-progress-linear { --mud-palette-primary: #F5A623; }
.mud-button-filled-primary { background-color: var(--primary-yellow) !important; color: var(--primary-dark) !important; }
.mud-input-outlined .mud-input-slot { border-color: var(--border-color) !important; }
.mud-input-outlined:focus-within .mud-input-slot { border-color: var(--primary-yellow) !important; }

/* ============ Admin Layout ============ */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #F1F5F9;
}

.admin-sidebar {
    width: 260px;
    background: var(--primary-dark);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-logo { height: 36px; width: auto; }

.admin-sidebar-badge {
    background: var(--primary-yellow);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-nav { flex: 1; padding: 16px 0; }

.admin-nav-section { margin-bottom: 8px; }

.admin-nav-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 24px;
    margin: 0;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}
.admin-nav-item i { width: 18px; text-align: center; font-size: 15px; }
.admin-nav-item:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.admin-nav-item.active {
    background: rgba(245,166,35,0.15);
    color: var(--primary-yellow);
    border-right: 3px solid var(--primary-yellow);
}

.admin-sidebar-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    background: var(--white);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
}
.admin-page-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}
.admin-topbar-right { display: flex; align-items: center; gap: 16px; }

.admin-content { padding: 32px; flex: 1; }

/* Admin Cards */
.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.admin-stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.admin-stat-card:hover { box-shadow: var(--card-shadow); transform: translateY(-2px); }
.admin-stat-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.admin-stat-icon.yellow { background: rgba(245,166,35,0.12); color: #B07800; }
.admin-stat-icon.green { background: rgba(76,175,80,0.12); color: #2E7D32; }
.admin-stat-icon.blue { background: rgba(33,150,243,0.12); color: #1565C0; }
.admin-stat-icon.purple { background: rgba(156,39,176,0.12); color: #7B1FA2; }

.admin-stat-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}
.admin-stat-label { font-size: 13px; color: var(--text-gray); }

/* Admin Panel Card */
.admin-panel {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
    overflow: hidden;
}
.admin-panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-panel-header h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}
.admin-panel-body { padding: 24px; }

/* Admin Form */
.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.admin-form-grid .full-width { grid-column: span 2; }

/* Admin Empty State */
.admin-empty {
    text-align: center;
    padding: 60px 20px;
}
.admin-empty i { font-size: 48px; color: var(--border-color); margin-bottom: 16px; display: block; }
.admin-empty h3 { color: var(--text-gray); margin-bottom: 8px; }
.admin-empty p { color: var(--text-light); margin-bottom: 24px; }

/* Admin Table Enhanced */
.admin-table tbody tr { cursor: pointer; }
.admin-table .actions-cell { text-align: right; white-space: nowrap; }
.admin-table .actions-cell button {
    background: none; border: none; cursor: pointer;
    font-weight: 600; font-size: 13px; padding: 4px 8px;
}
.admin-table .btn-edit { color: var(--primary-yellow); }
.admin-table .btn-play { color: #27AE60; }
.admin-table .btn-play:hover { color: #1E8449; }
.admin-table .btn-delete { color: var(--danger); }

/* ============ Modal ============ */
.modal-overlay {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px; animation: modalFadeIn .2s ease;
}
.modal-content {
    background: #fff; border-radius: 16px; width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,.2); overflow: hidden;
    animation: modalSlideUp .25s ease;
}
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid #eee;
}
.modal-header h3 { font-size: 18px; font-weight: 700; margin: 0; }
.modal-close {
    width: 32px; height: 32px; border-radius: 8px; border: none;
    background: #f5f5f4; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #888; transition: all .2s;
}
.modal-close:hover { background: #e7e5e4; color: #333; }
.modal-body { padding: 24px; }
.modal-footer {
    display: flex; justify-content: flex-end; gap: 12px;
    padding: 16px 24px; border-top: 1px solid #eee; background: #fafaf9;
}
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============ Admin Table Wrap ============ */
.admin-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid #e7e5e4; background: #fff; box-shadow: var(--card-shadow); }
.admin-table-wrap .admin-table { margin: 0; border: none; box-shadow: none; }

/* Small buttons */
.btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 6px; cursor: pointer; border: 1px solid #e7e5e4; background: #fff; transition: all .2s; }
.btn-sm:hover { background: #f5f5f4; }
.btn-sm.btn-outline { background: none; border: 1px solid #d6d3d1; }
.btn-sm.btn-outline:hover { border-color: #a8a29e; }

/* Form groups in modals */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: #57534E; }

@media (max-width: 1024px) {
    .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-form-grid { grid-template-columns: 1fr; }
    .admin-form-grid .full-width { grid-column: span 1; }
}

/* ============ Cart & Checkout Responsive ============ */
@media (max-width: 768px) {
    .page-section > .container > div[style*="grid-template-columns: 1fr 320px"],
    .page-section > .container > div[style*="grid-template-columns: 1fr 380px"],
    .page-section > .container > div[style*="grid-template-columns:1fr 320px"],
    .page-section > .container > div[style*="grid-template-columns:1fr 380px"] {
        display: flex !important;
        flex-direction: column !important;
    }
}

/* ============ Product Detail Page ============ */
.pd-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.pd-left { min-width: 0; }
.pd-right { position: sticky; top: 100px; }

/* Hero / Video Area */
.pd-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1A1A1A;
    border-radius: 12px;
    overflow: hidden;
}
.pd-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.pd-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pd-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #F5A623;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 24px rgba(245, 166, 35, 0.4);
}
.pd-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.5);
}
.pd-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.95);
    color: #1A1A1A;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Product Info */
.pd-info { padding: 32px 0 0; }
.pd-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.3;
    margin-bottom: 12px;
}
.pd-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Meta Row */
.pd-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eee;
}
.pd-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}
.pd-meta-item i {
    color: #999;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Stats Grid */
.pd-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 28px 0;
    border-bottom: 1px solid #eee;
}
.pd-stat {
    text-align: center;
    padding: 12px 8px;
    position: relative;
}
.pd-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #eee;
}
.pd-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: #1A1A1A;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}
.pd-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
}
.pd-stat-label {
    font-size: 12px;
    color: #999;
    line-height: 1.3;
}

/* Sections */
.pd-section {
    padding: 32px 0;
    border-bottom: 1px solid #eee;
}
.pd-section:last-child { border-bottom: none; }
.pd-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
}
.pd-body-text {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

/* Review Card */
.pd-review-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
}
.pd-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1A1A1A;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== RIGHT: Purchase Card ===== */
.pd-purchase-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.pd-card-thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.pd-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pd-card-thumb-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #e88ca5, #d4738a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: white;
}
.pd-card-thumb-placeholder h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.pd-card-thumb-placeholder p {
    font-size: 14px;
    opacity: 0.8;
}
.pd-card-body { padding: 24px; }

/* Price */
.pd-card-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}
.pd-price-sale {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1A1A1A;
}
.pd-price-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}
.pd-price-discount {
    font-size: 12px;
    font-weight: 700;
    color: #4CAF50;
    background: rgba(76,175,80,0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Validity */
.pd-card-validity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.pd-card-validity i { color: #999; }

/* Buttons */
.pd-btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    background: #1A1A1A;
    color: white;
    border: 2px solid #1A1A1A;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 10px;
}
.pd-btn-buy:hover { background: #333; border-color: #333; }
.pd-btn-buy:disabled { opacity: 0.6; cursor: not-allowed; }

.pd-btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: white;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.pd-btn-cart:hover { background: #f5f5f5; }
.pd-btn-cart:disabled { opacity: 0.6; cursor: not-allowed; }

/* Feature Checklist */
.pd-features { margin-top: 24px; }
.pd-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}
.pd-feature-item i {
    color: #4CAF50;
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .pd-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pd-right {
        position: static;
        order: -1;
    }
    .pd-purchase-card {
        display: grid;
        grid-template-columns: 180px 1fr;
    }
    .pd-card-thumb { aspect-ratio: unset; }
    .pd-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-stat:nth-child(2)::after { display: none; }
}

@media (max-width: 600px) {
    .pd-purchase-card {
        grid-template-columns: 1fr;
    }
    .pd-title { font-size: 1.4rem; }
    .pd-meta-row { flex-direction: column; gap: 12px; }
    .pd-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ Category / Products Page ============ */

/* Banner */
.cat-banner {
    background: #1A1A1A;
    padding: 100px 0 40px;
    color: white;
}
.cat-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cat-banner-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.cat-banner-desc {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    max-width: 500px;
}
.cat-banner-stats {
    display: flex;
    gap: 40px;
}
.cat-banner-stat { text-align: center; }
.cat-stat-num {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
}
.cat-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* Page Layout */
.cat-page { padding: 40px 0 60px; }
.cat-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.cat-sidebar { position: sticky; top: 100px; }
.cat-sidebar-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}
.cat-sidebar-section:last-child { border-bottom: none; }
.cat-sidebar-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cat-sidebar-title i { color: #888; font-size: 14px; }

/* Category List */
.cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cat-list-item {
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cat-list-item:hover { background: #f5f5f5; color: #1A1A1A; }
.cat-list-item.active {
    background: #1A1A1A;
    color: white;
    font-weight: 600;
}
.cat-list-item.child { padding-left: 28px; font-size: 13px; }
.cat-count {
    background: #eee;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}
.cat-list-item.active .cat-count {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Checkbox */
.cat-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}
.cat-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1A1A1A;
}

/* Toolbar */
.cat-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}
.cat-toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cat-toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cat-showing { font-size: 14px; color: #888; }
.cat-showing strong { color: #1A1A1A; }

/* View Toggle */
.cat-view-toggle { display: flex; gap: 4px; }
.cat-view-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    color: #999;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 14px;
}
.cat-view-btn.active,
.cat-view-btn:hover { background: #1A1A1A; color: white; border-color: #1A1A1A; }

/* Sort Select */
.cat-select {
    padding: 8px 32px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
    background: white;
    appearance: auto;
    cursor: pointer;
}

/* Grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.cat-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.cat-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #1A1A1A;
}
.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cat-card-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #e88ca5, #d4738a);
}
.cat-card-placeholder h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.cat-card-placeholder p { font-size: 13px; opacity: 0.8; }

/* Badge */
.cat-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}
.cat-card-badge.bestseller { background: #F5A623; }
.cat-card-badge.new { background: #4CAF50; }
.cat-card-badge.popular { background: #E53E3E; }

/* Card Body */
.cat-card-body { padding: 16px 20px 20px; }
.cat-card-level {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.cat-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cat-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #999;
    margin-bottom: 14px;
}
.cat-card-meta i { margin-right: 4px; }

/* Card Footer */
.cat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #eee;
}
.cat-card-price { display: flex; align-items: baseline; gap: 8px; }
.cat-card-price .sale {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #1A1A1A;
}
.cat-card-price .original {
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
}
.cat-card-cart {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    font-size: 14px;
}
.cat-card-cart:hover { background: #1A1A1A; color: white; border-color: #1A1A1A; }

/* List View */
.cat-list-view { display: flex; flex-direction: column; gap: 16px; }
.cat-list-item-card {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 24px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    align-items: center;
}
.cat-list-item-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.cat-list-img {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #1A1A1A;
}
.cat-list-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-list-body { padding: 16px 0; }
.cat-list-action {
    padding: 16px 24px 16px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Pagination */
.cat-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}
.cat-page-btn {
    min-width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.cat-page-btn:hover:not(:disabled) { background: #f5f5f5; }
.cat-page-btn.active { background: #1A1A1A; color: white; border-color: #1A1A1A; }
.cat-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Responsive */
@media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-layout { grid-template-columns: 220px 1fr; gap: 24px; }
}
@media (max-width: 768px) {
    .cat-layout { grid-template-columns: 1fr; }
    .cat-sidebar { position: static; }
    .cat-banner-inner { flex-direction: column; align-items: flex-start; }
    .cat-banner-stats { gap: 24px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .cat-list-item-card { grid-template-columns: 1fr; }
    .cat-list-img { height: 180px; }
    .cat-list-action {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px 16px;
    }
    .cat-toolbar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .cat-grid { grid-template-columns: 1fr; }
    .cat-banner-title { font-size: 1.4rem; }
}

/* ============ Product Card - Enhanced (Image 1 style) ============ */
.cat-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.cat-rating-num {
    font-weight: 700;
    font-size: 14px;
    color: #1A1A1A;
}
.cat-rating-count {
    font-size: 13px;
    color: #999;
}
.cat-rating-stars {
    color: #F5A623;
    font-size: 13px;
    display: flex;
    gap: 1px;
}
.cat-card-instructor {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #555;
}
.cat-instructor-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F5A623;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}
.cat-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}
.cat-price-sale {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #E53E3E;
}
.cat-price-original {
    font-size: 14px;
    color: #bbb;
    text-decoration: line-through;
}
.cat-price-off {
    font-size: 12px;
    font-weight: 700;
    color: #4CAF50;
}
.cat-btn-addcart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: #1A1A1A;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.cat-btn-addcart:hover { background: #333; }
.cat-btn-addcart:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============ Home - Product Section with Category Tabs ============ */
.home-cat-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.home-cat-tab {
    padding: 12px 28px;
    border: 2px solid #1A1A1A;
    background: white;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.home-cat-tab:first-child { border-radius: 8px 0 0 8px; }
.home-cat-tab:last-child { border-radius: 0 8px 8px 0; }
.home-cat-tab:not(:first-child) { border-left: none; }
.home-cat-tab.active,
.home-cat-tab:hover {
    background: #1A1A1A;
    color: white;
}

/* Home Products Grid */
.home-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Home Product Card */
.home-prod-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s;
}
.home-prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* Badge Row */
.home-badge {
    display: inline-block;
    padding: 5px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}
.home-badge.bestseller { background: #F5A623; }
.home-badge.new { background: #4CAF50; }
.home-badge.popular { background: #E53E3E; }

/* Image */
.home-prod-img {
    padding: 0 20px;
    margin-bottom: 16px;
}
.home-prod-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
}
.home-prod-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    background: linear-gradient(135deg, #e88ca5, #d4738a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
}
.home-prod-placeholder h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.home-prod-placeholder p { font-size: 13px; opacity: 0.8; }

/* Info */
.home-prod-info { padding: 0 20px 24px; }
.home-prod-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 6px;
    line-height: 1.4;
}
.home-prod-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-prod-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}
.home-prod-meta i { margin-right: 5px; color: #999; }
.home-prod-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.home-prod-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

/* Buy Now Button */
.home-btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: #1A1A1A;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.home-btn-buy:hover { background: #333; }
.home-btn-buy:disabled { opacity: 0.6; cursor: not-allowed; }

/* See All Link */
.home-see-all {
    text-align: center;
    margin-top: 40px;
}
.home-see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #1A1A1A;
    color: white;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
.home-see-all-btn:hover { background: #333; color: white; }

/* Responsive */
@media (max-width: 900px) {
    .home-products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .home-cat-tabs { flex-wrap: wrap; gap: 8px; }
    .home-cat-tab {
        border-radius: 8px !important;
        border-left: 2px solid #1A1A1A !important;
        font-size: 13px;
        padding: 10px 20px;
    }
}
@media (max-width: 600px) {
    .home-products-grid { grid-template-columns: 1fr; }
}

/* ============ Checkout / Cart Page ============ */

/* Step Indicator Bar */
.ck-steps-bar {
    background: #1A1A1A;
    padding: 100px 0 40px;
}
.ck-steps {
    display: flex;
    align-items: flex-start;
    max-width: 860px;
    margin: 0 auto;
}
.ck-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 0 0 auto;
}
.ck-step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}
.ck-step-circle.done {
    background: #4CAF50;
}
.ck-step.active .ck-step-circle {
    background: #4CAF50;
}
.ck-step-text {
    max-width: 180px;
}
.ck-step-text strong {
    display: block;
    color: white;
    font-size: 15px;
    margin-bottom: 4px;
}
.ck-step-text span {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    line-height: 1.4;
}
.ck-step-line {
    flex: 1;
    height: 2px;
    background: #555;
    margin: 24px 16px 0;
    min-width: 40px;
}
.ck-step.active ~ .ck-step-line,
.ck-step.active ~ .ck-step-line ~ .ck-step .ck-step-text strong {
    color: rgba(255,255,255,0.5);
}

/* Page Section */
.ck-section {
    padding: 40px 0 60px;
    background: #f5f5f5;
}

/* Layout */
.ck-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* Card */
.ck-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
}
.ck-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}
.ck-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0;
}
.ck-item-count {
    font-size: 14px;
    color: #999;
}

/* Cart Items */
.ck-cart-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ck-cart-item {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 20px;
    align-items: start;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}
.ck-cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ck-cart-img {
    width: 160px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    background: #1A1A1A;
    flex-shrink: 0;
}
.ck-cart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ck-cart-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #e88ca5, #d4738a);
}
.ck-cart-img-placeholder h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}
.ck-cart-img-placeholder p { font-size: 10px; opacity: 0.8; }
.ck-cart-details { min-width: 0; }
.ck-cart-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}
.ck-cart-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}
.ck-cart-meta i { margin-right: 4px; }
.ck-validity-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #1A1A1A;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}
.ck-cart-price-col {
    text-align: right;
    white-space: nowrap;
}
.ck-cart-price {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #E53E3E;
    margin-bottom: 2px;
}
.ck-cart-original {
    display: block;
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
    margin-bottom: 10px;
}
.ck-remove-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.15s;
}
.ck-remove-btn:hover { color: #E53E3E; }
.ck-remove-btn i { margin-right: 4px; }

/* Order Summary Card */
.ck-summary-card { padding: 32px; }
.ck-summary-line {
    height: 1px;
    background: #eee;
    margin-bottom: 20px;
}
.ck-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
}
.ck-summary-row.muted { color: #999; }
.ck-summary-row.muted .ck-summary-val { color: #999; }
.ck-summary-row.total {
    font-size: 16px;
    font-weight: 700;
}
.ck-summary-val {
    font-weight: 600;
    white-space: nowrap;
}
.ck-total-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #F5A623 !important;
}
.ck-summary-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

/* Pay Now Button */
.ck-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: #1A1A1A;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.ck-pay-btn:hover { background: #333; }
.ck-pay-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Billing Form */
.ck-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ck-field {
    display: flex;
    flex-direction: column;
}
.ck-field label,
.ck-field-full label {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    font-weight: 500;
}
.ck-field input,
.ck-field-full input,
.ck-field-full textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.ck-field input:focus,
.ck-field-full input:focus,
.ck-field-full textarea:focus {
    border-color: #1A1A1A;
}
.ck-field-full {
    margin-top: 16px;
}
.ck-field-full textarea {
    resize: vertical;
    min-height: 60px;
}
.ck-save-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}
.ck-save-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1A1A1A;
}

/* Coupon Input */
.ck-coupon-input {
    display: flex;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}
.ck-coupon-input input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 14px;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    color: #333;
}
.ck-apply-btn {
    padding: 12px 24px;
    background: #1A1A1A;
    color: white;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
    border-radius: 6px;
}
.ck-apply-btn:hover { background: #333; }

/* Coupon Card */
.ck-coupon-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 12px;
}
.ck-coupon-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}
.ck-coupon-info {
    flex: 1;
    min-width: 0;
}
.ck-coupon-info strong {
    display: block;
    font-size: 14px;
    color: #1A1A1A;
    margin-bottom: 2px;
}
.ck-coupon-info span {
    display: block;
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 900px) {
    .ck-layout { grid-template-columns: 1fr; }
    .ck-steps { flex-direction: column; gap: 16px; }
    .ck-step-line { width: 2px; height: 20px; margin: 0 0 0 23px; }
    .ck-cart-item { grid-template-columns: 120px 1fr; }
    .ck-cart-price-col { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; gap: 12px; }
    .ck-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .ck-cart-item { grid-template-columns: 1fr; }
    .ck-cart-img { width: 100%; height: 140px; }
}

/* Payment Method Options */
.ck-payment-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    color: #555;
}
.ck-payment-opt:hover { border-color: #999; }
.ck-payment-opt.active {
    border-color: #F5A623;
    background: rgba(245,166,35,0.06);
    color: #1A1A1A;
}
.ck-payment-opt i { font-size: 18px; }


/* ---- Question type-specific sections ---- */
.q-type-section { background: var(--light-bg); border-radius: 12px; padding: 20px; margin-top: 20px; border: 1px dashed var(--border-color); }
.q-type-section h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--text-light); letter-spacing: 0.5px; margin-bottom: 16px; }
.q-option-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: white; border-radius: 8px; margin-bottom: 8px; border: 1px solid var(--border-color); }
.q-option-row:hover { border-color: var(--primary-yellow); }
.q-option-row .option-label { width: 32px; height: 32px; border-radius: 50%; background: var(--primary-dark); color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.q-option-row.correct .option-label { background: var(--success); }
.q-option-row input[type="text"] { flex: 1; border: none; background: transparent; font-size: 13px; outline: none; padding: 4px 0; }
.q-add-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 8px; border: 1px dashed var(--border-color); background: white; cursor: pointer; font-size: 12px; color: var(--text-gray); transition: var(--transition); }
.q-add-btn:hover { border-color: var(--primary-yellow); color: var(--primary-dark); }

/* ── Exam picker list items (Courses admin → Exams tab) ── */
.exam-picker-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; cursor: pointer; font-size: 13px;
    transition: background .12s;
    border-bottom: 1px solid #f0f2f5;
}
.exam-picker-item:last-child { border-bottom: none; }
.exam-picker-item:hover { background: #f7fafc; }
.exam-picker-item.selected { background: #ebf5ff; }
.exam-assigned {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
    background: #f8faf8 !important;
}
