/**
 * Vime Payment Methods Widget Styles
 *
 * @package Vime_WooCommerce_Widgets
 * @since 1.5.10
 */

/* Wrapper */
.vime-payment-methods-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Section */
.vime-payment-section {
    padding: 0;
}

/* Section Title */
.vime-payment-section-title {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin: 0 0 15px 0;
    padding: 0;
    border: none;
    background: none;
}

/* Content */
.vime-payment-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Price Row */
.vime-payment-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 15px;
}

.vime-payment-price-label {
    font-weight: 600;
    color: #333;
}

.vime-payment-price-value {
    font-weight: 600;
    color: #333;
}

.vime-payment-price-value .woocommerce-Price-amount {
    font-weight: 600;
}

/* Badge */
.vime-payment-badge {
    display: inline-block;
    width: fit-content;
    max-width: fit-content;
    font-size: 12px;
    font-weight: 500;
    color: #22c55e;
    padding: 2px 8px;
    border-radius: 3px;
    box-sizing: border-box;
}

/* Description */
.vime-payment-description {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0;
    line-height: 1.5;
}

/* Pix Icon */
.vime-pix-icon {
    margin-top: 8px;
}

.vime-pix-icon svg {
    width: 40px;
    height: 40px;
    fill: #32BCAD;
}

/* Card Brands */
.vime-card-brands {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.vime-card-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 30px;
    width: 45px;
}

.vime-card-brand img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Installments Info */
.vime-installments-info {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

.vime-installments-info .woocommerce-Price-amount {
    font-weight: 600;
}

/* Boleto Section */
.vime-payment-boleto .vime-boleto-icon {
    margin-top: 10px;
}

.vime-payment-boleto .vime-boleto-icon img {
    height: 50px;
    width: auto;
}

.vime-boleto-barcode {
    font-family: monospace;
    text-align: center;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
    display: inline-block;
}

/* Credit Card Section */
.vime-payment-credit-card .vime-payment-badge {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 767px) {
    .vime-payment-methods-wrapper {
        gap: 25px;
    }

    .vime-payment-section-title {
        font-size: 15px;
    }

    .vime-payment-price-row {
        font-size: 14px;
    }

    .vime-card-brand {
        height: 24px;
        width: 38px;
    }

    .vime-pix-icon svg {
        width: 32px;
        height: 32px;
    }

    .vime-payment-boleto .vime-boleto-icon img {
        height: 40px;
    }
}

/* Editor Notice */
.vime-editor-notice {
    background: #f0f0f0;
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
    border-radius: 4px;
}
