/**
 * Hito BNPL Frontend Styles
 */

/* Product Widget */
.hito-bnpl-product-widget {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.hito-bnpl-widget-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.hito-bnpl-widget-header .hito-bnpl-icon {
    font-size: 24px;
    margin-right: 10px;
}

.hito-bnpl-widget-header strong {
    font-size: 16px;
    color: #333;
}

.hito-bnpl-widget-body p {
    margin: 5px 0;
    color: #666;
}

.hito-bnpl-amounts {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.hito-bnpl-amount {
    text-align: center;
    flex: 1;
}

.hito-bnpl-label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hito-bnpl-value {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Cart Integration */
.hito-bnpl-cart {
    background-color: #f9f9f9;
}

.hito-bnpl-cart-option {
    padding: 10px 0;
}

.hito-bnpl-cart-option label {
    font-weight: bold;
    cursor: pointer;
}

.hito-bnpl-cart-option input[type="checkbox"] {
    margin-right: 8px;
}

.hito-bnpl-cart-details {
    margin-top: 15px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.hito-bnpl-cart-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
}

.hito-bnpl-cart-row:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.hito-bnpl-cart-row span:last-child {
    font-weight: bold;
}

/* Thank You Page */
.hito-bnpl-thankyou {
    margin: 20px 0;
    padding: 20px;
    background-color: #f0f8ff;
    border: 1px solid #b0d4f1;
    border-radius: 4px;
}

.hito-bnpl-thankyou h3 {
    margin-top: 0;
    color: #21759b;
}

.hito-bnpl-thankyou-details {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.hito-bnpl-thankyou-details li {
    padding: 8px 0;
    border-bottom: 1px solid #d0e4f5;
}

.hito-bnpl-thankyou-details li:last-child {
    border-bottom: none;
}

/* Customer Account */
.hito-bnpl-account {
    margin: 20px 0;
}

.hito-bnpl-account h2 {
    margin-bottom: 20px;
}

.hito-bnpl-account .shop_table {
    width: 100%;
}

/* Status Badges */
.hito-bnpl-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.hito-bnpl-status.status-active {
    background-color: #d4edda;
    color: #155724;
}

.hito-bnpl-status.status-paid {
    background-color: #cce5ff;
    color: #004085;
}

.hito-bnpl-status.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.hito-bnpl-status.status-refunded {
    background-color: #fff3cd;
    color: #856404;
}