/*
===============================
WPCRYPTO PROFILE PAGE STYLES
===============================

Table of Contents:
1. Base Theme Variables
2. Main Layout Structure
3. Sidebar & Navigation
4. Dashboard Section
5. Account Section
6. Security Section
8. Deposit Section
9. Withdraw Section
10. History Section
11. Trading Section
12. Activity Section
13. Notifications Section
14. Referral Section
15. Staking Section
16. Universal Components
17. Mobile Responsive Design
===============================
*/

/* =========================
 1. BASE THEME VARIABLES - START
 ========================= */

.wpcryptoprofilepage-wrapper {
    /* Light theme default colors */
    --wp-bg-primary: #ffffff;
    --wp-bg-secondary: #f8f9fa;
    --wp-bg-card: #ffffff;
    --wp-text-primary: #1a1a1a;
    --wp-text-secondary: #6c757d;
    --wp-text-muted: #999999;
    --wp-border-color: #e9ecef;
    --wp-accent-color: #007bff;
    --wp-success-color: #28a745;
    --wp-warning-color: #ffc107;
    --wp-danger-color: #dc3545;
    --wp-info-color: #17a2b8;
    --wp-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --wp-shadow-medium: 0 2px 15px rgba(0, 0, 0, 0.1);
    --wp-shadow-hover: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Dark mode override */
[data-theme="dark"] .wpcryptoprofilepage-wrapper {
    --wp-bg-primary: #2d3748;
    --wp-bg-secondary: #1a202c;
    --wp-bg-card: #2d3748;
    --wp-text-primary: #e2e8f0;
    --wp-text-secondary: #a0aec0;
    --wp-text-muted: #718096;
    --wp-border-color: #4a5568;
    --wp-accent-color: #4299e1;
    --wp-success-color: #68d391;
    --wp-warning-color: #faf089;
    --wp-danger-color: #fc8181;
    --wp-info-color: #63b3ed;
    --wp-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.3);
    --wp-shadow-medium: 0 2px 15px rgba(0, 0, 0, 0.3);
    --wp-shadow-hover: 0 4px 15px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .wpcryptoprofilepage-security {
    background: transparent;
    color: var(--wp-text-primary);
    border-color: var(--wp-border-color);
}

/* =========================
 1. BASE THEME VARIABLES - END
 ========================= */

/* Ortak coin icon stilleri */
.wpcrypto-coin-icon,
.transaction-coin-icon,
.stake-coin-icon,
.dashboard-coin-icon,
.withdraw-coin-icon,
.deposit-coin-tag-icon,
.balance-coin-icon,
.network-info-coin-icon,
.summary-coin-icon,
.history-coin-icon,
.history-amount-icon {
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Ortak coin display yapıları */
.transaction-coin-info,
.stake-coin-display,
.dashboard-coin-display,
.withdraw-coin-display,
.balance-display-with-icon,
.network-info-with-icon,
.amount-validation-with-icon,
.summary-item-with-icon,
.coin-badge-with-icon,
.network-name-with-icon,
.amount-with-icon {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =========================
 2. MAIN LAYOUT STRUCTURE - START
 ========================= */

.wpcryptoprofilepage-wrapper {
    width: 99%;
    max-width: none;
    margin: 0 auto;
    padding: 20px;
    background: var(--wp-bg-primary);
    color: var(--wp-text-primary);
    border-radius: 12px;
    box-shadow: var(--wp-shadow-medium);
    transition: all 0.3s ease;
}

.wpcryptoprofilepage-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    min-height: 500px;
}

.wpcryptoprofilepage-content {
    background: var(--wp-bg-secondary);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--wp-shadow-light);
    transition: all 0.3s ease;
}

.wpcryptoprofilepage-page {
    display: none;
}

.wpcryptoprofilepage-js-loaded .wpcryptoprofilepage-page-active {
    display: block;
}

.wpcryptoprofilepage-page-title {
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--wp-text-primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--wp-border-color);
}

.wpcrypto-profile-page .entry-title,
.wpcrypto-profile-page .page-title,
.wpcrypto-profile-page h1.entry-title {
    display: none;
}

/* =========================
 2. MAIN LAYOUT STRUCTURE - END
 ========================= */

/* =========================
 3. SIDEBAR & NAVIGATION - START
 ========================= */

.wpcryptoprofilepage-sidebar {
    background: var(--wp-bg-secondary);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--wp-shadow-light);
    height: fit-content;
    position: sticky;
    top: 20px;
    transition: all 0.3s ease;
}

.wpcryptoprofilepage-theme-toggle {
    width: 100%;
    background: var(--wp-accent-color);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.wpcryptoprofilepage-theme-toggle:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.wpcryptoprofilepage-mobile-menu-btn {
    display: none;
    width: 100%;
    background: var(--wp-accent-color);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.wpcryptoprofilepage-mobile-close-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--wp-danger-color);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
    font-size: 16px;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
}

.wpcryptoprofilepage-user-info {
    background: var(--wp-bg-card);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid var(--wp-border-color);
    transition: all 0.3s ease;
}

.wpcryptoprofilepage-user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--wp-accent-color);
    margin-bottom: 15px;
}

.wpcryptoprofilepage-user-name {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--wp-accent-color);
}

.wpcryptoprofilepage-user-email {
    margin: 0;
    color: var(--wp-text-muted);
    font-size: 14px;
    word-break: break-all;
}

.wpcryptoprofilepage-navigation {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wpcryptoprofilepage-nav-link {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--wp-text-muted);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    background: transparent;
}

.wpcryptoprofilepage-js-loaded .wpcryptoprofilepage-nav-link:hover {
    background: var(--wp-border-color);
    color: var(--wp-text-primary);
    text-decoration: none;
    transform: translateX(5px);
}

.wpcryptoprofilepage-js-loaded .wpcryptoprofilepage-nav-active {
    background: var(--wp-accent-color);
    color: white;
}

/* =========================
 3. SIDEBAR & NAVIGATION - END
 ========================= */

/* =========================
 4. DASHBOARD SECTION - START
 ========================= */

.wpcryptoprofilepage-dashboard {
    background: transparent;
    padding: 0;
    border: none;
}

.wpcryptoprofilepage-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.wpcryptoprofilepage-dashboard-card {
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--wp-shadow-light);
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.wpcryptoprofilepage-dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wp-shadow-hover);
}

.wpcryptoprofilepage-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.wpcryptoprofilepage-card-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--wp-accent-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

.wpcryptoprofilepage-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--wp-text-primary);
    margin-bottom: 5px;
}

.wpcryptoprofilepage-card-subtitle {
    font-size: 12px;
    color: var(--wp-text-muted);
    line-height: 1.3;
}

.wpcryptoprofilepage-security-positive {
    color: var(--wp-success-color);
}

.wpcryptoprofilepage-security-warning {
    color: var(--wp-warning-color);
}

.wpcryptoprofilepage-security-negative {
    color: var(--wp-danger-color);
}

/* Security Status Section */
.wpcryptoprofilepage-security-section {
    margin-top: 30px;
}

.wpcryptoprofilepage-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--wp-text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--wp-border-color);
}

.wpcryptoprofilepage-cards-5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.wpcryptoprofilepage-card {
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: var(--wp-shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
}

.wpcryptoprofilepage-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--wp-shadow-hover);
}

.wpcryptoprofilepage-security-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.wpcryptoprofilepage-security-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--wp-text-primary);
    margin-bottom: 5px;
    line-height: 1.2;
}

.wpcryptoprofilepage-security-status {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1.2;
}

.wpcryptoprofilepage-security-enabled .wpcryptoprofilepage-security-status {
    background: rgba(40, 167, 69, 0.1);
    color: var(--wp-success-color);
}

.wpcryptoprofilepage-security-disabled .wpcryptoprofilepage-security-status {
    background: rgba(220, 53, 69, 0.1);
    color: var(--wp-danger-color);
}

/* Staking Section */
.wpcryptoprofilepage-stake-section {
    margin-top: 30px;
}

.wpcryptoprofilepage-table-container {
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border-color);
    border-radius: 12px;
    margin-top: 20px;
    overflow: hidden;
}

.wpcryptoprofilepage-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    background: var(--wp-bg-secondary);
    padding: 15px 20px;
    font-weight: 600;
    font-size: 13px;
    color: var(--wp-text-primary);
    border-bottom: 1px solid var(--wp-border-color);
}

.wpcryptoprofilepage-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 15px 20px;
    font-size: 13px;
    border-bottom: 1px solid var(--wp-border-color);
    transition: background 0.2s ease;
}

.wpcryptoprofilepage-table-row:hover {
    background: var(--wp-bg-secondary);
}

.wpcryptoprofilepage-table-row:last-child {
    border-bottom: none;
}

.wpcryptoprofilepage-coin-badge {
    background: var(--wp-accent-color);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.wpcryptoprofilepage-status-active {
    background: rgba(40, 167, 69, 0.1);
    color: var(--wp-success-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
}

.wpcryptoprofilepage-status-completed {
    background: rgba(23, 162, 184, 0.1);
    color: var(--wp-info-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
}

.wpcryptoprofilepage-status-unstaked {
    background: rgba(255, 193, 7, 0.1);
    color: var(--wp-warning-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
}

.wpcryptoprofilepage-reward {
    color: var(--wp-success-color);
    font-weight: 600;
}

.wpcryptoprofilepage-view-all-container {
    text-align: center;
    margin-top: 20px;
}

.wpcryptoprofilepage-btn-primary {
    background: var(--wp-accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wpcryptoprofilepage-btn-primary:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.wpcryptoprofilepage-no-data-container {
    text-align: center;
    padding: 40px 20px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border-color);
    border-radius: 12px;
}

.wpcryptoprofilepage-no-data-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--wp-text-muted);
}

.wpcryptoprofilepage-no-data-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--wp-text-primary);
    margin-bottom: 10px;
}

.wpcryptoprofilepage-no-data-text {
    color: var(--wp-text-muted);
    margin-bottom: 20px;
}

/* Balance Section */
.wpcryptoprofilepage-balances-section {
    margin-top: 30px;
}

.wpcryptoprofilepage-cards-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Shop Orders Section Styles */
.wpcryptoprofilepage-shop-orders-section {
    margin-bottom: 30px;
}

.wpcryptoprofilepage-shop-orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.wpcryptoprofilepage-shop-order-item {
    background: var(--wpcrypto-card-bg, #ffffff);
    border: 1px solid var(--wpcrypto-border-color, #e2e8f0);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.wpcryptoprofilepage-shop-order-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--wpcrypto-primary-color, #3b82f6);
}

.wpcryptoprofilepage-shop-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--wpcrypto-border-light, #f1f5f9);
}

.wpcryptoprofilepage-shop-order-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wpcryptoprofilepage-order-id strong {
    font-size: 16px;
    color: var(--wpcrypto-text-primary, #1e293b);
    font-weight: 600;
}

.wpcryptoprofilepage-order-date {
    font-size: 13px;
    color: var(--wpcrypto-text-secondary, #64748b);
}

.wpcryptoprofilepage-order-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.wpcryptoprofilepage-order-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--wpcrypto-success-color, #10b981);
}

/* Status Badges */
.wpcryptoprofilepage-status-completed {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #10b981;
}

.wpcryptoprofilepage-status-pending {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #f59e0b;
}

.wpcryptoprofilepage-status-failed {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #ef4444;
}

.wpcryptoprofilepage-status-cancelled {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #374151;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #9ca3af;
}

/* Products Grid */
.wpcryptoprofilepage-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.wpcryptoprofilepage-product-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--wpcrypto-bg-light, #f8fafc);
    border-radius: 8px;
    border: 1px solid var(--wpcrypto-border-light, #e2e8f0);
    transition: all 0.3s ease;
}

.wpcryptoprofilepage-product-item:hover {
    background: var(--wpcrypto-bg-hover, #f1f5f9);
    border-color: var(--wpcrypto-primary-light, #93c5fd);
}

.wpcryptoprofilepage-product-image {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--wpcrypto-border-light, #e2e8f0);
}

.wpcryptoprofilepage-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wpcryptoprofilepage-product-image:hover img {
    transform: scale(1.05);
}

.wpcryptoprofilepage-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wpcrypto-bg-light, #f1f5f9);
    color: var(--wpcrypto-text-muted, #9ca3af);
    font-size: 18px;
}

.wpcryptoprofilepage-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wpcryptoprofilepage-product-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--wpcrypto-text-primary, #1e293b);
    line-height: 1.3;
}

.wpcryptoprofilepage-product-name a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wpcryptoprofilepage-product-name a:hover {
    color: var(--wpcrypto-primary-color, #3b82f6);
}

.wpcryptoprofilepage-external-link {
    font-size: 11px;
    opacity: 0.7;
}

.wpcryptoprofilepage-product-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--wpcrypto-text-secondary, #64748b);
}

.wpcryptoprofilepage-product-quantity {
    font-weight: 500;
}

.wpcryptoprofilepage-product-price {
    font-weight: 600;
    color: var(--wpcrypto-success-color, #10b981);
}

/* Fulfillment Status Badges */
.wpcryptoprofilepage-fulfillment-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.wpcryptoprofilepage-fulfillment-badge.new {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #0ea5e9;
}

.wpcryptoprofilepage-fulfillment-badge.processing {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #f59e0b;
}

.wpcryptoprofilepage-fulfillment-badge.sourcing {
    background: #e0e7ff;
    color: #3730a3;
    border: 1px solid #6366f1;
}

.wpcryptoprofilepage-fulfillment-badge.completed {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.wpcryptoprofilepage-fulfillment-badge.cancelled {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.wpcryptoprofilepage-extra-order {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.wpcryptoprofilepage-fulfillment-details {
    margin-top: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 12px;
}

.wpcryptoprofilepage-fulfillment-detail {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    gap: 8px;
}

.wpcryptoprofilepage-fulfillment-label {
    font-weight: 600;
    min-width: 80px;
}

.wpcryptoprofilepage-license-key {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
    transition: background-color 0.2s;
}

.wpcryptoprofilepage-license-key:hover {
    background: #dee2e6;
}

.wpcryptoprofilepage-fulfillment-link {
    color: #007cba;
    text-decoration: none;
}

.wpcryptoprofilepage-fulfillment-link:hover {
    text-decoration: underline;
}

.wpcryptoprofilepage-fulfillment-notes {
    font-style: italic;
    color: #666;
}

.wpcryptoprofilepage-more-products {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--wpcrypto-bg-light, #f8fafc);
    border: 2px dashed var(--wpcrypto-border-color, #d1d5db);
    border-radius: 8px;
    color: var(--wpcrypto-text-secondary, #64748b);
    font-weight: 500;
    font-size: 14px;
}

/* Shop Order Footer */
.wpcryptoprofilepage-shop-order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--wpcrypto-border-light, #f1f5f9);
}

.wpcryptoprofilepage-order-fulfillment {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wpcryptoprofilepage-fulfillment-label {
    font-size: 13px;
    color: var(--wpcrypto-text-secondary, #64748b);
    font-weight: 500;
}

.wpcryptoprofilepage-fulfillment-status {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.wpcryptoprofilepage-fulfillment-status.new {
    background: #e0f2fe;
    color: #0369a1;
}

.wpcryptoprofilepage-fulfillment-status.processing {
    background: #fef3c7;
    color: #92400e;
}

.wpcryptoprofilepage-fulfillment-status.completed {
    background: #d1fae5;
    color: #065f46;
}

.wpcryptoprofilepage-payment-method {
    background: var(--wpcrypto-bg-light, #f8fafc);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    color: var(--wpcrypto-text-primary, #1e293b);
    border: 1px solid var(--wpcrypto-border-light, #e2e8f0);
}

.wpcryptoprofilepage-no-products {
    text-align: center;
    padding: 20px;
    color: var(--wpcrypto-text-muted, #9ca3af);
    font-style: italic;
}

.wpcryptoprofilepage-balances-section .wpcryptoprofilepage-card-large {
    height: 180px;
    padding: 15px;
}

.wpcryptoprofilepage-coin-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--wp-border-color);
}

.wpcryptoprofilepage-coin-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.wpcryptoprofilepage-coin-symbol {
    font-size: 16px;
    font-weight: 600;
    color: var(--wp-accent-color);
}

.wpcryptoprofilepage-balance-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wpcryptoprofilepage-balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.wpcryptoprofilepage-total-row {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--wp-border-color);
    font-weight: 600;
}

.wpcryptoprofilepage-amount-green {
    color: var(--wp-success-color);
    font-weight: 600;
}

.wpcryptoprofilepage-amount-red {
    color: var(--wp-danger-color);
    font-weight: 600;
}

.wpcryptoprofilepage-amount-blue {
    color: var(--wp-info-color);
    font-weight: 600;
}

.wpcryptoprofilepage-amount-primary {
    color: var(--wp-accent-color);
    font-weight: 700;
}

/* =========================
 4. DASHBOARD SECTION - END
 ========================= */

/* =========================
 5. ACCOUNT SECTION - START
 ========================= */

.wpcryptoprofilepage-account {
    background: transparent;
    padding: 0;
    border: none;
    text-align: left;
}

.wpcryptoprofilepage-account-section {
    margin-bottom: 30px;
}

.wpcryptoprofilepage-cards-container {
    display: grid;
    gap: 20px;
}

.wpcryptoprofilepage-cards-1col {
    grid-template-columns: 1fr;
}

.wpcryptoprofilepage-cards-2col {
    grid-template-columns: repeat(2, 1fr);
}

.wpcryptoprofilepage-cards-3col {
    grid-template-columns: repeat(3, 1fr);
}

.wpcryptoprofilepage-card-small {
    height: 120px;
}

.wpcryptoprofilepage-card-medium {
    height: 150px;
}

.wpcryptoprofilepage-card-large {
    height: 180px;
}

.wpcryptoprofilepage-card-xlarge {
    height: 220px;
}

.wpcryptoprofilepage-account-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.wpcryptoprofilepage-account-icon {
    font-size: 20px;
    color: var(--wp-accent-color);
}

.wpcryptoprofilepage-account-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--wp-text-primary);
}

.wpcryptoprofilepage-account-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wpcryptoprofilepage-account-value {
    font-size: 13px;
    color: var(--wp-accent-color);
    font-weight: 500;
    word-break: break-all;
}

.wpcryptoprofilepage-copy-btn {
    background: var(--wp-bg-secondary);
    border: 1px solid var(--wp-border-color);
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.wpcryptoprofilepage-copy-btn:hover {
    background: var(--wp-accent-color);
    color: white;
}

.wpcryptoprofilepage-verified-badge {
    font-size: 12px;
    color: var(--wp-success-color);
    font-weight: 600;
}

.wpcryptoprofilepage-forms-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wpcryptoprofilepage-form-card {
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border-color);
    border-radius: 12px;
    padding: 20px;
}

.wpcryptoprofilepage-form-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--wp-text-primary);
}

.wpcryptoprofilepage-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wpcryptoprofilepage-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wpcryptoprofilepage-form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--wp-text-primary);
}

.wpcryptoprofilepage-form-input {
    padding: 12px 15px;
    border: 1px solid var(--wp-border-color);
    border-radius: 8px;
    font-size: 14px;
    background: var(--wp-bg-primary);
    color: var(--wp-text-primary);
    transition: border-color 0.3s ease;
}

.wpcryptoprofilepage-form-input:focus {
    outline: none;
    border-color: var(--wp-accent-color);
}

.wpcryptoprofilepage-notice {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.wpcryptoprofilepage-notice-success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--wp-success-color);
    border: 1px solid var(--wp-success-color);
}

.wpcryptoprofilepage-notice-error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--wp-danger-color);
    border: 1px solid var(--wp-danger-color);
}

/* =========================
 5. ACCOUNT SECTION - END
 ========================= */

/* =========================
 6. SECURITY SECTION - START
 ========================= */

.wpcryptoprofilepage-security {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--wp-accent-color);
    padding: 40px 20px;
    border: 2px dashed var(--wp-border-color);
    border-radius: 12px;
    background: var(--wp-bg-card);
    transition: all 0.3s ease;
}

/* =========================
 6. SECURITY SECTION - END
 ========================= */


/* =========================
 8. DEPOSIT SECTION - START
 ========================= */

.wpcryptoprofilepage-deposit {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--wp-accent-color);
    padding: 40px 20px;
    border: 2px dashed var(--wp-border-color);
    border-radius: 12px;
    background: var(--wp-bg-card);
    transition: all 0.3s ease;
}

/* =========================
 8. DEPOSIT SECTION - END
 ========================= */

/* =========================
 9. WITHDRAW SECTION - START
 ========================= */

.wpcryptoprofilepage-withdraw {
    background: transparent;
    padding: 0;
    border: none;
    text-align: left;
}

.wpcryptoprofilepage-withdraw-container {
    width: 100%;
}

.wpcryptoprofilepage-withdraw-form-section {
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--wp-shadow-light);
    transition: all 0.3s ease;
}

.wpcryptoprofilepage-withdraw-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.wpcryptoprofilepage-withdraw-form-header h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--wp-text-primary);
}

.wpcryptoprofilepage-withdraw-subtitle {
    margin: 0;
    font-size: 14px;
    color: var(--wp-text-muted);
}

.wpcryptoprofilepage-withdraw-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpcryptoprofilepage-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.wpcryptoprofilepage-form-group select,
.wpcryptoprofilepage-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--wp-border-color);
    border-radius: 8px;
    font-size: 14px;
    background: var(--wp-bg-primary);
    color: var(--wp-text-primary);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.wpcryptoprofilepage-form-group select:focus,
.wpcryptoprofilepage-form-group input:focus {
    outline: none;
    border-color: var(--wp-accent-color);
}

.wpcryptoprofilepage-form-group select:disabled,
.wpcryptoprofilepage-form-group input:disabled {
    background: var(--wp-bg-secondary);
    color: var(--wp-text-muted);
    cursor: not-allowed;
}

.wpcryptoprofilepage-balance-info,
.wpcryptoprofilepage-network-info,
.wpcryptoprofilepage-amount-info {
    display: none;
    margin-top: 10px;
    padding: 12px 15px;
    background: var(--wp-bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--wp-border-color);
    font-size: 13px;
    color: var(--wp-text-secondary);
}

.wpcryptoprofilepage-balance-info.show,
.wpcryptoprofilepage-network-info.show,
.wpcryptoprofilepage-amount-info.show {
    display: block;
}

.network-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

.wpcryptoprofilepage-address-warning {
    font-size: 12px;
    color: var(--wp-warning-color);
    margin-top: 5px;
    display: block;
}

.wpcryptoprofilepage-amount-input-wrapper {
    display: flex;
    gap: 10px;
}

.wpcryptoprofilepage-amount-input-wrapper input {
    flex: 1;
}

.wpcryptoprofilepage-max-btn {
    padding: 12px 20px;
    background: var(--wp-accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.wpcryptoprofilepage-max-btn:hover {
    opacity: 0.8;
}

.wpcryptoprofilepage-max-btn:disabled {
    background: var(--wp-text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.wpcryptoprofilepage-withdrawal-summary {
    background: var(--wp-bg-secondary);
    border: 1px solid var(--wp-border-color);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.wpcryptoprofilepage-withdrawal-summary h4 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--wp-text-primary);
    text-align: center;
}

.wpcryptoprofilepage-summary-grid {
    display: grid;
    gap: 15px;
}

.wpcryptoprofilepage-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--wp-border-color);
}

.wpcryptoprofilepage-summary-item:last-child {
    border-bottom: none;
}

.wpcryptoprofilepage-summary-total {
    background: var(--wp-bg-card);
    border-radius: 8px;
    padding: 20px;
    border: 2px solid var(--wp-accent-color);
    font-weight: 600;
    color: var(--wp-accent-color);
}

.summary-label {
    font-size: 14px;
    color: var(--wp-text-secondary);
}

.summary-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--wp-text-primary);
}

.wpcryptoprofilepage-summary-total .summary-value {
    color: var(--wp-accent-color);
    font-size: 16px;
}

.wpcryptoprofilepage-withdraw-btn {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--wp-success-color), var(--wp-info-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.wpcryptoprofilepage-withdraw-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--wp-shadow-hover);
}

.wpcryptoprofilepage-withdraw-btn:disabled {
    background: var(--wp-text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wpcryptoprofilepage-withdraw-history-section {
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--wp-shadow-light);
    transition: all 0.3s ease;
}

.wpcryptoprofilepage-withdraw-history-header {
    margin-bottom: 25px;
}

.wpcryptoprofilepage-history-grid {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--wp-border-color);
}

.wpcryptoprofilepage-history-header {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr 1fr 0.8fr 1.2fr;
    gap: 15px;
    padding: 20px;
    background: var(--wp-bg-secondary);
    font-weight: 600;
    font-size: 13px;
    color: var(--wp-text-primary);
    border-bottom: 1px solid var(--wp-border-color);
}

.wpcryptoprofilepage-history-row {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr 1fr 0.8fr 1.2fr;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid var(--wp-border-color);
    transition: background 0.2s ease;
}

.wpcryptoprofilepage-history-row:hover {
    background: var(--wp-bg-secondary);
}

.wpcryptoprofilepage-history-row:last-child {
    border-bottom: none;
}

.wpcryptoprofilepage-history-cell {
    display: flex;
    align-items: center;
}

.wpcryptoprofilepage-cell-value {
    font-size: 13px;
    color: var(--wp-text-primary);
}

.wpcryptoprofilepage-cell-value.date {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.date-main {
    font-weight: 600;
    color: var(--wp-text-primary);
}

.date-time {
    font-size: 11px;
    color: var(--wp-text-muted);
}

.coin-badge {
    background: var(--wp-accent-color);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.network-name {
    font-size: 12px;
    color: var(--wp-text-secondary);
}

.wpcryptoprofilepage-cell-value.amount {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.amount-value {
    font-weight: 600;
    color: var(--wp-text-primary);
}

.amount-symbol {
    font-size: 11px;
    color: var(--wp-text-muted);
}

.wpcryptoprofilepage-status-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(255, 193, 7, 0.1);
    color: var(--wp-warning-color);
}

.status-completed {
    background: rgba(40, 167, 69, 0.1);
    color: var(--wp-success-color);
}

.status-failed {
    background: rgba(220, 53, 69, 0.1);
    color: var(--wp-danger-color);
}

.status-cancelled {
    background: rgba(108, 117, 125, 0.1);
    color: var(--wp-text-muted);
}

.wpcryptoprofilepage-cell-value.address {
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-short {
    font-size: 11px;
    color: var(--wp-text-secondary);
    cursor: help;
}

.wpcryptoprofilepage-withdraw-message {
    margin: 25px 0;
    border-radius: 10px;
    overflow: hidden;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wpcryptoprofilepage-withdraw-message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--wp-success-color);
}

.wpcryptoprofilepage-withdraw-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--wp-danger-color);
}

.wpcryptoprofilepage-withdraw-message.info {
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid var(--wp-info-color);
}

.wpcryptoprofilepage-withdraw-message.warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--wp-warning-color);
}

.message-content {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.message-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.message-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.wpcryptoprofilepage-withdraw-message.success .message-text {
    color: var(--wp-success-color);
}

.wpcryptoprofilepage-withdraw-message.error .message-text {
    color: var(--wp-danger-color);
}

.wpcryptoprofilepage-withdraw-message.info .message-text {
    color: var(--wp-info-color);
}

.wpcryptoprofilepage-withdraw-message.warning .message-text {
    color: var(--wp-warning-color);
}

.message-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.message-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* =========================
 9. WITHDRAW SECTION - END
 ========================= */

/* =========================
 10. HISTORY SECTION - START
 ========================= */

.wpcryptoprofilepage-transaction-grid {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--wp-border-color);
}

.wpcryptoprofilepage-transaction-header {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr 1fr 0.8fr 1fr 1fr 0.8fr;
    gap: 15px;
    padding: 20px;
    background: var(--wp-bg-secondary);
    font-weight: 600;
    font-size: 13px;
    color: var(--wp-text-primary);
    border-bottom: 1px solid var(--wp-border-color);
}

.wpcryptoprofilepage-transaction-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr 1fr 0.8fr 1fr 1fr 0.8fr;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid var(--wp-border-color);
    transition: background 0.2s ease;
}

/* Fee Styles */
.wpcryptoprofilepage-cell-value.fee {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fee-amount {
    font-weight: 600;
    color: var(--wp-danger-color);
}

.fee-symbol {
    font-size: 11px;
    color: var(--wp-text-muted);
}

.fee-free {
    display: flex;
    align-items: center;
}

.fee-free-badge {
    background: rgba(40, 167, 69, 0.1);
    color: var(--wp-success-color);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid var(--wp-success-color);
}

/* Balance Styles */
.wpcryptoprofilepage-cell-value.balance {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.balance-amount {
    font-weight: 600;
    color: var(--wp-text-primary);
}

.balance-symbol {
    font-size: 11px;
    color: var(--wp-text-muted);
}

.balance-na {
    color: var(--wp-text-muted);
    font-style: italic;
    text-align: center;
}

.balance-change {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 2px;
}

.balance-change.positive {
    background: rgba(40, 167, 69, 0.1);
    color: var(--wp-success-color);
}

.balance-change.negative {
    background: rgba(220, 53, 69, 0.1);
    color: var(--wp-danger-color);
}

/* =========================
 10. HISTORY SECTION - END
 ========================= */

/* =========================
 11. TRADING SECTION - START
 ========================= */

.wpcryptoprofilepage-trading {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--wp-accent-color);
    padding: 40px 20px;
    border: 2px dashed var(--wp-border-color);
    border-radius: 12px;
    background: var(--wp-bg-card);
    transition: all 0.3s ease;
}

/* =========================
 11. TRADING SECTION - END
 ========================= */

/* =========================
 12. ACTIVITY SECTION - START
 ========================= */

.wpcryptoprofilepage-activity {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--wp-accent-color);
    padding: 40px 20px;
    border: 2px dashed var(--wp-border-color);
    border-radius: 12px;
    background: var(--wp-bg-card);
    transition: all 0.3s ease;
}

/* =========================
 12. ACTIVITY SECTION - END
 ========================= */

/* =========================
 13. NOTIFICATIONS SECTION - START
 ========================= */

.wpcryptoprofilepage-notifications {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--wp-accent-color);
    padding: 40px 20px;
    border: 2px dashed var(--wp-border-color);
    border-radius: 12px;
    background: var(--wp-bg-card);
    transition: all 0.3s ease;
}

/* =========================
 13. NOTIFICATIONS SECTION - END
 ========================= */

/* =========================
 14. REFERRAL SECTION - START
 ========================= */

.wpcryptoprofilepage-referral {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--wp-accent-color);
    padding: 40px 20px;
    border: 2px dashed var(--wp-border-color);
    border-radius: 12px;
    background: var(--wp-bg-card);
    transition: all 0.3s ease;
}

/* =========================
 14. REFERRAL SECTION - END
 ========================= */

/* =========================
 15. STAKING SECTION - START
 ========================= */

.wpcryptoprofilepage-staking {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--wp-accent-color);
    padding: 40px 20px;
    border: 2px dashed var(--wp-border-color);
    border-radius: 12px;
    background: var(--wp-bg-card);
    transition: all 0.3s ease;
}

/* =========================
 15. STAKING SECTION - END
 ========================= */

/* =========================
 16. KYC SECTION - START
 ========================= */

.wpcryptoprofilepage-kyc {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--wp-accent-color);
    padding: 40px 20px;
    border: 2px dashed var(--wp-border-color);
    border-radius: 12px;
    background: var(--wp-bg-card);
    transition: all 0.3s ease;
}

/* =========================
 16. KYC SECTION - END
 ========================= */

/* =========================
 17. UNIVERSAL COMPONENTS - START
 ========================= */

.wpcryptoprofilepage-cards-container {
    display: grid;
    gap: 20px;
}

.wpcryptoprofilepage-cards-1col {
    grid-template-columns: 1fr;
}

.wpcryptoprofilepage-cards-2col {
    grid-template-columns: repeat(2, 1fr);
}

.wpcryptoprofilepage-cards-3col {
    grid-template-columns: repeat(3, 1fr);
}

.wpcryptoprofilepage-cards-4col {
    grid-template-columns: repeat(4, 1fr);
}

.wpcryptoprofilepage-cards-5col {
    grid-template-columns: repeat(5, 1fr);
}

.wpcryptoprofilepage-card-small {
    height: 120px;
}

.wpcryptoprofilepage-card-medium {
    height: 150px;
}

.wpcryptoprofilepage-card-large {
    height: 180px;
}

.wpcryptoprofilepage-card-xlarge {
    height: 220px;
}

/* =========================
 17. UNIVERSAL COMPONENTS - END
 ========================= */

/* =========================
 18. MOBILE RESPONSIVE DESIGN - START
 ========================= */

@media (max-width: 768px) {
    .wpcryptoprofilepage-wrapper {
        width: 98%;
        padding: 15px;
    }

    .wpcryptoprofilepage-mobile-menu-btn {
        display: block;
    }

    .wpcryptoprofilepage-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wpcryptoprofilepage-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--wp-bg-secondary);
        z-index: 1000;
        overflow-y: auto;
        border-radius: 0;
        padding: 20px;
    }

    .wpcryptoprofilepage-sidebar-active {
        display: block;
    }

    .wpcryptoprofilepage-sidebar-active .wpcryptoprofilepage-mobile-close-btn {
        display: block;
    }

    .wpcryptoprofilepage-nav-link {
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid var(--wp-border-color);
        margin-bottom: 5px;
    }

    .wpcryptoprofilepage-content {
        padding: 15px;
    }

    .wpcryptoprofilepage-page-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    /* Dashboard Mobile */
    .wpcryptoprofilepage-dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .wpcryptoprofilepage-dashboard-card {
        height: 140px;
        padding: 15px;
    }

    .wpcryptoprofilepage-card-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .wpcryptoprofilepage-card-value {
        font-size: 20px;
    }

    .wpcryptoprofilepage-card-title {
        font-size: 13px;
    }

    .wpcryptoprofilepage-card-subtitle {
        font-size: 11px;
    }

    /* Security Cards Mobile */
    .wpcryptoprofilepage-cards-5col {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .wpcryptoprofilepage-card {
        height: 100px;
        padding: 12px;
    }

    .wpcryptoprofilepage-security-section {
        margin-top: 25px;
    }

    .wpcryptoprofilepage-section-title {
        font-size: 18px;
    }

    /* Balance Cards Mobile */
    .wpcryptoprofilepage-balances-section .wpcryptoprofilepage-cards-4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .wpcryptoprofilepage-balances-section .wpcryptoprofilepage-card-large {
        height: 160px;
        padding: 12px;
    }

    /* Account Forms Mobile */
    .wpcryptoprofilepage-forms-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wpcryptoprofilepage-form-card {
        padding: 15px;
    }

    /* Universal Cards Mobile */
    .wpcryptoprofilepage-cards-container {
        gap: 15px;
    }

    .wpcryptoprofilepage-cards-3col,
    .wpcryptoprofilepage-cards-4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .wpcryptoprofilepage-card-small {
        height: 100px;
        padding: 10px;
    }

    .wpcryptoprofilepage-card-medium {
        height: 130px;
        padding: 12px;
    }

    .wpcryptoprofilepage-card-large {
        height: 160px;
        padding: 15px;
    }

    .wpcryptoprofilepage-card-xlarge {
        height: 190px;
        padding: 18px;
    }

    /* Withdraw Mobile */
    .wpcryptoprofilepage-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wpcryptoprofilepage-withdraw-form-section,
    .wpcryptoprofilepage-withdraw-history-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .wpcryptoprofilepage-history-header,
    .wpcryptoprofilepage-history-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        padding: 15px;
    }

    .wpcryptoprofilepage-history-header div:nth-child(4),
    .wpcryptoprofilepage-history-header div:nth-child(5),
    .wpcryptoprofilepage-history-header div:nth-child(6),
    .wpcryptoprofilepage-history-row div:nth-child(4),
    .wpcryptoprofilepage-history-row div:nth-child(5),
    .wpcryptoprofilepage-history-row div:nth-child(6) {
        display: none;
    }

    .network-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: left;
    }

    .wpcryptoprofilepage-amount-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .wpcryptoprofilepage-max-btn {
        padding: 12px 18px;
    }

    .wpcryptoprofilepage-summary-grid {
        gap: 10px;
    }

    .wpcryptoprofilepage-summary-item {
        padding: 10px 0;
    }

    .message-content {
        padding: 15px 20px;
        gap: 10px;
    }

    /* Table Mobile */
    .wpcryptoprofilepage-table-header,
    .wpcryptoprofilepage-table-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        padding: 12px;
    }

    .wpcryptoprofilepage-table-header div:nth-child(4),
    .wpcryptoprofilepage-table-header div:nth-child(5),
    .wpcryptoprofilepage-table-row div:nth-child(4),
    .wpcryptoprofilepage-table-row div:nth-child(5) {
        display: none;
    }

    /* Transaction Grid Mobile */
    .wpcryptoprofilepage-transaction-grid {
        overflow-x: auto;
    }

    .wpcryptoprofilepage-transaction-header,
    .wpcryptoprofilepage-transaction-row {
        min-width: 1000px;
        padding: 10px;
        gap: 6px;
    }

    /* Shop Orders Mobile */
    .wpcryptoprofilepage-shop-order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .wpcryptoprofilepage-order-status {
        align-items: flex-start;
    }

    .wpcryptoprofilepage-products-grid {
        grid-template-columns: 1fr;
    }

    .wpcryptoprofilepage-shop-order-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .wpcryptoprofilepage-product-item {
        gap: 10px;
        padding: 10px;
    }

    .wpcryptoprofilepage-product-image {
        width: 40px;
        height: 40px;
    }


    /* Other Sections Mobile */
    .wpcryptoprofilepage-security,
    .wpcryptoprofilepage-kyc,
    .wpcryptoprofilepage-deposit,
    .wpcryptoprofilepage-history,
    .wpcryptoprofilepage-trading,
    .wpcryptoprofilepage-activity,
    .wpcryptoprofilepage-notifications,
    .wpcryptoprofilepage-referral,
    .wpcryptoprofilepage-staking {
        font-size: 18px;
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .wpcryptoprofilepage-wrapper {
        width: 95%;
        padding: 10px;
    }

    .wpcryptoprofilepage-sidebar {
        padding: 15px;
    }

    .wpcryptoprofilepage-content {
        padding: 12px;
    }

    .wpcryptoprofilepage-page-title {
        font-size: 18px;
    }

    .wpcryptoprofilepage-mobile-close-btn {
        top: 15px;
        right: 15px;
        padding: 10px 12px;
        font-size: 14px;
    }

    /* Universal Cards Small Mobile */
    .wpcryptoprofilepage-cards-container {
        gap: 12px;
    }

    .wpcryptoprofilepage-cards-2col,
    .wpcryptoprofilepage-cards-3col,
    .wpcryptoprofilepage-cards-4col,
    .wpcryptoprofilepage-cards-5col {
        grid-template-columns: 1fr;
    }

    .wpcryptoprofilepage-card-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .wpcryptoprofilepage-card-value {
        font-size: 18px;
    }

    .wpcryptoprofilepage-card-title {
        font-size: 12px;
    }

    .wpcryptoprofilepage-card-subtitle {
        font-size: 10px;
    }

    /* Dashboard Cards Small Mobile */
    .wpcryptoprofilepage-dashboard-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wpcryptoprofilepage-dashboard-card {
        height: 120px;
        padding: 12px;
    }

    /* Balance Cards Small Mobile */
    .wpcryptoprofilepage-balances-section .wpcryptoprofilepage-cards-4col {
        grid-template-columns: 1fr;
    }

    .wpcryptoprofilepage-balances-section .wpcryptoprofilepage-card-large {
        height: 140px;
        padding: 10px;
    }

    /* Withdraw Small Mobile */
    .wpcryptoprofilepage-withdraw-form-section,
    .wpcryptoprofilepage-withdraw-history-section {
        padding: 15px;
    }

    .wpcryptoprofilepage-withdraw-form-header h3 {
        font-size: 20px;
    }

    .wpcryptoprofilepage-form-group select,
    .wpcryptoprofilepage-form-group input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .wpcryptoprofilepage-withdraw-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .wpcryptoprofilepage-history-header,
    .wpcryptoprofilepage-history-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px;
    }

    .wpcryptoprofilepage-history-header div:nth-child(3),
    .wpcryptoprofilepage-history-row div:nth-child(3) {
        display: none;
    }

    .wpcryptoprofilepage-cell-value {
        font-size: 12px;
    }

    .coin-badge {
        padding: 3px 6px;
        font-size: 10px;
    }

    /* Transaction Small Mobile */
    .wpcryptoprofilepage-transaction-list-section {
        padding: 15px;
        margin: 0 -10px;
        border-radius: 0;
    }

    .wpcryptoprofilepage-cards-3col {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Shop Orders Small Mobile */
    .wpcryptoprofilepage-shop-order-item {
        padding: 15px;
    }

    .wpcryptoprofilepage-products-grid {
        gap: 10px;
    }

    .wpcryptoprofilepage-product-name {
        font-size: 13px;
    }

    .wpcryptoprofilepage-product-meta {
        font-size: 11px;
    }

    /* Wallet Small Mobile */
    .wallet-item {
        padding: 16px;
    }

    .wallet-network-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .wallet-network-name {
        font-size: 16px;
    }

    .wallet-address-short {
        font-size: 14px;
    }

    .wallet-actions {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .wallet-btn {
        padding: 8px 4px;
        font-size: 10px;
        gap: 4px;
    }

    .wallet-btn-icon {
        font-size: 16px;
        width: 24px;
        height: 24px;
    }

    .wallet-notes-card {
        padding: 20px;
    }

    .wallet-notes-card h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .note-icon {
        font-size: 20px;
        width: 32px;
        height: 32px;
    }

    .note-text {
        font-size: 13px;
    }

    .qr-address-section {
        flex-direction: column;
        gap: 12px;
    }

    #qr-address-text,
    #copy-qr-address {
        width: 100%;
    }

    .share-icon {
        font-size: 28px;
        width: 48px;
        height: 48px;
    }

    .share-text {
        font-size: 12px;
    }

    .empty-state-icon {
        font-size: 56px;
    }

    .empty-state-title {
        font-size: 20px;
    }

    /* Other Sections Small Mobile */
    .wpcryptoprofilepage-security,
    .wpcryptoprofilepage-kyc,
    .wpcryptoprofilepage-deposit,
    .wpcryptoprofilepage-history,
    .wpcryptoprofilepage-trading,
    .wpcryptoprofilepage-activity,
    .wpcryptoprofilepage-notifications,
    .wpcryptoprofilepage-referral,
    .wpcryptoprofilepage-staking {
        font-size: 16px;
        padding: 25px 10px;
    }
}

/* Dark Mode Support */
[data-theme="dark"] .wpcryptoprofilepage-shop-order-item {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .wpcryptoprofilepage-product-item {
    background: #0f172a;
    border-color: #334155;
}

[data-theme="dark"] .wpcryptoprofilepage-product-item:hover {
    background: #1e293b;
    border-color: #475569;
}

[data-theme="dark"] .wpcryptoprofilepage-product-placeholder {
    background: #334155;
    color: #64748b;
}

[data-theme="dark"] .wpcryptoprofilepage-payment-method {
    background: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

[data-theme="dark"] .wallet-item {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .wallet-item:hover {
    border-color: #3b82f6;
}


[data-theme="dark"] #qr-code-container {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-color: #334155;
}

[data-theme="dark"] #qr-address-text {
    background: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

[data-theme="dark"] #qr-address-text:focus {
    background: #1e293b;
    border-color: #3b82f6;
}

[data-theme="dark"] .share-option-btn {
    background: #0f172a;
    border-color: #334155;
    color: #cbd5e1;
}

[data-theme="dark"] .share-option-btn:hover {
    background: #1e293b;
    color: #cbd5e1;
}

/* =========================
 18. MOBILE RESPONSIVE DESIGN - END
 ========================= */
 