/* Single video course — matches single-course.html layout, site brand colors, local icons */
.sc-page {
    --sc-navy: #1B2549;
    --sc-blue: #234BAA;
    --sc-yellow: #FFD600;
    --sc-primary: #234BAA;
    --sc-bg: #f6f7fb;
    --sc-surface: #ffffff;
    --sc-surface-low: #eef1f8;
    --sc-surface-container: #e8ebf4;
    --sc-muted: #434655;
    --sc-muted-soft: #6b7280;
    --sc-line: rgba(27, 37, 73, 0.12);
    --sc-success: #10B981;
    --sc-on-primary: #ffffff;
    background: var(--sc-bg);
    padding-bottom: 96px;
    min-height: 60vh;
    color: var(--sc-navy);
}

.sc-page .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    user-select: none;
}

/* ===== Hero ===== */
.sc-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 128px;
    background-color: var(--sc-navy);
    background-image:
        linear-gradient(180deg, rgba(27, 37, 73, 0.88), rgba(27, 37, 73, 0.72)),
        var(--sc-hero-image, none);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.sc-hero__overlay {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
    background-size: 40px 40px;
}

.sc-hero__inner {
    position: relative;
    z-index: 1;
}

.sc-hero__content {
    max-width: 720px;
}

.sc-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(35, 75, 170, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #dbe1ff;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.sc-chip .material-symbols-outlined {
    color: var(--sc-yellow);
    font-size: 18px;
}

.sc-hero__title {
    font-size: clamp(28px, 4.2vw, 48px);
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 20px;
    color: #fff;
}

.sc-hero__summary {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 640px;
}

.sc-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 44px;
}

.sc-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sc-hero__meta-item .material-symbols-outlined {
    color: var(--sc-yellow);
    font-size: 32px;
}

.sc-hero__meta-label {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.6;
    font-weight: 500;
}

.sc-hero__meta-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

/* ===== Main grid (overlap) ===== */
.sc-main {
    margin-top: -80px;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.sc-main__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .sc-main__grid {
        grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
        gap: 48px;
        align-items: start;
    }

    .sc-main__aside {
        order: 2;
    }

    .sc-main__body {
        order: 1;
    }
}

.sc-sticky {
    position: sticky;
    top: 100px;
}

/* ===== Purchase card ===== */
.sc-buy {
    background: var(--sc-surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(27, 37, 73, 0.16);
    border: 1px solid rgba(195, 198, 215, 0.35);
    transition: box-shadow 0.25s ease;
}

.sc-buy:hover {
    box-shadow: 0 28px 56px rgba(27, 37, 73, 0.2);
}

.sc-buy__media {
    position: relative;
    height: 208px;
    overflow: hidden;
    background: var(--sc-navy);
}

.sc-buy__media img,
.sc-buy__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.sc-buy:hover .sc-buy__media img {
    transform: scale(1.1);
}

.sc-buy__media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

.sc-buy__play {
    position: absolute;
    inset: 0;
    width: 64px;
    height: 64px;
    margin: auto;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--sc-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
    z-index: 2;
    padding: 0;
}

.sc-buy__play:hover {
    transform: scale(1.1);
}

.sc-buy__play .material-symbols-outlined {
    font-size: 36px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 48;
}

.sc-buy__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: var(--sc-yellow);
    color: var(--sc-navy);
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    padding: 5px 12px;
}

.sc-buy__body {
    padding: 28px;
}

.sc-buy__price-label {
    display: block;
    color: var(--sc-muted-soft);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sc-buy__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 28px;
}

.sc-buy__price-current {
    color: var(--sc-blue);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
}

.sc-buy__price-unit {
    color: var(--sc-navy);
    font-size: 14px;
    font-weight: 600;
}

.sc-buy__price-old {
    color: #9aa0b0;
    text-decoration: line-through;
    font-size: 13px;
    width: 100%;
}

.sc-buy__owned {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sc-buy__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
    line-height: 1.4;
}

.sc-btn--primary {
    background: var(--sc-navy);
    color: #fff;
    box-shadow: 0 4px 14px rgba(27, 37, 73, 0.25);
}

.sc-btn--primary:hover {
    background: var(--sc-blue);
    color: #fff;
}

.sc-btn--primary:active {
    transform: scale(0.98);
}

.sc-btn--secondary {
    background: var(--sc-surface-container);
    color: var(--sc-navy);
}

.sc-btn--secondary:hover {
    background: #dde2ef;
    color: var(--sc-navy);
}

.sc-btn--accent {
    background: var(--sc-yellow);
    color: var(--sc-navy);
}

.sc-btn--accent:hover {
    filter: brightness(0.96);
    color: var(--sc-navy);
}

.sc-buy__perks {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.sc-buy__perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sc-muted);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.sc-buy__perks .material-symbols-outlined {
    color: var(--sc-success);
    font-size: 22px;
    flex-shrink: 0;
}

.sc-buy__specs {
    list-style: none;
    padding: 16px 0 0;
    margin: 16px 0 0;
    border-top: 1px solid var(--sc-line);
}

.sc-buy__specs li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--sc-line);
    font-size: 13px;
}

.sc-buy__specs span {
    color: var(--sc-muted-soft);
}

.sc-buy__specs strong {
    color: var(--sc-navy);
    text-align: left;
    font-weight: 700;
}

/* ===== Tabs & body ===== */
.sc-main__body {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.sc-tabs {
    display: flex;
    gap: 28px;
    border-bottom: 1px solid var(--sc-line);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sc-tabs__btn {
    background: none;
    border: 0;
    border-bottom: 2px solid transparent;
    padding: 0 0 14px;
    margin-bottom: -1px;
    color: var(--sc-muted-soft);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
}

.sc-tabs__btn:hover {
    color: var(--sc-navy);
}

.sc-tabs__btn.active {
    color: var(--sc-blue);
    border-bottom-color: var(--sc-blue);
}

.sc-faq-section {
    margin-top: 48px;
}

.sc-tab-panel {
    display: none;
}

.sc-tab-panel.active {
    display: block;
}

.sc-section-title {
    color: var(--sc-navy);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 28px;
}

.sc-prose {
    color: var(--sc-muted);
    font-size: 16px;
    line-height: 1.9;
}

.sc-prose p {
    margin-bottom: 1.25rem;
}

.sc-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.sc-prose strong {
    color: var(--sc-navy);
}

/* Feature cards (like design) */
.sc-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 28px 0;
}

@media (min-width: 768px) {
    .sc-features {
        grid-template-columns: 1fr 1fr;
    }
}

.sc-feature {
    background: var(--sc-surface-container);
    border-radius: 12px;
    padding: 24px;
}

.sc-feature .material-symbols-outlined {
    color: var(--sc-blue);
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}

.sc-feature h3 {
    margin: 0 0 8px;
    color: var(--sc-navy);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.sc-feature p {
    margin: 0;
    color: var(--sc-muted);
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

/* Stats */
.sc-stats {
    background: var(--sc-surface-low);
    border-radius: 16px;
    padding: 40px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.sc-stats__item {
    text-align: center;
    min-width: 100px;
}

.sc-stats__num {
    display: block;
    color: var(--sc-blue);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
}

.sc-stats__num--sm {
    font-size: clamp(22px, 3vw, 28px);
}

.sc-stats__label {
    color: var(--sc-muted-soft);
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

.sc-stats__divider {
    width: 1px;
    height: 64px;
    background: var(--sc-line);
}

/* Lessons */
.sc-lessons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sc-lesson {
    background: var(--sc-surface);
    border: 1px solid var(--sc-line);
    border-radius: 12px;
    padding: 16px;
}

.sc-lesson__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.sc-lesson__index {
    display: block;
    color: var(--sc-blue);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.sc-lesson h3 {
    margin: 0;
    color: var(--sc-navy);
    font-size: 16px;
    font-weight: 700;
}

.sc-lesson__duration {
    color: var(--sc-muted-soft);
    font-size: 12px;
    white-space: nowrap;
}

.sc-lesson__player {
    width: 100%;
    border-radius: 10px;
    background: #000;
    max-height: 420px;
}

.sc-lesson__embed {
    position: relative;
    padding-top: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.sc-lesson__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sc-lesson__embed--modal {
    border-radius: 0;
}

.sc-locked {
    background: var(--sc-surface-low);
    border-radius: 12px;
    padding: 20px;
}

.sc-locked > p {
    margin: 0 0 8px;
    color: var(--sc-muted);
}

.sc-locked ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-locked li {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--sc-line);
    color: var(--sc-navy);
}

.sc-locked li:last-child {
    border-bottom: 0;
}

.sc-locked li span {
    background: var(--sc-yellow);
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 800;
}

.sc-locked li strong {
    font-weight: 700;
}

.sc-locked li em {
    margin-right: auto;
    color: var(--sc-muted-soft);
    font-style: normal;
    font-size: 12px;
}

/* FAQ — always visible like design */
.sc-faq {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sc-faq__item {
    background: var(--sc-surface);
    border: 1px solid rgba(195, 198, 215, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.2s ease;
}

.sc-faq__item:hover {
    background: #fff;
}

.sc-faq__q {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: right;
    padding: 20px 24px;
    color: var(--sc-navy);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
}

.sc-faq__q .material-symbols-outlined {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--sc-muted-soft);
}

.sc-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sc-faq__a-inner {
    padding: 0 24px 22px;
    color: var(--sc-muted);
    font-size: 15px;
    line-height: 1.85;
}

/* Related */
.sc-related {
    margin-top: 8px;
}

.sc-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 576px) {
    .sc-related__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.sc-related__card {
    display: flex;
    gap: 12px;
    background: var(--sc-surface);
    border: 1px solid var(--sc-line);
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sc-related__card:hover {
    border-color: rgba(35, 75, 170, 0.35);
    box-shadow: 0 8px 20px rgba(27, 37, 73, 0.08);
}

.sc-related__card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.sc-related__card h3 {
    margin: 0 0 6px;
    color: var(--sc-navy);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.sc-related__card span {
    color: var(--sc-blue);
    font-size: 13px;
    font-weight: 700;
}

/* Mobile bar */
.sc-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #fff;
    border-top: 1px solid rgba(195, 198, 215, 0.3);
    padding: 14px 16px;
    box-shadow: 0 -8px 24px rgba(27, 37, 73, 0.08);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sc-mobile-bar__label {
    display: block;
    font-size: 12px;
    color: var(--sc-muted-soft);
    font-weight: 500;
}

.sc-mobile-bar__price {
    color: var(--sc-blue);
    font-size: 18px;
    font-weight: 800;
}

.sc-modal {
    border-radius: 16px;
    overflow: hidden;
}

.sc-empty-tab {
    color: var(--sc-muted-soft);
    font-size: 15px;
    padding: 12px 0;
}

@media (max-width: 991px) {
    .sc-hero {
        padding: 32px 0 112px;
    }

    .sc-main {
        margin-top: -64px;
    }

    .sc-sticky {
        position: static;
    }

    .sc-mobile-bar {
        display: flex;
    }

    .sc-page:not(.vc-list-page):not(.vc-cart-page) {
        padding-bottom: 110px;
    }

    .sc-stats__divider {
        display: none;
    }

    .sc-buy__price-current {
        font-size: 32px;
    }

    .sc-faq__q {
        font-size: 16px;
        padding: 16px 18px;
    }

    .sc-buy__body {
        padding: 22px;
    }
}

/* ===== Listing page ===== */
.vc-list-page.sc-page,
.vc-cart-page.sc-page {
    padding-bottom: 48px;
}

.vc-list-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.vc-list-header__sub {
    margin: 0;
    color: #565656;
    line-height: 1.9;
}

.vc-list-search {
    display: flex;
    gap: 10px;
    flex: 1 1 280px;
    max-width: 420px;
}

.vc-list-search .form-control {
    border-radius: 25px;
    padding: 10px 18px;
    border: 1px solid rgba(27, 37, 73, 0.12);
}

.vc-list-search .sc-btn {
    white-space: nowrap;
    padding: 10px 18px;
    border-radius: 25px;
}

.vc-list-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.vc-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eef1f8;
    color: #1B2549;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.vc-chip:hover {
    color: #234BAA;
    background: #e4e8f3;
}

.vc-chip.is-active {
    background: #1B2549;
    color: #fff;
}

.vc-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(27, 37, 73, 0.06);
    border: 1px solid rgba(27, 37, 73, 0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.vc-card:hover {
    box-shadow: 0 16px 36px rgba(27, 37, 73, 0.1);
    transform: translateY(-2px);
}

.vc-card__media {
    position: relative;
    display: block;
    height: 180px;
    overflow: hidden;
    background: #1B2549;
}

.vc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vc-card:hover .vc-card__media img {
    transform: scale(1.05);
}

.vc-card__placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.vc-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FFD600;
    color: #1B2549;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
}

.vc-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vc-card__title {
    display: block;
    color: #1B2549;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    text-decoration: none;
    margin-bottom: 8px;
}

.vc-card__title:hover {
    color: #234BAA;
}

.vc-card__summary {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 14px;
    min-height: 42px;
    flex: 1;
}

.vc-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    background: #f3f5fa;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 12px;
}

.vc-card__price strong {
    color: #234BAA;
    font-size: 15px;
    font-weight: 800;
}

.vc-card__price strong span {
    font-size: 12px;
    font-weight: 600;
}

.vc-card__price del {
    color: #9aa0b0;
    font-size: 12px;
}

.vc-card__actions {
    display: flex;
    gap: 8px;
}

.vc-card__actions .sc-btn {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 10px;
}

.vc-empty {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 48px 20px;
    border: 1px solid rgba(27, 37, 73, 0.08);
}

.vc-empty p {
    margin-bottom: 16px;
    color: #565656;
}

/* ===== Cart page ===== */
.vc-cart-page {
    padding-bottom: 48px;
}

.vc-panel {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(27, 37, 73, 0.08);
    box-shadow: 0 10px 28px rgba(27, 37, 73, 0.05);
}

.vc-cart-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(27, 37, 73, 0.08);
}

.vc-cart-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.vc-cart-item:first-child {
    padding-top: 0;
}

.vc-cart-item__thumb {
    width: 96px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eef1f8;
    display: block;
}

.vc-cart-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vc-cart-item__body {
    flex: 1;
    min-width: 0;
}

.vc-cart-item__body a {
    text-decoration: none;
}

.vc-cart-item__body h3 {
    margin: 0 0 6px;
    color: #1B2549;
    font-size: 15px;
    font-weight: 700;
}

.vc-cart-item__body p {
    margin: 0 0 8px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.7;
}

.vc-cart-item__price {
    color: #234BAA;
    font-size: 14px;
    font-weight: 700;
}

.vc-cart-item__price del {
    color: #9aa0b0;
    font-weight: 500;
    margin-right: 8px;
    font-size: 12px;
}

.vc-buy-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(27, 37, 73, 0.08);
    box-shadow: 0 10px 28px rgba(27, 37, 73, 0.08);
}

.vc-buy-card__label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.vc-cart-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.vc-cart-summary > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #1B2549;
    font-size: 14px;
}

.vc-cart-summary strong {
    color: #234BAA;
    font-weight: 800;
}

.vc-buy-card__hint {
    margin: 12px 0 0;
    color: #6b7280;
    font-size: 12px;
    text-align: center;
}

/* Legacy alias for cart page buttons */
.vc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.vc-btn--primary {
    background: #1B2549;
    color: #fff;
}

.vc-btn--primary:hover {
    background: #234BAA;
    color: #fff;
}

.vc-btn--secondary {
    background: #FFD600;
    color: #1B2549;
}

.vc-btn--ghost {
    background: #eef1f8;
    color: #1B2549;
}

.vc-btn--ghost:hover {
    background: #e4e8f3;
    color: #1B2549;
}

@media (max-width: 575px) {
    .vc-cart-item {
        flex-wrap: wrap;
    }

    .vc-cart-item__thumb {
        width: 100%;
        height: 140px;
    }

    .vc-card__actions {
        flex-direction: column;
    }
}
