.product-info {
    width: 50%;
    /*padding: 120px 140px;*/
    padding: 140px;
    background-color: var(--white);
}

.product-info__brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.product-info__brand-logo img{
    max-width: 140px;
    max-height: 60px;
}

.product-info__brand-title {
    font-weight: 700;
    font-size: 32px;
    /*line-height: 40px;*/
    color: var(--black);
    margin-bottom: 0;
}

.product-info__brand-subtitle {
    font-weight: 500;
    font-size: 16px;
    /*line-height: 30px;*/
    color: var(--black);
}

.product-info__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-info__detail-item {
    display: flex;
    flex-direction: column;
    /*gap: 4px;*/
}

.product-info__detail-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--text-secondary);
}

.product-info__detail-value {
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: var(--black);
}

.payment {
    width: 50%;
    padding: 72px 48px;
    display: flex;
    justify-content: center;
    background-color: var( --bg-color);
}

.payment__container {
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow);
    padding: 48px;
    max-width: 482px;
    width: 100%;
}

.payment__header {
    margin-bottom: 40px;
}

.payment__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 50px;
    color: var(--black);
}

.payment__order-number {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--black);
}

.payment__amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.payment__amount-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-secondary);
}

.payment__amount-value {
    font-weight: 700;
    font-size: 32px;
    line-height: 30px;
    color: var(--black);
}

.payment__primary-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.payment__primary-btn:hover {
    background-color: #0d5fc4;
}

.payment__quick-options {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.payment__quick-option {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.payment__divider {
    position: relative;
    border-top: 1px solid var(--border-color);
    margin: 24px 0;
}

.payment__divider-text {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 0 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--text-secondary);
}

.payment__foreign-title {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.payment__foreign-btn {
    width: 100%;
    padding: 16px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment__foreign-btn:hover {
    background-color: rgba(24, 118, 238, 0.1);
}

.payment__cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.payment__card-icon {
    height: 24px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.payment__card-icon:hover {
    filter: grayscale(0);
    opacity: 1;
}

.payment__terms {
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    color: var(--text-secondary);
    text-align: center;
}

.payment__terms-link {
    color: var(--primary);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.payment__terms-link:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .product-info,
    .payment {
        width: 100%;
    }

    .product-info {
        padding: 20px;
    }

    .payment {
        padding: 20px;
        background-color: var( --white);
    }

    .payment__container {
        max-width: 100%;
        margin-top: 0;
        padding: 0;
        box-shadow: none;
    }

    .payment__title {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (max-width: 768px) {
    .product-info,
    .payment {
        width: 100%;
    }

    .product-info {
        padding: 10px;
    }

    .payment {
        padding: 10px;
    }

    .payment__container {
        max-width: 100%;
        margin-top: 0;
    }

    .product-info__brand-title {
        font-size: 28px;
        line-height: 34px;
    }

    .payment__title {
        font-size: 32px;
        line-height: 38px;
    }

    .payment__amount-value {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    .product-info__brand-logo {
        width: 100px;
        height: 44px;
    }

    .product-info__brand-title {
        font-size: 24px;
        line-height: 30px;
    }

    .product-info__brand-subtitle,
    .product-info__detail-label,
    .product-info__detail-value {
        font-size: 14px;
        line-height: 24px;
    }

    .payment__title {
        font-size: 28px;
        line-height: 34px;
    }

    .payment__order-number {
        font-size: 14px;
    }

    .payment__amount-label {
        font-size: 14px;
    }

    .payment__amount-value {
        font-size: 24px;
    }

    .payment__primary-btn,
    .payment__foreign-btn {
        font-size: 14px;
        padding: 14px;
    }

    .payment__quick-options {
        gap: 24px;
    }

    .payment__terms {
        font-size: 12px;
        line-height: 18px;
    }

    .payment__card-icon {
        height: 20px;
    }
}
