/**
 * Styles for WooCommerce Installments Plugin
 */

.wc-installments-wrapper {
    border: 1px solid #eee;
    background-color: #fafafa;
    padding: 15px;
    margin-top: 20px;
    border-radius: 6px;
    /* Increase font size slightly for better readability */
    font-size: 16px;
    color: #333;
    direction: rtl;
}

.wc-installment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.wc-installment-item:last-child {
    margin-bottom: 0;
}

.wc-installment-title {
    font-weight: 500;
    margin-inline-end: 4px;
}

.wc-installment-amount {
    font-weight: 700;
    color: #e9673e;
    margin-inline-end: 4px;
}

.wc-installment-note {
    color: #666;
    margin-inline-end: 8px;
}

.wc-installment-providers img {
    width: 40px;
    height: auto;
    margin-inline-start: 4px;
}

.wc-installment-providers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wc-installment-period {
    margin-inline-start: 4px;
    color: #666;
}

/* Style for the buy now/installment call-to-action button */
.wc-installment-buy-btn-wrapper {
    margin-top: 10px;
    text-align: center;
}

.wc-installment-buy-btn {
    display: inline-block;
    background-color: #e9673e;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.wc-installment-buy-btn:hover {
    background-color: #c04d2c;
}


/* Hide Amwal promo message if present on the product page */
.amwal-promo-message {
    display: none !important;
}