/**
 * WC Cashback SMS - Frontend Styles
 */

/* Cashback Balance Box */
.wc-cashback-balance {
    position: relative;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.wc-cashback-balance strong {
    display: inline-block;
    margin-left: 10px;
}

.wc-cashback-balance .woocommerce-Price-amount {
    font-size: 1.3em;
    font-weight: bold;
}

.wc-cashback-balance .cashback-details-toggle {
    color: #fff;
    text-decoration: underline;
    margin-right: 15px;
    cursor: pointer;
    opacity: 0.9;
}

.wc-cashback-balance .cashback-details-toggle:hover {
    opacity: 1;
}

.cashback-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.cashback-details-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.cashback-details-table th,
.cashback-details-table td {
    padding: 10px 15px;
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cashback-details-table th {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.cashback-details-table tr:last-child td {
    border-bottom: none;
}

/* Checkout Cashback Section */
.wc-cashback-checkout {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px dashed #667eea;
}

.wc-cashback-checkout h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1em;
}

.wc-cashback-checkout label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1em;
}

.wc-cashback-checkout input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    cursor: pointer;
}

.wc-cashback-checkout .woocommerce-Price-amount {
    color: #667eea;
    font-weight: bold;
}

/* Fee display in cart/checkout */
.cart-discount .woocommerce-Price-amount,
.fee .woocommerce-Price-amount {
    color: #28a745;
}

/* RTL Adjustments */
body.rtl .wc-cashback-balance strong {
    margin-left: 0;
    margin-right: 10px;
}

body.rtl .wc-cashback-balance .cashback-details-toggle {
    margin-right: 0;
    margin-left: 15px;
}

body.rtl .wc-cashback-checkout input[type="checkbox"] {
    margin-left: 0;
    margin-right: 10px;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .wc-cashback-balance {
        padding: 12px 15px;
    }
    
    .wc-cashback-checkout {
        padding: 15px;
    }
    
    .cashback-details-table th,
    .cashback-details-table td {
        padding: 8px 10px;
        font-size: 0.9em;
    }
}
