/* LCorn top-up page - styles */
.lcorn-online .lcorn-page {
    width: 100%;
    margin: 0 auto;
}
.lcorn-topup-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 28px 32px;
}
.lcorn-topup-title {
    font-size: 24px;
    font-weight: 700;
    color: #231f20;
    margin: 0 0 16px 0;
}
.lcorn-info-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border: 1px dashed #4a90d9;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}
.lcorn-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #4a90d9;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: #4a90d9;
    flex-shrink: 0;
}
.lcorn-account-section {
    margin-bottom: 24px;
}
.lcorn-account-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.lcorn-account-value {
    color: #28a745;
    font-weight: 600;
}
.lcorn-account-check {
    color: #28a745;
    margin-left: 4px;
}
.lcorn-email-input {
    width: 100%;
    max-width: 360px;
    height: 40px;
    padding: 8px 14px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}
.lcorn-email-input:focus {
    outline: none;
    border-color: #ed1c24;
    box-shadow: 0 0 0 2px rgba(237,28,36,0.1);
}
.lcorn-email-input[readonly] {
    background: #f0f0f0;
    cursor: default;
}
.lcorn-packages-section {
    margin-bottom: 24px;
}
.lcorn-packages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.lcorn-packages-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.lcorn-rate {
    font-size: 13px;
    color: #666;
}
.lcorn-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 600px) {
    .lcorn-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.lcorn-package-card {
    position: relative;
    background: #fafafa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lcorn-package-card:hover {
    border-color: #ed1c24;
}
.lcorn-package-card.selected {
    border-color: #ed1c24;
    box-shadow: 0 0 0 2px rgba(237,28,36,0.2);
}
.lcorn-package-amount {
    font-size: 18px;
    font-weight: 700;
    color: #231f20;
    margin-bottom: 4px;
}
.lcorn-package-price {
    font-size: 13px;
    color: #209954;
}
.lcorn-package-price .currency {
    margin-left: 2px;
}
.lcorn-actions {
    margin-top: 8px;
}
.lcorn-btn-topup {
    height: 44px;
    min-width: 160px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    background: #ed1c24;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.lcorn-btn-topup:hover:not(:disabled) {
    background: #c9181f;
}
.lcorn-btn-topup:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.lcorn-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 14px;
    color: #666;
}
.lcorn-spinner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #eee;
    border-top-color: #ed1c24;
    animation: lcorn-spin 0.8s linear infinite;
}
@keyframes lcorn-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
