/* 
 * Cashback Landing Page - Modern Design System 
 * Fully externalized for SERP Dominance
 */

:root {
    --cb-primary: #4f46e5;
    --cb-primary-hover: #4338ca;
    --cb-success: #059669;
    --cb-text-main: #111827;
    --cb-text-muted: #6b7280;
    --cb-bg-light: #f9fafb;
    --cb-card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --cb-card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Global Section Utility */
.cb-section {
    padding: 100px 0;
    background: #fff;
}

.cb-section.bg-light {
    background: var(--cb-bg-light);
}

.cb-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.cb-section-header.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cb-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--cb-text-main);
    margin-bottom: 12px;
}

.cb-section-subtitle {
    font-size: 1.125rem;
    color: var(--cb-text-muted);
    max-width: 600px;
}

/* Hero Section */
.cb-hero {
    background: linear-gradient(to bottom right, #f8fafc, #eff6ff);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cb-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.cb-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--cb-text-main);
    margin-bottom: 24px;
}

.cb-hero-subtitle {
    font-size: 1.25rem;
    color: var(--cb-text-muted);
    margin-bottom: 40px;
}

/* Search Box */
.cb-search-box {
    display: flex;
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cb-search-box input {
    flex: 1;
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
}

.cb-search-btn {
    background: var(--cb-primary);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.cb-search-btn:hover {
    background: var(--cb-primary-hover);
    transform: scale(1.02);
}

.cb-hero-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--cb-text-muted);
}

.cb-hero-badge i {
    color: var(--cb-success);
    margin-right: 6px;
}

/* Grid System */
.cb-grid {
    display: grid;
    gap: 30px;
}

.cb-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cb-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.cb-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
    .cb-grid-5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {

    .cb-grid-4,
    .cb-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .cb-grid-3,
    .cb-grid-4,
    .cb-grid-5 {
        grid-template-columns: 1fr;
    }
}

/* Horizontal Card layout */
.cb-card-horizontal {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
}

.cb-card-horizontal .cb-card-logo {
    width: 60px !important;
    height: 60px !important;
    margin: 0 20px 0 0 !important;
}

.cb-card-horizontal .cb-card-info {
    flex: 1;
}

/* Store Cards - Compact Minimalistic Design */
.cb-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #f1f5f9;
    transition: 0.2s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cb-card-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cb-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cb-text-main);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.cb-card-rate {
    font-weight: 700;
    color: var(--cb-success);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.cb-activate-btn {
    width: 100%;
    background: var(--cb-primary);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
}

.cb-activate-btn:hover {
    background: var(--cb-primary-hover);
}

/* Category Slider */
.cb-cat-slider-container {
    position: relative;
    margin-bottom: 40px;
}

.cb-filters {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cb-filters::-webkit-scrollbar {
    display: none;
}

.cb-filter-item {
    white-space: nowrap;
    padding: 10px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    color: var(--cb-text-muted);
    cursor: pointer;
    transition: 0.2s;
}

.cb-filter-item:hover,
.cb-filter-item.active {
    background: var(--cb-primary);
    color: #fff;
    border-color: var(--cb-primary);
}

.cb-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    z-index: 20;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    color: var(--cb-text-main);
}

.cb-slider-nav:hover {
    background: var(--cb-primary);
    color: #fff;
    border-color: var(--cb-primary);
}

.cb-slider-nav.prev {
    left: -22px;
}

.cb-slider-nav.next {
    right: -22px;
}

@media (max-width: 1300px) {
    .cb-slider-nav.prev {
        left: 5px;
    }

    .cb-slider-nav.next {
        right: 5px;
    }
}

/* Top Brands (Circular) */
.cb-brands-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.cb-brand-item {
    text-align: center;
    width: 120px;
}

.cb-brand-circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    padding: 15px;
    margin: 0 auto 15px;
    box-shadow: var(--cb-card-shadow);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-brand-item:hover .cb-brand-circle {
    transform: scale(1.1);
    box-shadow: var(--cb-card-shadow-hover);
}

.cb-brand-circle img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.cb-brand-percentage {
    font-weight: 800;
    color: var(--cb-success);
    font-size: 0.9rem;
}

/* Trust Badges */
.cb-trust-section {
    padding-top: 80px;
    padding-bottom: 60px;
}

.cb-trust-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cb-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 250px;
}

.cb-trust-icon {
    font-size: 1.5rem;
    color: var(--cb-primary);
}

.cb-trust-title {
    font-weight: 700;
    color: var(--cb-text-main);
    margin-bottom: 2px;
}

.cb-trust-text {
    font-size: 0.85rem;
    color: var(--cb-text-muted);
}

/* Steps */
.cb-steps-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

@media (max-width: 768px) {
    .cb-steps-container {
        flex-direction: column;
        align-items: center;
    }
}

.cb-step {
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 300px;
}

.cb-step-num {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cb-primary);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    z-index: 2;
}

.cb-step-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    position: relative;
}

.cb-step-icon-box i {
    font-size: 1.8rem;
}

.cb-step-title {
    font-weight: 800;
    margin-bottom: 10px;
}

/* FAQ */
.cb-faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.cb-faq-node {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.cb-faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--cb-text-main);
}

.cb-faq-answer {
    padding: 0 24px 20px;
    color: var(--cb-text-muted);
    display: none;
    line-height: 1.6;
}

.cb-faq-node.active .cb-faq-answer {
    display: block;
}

.cb-faq-node.active .cb-faq-question {
    border-bottom: 1px solid #f8fafc;
    color: var(--cb-primary);
}

/* Newsletter Card */
.cb-newsletter-card {
    background: var(--cb-primary);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
}

.cb-newsletter-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.cb-newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cb-newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #fff;
    outline: none;
}

.cb-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cb-newsletter-form button {
    background: #fff;
    color: var(--cb-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}

/* Animations */
.cb-loading {
    opacity: 0.4;
    pointer-events: none;
}

.cb-empty {
    grid-column: 1 / -1;
    padding: 60px;
    text-align: center;
    color: var(--cb-text-muted);
    font-size: 1.1rem;
}

/* Existing activations bars / prompts (keep them) */
.cb-activation-bar {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.cb-brand-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: 0.3s;
}

.cb-brand-link:hover {
    transform: translateY(-5px);
}

.cb-newsletter-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
}

/* Modals System */
.cb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cb-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.cb-modal-content {
    background: #fff;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    padding: 50px 45px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}


.cb-modal-overlay.active .cb-modal-content {
    transform: translateY(0);
}

.cb-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f8fafc;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.cb-modal-close:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.cb-modal-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 10px;
    overflow: hidden;
}

.cb-modal-store-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cb-modal-icon {
    font-size: 30px;
}


.cb-modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.cb-modal-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cb-modal-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--cb-primary);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.2s;
    flex: 1;
}

.cb-modal-btn:hover {
    background: var(--cb-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

/* Modal Action Wrapper - Shop Now Button */
.cb-modal-action-wrapper {
    margin: 25px 0;
}

.cb-modal-shop-now {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.cb-modal-shop-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
}

/* Modal Newsletter Section */
.cb-modal-newsletter {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
}

.cb-newsletter-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.cb-modal-newsletter .cb-newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 100%;
    margin: 0;
    background: transparent;
    padding: 0;
    border: none;
}

.cb-modal-newsletter .cb-newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #1f2937;
}

.cb-modal-newsletter .cb-newsletter-form input:focus {
    outline: none;
    border-color: var(--cb-primary);
}

.cb-modal-newsletter .cb-newsletter-form button {
    background: var(--cb-primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.cb-modal-newsletter .cb-newsletter-form button:hover {
    background: var(--cb-primary-hover);
}

/* Modal Footer - Transaction ID */
.cb-modal-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.cb-ref-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

#cb-modal-ref {
    font-size: 10px;
    color: #cbd5e1;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    line-height: 1.4;
}

/* User Context in Modal */
.cb-modal-user-context {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 12px;
    color: #64748b;
}

.cb-user-email {
    font-weight: 600;
}

.cb-not-you {
    color: var(--cb-primary);
    text-decoration: none;
    margin-left: 6px;
}

.cb-not-you:hover {
    text-decoration: underline;
}

/* Success Modal Specifics */
.cb-success-store {
    margin-bottom: 20px;
    text-align: center;
}

.cb-success-logo {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    display: block;
    background: #fff;
}

.cb-success-rate {
    display: inline-block;
    background: #f0fdf4;
    color: #10b981;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    margin-top: 10px;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .cb-modal-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
}

/* =====================================================
   CASHBACK BONUS PROMPT - Single Deal Page
   Light Pink/Rose Design (User Preferred)
   ===================================================== */
.cb-coupon-prompt {
    background: #fdf2f8;
    border: 2px dashed #f9a8d4;
    border-radius: 12px;
    padding: 16px 24px;
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cb-info-col {
    flex: 1;
}

.cb-main-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cb-pill {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cb-title {
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.cb-title strong {
    font-weight: 800;
    color: #111827;
}

.cb-tos-note {
    color: #6b7280;
    font-size: 11px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cb-tos-note i,
.cb-tos-note .fa-info-circle {
    font-size: 12px;
    color: #9ca3af;
}

.cb-action-col {
    flex-shrink: 0;
}

.cb-link-activate {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    color: #ec4899;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cb-link-activate:hover {
    background: #fce7f3;
    color: #db2777;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .cb-coupon-prompt {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }

    .cb-main-text {
        justify-content: center;
    }

    .cb-link-activate {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   USER DASHBOARD - Account Panel Styles
   ===================================================== */
.cb-dashboard {
    padding: 10px 0;
}

.cb-dashboard h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 25px 0;
}

/* Balance Cards Grid */
.cb-balance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.cb-dashboard .cb-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}

.cb-card-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cb-card-value {
    font-size: 28px;
    font-weight: 800;
}

/* History Table */
.cb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cb-table thead th {
    background: #f8fafc;
    padding: 12px 15px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}

.cb-table tbody td {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.cb-table tbody tr:hover {
    background: #fafbfc;
}

/* Status Pills */
.cb-status-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.cb-status-pending {
    background: #fef3c7;
    color: #b45309;
}

.cb-status-confirmed {
    background: #dcfce7;
    color: #15803d;
}

.cb-status-paid {
    background: #dbeafe;
    color: #1d4ed8;
}

.cb-status-rejected {
    background: #fee2e2;
    color: #dc2626;
}

/* Tier Badges */
.cb-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cb-badge-bronze {
    background: linear-gradient(135deg, #9d7b4c, #cd853f);
    color: #fff;
}

.cb-badge-silver {
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    color: #1e293b;
}

.cb-badge-gold {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1e293b;
}

.cb-badge-platinum {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

/* Form Elements */
.cb-form-group {
    margin-bottom: 15px;
}

.cb-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
}

.cb-input,
.cb-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.2s;
}

.cb-input:focus,
.cb-select:focus {
    outline: none;
    border-color: var(--cb-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.cb-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.cb-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cb-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .cb-balance-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cb-card-value {
        font-size: 24px;
    }

    .cb-table {
        font-size: 12px;
    }

    .cb-table thead th,
    .cb-table tbody td {
        padding: 10px 12px;
    }
}