/* ===== Course View.css ===== */
/* استایل کاملاً مستقل با اسکوپ cv- بدون تداخل با سایر صفحات */

.cv-page {
    /* توکن‌های اختصاصی صفحه */
    --cv-surface: #ffffff;
    --cv-surface-2: #f8fafc;
    --cv-border: #e5e7eb;
    --cv-text: #254892;
    --cv-text-2: #1f2937;
    --cv-muted: #6b7280;
    --cv-blue: #3e63d7;
    --cv-blue-dark: #254892;
    --cv-blue-light: #5d8cff;
    --cv-green: #19c38f;
    --cv-amber: #f59e0b;
    --cv-radius: 16px;
    --cv-radius-sm: 10px;
    --cv-radius-pill: 999px;
    --cv-shadow: 0 10px 30px rgba(24, 58, 144, .08);
    --cv-shadow-lg: 0 20px 50px rgba(24, 58, 144, .12);

    font-family: "Dana", sans-serif;
    direction: rtl;
    background: var(--cv-surface-2);
    color: var(--cv-text-2);
    min-height: 100vh;
    margin: 0;
    line-height: 1.7;
}

.cv-page * {
    box-sizing: border-box;
}

/* ===== حالت دارک ===== */
.cv-page.cv-dark,
body.dark .cv-page {
    --cv-surface: rgba(15, 23, 42, .92);
    --cv-surface-2: #0f172a;
    --cv-border: rgba(148, 163, 184, .18);
    --cv-text: #e7ecf6;
    --cv-text-2: #e2e8f0;
    --cv-muted: #9aa7c2;
}

/* ===== کانتینر اصلی ===== */
.cv-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 20px 60px;
}

/* ===== چیدمان گرید (محتوا + سایدبار) ===== */
.cv-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    align-items: start;
    padding-top: 10px;
}
/* ===================== کارت خرید حرفه‌ای ===================== */
.cv-buy-card {
    padding: 26px 24px;
    overflow: hidden;
    position: relative;
}

/* نوار رنگی بالای کارت */
.cv-buy-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, #3e63d7, #6b8cff);
}

/* --- مدرس داخل کارت قیمت --- */
.cv-buy-instructor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--cv-border);
}
.cv-buy-instructor-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cv-border);
    flex-shrink: 0;
}
.cv-buy-instructor-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cv-buy-instructor-label {
    font-size: 12px;
    color: var(--cv-muted);
}
.cv-buy-instructor-name {
    font-size: 16px;
    font-weight: 600;
    font-family: "Dana DemiBold", sans-serif;
    color: var(--cv-text, #1a1a2e);
}

/* --- قیمت --- */
.cv-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
}
.cv-price-top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.cv-price-current {
    font-family: "Morabba Bold", "Dana", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--cv-text, #1a1a2e);
    line-height: 1;
}
.cv-price-unit {
    font-size: 15px;
    color: var(--cv-muted);
}
.cv-price-old {
    font-size: 15px;
    color: var(--cv-muted);
    text-decoration: line-through;
}
.cv-discount-badge {
    margin-right: auto;
    background: #fdecec;
    color: #e53935;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 8px;
    white-space: nowrap;
}

/* --- دکمه‌ها --- */
.cv-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    font-family: "Dana Medium", sans-serif;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.cv-btn-primary {
    margin-top: 22px;
    background: var(--cv-primary, #3e63d7);
    color: #fff;
}
.cv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(62, 99, 215, .35);
}
.cv-btn-secondary {
    margin-top: 10px;
    background: transparent;
    color: var(--cv-primary, #3e63d7);
    border: 1.5px solid var(--cv-primary, #3e63d7);
}
.cv-btn-secondary:hover {
    background: rgba(62, 99, 215, .08);
}

/* --- ضمانت --- */
.cv-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--cv-muted);
}
.cv-guarantee i { color: #2e9e5b; }

/* --- ویژگی‌ها (ردیفی با مقدار) --- */
.cv-features {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--cv-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cv-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    gap: 10px;
}
.cv-feature-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cv-muted);
}
.cv-feature-icon {
    color: var(--cv-primary, #3e63d7);
    width: 18px;
    text-align: center;
}
.cv-feature-value {
    font-family: "Dana DemiBold", sans-serif;
    font-weight: 600;
    color: var(--cv-text, #1a1a2e);
    text-align: left;
}

/* ===================== ریسپانسیو ===================== */
@media (max-width: 992px) {
    .cv-layout {
        grid-template-columns: 1fr;
    }
    .cv-sidebar {
        position: static;
    }
}
/* ===== Course-View.css ===== */
/* استایل کاملاً مستقل با اسکوپ cv- بدون تداخل با سایر صفحات */

.cv-page {
    --cv-surface: #ffffff;
    --cv-surface-2: #f8fafc;
    --cv-border: #e5e7eb;
    --cv-text: #254892;
    --cv-text-2: #1f2937;
    --cv-muted: #6b7280;
    --cv-blue: #3e63d7;
    --cv-primary: #3e63d7;
    --cv-blue-dark: #254892;
    --cv-blue-light: #5d8cff;
    --cv-green: #19c38f;
    --cv-amber: #f59e0b;
    --cv-radius: 16px;
    --cv-radius-sm: 10px;
    --cv-radius-pill: 999px;
    --cv-shadow: 0 10px 30px rgba(24, 58, 144, .08);
    --cv-shadow-lg: 0 20px 50px rgba(24, 58, 144, .12);

    font-family: "Dana", sans-serif;
    direction: rtl;
    background: var(--cv-surface-2);
    color: var(--cv-text-2);
    min-height: 100vh;
    margin: 0;
    line-height: 1.7;
}

.cv-page * { box-sizing: border-box; }

/* ===== حالت دارک ===== */
.cv-page.cv-dark,
body.dark .cv-page {
    --cv-surface: rgba(15, 23, 42, .92);
    --cv-surface-2: #0f172a;
    --cv-border: rgba(148, 163, 184, .18);
    --cv-text: #e7ecf6;
    --cv-text-2: #e2e8f0;
    --cv-muted: #9aa7c2;
}

/* ===== کانتینر و چیدمان ===== */
.cv-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 20px 60px;
}

.cv-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    align-items: start;
}

/* ===== سایدبار چسبان ===== */
.cv-sidebar { position: sticky; top: 24px; }

/* ===================== کارت خرید حرفه‌ای ===================== */
.cv-buy-card {
    background: var(--cv-surface);
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius);
    padding: 26px 24px;
    box-shadow: var(--cv-shadow-lg);
    overflow: hidden;
    position: relative;
}

.cv-buy-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 5px;
    background: linear-gradient(90deg, #3e63d7, #6b8cff);
}

/* --- مدرس داخل کارت قیمت --- */
.cv-buy-instructor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--cv-border);
}
.cv-buy-instructor-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cv-border);
    flex-shrink: 0;
}
.cv-buy-instructor-info { display: flex; flex-direction: column; gap: 4px; }
.cv-buy-instructor-label { font-size: 12px; color: var(--cv-muted); }
.cv-buy-instructor-name {
    font-size: 16px; font-weight: 600;
    font-family: "Dana DemiBold", sans-serif;
    color: var(--cv-text);
}

/* --- قیمت --- */
.cv-price { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.cv-price-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cv-price-current {
    font-family: "Morabba Bold", "Dana", sans-serif;
    font-size: 32px; font-weight: 800;
    color: var(--cv-text); line-height: 1;
}
.cv-price-unit { font-size: 15px; color: var(--cv-muted); }
.cv-price-old { font-size: 15px; color: var(--cv-muted); text-decoration: line-through; }
.cv-discount-badge {
    margin-right: auto;
    background: #fdecec; color: #e53935;
    font-size: 13px; font-weight: 600;
    padding: 5px 11px; border-radius: 8px;
    white-space: nowrap;
}

/* --- دکمه‌ها --- */
.cv-btn {
    width: 100%;
    display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px;
    border-radius: 12px;
    font-family: "Dana Medium", sans-serif;
    font-size: 15px; cursor: pointer; border: none;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.cv-btn-primary { margin-top: 22px; background: var(--cv-primary); color: #fff; }
.cv-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(62, 99, 215, .35); }
.cv-btn-secondary {
    margin-top: 10px; background: transparent;
    color: var(--cv-primary); border: 1.5px solid var(--cv-primary);
}
.cv-btn-secondary:hover { background: rgba(62, 99, 215, .08); }

/* --- ضمانت --- */
.cv-guarantee {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 16px; font-size: 13px; color: var(--cv-muted);
}
.cv-guarantee i { color: #2e9e5b; }

/* --- ویژگی‌ها --- */
.cv-features {
    margin-top: 22px; padding-top: 20px;
    border-top: 1px solid var(--cv-border);
    display: flex; flex-direction: column; gap: 16px;
}
.cv-feature { display: flex; align-items: center; justify-content: space-between; font-size: 14px; gap: 10px; }
.cv-feature-left { display: flex; align-items: center; gap: 10px; color: var(--cv-muted); }
.cv-feature-icon { color: var(--cv-primary); width: 18px; text-align: center; }
.cv-feature-value { font-family: "Dana DemiBold", sans-serif; font-weight: 600; color: var(--cv-text); text-align: left; }

/* ===== بنر ===== */
.cv-banner {
    position: relative;
    border-radius: var(--cv-radius);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--cv-shadow);
    aspect-ratio: 16 / 6;
    background: linear-gradient(135deg, var(--cv-blue-dark), var(--cv-blue-light));
}
.cv-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cv-badge {
    position: absolute; top: 16px; right: 16px;
    font-size: 13px; font-weight: 600;
    padding: 6px 14px; border-radius: var(--cv-radius-pill);
    color: #fff; backdrop-filter: blur(4px);
}
.cv-badge-published { background: rgba(25, 195, 143, .9); }

/* ===== هدر دوره ===== */
.cv-header {
    background: var(--cv-surface);
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius);
    padding: 24px; margin-bottom: 24px;
    box-shadow: var(--cv-shadow);
}
.cv-title {
    font-family: "Morabba", "Dana", sans-serif;
    font-size: 28px; font-weight: 800;
    color: var(--cv-text); margin: 0 0 12px; line-height: 1.4;
}
.cv-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; color: var(--cv-muted); font-size: 14px; }
.cv-rating { display: inline-flex; align-items: center; gap: 8px; }
.cv-stars { display: inline-flex; gap: 2px; }
.cv-rating-text { color: var(--cv-muted); }
.cv-students { color: var(--cv-muted); }

/* ===== کارت‌های محتوا ===== */
.cv-card {
    background: var(--cv-surface);
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius);
    padding: 24px; margin-bottom: 24px;
    box-shadow: var(--cv-shadow);
}
.cv-section-title {
    font-family: "Morabba", "Dana", sans-serif;
    font-size: 20px; font-weight: 700;
    color: var(--cv-text); margin: 0 0 16px;
    display: flex; align-items: center; gap: 8px;
}

/* ===== توضیحات ===== */
.cv-description { position: relative; color: var(--cv-text-2); font-size: 15px; }
.cv-description.cv-collapsed .cv-desc-content {
    max-height: 120px; overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent);
    mask-image: linear-gradient(to bottom, #000 60%, transparent);
}
.cv-desc-toggle {
    background: none; border: none; color: var(--cv-blue);
    font-family: inherit; font-size: 14px; cursor: pointer;
    padding: 8px 0 0; font-weight: 600;
}
.cv-desc-toggle:hover { text-decoration: underline; }

/* ===== پیش‌نیازها ===== */
.cv-req-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.cv-req-item { display: flex; align-items: flex-start; gap: 10px; color: var(--cv-text-2); font-size: 15px; }
.cv-check-icon { color: var(--cv-green); flex-shrink: 0; margin-top: 4px; }

/* ===== ویدیو ===== */
.cv-video-wrapper {
    position: relative; border-radius: var(--cv-radius-sm);
    overflow: hidden; aspect-ratio: 16 / 9; background: #000;
}
.cv-video { width: 100%; height: 100%; display: block; border: 0; }

/* ===================== سرفصل‌ها (آکاردئون) ===================== */
.cv-curriculum-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
}
.cv-expand-all {
    background: rgba(62, 99, 215, .08);
    border: 1px solid var(--cv-border); color: var(--cv-blue);
    font-family: inherit; font-size: 13px;
    padding: 7px 14px; border-radius: var(--cv-radius-sm);
    cursor: pointer; transition: background .2s;
}
.cv-expand-all:hover { background: rgba(62, 99, 215, .15); }

.cv-chapters { display: flex; flex-direction: column; gap: 12px; }

.cv-chapter {
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius-sm);
    overflow: hidden;
    background: var(--cv-surface-2);
}
.cv-chapter-header {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 16px 18px;
    background: none; border: none; cursor: pointer;
    font-family: inherit; text-align: right;
    transition: background .2s;
}
.cv-chapter-header:hover { background: rgba(62, 99, 215, .04); }
.cv-chapter-info { display: flex; align-items: center; gap: 10px; flex: 1; }
.cv-chapter-icon {
    color: var(--cv-blue); font-size: 14px;
    transition: transform .3s ease; flex-shrink: 0;
}
.cv-chapter.cv-open .cv-chapter-icon { transform: rotate(-90deg); }
.cv-chapter-title { font-weight: 700; color: var(--cv-text); font-size: 15px; }
.cv-chapter-meta { font-size: 13px; color: var(--cv-muted); white-space: nowrap; }

.cv-chapter-content {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 14px;
}

.cv-lesson {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 6px; border-radius: 8px;
    transition: background .2s;
}
.cv-lesson:first-child { margin-top: 6px; }
.cv-lesson:last-child { margin-bottom: 10px; }
.cv-lesson:hover { background: var(--cv-surface); }
.cv-lesson-icon { color: var(--cv-blue); font-size: 12px; }
.cv-lesson-title { flex: 1; color: var(--cv-text-2); font-size: 14px; }
.cv-lesson-duration { font-size: 13px; color: var(--cv-muted); }

/* ===================== نظرات ===================== */
.cv-reviews-summary {
    display: flex; align-items: center; gap: 28px;
    padding: 20px; background: var(--cv-surface-2);
    border-radius: var(--cv-radius-sm); margin-bottom: 24px;
}
.cv-reviews-rating { text-align: center; flex-shrink: 0; }
.cv-reviews-score {
    font-family: "Morabba", "Dana", sans-serif;
    font-size: 42px; font-weight: 800; color: var(--cv-text); line-height: 1;
}
.cv-reviews-stars { display: flex; justify-content: center; gap: 2px; margin: 6px 0; }
.cv-reviews-count { font-size: 13px; color: var(--cv-muted); }

.cv-reviews-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.cv-rating-bar { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.cv-bar-label { color: var(--cv-muted); width: 56px; flex-shrink: 0; }
.cv-bar-track {
    flex: 1; height: 8px; background: var(--cv-border);
    border-radius: var(--cv-radius-pill); overflow: hidden;
}
.cv-bar-fill { height: 100%; background: var(--cv-amber); border-radius: var(--cv-radius-pill); }
.cv-bar-percent { color: var(--cv-muted); width: 38px; text-align: left; flex-shrink: 0; }

.cv-reviews-list { display: flex; flex-direction: column; gap: 18px; }
.cv-review-item {
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius-sm);
    padding: 18px; background: var(--cv-surface);
}
.cv-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.cv-review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-blue-light));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.cv-review-info { flex: 1; }
.cv-review-name { font-weight: 700; color: var(--cv-text); font-size: 15px; margin-bottom: 4px; }
.cv-review-stars { display: flex; gap: 2px; }
.cv-review-date { font-size: 13px; color: var(--cv-muted); }
.cv-review-text { color: var(--cv-text-2); font-size: 14px; margin: 0 0 14px; }
.cv-review-actions { display: flex; gap: 12px; }
.cv-review-like {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 1px solid var(--cv-border);
    color: var(--cv-muted); font-family: inherit; font-size: 13px;
    padding: 6px 14px; border-radius: var(--cv-radius-pill);
    cursor: pointer; transition: all .2s;
}
.cv-review-like:hover,
.cv-review-like.cv-liked {
    border-color: var(--cv-blue); color: var(--cv-blue);
    background: rgba(62, 99, 215, .06);
}

.cv-load-more {
    width: 100%;
    background: var(--cv-surface-2);
    border: 1px solid var(--cv-border); color: var(--cv-blue);
    font-family: inherit; font-size: 15px; font-weight: 600;
    padding: 14px; border-radius: var(--cv-radius-sm);
    cursor: pointer; margin-top: 20px; transition: background .2s;
}
.cv-load-more:hover { background: rgba(62, 99, 215, .08); }
.cv-load-more:disabled { opacity: .7; cursor: default; }

/* ===== ستاره‌ها ===== */
.cv-star { color: #d1d5db; font-size: 16px; }
.cv-star-filled { color: var(--cv-amber); }
.cv-star-half { position: relative; color: #d1d5db; }
.cv-star-half::before {
    content: "★"; position: absolute; right: 0;
    width: 50%; overflow: hidden; color: var(--cv-amber);
}

/* ===================== ریسپانسیو ===================== */
@media (max-width: 992px) {
    .cv-layout { grid-template-columns: 1fr; }
    .cv-sidebar { position: static; }
}

@media (max-width: 600px) {
    .cv-container { padding: 16px 14px 40px; }
    .cv-title { font-size: 22px; }
    .cv-banner { aspect-ratio: 16 / 9; }
    .cv-reviews-summary { flex-direction: column; gap: 18px; }
    .cv-chapter-meta { display: none; }
}

/* درس‌ها کلیک‌پذیر هستند */
.cv-lesson { cursor: pointer; }

/* درس در حال پخش */
.cv-lesson-active {
    background: rgba(62, 99, 215, .1) !important;
}
.cv-lesson-active .cv-lesson-title {
    color: var(--cv-blue);
    font-weight: 700;
}
.cv-lesson-active .cv-lesson-icon {
    color: var(--cv-blue);
}

/* درس قفل‌شده */
.cv-lesson[data-locked="true"] {
    opacity: .65;
}
.cv-lesson[data-locked="true"] .cv-lesson-icon::before {
    content: "\f023"; /* آیکن قفل FontAwesome */
}
/* محتوای سرفصل: حالت بسته/باز با انیمیشن */
.cv-chapter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.cv-chapter-header {
    cursor: pointer;
    width: 100%;
}

/* چرخش آیکن هنگام باز شدن */
.cv-chapter-icon {
    transition: transform 0.3s ease;
}
.cv-chapter-open .cv-chapter-icon {
    transform: rotate(-90deg);
}

/* هر درس قابل کلیک */
.cv-lesson {
    cursor: pointer;
}

/* درس در حال پخش */
.cv-lesson-active {
    background: var(--cv-surface, #eef2ff);
}
.cv-lesson-active .cv-lesson-icon {
    color: var(--cv-primary, #3e63d7);
}

/* درس قفل‌شده */
.cv-lesson[data-locked="true"] {
    opacity: 0.55;
}
.cv-lesson[data-locked="true"] .cv-lesson-icon::before {
    content: "\f023"; /* آیکن قفل فونت‌اوسام */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
/* --- کارت مدرس --- */

.cv-instructor-card {
    background: var(--cv-surface);
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius);
    box-shadow: var(--cv-shadow-lg);
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 24px;
    
}


.cv-instructor-card-title {
    font-size: 16px;
    margin: 0 0 16px;
    color: var(--cv-muted, #8a93a6);
    font-weight: 600;
}

.cv-instructor-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.cv-instructor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cv-primary, #3e63d7);
}

.cv-instructor-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cv-instructor-fullname {
    font-family: "Morabba Bold", "Dana", sans-serif;
    font-size: 18px;
    line-height: 1.2;
}

.cv-instructor-role {
    font-size: 13px;
    color: var(--cv-muted, #8a93a6);
}

.cv-instructor-bio {
    font-size: 14px;
    line-height: 1.9;
    color: var(--cv-muted, #8a93a6);
    margin: 0 0 18px;
}

/* آمار مدرس */
.cv-instructor-stats {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 18px;
}

.cv-instructor-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 6px;
    background: var(--cv-surface, #f4f6fb);
    border-radius: 12px;
}

.cv-instructor-stat-num {
    font-family: "Morabba Bold", "Dana", sans-serif;
    font-size: 18px;
    color: var(--cv-primary, #3e63d7);
}

.cv-instructor-stat-label {
    font-size: 12px;
    color: var(--cv-muted, #8a93a6);
}

/* دکمه پروفایل */
.cv-instructor-link {
    margin-top: 4px;
}

/* ===== بنر/Hero ===== */
.cv-banner {
    position: relative;
    border-radius: var(--cv-radius);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--cv-shadow);
    aspect-ratio: 16 / 6;
    background: linear-gradient(135deg, var(--cv-blue-dark), var(--cv-blue-light));
}

.cv-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cv-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .75), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

/* ===== هدر اطلاعات دوره ===== */
.cv-header {
    background: var(--cv-surface);
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--cv-shadow);
}

.cv-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(62, 99, 215, .1);
    color: var(--cv-blue);
    font-size: 13px;
    padding: 5px 12px;
    border-radius: var(--cv-radius-pill);
    margin-bottom: 12px;
}

.cv-title {
    font-family: "Morabba", "Dana", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--cv-text);
    margin: 0 0 12px;
    line-height: 1.4;
}

.cv-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--cv-muted);
    font-size: 14px;
}

.cv-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cv-meta-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--cv-blue);
}

/* ===== کارت‌های محتوا ===== */
.cv-card {
    background: var(--cv-surface);
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--cv-shadow);
}

.cv-section-title {
    font-family: "Morabba", "Dana", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cv-text);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cv-section-title svg {
    width: 22px;
    height: 22px;
    stroke: var(--cv-blue);
}

/* ===== توضیحات با نمایش بیشتر ===== */
.cv-description {
    position: relative;
    color: var(--cv-text-2);
    font-size: 15px;
}

.cv-description.cv-collapsed .cv-desc-content {
    max-height: 120px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent);
    mask-image: linear-gradient(to bottom, #000 60%, transparent);
}

.cv-desc-toggle {
    background: none;
    border: none;
    color: var(--cv-blue);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 0 0;
    font-weight: 600;
}

.cv-desc-toggle:hover {
    text-decoration: underline;
}

/* ===== پیش‌نیازها ===== */
.cv-prereq-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.cv-prereq-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--cv-text-2);
    font-size: 15px;
}

.cv-prereq-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--cv-green);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== ویدیو معرفی ===== */
.cv-video {
    position: relative;
    border-radius: var(--cv-radius-sm);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}

.cv-video video,
.cv-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* ===== آکاردئون سرفصل‌ها ===== */
.cv-curriculum-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cv-expand-all {
    background: rgba(62, 99, 215, .08);
    border: 1px solid var(--cv-border);
    color: var(--cv-blue);
    font-family: inherit;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: var(--cv-radius-sm);
    cursor: pointer;
    transition: background .2s;
}

.cv-expand-all:hover {
    background: rgba(62, 99, 215, .15);
}

.cv-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cv-acc-item {
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius-sm);
    overflow: hidden;
    background: var(--cv-surface-2);
}

.cv-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: right;
    transition: background .2s;
}

.cv-acc-header:hover {
    background: rgba(62, 99, 215, .04);
}

.cv-acc-title {
    font-weight: 700;
    color: var(--cv-text);
    font-size: 15px;
    flex: 1;
}

.cv-acc-count {
    font-size: 13px;
    color: var(--cv-muted);
}

.cv-acc-icon {
    width: 20px;
    height: 20px;
    stroke: var(--cv-blue);
    transition: transform .3s ease;
    flex-shrink: 0;
}

.cv-acc-item.cv-open .cv-acc-icon {
    transform: rotate(180deg);
}

.cv-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.cv-acc-body-inner {
    padding: 0 18px 16px;
}

.cv-lesson {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    transition: background .2s;
}

.cv-lesson:hover {
    background: var(--cv-surface);
}

.cv-lesson-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cv-text-2);
    font-size: 14px;
}

.cv-lesson-left svg {
    width: 18px;
    height: 18px;
    stroke: var(--cv-blue);
}

.cv-lesson-time {
    font-size: 13px;
    color: var(--cv-muted);
}

/* ===== سایدبار چسبان ===== */
.cv-sidebar {
    position: sticky;
    top: 24px;
}

.cv-buy-card {
    background: var(--cv-surface);
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius);
    padding: 24px;
    box-shadow: var(--cv-shadow-lg);
}

.cv-price {
    font-family: "Morabba", "Dana", sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--cv-text);
}

.cv-price-old {
    font-size: 16px;
    color: var(--cv-muted);
    text-decoration: line-through;
    margin-right: 10px;
}

.cv-btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-blue-light));
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    padding: 14px;
    border-radius: var(--cv-radius-sm);
    cursor: pointer;
    margin-top: 18px;
    transition: transform .2s, box-shadow .2s;
}

.cv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(62, 99, 215, .35);
}

/* ===== بخش نظرات ===== */
.cv-reviews-summary {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    background: var(--cv-surface-2);
    border-radius: var(--cv-radius-sm);
    margin-bottom: 20px;
}

.cv-rating-big {
    text-align: center;
}

.cv-rating-num {
    font-family: "Morabba", "Dana", sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--cv-text);
    line-height: 1;
}

.cv-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cv-review-item {
    border: 1px solid var(--cv-border);
    border-radius: var(--cv-radius-sm);
    padding: 18px;
    background: var(--cv-surface);
}

.cv-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cv-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-blue-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.cv-review-info {
    flex: 1;
}

.cv-review-name {
    font-weight: 700;
    color: var(--cv-text);
    font-size: 15px;
    margin-bottom: 4px;
}

.cv-review-stars {
    display: flex;
    gap: 2px;
}

.cv-star {
    color: #d1d5db;
    font-size: 16px;
}

.cv-star-filled {
    color: var(--cv-amber);
}

.cv-star-half {
    position: relative;
    color: #d1d5db;
}

.cv-star-half::before {
    content: "★";
    position: absolute;
    right: 0;
    width: 50%;
    overflow: hidden;
    color: var(--cv-amber);
}

.cv-review-date {
    font-size: 13px;
    color: var(--cv-muted);
}

.cv-review-text {
    color: var(--cv-text-2);
    font-size: 14px;
    margin: 0 0 14px;
}

.cv-review-actions {
    display: flex;
    gap: 12px;
}

.cv-review-like {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--cv-border);
    color: var(--cv-muted);
    font-family: inherit;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: var(--cv-radius-pill);
    cursor: pointer;
    transition: all .2s;
}

.cv-review-like svg {
    width: 16px;
    height: 16px;
}

.cv-review-like:hover,
.cv-review-like.cv-liked {
    border-color: var(--cv-blue);
    color: var(--cv-blue);
    background: rgba(62, 99, 215, .06);
}

.cv-load-more {
    width: 100%;
    background: var(--cv-surface-2);
    border: 1px solid var(--cv-border);
    color: var(--cv-blue);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 14px;
    border-radius: var(--cv-radius-sm);
    cursor: pointer;
    margin-top: 20px;
    transition: background .2s;
}

.cv-load-more:hover {
    background: rgba(62, 99, 215, .08);
}

/* ===== واکنش‌گرا ===== */
@media (max-width: 980px) {
    .cv-layout {
        grid-template-columns: 1fr;
    }
    .cv-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .cv-container {
        padding: 16px 14px 40px;
    }
    .cv-title {
        font-size: 22px;
    }
    .cv-banner {
        aspect-ratio: 16 / 9;
    }
    .cv-reviews-summary {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}
/* ===== اسکلت لودینگ ===== */
.cv-skeleton {
  display: block;
}

/* وقتی محتوای اصلی آماده شد، اسکلت پنهان و محتوا با reveal تدریجی نمایش داده می‌شود */
body.cv-loaded .cv-skeleton {
  display: none;
}

/* کارت اسکلت - هم‌اندازه با کارت‌های واقعی */
.sk-card {
  background: var(--cv-surface);
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  padding: 24px;
  box-shadow: var(--cv-shadow);
  margin-bottom: 24px;
}

/* المان پایه اسکلت + افکت shimmer */
.sk {
  position: relative;
  overflow: hidden;
  background: var(--cv-surface-2);
  border-radius: var(--cv-radius-sm);
}

.sk::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(62, 99, 215, .08) 50%,
    transparent 100%
  );
  animation: sk-shimmer 1.4s infinite;
}

/* جهت RTL: حرکت shimmer از راست به چپ */
@keyframes sk-shimmer {
  100% { transform: translateX(100%); }
}

/* خطوط متن */
.sk-line {
  height: 14px;
  width: 100%;
  margin-bottom: 12px;
}
.sk-line:last-child { margin-bottom: 0; }

.sk-sm { height: 10px; }
.sk-lg { height: 22px; }

.sk-w-30 { width: 30%; }
.sk-w-40 { width: 40%; }
.sk-w-50 { width: 50%; }
.sk-w-60 { width: 60%; }
.sk-w-70 { width: 70%; }
.sk-w-80 { width: 80%; }
.sk-w-90 { width: 90%; }
.sk-w-95 { width: 95%; }

/* ردیف آواتار + متن (هماهنگ با cv-instructor-head) */
.sk-row {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 14px;
  margin: 16px 0;
}
.sk-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sk-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* آمار مدرس */
.sk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--cv-border);
}
.sk-stat {
  height: 44px;
  border-radius: var(--cv-radius-sm);
}

/* دکمه */
.sk-btn {
  height: 48px;
  border-radius: var(--cv-radius-sm);
  margin-top: 18px;
}

/* اطلاعات دوره */
.sk-meta {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--cv-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ویدیو (نسبت 16:9 مثل cv-video) */
.sk-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--cv-radius-sm);
  margin-top: 16px;
}

/* ردیف‌های آکاردئون سرفصل */
.sk-accordion {
  height: 56px;
  border-radius: var(--cv-radius-sm);
  margin-top: 12px;
}

/* چیدمان گرید اسکلت = چیدمان واقعی */
.cv-skeleton .cv-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
}

/* ریسپانسیو: تک‌ستونه مثل صفحه اصلی */
@media (max-width: 992px) {
  .cv-skeleton .cv-layout {
    grid-template-columns: 1fr;
  }
}

/* احترام به کاهش حرکت */
@media (prefers-reduced-motion: reduce) {
  .sk::after { animation: none; }
}
.cv-page.cv-dark,
body.dark.cv-page {
    --cv-surface: rgba(15, 23, 42, .92);
    --cv-surface-2: #0f172a;
    --cv-border: rgba(148, 163, 184, .18);
    --cv-text: #e7ecf6;
    --cv-text-2: #e2e8f0;
    --cv-muted: #9aa7c2;
}
/* اختصاصی برای فیت شدن کامل عکس معرفی - مجید عزیز */
.cv-intro-image-container {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important; /* نسبت ابعاد استاندارد پوستر */
    overflow: hidden !important;
    border-radius: 12px !important;
    position: relative !important;
    background: #000; /* برای زیبایی اگر عکس لود نشد */
}

.cv-intro-img-fluid {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* این خط عکس را فیتِ باکس می‌کند */
    object-position: center !important;
    display: block !important;
    transition: transform 0.5s ease;
}

/* افکت هاور ظریف برای حرفه‌ای‌تر شدن کار */
.cv-intro-image-container:hover .cv-intro-img-fluid {
    transform: scale(1.02);
}

/* حذف پدینگ اضافی از کارت معرفی اگر وجود داشت */
.cv-intro-section {
    padding: 20px !important;
}
/* حل نهایی مشکل فیت نشدن عکس - مجید */
.cv-intro-image-container {
    position: relative !important;
    width: 100% !important;
    padding-top: 56.25% !important; /* این یعنی نسبت 16:9 دقیق */
    height: 0 !important;
    overflow: hidden !important;
    background-color: #0f172a;
}

.cv-intro-img-fluid {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* پر کردن کامل بدون تغییر نسبت */
    object-position: center !important;
    display: block !important;
}

/* حذف هرگونه مانع در کارت والد */
.cv-intro-section {
    border: none !important;
    box-shadow: var(--cv-shadow) !important;
    line-height: 0 !important; /* حذف فاصله زیر عکس */
}
      .cv-alert-wrapper {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .cv-alert {
            min-width: 280px;
            max-width: 380px;
            padding: 14px 18px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            animation: cvAlertIn .4s ease;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .cv-alert-icon {
            font-size: 18px;
        }

        .cv-alert-close {
            border: none;
            background: transparent;
            font-size: 18px;
            cursor: pointer;
            margin-right: auto;
            opacity: .6;
        }

        .cv-alert-close:hover {
            opacity: 1;
        }

        /* colors */

        .cv-alert-success {
            background: #e8f8ef;
            color: #1f9254;
        }

        .cv-alert-error {
            background: #fdecec;
            color: #d93025;
        }

        .cv-alert-warning {
            background: #fff6e5;
            color: #c77d00;
        }

        .cv-alert-info {
            background: #e8f1ff;
            color: #1d4ed8;
        }

        /* animation */

        @keyframes cvAlertIn {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cv-alert.hide {
            opacity: 0;
            transform: translateX(-20px);
            transition: .4s;
        }
.rating-stars{
    display:flex;
    flex-direction:row-reverse;
    gap:6px;
    font-size:28px;
}

.rating-stars input{
    display:none;
}

.rating-stars label{
    cursor:pointer;
    color:#ccc;
}

.rating-stars input:checked ~ label{
    color:#ffc107;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label{
    color:#ffc107;
}
/* === استایل‌های جدید برای فرم نظردهی === */

/* کانتینر کلی فرم نظر */
.review-box {
    background-color: var(--cv-card-bg, #ffffff); /* رنگ پس‌زمینه کارت */
    border: 1px solid var(--cv-border-color, #e0e0e0); /* رنگ حاشیه */
    border-radius: 12px; /* گوشه‌های گرد */
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* سایه ملایم */
    transition: all 0.3s ease;
}

.review-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.review-box h3 {
    font-size: 1.6rem; /* اندازه فونت عنوان */
    font-weight: 700; /* ضخامت فونت */
    color: var(--cv-text-color-dark, #333); /* رنگ تیره متن */
    margin-bottom: 25px;
    text-align: center; /* وسط‌چین کردن عنوان */
}

/* فرم */
.review-box form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* استایل ستاره‌ها */
.rating-stars {
    display: flex;
    flex-direction: row-reverse; /* ستاره‌ها از راست به چپ */
    align-items: center;
    margin-bottom: 20px;
    padding: 5px;
    background-color: var(--cv-gray-light, #f8f9fa); /* پس‌زمینه کمی روشن */
    border-radius: 8px;
}

.rating-stars input[type="radio"] {
    display: none; /* مخفی کردن رادیو باتن‌ها */
}

.rating-stars label {
    font-size: 2.5rem; /* اندازه بزرگ ستاره‌ها */
    color: var(--cv-star-empty-color, #ccc); /* رنگ ستاره خالی */
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0 2px; /* فاصله کم بین ستاره‌ها */
    padding: 0 5px;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: var(--cv-star-filled-color, #ffc107); /* رنگ ستاره پر شده هنگام هاور */
}

.rating-stars input[type="radio"]:checked ~ label {
    color: var(--cv-star-filled-color, #ffc107); /* رنگ ستاره پر شده */
}

/* استایل textarea */
.review-box textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--cv-border-color, #e0e0e0);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit; /* استفاده از فونت والد */
    color: var(--cv-text-color, #555);
    resize: vertical; /* امکان تغییر اندازه عمودی */
    min-height: 120px; /* حداقل ارتفاع */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-box textarea::placeholder {
    color: var(--cv-placeholder-color, #aaa);
}

.review-box textarea:focus {
    outline: none;
    border-color: var(--cv-blue, #007bff); /* رنگ آبی هنگام فوکوس */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25); /* سایه نورانی */
}

/* استایل دکمه ثبت */
.review-box .btn-primary {
    width: 100%;
    max-width: 250px; /* حداکثر عرض دکمه */
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: var(--cv-blue, #007bff); /* رنگ اصلی دکمه */
    color: #fff; /* رنگ متن دکمه */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.review-box .btn-primary:hover {
    background-color: var(--cv-blue-dark, #0056b3); /* رنگ تیره‌تر هنگام هاور */
    transform: translateY(-2px); /* کمی بالا رفتن دکمه */
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

/* استایل خطاها */
.review-box .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-align: center;
}

/* برای حالت ریویو هایی که قبلا ثبت شده */
.cv-review-item .cv-review-text {
    color: var(--cv-text-color, #555);
    line-height: 1.7;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* رنگ‌های متغیر (اگر در قالب شما تعریف شده باشند) */
/*
:root {
    --cv-card-bg: #ffffff;
    --cv-border-color: #e0e0e0;
    --cv-text-color-dark: #333;
    --cv-text-color: #555;
    --cv-placeholder-color: #aaa;
    --cv-blue: #007bff;
    --cv-blue-dark: #0056b3;
    --cv-gray-light: #f8f9fa;
    --cv-star-empty-color: #ccc;
    --cv-star-filled-color: #ffc107;
}
*/
