/**
 * Bank Transfer Payment - Checkout Styles
 * 
 * Frontend styles untuk checkout dan order pages
 */

/* Bank Accounts List at Checkout */
.lp-bank-transfer-payment {
    padding: 20px 0;
}

.lp-payment-description {
    margin-bottom: 20px;
}

.lp-bank-accounts-list {
    margin: 20px 0;
}

.lp-bank-accounts-list h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.lp-bank-account-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lp-bank-account-item:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.lp-bank-account-item.selected {
    border-color: #667eea;
    background: #f0f3ff;
}

.lp-bank-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f3ff;
    border-radius: 50%;
    color: #667eea;
}

.lp-bank-info {
    flex: 1;
}

.lp-bank-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.lp-account-number-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.lp-account-number {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
    letter-spacing: 1px;
}

.lp-copy-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.lp-copy-btn:hover {
    background: #5568d3;
}

.lp-account-name {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 3px;
}

.lp-bank-branch {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.lp-bank-select {
    flex-shrink: 0;
}

.lp-bank-select input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Payment Note */
.lp-payment-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 15px;
    margin-top: 20px;
}

.lp-payment-note p {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: #856404;
}

.lp-payment-note ul {
    margin: 10px 0 0 20px;
    color: #856404;
}

.lp-payment-note li {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .lp-bank-account-item {
        flex-direction: column;
        text-align: center;
    }
    
    .lp-bank-icon {
        margin: 0 auto;
    }
    
    .lp-account-number-wrap {
        flex-direction: column;
        gap: 8px;
    }
    
    .lp-bank-select {
        width: 100%;
        text-align: center;
    }
}
