.course-purchase-options {
    float: right;
    width: 97%;
    margin: 10px 0 10px 10px;
    padding: 18px 16px 14px;
    background: transparent;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.course-purchase-options__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4b;
    text-align: center;
}

.course-purchase-options__divider {
    height: 1px;
    margin: 0 0 16px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #d5dbe8 20%,
        #d5dbe8 80%,
        transparent 100%
    );
    position: relative;
}

.course-purchase-options__divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #d5dbe8;
    transform: translate(-50%, -50%) rotate(45deg);
}

.course-purchase-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 0;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.course-purchase-btn + .course-purchase-btn {
    margin-top: 12px;
}

.course-purchase-btn__left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.course-purchase-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    font-size: 18px;
    line-height: 1;
}

.course-purchase-btn__coin-img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.course-purchase-btn__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.course-purchase-btn__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.course-purchase-btn__price {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.course-purchase-btn__arrow {
    font-size: 18px;
    line-height: 1;
}

.course-purchase-btn--coins {
    border: none;
    background: linear-gradient(135deg, #173b9f 0%, #1f5eff 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(31, 94, 255, 0.25);
}

.course-purchase-btn--coins .course-purchase-btn__title,
.course-purchase-btn--coins .course-purchase-btn__price,
.course-purchase-btn--coins .course-purchase-btn__arrow {
    color: #fff;
}

.course-purchase-btn--coins .course-purchase-btn__price {
    color: #7ee8ff;
}

.course-purchase-btn--coins:hover,
.course-purchase-btn--coins:focus {
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(31, 94, 255, 0.35);
    transform: translateY(-1px);
    outline: none;
}

.course-purchase-btn--money {
    border: 2px solid #1f5eff;
    background: #fff;
    color: #1f5eff;
}

.course-purchase-btn--money .course-purchase-btn__title {
    color: #173b9f;
}

.course-purchase-btn--money .course-purchase-btn__price,
.course-purchase-btn--money .course-purchase-btn__icon,
.course-purchase-btn--money .course-purchase-btn__arrow {
    color: #1f5eff;
}

.course-purchase-btn--money:hover,
.course-purchase-btn--money:focus {
    background: #f5f8ff;
    box-shadow: 0 4px 12px rgba(31, 94, 255, 0.12);
    outline: none;
}

.course-purchase-btn--money:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.course-purchase-options__note {
    margin: 14px 0 0;
    font-size: 12px;
    color: #6b7a90;
    text-align: center;
}

.course-purchase-options__note i {
    margin-right: 4px;
}

.course-money-pay-alert {
    margin: 0 0 12px;
    width: 100%;
}

/* Webinar view: keep enrollment card below details list */
.webinar-job-overview > ul::after {
    content: '';
    display: table;
    clear: both;
}

.webinar-job-overview .course-purchase-options {
    clear: both;
    float: none;
    width: 100%;
    margin: 16px 0 0;
    box-shadow: none;
}
