/* ============================================
   MODERN CLEAN DASHBOARD STYLES
   Minimal, Gentle, Responsive Design
   ============================================ */

.modern-dashboard {
    padding: 20px 0;
    min-height: 100vh;
    background: var(--bg-primary);
    background-image: none !important;
}

.dash-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Welcome Section */
.dash-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 20px;
    flex-wrap: wrap;
}

.welcome-left {
    flex: 1;
    min-width: 280px;
}

.welcome-greeting {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-weight: 500;
}

.welcome-greeting span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.welcome-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.welcome-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.welcome-right {
    display: flex;
    gap: 12px;
}

.dash-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dash-btn.primary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dash-btn.primary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.dash-btn.secondary {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.dash-btn.secondary:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.2s ease;
    position: relative;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-icon.coin {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.stat-icon.order {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}

.stat-icon.pending {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.stat-icon.complete {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-sublabel {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.stat-action {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.stat-action:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Content Grid */
.dash-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.dash-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-card-title i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.dash-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dash-link:hover {
    color: #ffffff;
}

.dash-badge {
    padding: 4px 12px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    font-size: 12px;
    font-weight: 600;
}

.dash-card-body {
    padding: 24px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 48px 24px;
}

.empty-state i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    font-weight: 500;
}

.empty-state span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* Enhanced Empty State */
.empty-state-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.empty-icon i {
    font-size: 48px;
    color: #8b5cf6;
    opacity: 0.6;
}

.empty-title {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.empty-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    max-width: 400px;
}

.empty-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.empty-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.4);
}

.empty-action-btn i {
    font-size: 14px;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.activity-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.activity-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.activity-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.activity-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.activity-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.activity-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.activity-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.activity-amount {
    font-size: 14px;
    font-weight: 600;
}

.activity-amount.positive {
    color: #51cf66;
}

.activity-amount.negative {
    color: #ff6b6b;
}

.activity-balance {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* Transaction type specific icons */
.activity-icon.order {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.activity-icon.purchase {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.activity-icon.refund {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(99, 102, 241, 0.02));
    border: 1px solid rgba(139, 92, 246, 0.15);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #8b5cf6, #6366f1);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.05));
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
}

.service-item:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
    padding: 0;
    overflow: visible;
    min-width: auto;
    animation: none;
    box-shadow: none;
    font-weight: normal;
    letter-spacing: normal;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-item:hover .service-icon::before {
    opacity: 0.4;
}

.service-icon.tells {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
}

.service-icon.followers {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #ffffff;
}

.service-icon.likes {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #ffffff;
}

.service-icon.views {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #ffffff;
}

.service-details {
    flex: 1;
}

.service-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.service-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.service-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    transition: all 0.2s ease;
}

.service-item:hover .service-arrow {
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(4px);
}

/* Order Modal */
/* Order Modal - Custom */
.order-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

.order-modal.active {
    display: flex !important;
}

.order-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.order-modal-content {
    position: relative !important;
    background: linear-gradient(180deg, rgba(20, 20, 40, 0.98) 0%, rgba(13, 13, 26, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    width: 90% !important;
    max-width: 620px !important;
    max-height: 85vh !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow), var(--shadow-accent);
    z-index: 2;
    margin: 0 !important;
    transform: translateY(18px) scale(0.98) !important;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.order-modal.active .order-modal-content {
    transform: translateY(0) scale(1) !important;
    opacity: 1;
}

.order-modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
}

.order-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-modal-title i {
    color: var(--accent-primary);
    font-size: 20px;
}

.order-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.order-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.order-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    overscroll-behavior: contain;
}

.order-modal-body::-webkit-scrollbar {
    width: 6px;
}

.order-modal-body::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.05);
}

.order-modal-body::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}

.order-form-group {
    margin-bottom: 20px;
}

.order-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.order-label i {
    font-size: 14px;
    color: #8b5cf6;
}

.order-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.order-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.order-input:focus {
    outline: none;
    border-color: #8b5cf6;
    background: rgba(0, 0, 0, 0.5);
}

/* Service Select Grid */
.service-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-select-item {
    padding: 16px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
}

.service-select-item:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.service-select-item.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}

.service-select-item.active::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: white;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-select-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 10px;
    transition: all 0.2s ease;
}

.service-select-item:hover .service-select-icon {
    transform: scale(1.05);
}

.service-select-icon.tells {
    background: #8b5cf6;
    color: #ffffff;
}

.service-select-icon.followers {
    background: #6366f1;
    color: #ffffff;
}

.service-select-icon.likes {
    background: #ec4899;
    color: #ffffff;
}

.service-select-icon.views {
    background: #8b5cf6;
    color: #ffffff;
}

.service-select-name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.service-select-price {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Modal Footer */
.order-modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.order-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.order-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.order-btn.primary {
    background: var(--accent-primary);
    color: #ffffff;
    border: 1px solid var(--accent-primary);
}

.order-btn.primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

.order-btn.primary:active {
    transform: translateY(0);
}

.order-btn.primary:disabled {
    background: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    border-color: rgba(139, 92, 246, 0.3);
}

.order-btn.primary:disabled:hover {
    transform: none;
    box-shadow: none;
}

.order-btn i {
    font-size: 14px;
}

/* Quantity Control */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.quantity-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--accent-primary);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.5);
}

.quantity-presets {
    display: flex;
    gap: 8px;
}

.preset-btn {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.preset-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--accent-primary);
    color: #ffffff;
}

/* Order Summary */
.order-summary {
    padding: 16px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.summary-row strong {
    color: #ffffff;
    font-weight: 600;
}

.summary-row.total {
    font-size: 15px;
    padding: 10px 0;
    margin-top: 6px;
}

.summary-row.total span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.summary-row.total strong {
    color: var(--accent-primary);
    font-size: 18px;
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: rgba(139, 92, 246, 0.3);
    margin: 8px 0;
}

.summary-balance {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}

.summary-balance strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quantity-presets {
        flex-wrap: wrap;
    }

    .preset-btn {
        min-width: calc(50% - 4px);
    }

    .service-select-grid .service-select-item {
        padding: 14px 10px;
    }

    .service-select-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .quantity-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .service-select-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .service-select-grid .service-select-item {
        padding: 12px 8px;
    }

    .service-select-name {
        font-size: 12px;
    }

    .order-modal {
        padding: 10px !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100vh !important;
        height: 100dvh !important;
    }

    .order-modal-content {
        width: 96% !important;
        max-height: 85vh !important;
        max-height: 85dvh !important;
        border-radius: 10px;
        margin: 0 !important;
        position: relative !important;
    }

    .order-modal-header {
        padding: 15px;
    }

    .order-modal-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .dash-welcome {
        flex-direction: column;
        align-items: flex-start;
    }

    .welcome-right {
        width: 100%;
    }

    .dash-btn {
        flex: 1;
        justify-content: center;
    }

    .welcome-title {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .dash-content-grid {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 28px;
    }

    .service-select-grid {
        grid-template-columns: 1fr;
    }

    .order-modal {
        padding: 10px !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100vh !important;
    }

    .order-modal-content {
        width: 95% !important;
        max-height: 85vh !important;
        border-radius: 12px;
        margin: 0 !important;
    }

    .order-modal-header {
        padding: 18px;
    }

    .order-modal-body {
        padding: 18px;
    }

    .order-modal-footer {
        padding: 16px 18px;
    }

    .order-modal-title {
        font-size: 16px;
    }

    .quantity-presets {
        flex-wrap: wrap;
    }

    .preset-btn {
        min-width: calc(50% - 4px);
    }

    .service-select-grid {
        gap: 8px;
    }

    .service-select-item {
        padding: 14px 10px;
    }

    .service-select-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .dash-container {
        padding: 0 16px;
    }

    .welcome-title {
        font-size: 22px;
    }

    .stat-box {
        padding: 20px;
    }

    .dash-card-body {
        padding: 20px;
    }

    .order-modal-header {
        padding: 16px;
    }

    .order-modal-body {
        padding: 16px;
    }

    .order-modal-footer {
        padding: 14px 16px;
        flex-direction: column;
    }

    .order-modal-title {
        font-size: 15px;
    }

    .order-btn {
        padding: 11px 16px;
    }

    .quantity-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .service-select-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .service-select-item {
        padding: 12px 8px;
    }

    .service-select-name {
        font-size: 12px;
    }
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent);
    transition: opacity 0.2s;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-card:hover::before {
    opacity: 1;
}

/* Updated gradients to match purple theme */
.gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.gradient-blue {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
}

.gradient-orange {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3);
}

.gradient-green {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.3);
}

.stat-card-inner {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.stat-icon-wrapper {
    margin-bottom: 20px;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: white;
}

.stat-icon.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.stat-icon.spin {
    animation: spin 3s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-content {
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 15px;
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.2);
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-trend.positive {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-trend.warning {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Activity Overview */
.activity-overview {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    animation: fadeIn 0.15s ease-out;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.activity-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.activity-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.activity-tabs {
    display: flex;
    gap: 8px;
    background: rgba(255, 215, 0, 0.05);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.activity-tab {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.activity-tab.active {
    background: #8b5cf6;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.activity-chart {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.02);
    border-radius: 12px;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/* Enhanced Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dashboard-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.2s ease;
    animation: fadeIn 0.12s ease-out;
}

.dashboard-card:nth-child(1) { animation-delay: 0s; }
.dashboard-card:nth-child(2) { animation-delay: 0s; }
.dashboard-card:nth-child(3) { animation-delay: 0s; }
.dashboard-card:nth-child(4) { animation-delay: 0s; }

.dashboard-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
}

.card-header {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(255, 176, 0, 0.03));
}

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-title svg {
    color: #8b5cf6;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.view-all {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.view-all:hover {
    gap: 10px;
    color: #a78bfa;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.card-badge {
    padding: 4px 12px;
    background: #8b5cf6;
    color: #ffffff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.card-body {
    padding: 24px;
}

/* Recent Orders Styling */
.recent-orders {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.2s;
}

.order-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateX(5px);
}

.order-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    color: var(--bg-primary);
}

.order-details {
    flex: 1;
}

.order-name {
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.order-date {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.order-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.order-status.pending {
    background: rgba(249, 212, 35, 0.2);
    color: #f9d423;
}

.order-status.processing {
    background: rgba(33, 147, 176, 0.2);
    color: #2193b0;
}

.order-status.completed {
    background: rgba(56, 239, 125, 0.2);
    color: #38ef7d;
}

.no-orders {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

/* Loading Skeleton */
.loading-skeleton {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skeleton-item {
    height: 80px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 200% 100%;
    border-radius: 12px;
    animation: shimmerLoad 1.5s infinite;
}

@keyframes shimmerLoad {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Quick Order Enhanced */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-option {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.03);
    transition: all 0.2s ease;
}

.service-option:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.08);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.option-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
}

.option-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.option-icon.tells {
    background: #8b5cf6;
}

.option-icon.followers {
    background: #6366f1;
}

.option-icon.likes {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
}

.option-content {
    flex: 1;
}

.option-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.option-desc {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.option-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-value {
    font-size: 26px;
    font-weight: 900;
    color: #8b5cf6;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-unit {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Performance Stats */
.performance-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.perf-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.perf-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.perf-value {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.perf-bar {
    height: 8px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.perf-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    border-radius: 10px;
    transition: width 1s ease-out;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(139, 92, 246, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    transition: all 0.2s;
}

.achievement-item.unlocked {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
}

.achievement-item.unlocked:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
    border-color: #a78bfa;
}

.achievement-item.locked {
    opacity: 0.4;
    filter: grayscale(1);
}

.achievement-icon {
    font-size: 32px;
    line-height: 1;
}

.achievement-name {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   ORDERS PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 20px;
    flex-wrap: wrap;
}

.page-header-left {
    flex: 1;
    min-width: 280px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title i {
    color: rgba(255, 255, 255, 0.6);
}

.page-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.page-header-right {
    display: flex;
    gap: 12px;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.04);
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.tab-btn i {
    font-size: 16px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

.tab-btn.active {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.tab-count {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.tab-btn.active .tab-count {
    background: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

/* Tab Content - REMOVED, using inline styles instead */

/* ============================================
   ADVANCED FILTERS SECTION
   ============================================ */

.filters-container {
    background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.04);
}

.filters-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: center;
}

.search-box {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(139, 92, 246, 0.5);
    font-size: 14px;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-box input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.55);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
    background: rgba(0, 0, 0, 0.28);
}

.filter-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sort-dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-btn:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.4);
}

.dropdown-btn .fa-chevron-down {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.dropdown-btn.active .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: rgba(30, 41, 59, 0.98);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(139, 92, 246, 0.15);
    color: #ffffff;
}

.dropdown-item.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(124, 58, 237, 0.2));
    color: #a78bfa;
    font-weight: 600;
}

.dropdown-item i {
    width: 16px;
    font-size: 12px;
    color: #8b5cf6;
}

/* Filter Pills */
.filter-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pill-btn i {
    font-size: 13px;
}

.pill-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.pill-btn.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.15));
    border-color: rgba(139, 92, 246, 0.4);
    color: #a78bfa;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    font-size: 11px;
    font-weight: 700;
}

.pill-btn.active .pill-badge {
    background: rgba(139, 92, 246, 0.3);
    color: #ffffff;
}

/* Transaction Pills */
.pill-btn-txn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pill-btn-txn i {
    font-size: 13px;
}

.pill-btn-txn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.pill-btn-txn.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.15));
    border-color: rgba(139, 92, 246, 0.4);
    color: #a78bfa;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.pill-btn-txn .pill-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    font-size: 11px;
    font-weight: 700;
}

.pill-btn-txn.active .pill-badge {
    background: rgba(139, 92, 246, 0.3);
    color: #ffffff;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-btn,
.filter-btn-orders,
.filter-btn-txn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn-orders:hover,
.filter-btn-txn:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.filter-btn.active,
.filter-btn-orders.active,
.filter-btn-txn.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #8b5cf6;
}

.filter-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
}

.filter-btn.active .filter-count,
.filter-btn-orders.active .filter-count,
.filter-btn-txn.active .filter-count {
    background: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

/* Orders Grid */
.orders-grid {
    display: grid;
    gap: 16px;
}

.order-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.04);
}

.order-card:hover {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.06), rgba(255,255,255,0.02));
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(139, 92, 246, 0.18), inset 0 1px 0 rgba(255,255,255,0.05);
}

.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: rgba(139, 92, 246, 0.03);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.order-header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-id {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.order-id i {
    font-size: 13px;
    color: #8b5cf6;
}

.order-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.order-date i {
    font-size: 11px;
}

.order-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status i {
    font-size: 11px;
}

.status-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-warning {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-info {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.order-card-body {
    padding: 24px;
}

.order-service-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    font-size: 22px;
}

.service-details {
    flex: 1;
}

.service-name {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 6px;
}

.service-username {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.service-username i {
    font-size: 11px;
    color: #8b5cf6;
}

.order-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.detail-item {
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
}

.detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
    font-weight: 600;
}

.detail-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.detail-value i {
    color: #8b5cf6;
    font-size: 14px;
}

.order-progress {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 16px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-percentage {
    font-size: 14px;
    font-weight: 700;
    color: #8b5cf6;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    border-radius: 10px;
    transition: width 0.2s ease;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.order-completed-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
}

.order-completed-badge i {
    font-size: 16px;
}

/* Transactions List */
.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Transaction Card - Enhanced Design */
.transaction-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.04);
}

.transaction-card:hover {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.06), rgba(255,255,255,0.02));
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(139, 92, 246, 0.18), inset 0 1px 0 rgba(255,255,255,0.05);
}

.txn-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(139, 92, 246, 0.03);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.txn-icon-large {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.txn-header-info {
    flex: 1;
    min-width: 0;
}

.txn-type-title {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
}

.txn-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.txn-id-badge,
.txn-date,
.txn-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.txn-id-badge i,
.txn-date i,
.txn-time i {
    font-size: 11px;
    color: #8b5cf6;
}

.txn-amount-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid;
    border-radius: 12px;
    min-width: 100px;
}

.amount-sign {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.amount-value {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.amount-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.txn-amount-badge.positive {
    color: #22c55e;
}

.txn-amount-badge.negative {
    color: #ef4444;
}

.txn-card-body {
    padding: 16px 24px;
}

.txn-description {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 10px;
}

.txn-description i {
    color: #8b5cf6;
    font-size: 14px;
    margin-top: 2px;
}

.txn-description p {
    flex: 1;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Old transaction item styles - kept for backward compatibility */
.transaction-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.2s ease;
}

.transaction-item:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
}

.txn-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.txn-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.txn-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.txn-id {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.txn-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.txn-amount-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.txn-amount {
    font-size: 16px;
    font-weight: 700;
}

.txn-amount.positive {
    color: #51cf66;
}

.txn-amount.negative {
    color: #ff6b6b;
}

.txn-balance {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    
    .dashboard-title {
        font-size: 32px;
    }
    
    .quick-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-action {
        justify-content: center;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    /* Orders Page Responsive */
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-header-right {
        width: 100%;
    }
    
    .page-header-right .dash-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tab-btn span:not(.tab-count) {
        display: none;
    }
    
    .tab-btn {
        padding: 14px 16px;
    }
    
    .filter-buttons {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .order-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .transaction-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .transaction-card {
        border-radius: 14px;
    }
    
    .txn-card-header {
        flex-wrap: wrap;
        padding: 16px 20px;
    }
    
    .txn-amount-badge {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 16px;
    }
    
    .txn-description {
        padding: 10px 14px;
    }
    
    .txn-amount-details {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .achievement-item {
        padding: 12px;
    }
    
    .achievement-icon {
        font-size: 24px;
    }
    
    .achievement-name {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .dashboard-header {
        padding: 20px;
    }
    
    .dashboard-title {
        font-size: 26px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   ENHANCED PROFILE PAGE STYLES
   Clean, Modern, Gentle Design
   ============================================ */

.modern-profile {
    padding: 40px 0;
    min-height: calc(100vh - 70px);
    background: var(--bg-primary);
    background-image: none !important;
}

.profile-container-enhanced {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Profile Header Card */
.profile-header-card {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.04));
    border: 1px solid rgba(139, 92, 246, 0.28);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.2s ease;
}

.profile-header-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 24px 52px rgba(139, 92, 246, 0.22), inset 0 1px 0 rgba(255,255,255,0.07);
}

.profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.avatar-wrapper {
    position: relative;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35), 0 0 0 4px rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}

.avatar-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 38px rgba(236, 72, 153, 0.34), 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.avatar-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.btn-change-avatar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-change-avatar:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.btn-change-avatar i {
    font-size: 16px;
}

.profile-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-name-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    color: #00ff88;
    font-size: 12px;
    font-weight: 600;
}

.profile-email {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.profile-meta {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.meta-item i {
    color: #8b5cf6;
}

/* Profile Stats Grid */
.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.2s ease;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255,255,255,0.04);
    position: relative;
}

.stat-card:hover {
    border-color: rgba(139, 92, 246, 0.38);
    box-shadow: 0 18px 36px rgba(139, 92, 246, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.orders-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.coins-icon {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.spent-icon {
    background: rgba(99, 102, 241, 0.15);
    color: #6366f1;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Profile Cards */
.profile-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(139, 92, 246, 0.035));
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.2s ease;
}

.profile-card:hover {
    border-color: rgba(139, 92, 246, 0.38);
    box-shadow: 0 24px 48px rgba(139, 92, 246, 0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}

.card-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-card .card-header {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.03));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 14px;
    padding: 18px 20px;
    margin: -6px -6px 26px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
    margin: 0 0 8px 0;
    text-shadow: 0 2px 14px rgba(139, 92, 246, 0.25);
}

.card-title i {
    color: #8b5cf6;
    font-size: 22px;
}

.card-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Enhanced Form */
.profile-form-enhanced {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group-enhanced {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-enhanced label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.form-group-enhanced label i {
    color: #8b5cf6;
    font-size: 16px;
}

.form-group-enhanced input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-group-enhanced input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group-enhanced input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.55);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.14);
    background: rgba(0, 0, 0, 0.28);
}

.form-group-enhanced input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.input-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: -4px;
}

.btn-submit-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
    align-self: flex-start;
}

.btn-submit-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.btn-submit-enhanced:active {
    transform: translateY(0);
}

/* Notification Styles - now handled by global toast system in style.css */

/* Responsive Design */
@media (max-width: 768px) {
    .profile-header-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        gap: 24px;
    }
    
    .profile-name {
        font-size: 26px;
    }
    
    .profile-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row-enhanced {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        padding: 24px;
    }
    
    .card-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .modern-profile {
        padding: 20px 0;
    }
    
    .profile-container-enhanced {
        padding: 0 16px;
    }
    
    .avatar-circle {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .profile-name {
        font-size: 22px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .notification {
        right: 16px;
        left: 16px;
    }
}

/* SweetAlert2 Toast Customization */
.swal2-container.swal2-top-end > .swal2-popup,
.swal2-container.swal2-top-right > .swal2-popup {
    background: var(--bg-primary) !important;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.swal2-popup.swal2-toast {
    padding: 12px 20px !important;
    border-radius: 12px !important;
}

.swal2-popup.swal2-toast .swal2-title {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.swal2-popup.swal2-toast .swal2-icon {
    margin: 0 12px 0 0 !important;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success {
    border-color: #4caf50 !important;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #4caf50 !important;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(76, 175, 80, 0.3) !important;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error {
    border-color: #f44336 !important;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
    background-color: #f44336 !important;
}

.swal2-timer-progress-bar {
    background: rgba(139, 92, 246, 0.8) !important;
}

/* ============================================
   RESPONSIVE - FILTERS & SEARCH
   ============================================ */

@media (max-width: 992px) {
    .filters-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .filter-controls {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .filters-container {
        padding: 16px;
    }
    
    .filter-pills {
        gap: 8px;
    }
    
    .pill-btn,
    .pill-btn-txn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .pill-btn span:first-of-type,
    .pill-btn-txn span:first-of-type {
        display: none;
    }
    
    .pill-btn i,
    .pill-btn-txn i {
        margin: 0;
    }
    
    .dropdown-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .search-box input {
        font-size: 13px;
        padding: 10px 12px 10px 40px;
    }
    
    .order-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }
    
    .order-status {
        align-self: flex-start;
    }
    
    .order-service-section {
        gap: 12px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }
    
    .service-name {
        font-size: 15px;
    }
    
    .order-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .order-card-body {
        padding: 20px;
    }
}
