.payment-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    padding: 40px;
    flex: 1;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 768px) {
    .payment-container {
        gap: 12px;
        flex-direction: column;
    }
}

.pay-container {
    border-radius: 8px;
    background: #FFF;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.pay-container .title {
    color: #0B0427;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-align: right;
    width: 100%;
}

/* Pay Container Points Variant */
.pay-container-points {
    min-height: 280px;
}

.pay-header {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    width: 100%;
}

.pay-title {
    color: #0B0427;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    text-align: right;
    width: 100%;
    margin: 0;
}

.pay-points-message {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    color: #0B0427;
    text-align: right;
    width: 100%;
    margin: 0;
}

.pay-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
}

.pay-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px;
    height: 50px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    line-height: 34px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.pay-button-primary {
    background: #2020B3;
    border: 2px solid #fff;
    color: #fff;
}

.pay-button-primary:hover {
    background: #1a1a99;
}

/* Decorative Star Icon */
.pay-star-icon {
    position: absolute;
    top: 10%;
    left: 8%;
    width: 103px;
    height: 103px;
    pointer-events: none;
}


/* Mobile Styles */
@media (max-width: 768px) {
    .payment-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .pay-container {
        max-width: 100%;
        padding: 24px;
        gap: 24px;
    }

    .pay-container .title {
        font-size: 22px;
        line-height: 28px;
    }

    .pay-container-points {
        min-height: auto;
    }

    .pay-title {
        font-size: 22px;
        line-height: 28px;
        padding: 0;
    }

    .pay-points-message {
        font-size: 18px;
        line-height: 22px;
    }

    .pay-button {
        font-size: 16px;
        height: 46px;
    }

    .pay-star-icon {
        max-width: 52px;
        max-height: 52px;
        top: 15%;
        left: 5%;
    }

    .pay-star-icon img {
        max-width: 52px;
        max-height: 52px;
    }
}
