/* Dark Mode Styles */
:root {
    /* Light mode colors (default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --border-light: #f7fafc;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --accent-primary: #3b82f6;
    --accent-secondary: #10b981;
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #1a202c;
    --button-bg: #ffffff;
    --button-text: #374151;
    --input-bg: #ffffff;
    --hero-overlay: rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] {
    /* Dark mode colors - more subtle/softer */
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-tertiary: #0f3460;
    --text-primary: #e2e8f0;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --border-light: #475569;
    --shadow-color: rgba(0, 0, 0, 0.2);
    --shadow-hover: rgba(0, 0, 0, 0.3);
    --accent-primary: #60a5fa;
    --accent-secondary: #34d399;
    --gradient-start: #1a1a2e;
    --gradient-end: #16213e;
    /* Allow support.css to override these values for support pages */
    --card-bg: #1a1a2e; 
    --header-bg: rgba(26, 26, 46, 0.95);
    --footer-bg: #1a1a2e;
    --button-bg: #ffffff; /* Keep buttons white */
    --button-text: #374151;
    --input-bg: #ffffff; /* Keep inputs white */
    --hero-overlay: rgba(0, 0, 0, 0.3);
}

/* Apply dark mode variables to common elements */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.1s ease, color 0.1s ease;
}

/* Support pages specific overrides */
[data-theme="dark"] .faq-section,
[data-theme="dark"] .policy-section,
[data-theme="dark"] .support-links {
    color: var(--text-color);
}

[data-theme="dark"] .faq-item,
[data-theme="dark"] .policy-container,
[data-theme="dark"] .support-link-card {
    background-color: var(--card-bg) !important;
    color: var(--text-color) !important;
    border: 1px solid var(--border-color) !important;
}

/* Force text colors for support pages */
[data-theme="dark"] .faq-question h3,
[data-theme="dark"] .faq-answer p,
[data-theme="dark"] .policy-section h2,
[data-theme="dark"] .policy-section h3,
[data-theme="dark"] .policy-section p,
[data-theme="dark"] .policy-section li,
[data-theme="dark"] .support-link-card h3 {
    color: var(--text-color) !important;
}

[data-theme="dark"] .faq-toggle {
    color: var(--accent-color) !important;
}

/* Secondary text colors for support pages */
[data-theme="dark"] .faq-answer p,
[data-theme="dark"] .policy-section p,
[data-theme="dark"] .policy-section li {
    color: var(--text-color-secondary) !important;
    font-weight: 500 !important;
}

/* Highlight elements in support pages */
[data-theme="dark"] .policy-section .highlight {
    background-color: rgba(96, 165, 250, 0.15) !important;
    border: 1px solid var(--accent-color) !important;
}

/* Header fixes for dark mode - stronger overrides */
[data-theme="dark"] header {
    background: rgba(26, 26, 46, 0.95) !important;
    border-bottom: 1px solid #334155 !important;
    backdrop-filter: blur(10px) !important;
}

[data-theme="dark"] header *:not(.logo) {
    color: #e2e8f0 !important;
}

[data-theme="dark"] h1.logo,
[data-theme="dark"] .logo {
    background: linear-gradient(135deg, #60a5fa, #a78bfa) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    font-weight: 800 !important;
    font-size: 1.8rem !important;
    text-shadow: none !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

[data-theme="dark"] .nav-link,
[data-theme="dark"] nav ul li a {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] nav ul li a:hover {
    color: #60a5fa !important;
}

[data-theme="dark"] .nav-link.active,
[data-theme="dark"] nav ul li a.active {
    color: #60a5fa !important;
}

[data-theme="dark"] .login {
    color: #e2e8f0 !important;
    background-color: rgba(51, 65, 85, 0.5) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .login:hover {
    background-color: rgba(51, 65, 85, 0.7) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

[data-theme="dark"] .register {
    color: white !important;
    background: linear-gradient(135deg, #4338ca, #6366f1) !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
}

[data-theme="dark"] .register:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4) !important;
    background: linear-gradient(135deg, #4338ca, #7c3aed) !important;
}

[data-theme="dark"] .cart {
    color: #e2e8f0 !important;
    background-color: rgba(51, 65, 85, 0.5) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .cart:hover {
    background-color: rgba(51, 65, 85, 0.7) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

[data-theme="dark"] .cart-count {
    background: linear-gradient(135deg, #4338ca, #6366f1) !important;
    color: white !important;
    font-weight: 600 !important;
}

[data-theme="dark"] header .cart .cart-count {
    background: linear-gradient(135deg, #4338ca, #6366f1) !important;
    color: white !important;
    font-weight: 600 !important;
}

[data-theme="dark"] .header-actions .cart .cart-count {
    background: linear-gradient(135deg, #4338ca, #6366f1) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Category page specific styles */
[data-theme="dark"] .categories-page {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

[data-theme="dark"] .categories-page h1,
[data-theme="dark"] .categories-page h2,
[data-theme="dark"] .categories-page h3 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .categories-page p {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .category-section {
    background: var(--bg-primary) !important;
}

[data-theme="dark"] .category-section h2 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .category-section .section-subtitle {
    color: var(--text-secondary) !important;
}

/* Category cards styling for dark mode */
[data-theme="dark"] .category-card {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    position: relative !important;
    overflow: hidden !important;
    color: #1f2937 !important; /* Match light mode text color */
}

/* Category icon styling for dark mode */
[data-theme="dark"] .category-icon {
    background: #f8f9fa !important;
    color: #1f2937 !important;
    border: none !important;
    font-size: 3rem !important;
    min-width: 80px !important;
    text-align: center !important;
    padding: 1rem !important;
    border-radius: 16px !important;
    transition: all 0.3s !important;
}

[data-theme="dark"] .category-card:hover .category-icon {
    background: #667eea !important;
    color: white !important;
    transform: scale(1.1) !important;
    border-color: transparent !important;
}

[data-theme="dark"] .category-card.active .category-icon {
    background: #667eea !important;
    color: white !important;
    border-color: transparent !important;
}

[data-theme="dark"] .category-card.coming-soon .category-icon {
    background: #e5e7eb !important;
    color: #6b7280 !important;
    border-color: transparent !important;
}

[data-theme="dark"] .category-card.coming-soon:hover .category-icon {
    transform: none !important;
    background: #e5e7eb !important;
    color: #6b7280 !important;
}

/* Adjust hover effects for category cards in dark mode */
[data-theme="dark"] .category-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
    border-color: #667eea !important;
    background: white !important;
    color: #1f2937 !important;
}

[data-theme="dark"] .category-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    opacity: 0 !important;
    transition: opacity 0.3s !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

[data-theme="dark"] .category-card:hover::before {
    opacity: 1 !important;
}

/* Active category card */
[data-theme="dark"] .category-card.active {
    border-color: #667eea !important;
    background: linear-gradient(135deg, #667eea05 0%, #764ba205 100%) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    color: #1f2937 !important;
}

[data-theme="dark"] .category-card.active::before {
    opacity: 1 !important;
    height: 4px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Adjust text inside category cards for better contrast in dark mode */
[data-theme="dark"] .category-card h3 {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

[data-theme="dark"] .category-card p {
    color: var(--text-secondary) !important;
    line-height: 1.5 !important;
}

[data-theme="dark"] .category-content {
    flex: 1 !important;
}

[data-theme="dark"] .category-content h3 {
    color: #1f2937 !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

[data-theme="dark"] .category-content p {
    color: #6b7280 !important;
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.5 !important;
}

[data-theme="dark"] .category-stats {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-top: 0.5rem !important;
}

[data-theme="dark"] .category-stats span:first-child {
    color: #374151 !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}

[data-theme="dark"] .category-stats .status {
    padding: 0.25rem 0.75rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    display: inline-block !important;
}

[data-theme="dark"] .category-stats .status:not(.coming) {
    background: #10b981 !important;
    color: white !important;
}

[data-theme="dark"] .category-stats .status.coming {
    background: #f59e0b !important;
    color: white !important;
}

[data-theme="dark"] .category-arrow {
    color: #9ca3af !important;
    font-size: 1.5rem !important;
    transition: all 0.3s !important;
    margin-left: auto !important;
}

[data-theme="dark"] .category-card:hover .category-arrow {
    color: #667eea !important;
    transform: translateX(5px) !important;
    transition: all 0.3s ease !important;
}

[data-theme="dark"] .category-card.active .category-arrow {
    color: #667eea !important;
}

[data-theme="dark"] .category-card.coming-soon .category-arrow {
    color: #d1d5db !important;
}

/* Category grid and items - use variables for better dark mode integration */
[data-theme="dark"] .categories-grid .category-item {
    background: white !important;
    border: 2px solid transparent !important;
    color: #1f2937 !important;
}

[data-theme="dark"] .category-item h3 {
    color: #1f2937 !important;
}

[data-theme="dark"] .category-item p {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .category-item .category-count {
    color: var(--text-secondary) !important;
}

/* Badge and status colors - keep original */
[data-theme="dark"] .badge-available {
    background: #10b981 !important;
    color: white !important;
}

[data-theme="dark"] .badge-coming-soon {
    background: #f59e0b !important;
    color: white !important;
}

[data-theme="dark"] .badge-disabled {
    background: #9ca3af !important;
    color: white !important;
}

/* Category links and hover states */
[data-theme="dark"] .category-link {
    color: var(--accent-primary) !important;
}

[data-theme="dark"] .category-link:hover {
    color: var(--accent-primary) !important;
}

[data-theme="dark"] .category-link.disabled {
    color: var(--text-muted) !important;
}

/* Coming soon category cards */
[data-theme="dark"] .category-card.coming-soon {
    min-width: 260px !important;
    min-height: 120px !important;
    padding: 2rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    border-radius: 16px !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    background: white !important;
    border-color: transparent !important;
    color: #6b7280 !important;
    height: auto !important;
    min-height: 200px !important;
}

[data-theme="dark"] .category-card.coming-soon h3,
[data-theme="dark"] .category-card.coming-soon p {
    color: #6b7280 !important;
}

[data-theme="dark"] .category-card.coming-soon:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border-color: transparent !important;
    background: white !important;
}

/* Page header for kategori page - preserve original layout */
[data-theme="dark"] .page-header {
    background: transparent !important;
    color: var(--text-primary) !important;
    text-align: center !important;
    margin-bottom: 4rem !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Remove decorative background pattern for page header */
[data-theme="dark"] .page-header::before {
    display: none !important;
}

/* Preserve original styling for page header text but update colors */
[data-theme="dark"] .page-header h1 {
    color: var(--text-primary) !important;
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

[data-theme="dark"] .page-header p {
    color: var(--text-secondary) !important;
    font-size: 1.1rem !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    opacity: 1 !important;
}

/* Preserve original container styling */
[data-theme="dark"] .page-header .container {
    position: relative !important;
    z-index: 2 !important;
    padding: inherit !important;
}

/* Categories grid container - preserve original layout */
[data-theme="dark"] .categories-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 4rem !important;
}

/* Overall page styling for kategori - preserve original layout */
[data-theme="dark"] .categories-page {
    background: var(--bg-primary) !important;
    min-height: 70vh !important;
    padding: 4rem 0 !important;
}

/* Container styling - preserve original layout */
[data-theme="dark"] .categories-page .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Additional text elements */
[data-theme="dark"] .category-description {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .category-title {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .section-title {
    color: var(--text-primary) !important;
}

/* Footer adjustments for kategori page */
[data-theme="dark"] footer {
    background: var(--footer-bg) !important;
    color: var(--text-secondary) !important;
    border-top: 1px solid var(--border-color) !important;
}

[data-theme="dark"] footer h4 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] footer a {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] footer a:hover {
    color: var(--accent-primary) !important;
}

/* Quick Info Section Dark Mode */
[data-theme="dark"] .quick-info-section {
    background: var(--bg-primary) !important;
    margin-top: 4rem !important;
    padding: 4rem 0 !important;
}

[data-theme="dark"] .section-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

[data-theme="dark"] .section-header h2 {
    color: var(--text-primary) !important;
    font-size: 2rem !important;
    margin-bottom: 0.5rem !important;
    font-weight: 700 !important;
}

[data-theme="dark"] .section-header p {
    color: var(--text-secondary) !important;
    font-size: 1.1rem !important;
}

/* Info grid layout */
[data-theme="dark"] .info-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 0 !important;
}

/* Update info card styling for dark mode */
[data-theme="dark"] .info-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 4px 20px var(--shadow-color) !important;
    padding: 2.5rem !important;
    border-radius: 16px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    color: var(--text-primary) !important;
}

/* Update info card hover effects */
[data-theme="dark"] .info-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px var(--shadow-hover) !important;
    border-color: var(--accent-primary) !important;
}

/* Update info card gradient bars */
[data-theme="dark"] .info-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    transition: all 0.3s !important;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--gradient-end) 100%) !important;
}

[data-theme="dark"] .info-card.focus-card::before {
    background: linear-gradient(135deg, #ff6b6b 0%, var(--accent-primary) 100%) !important;
}

[data-theme="dark"] .info-card.update-card::before {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--bg-tertiary) 100%) !important;
}

[data-theme="dark"] .info-card.suggestion-card::before {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%) !important;
}

/* Info card content styling */
[data-theme="dark"] .info-icon {
    font-size: 3rem !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
    color: var(--accent-primary) !important;
}

[data-theme="dark"] .info-content h3 {
    color: var(--text-primary) !important;
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
}

[data-theme="dark"] .info-content p {
    color: var(--text-secondary) !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
}

[data-theme="dark"] .info-content strong {
    color: var(--accent-primary) !important;
    font-weight: 600 !important;
}

/* Mobile responsiveness for info section */
@media (max-width: 768px) {
    [data-theme="dark"] .categories-page {
        padding: 2rem 0 !important;
    }
    
    [data-theme="dark"] .page-header h1 {
        font-size: 2rem !important;
    }
    
    [data-theme="dark"] .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    [data-theme="dark"] .category-card {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    [data-theme="dark"] .category-icon {
        min-width: auto !important;
    }
    
    [data-theme="dark"] .category-stats {
        justify-content: center !important;
    }
    
    [data-theme="dark"] .quick-info-section {
        margin-top: 2rem !important;
        padding: 1rem 0 !important;
    }
    
    [data-theme="dark"] .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    [data-theme="dark"] .info-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    [data-theme="dark"] .info-card {
        padding: 2rem !important;
    }
    
    [data-theme="dark"] .info-icon {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    [data-theme="dark"] .info-content h3 {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    [data-theme="dark"] .page-header {
        margin-bottom: 2rem !important;
    }
    
    [data-theme="dark"] .page-header h1 {
        font-size: 1.75rem !important;
    }
    
    [data-theme="dark"] .category-card {
        padding: 1.5rem !important;
    }
    
    [data-theme="dark"] .category-icon {
        font-size: 2.5rem !important;
        padding: 0.75rem !important;
    }
    
    [data-theme="dark"] .category-content h3 {
        font-size: 1.25rem !important;
    }
    
    [data-theme="dark"] .section-header h2 {
        font-size: 1.4rem !important;
    }
    
    [data-theme="dark"] .info-card {
        padding: 1.5rem !important;
    }
    
    [data-theme="dark"] .info-icon {
        font-size: 2rem !important;
    }
    
    [data-theme="dark"] .info-content h3 {
        font-size: 1.1rem !important;
    }
    
    [data-theme="dark"] .info-content p {
        font-size: 0.9rem !important;
    }
}

/* ===== HOMEPAGE (BERANDA) DARK MODE STYLES ===== */

/* Hero Banner Section */
[data-theme="dark"] .hero-banner {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%) !important;
}

[data-theme="dark"] .hero-gradient {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.9) 100%) !important;
}

[data-theme="dark"] .hero-title {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .hero-title .highlight {
    color: var(--accent-primary) !important;
}

[data-theme="dark"] .hero-desc {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

[data-theme="dark"] .btn-primary::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
}

[data-theme="dark"] .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5), 0 4px 16px rgba(0, 0, 0, 0.25) !important;
}

[data-theme="dark"] .btn-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}

[data-theme="dark"] .btn-secondary::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent) !important;
}

[data-theme="dark"] .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}

/* Categories Section */
[data-theme="dark"] .categories {
    background: var(--bg-primary) !important;
}

[data-theme="dark"] .section-header h2 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .section-header p {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .category-grid .category-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1f2937 !important;
}

[data-theme="dark"] .category-item h3 {
    color: #1f2937 !important;
}

[data-theme="dark"] .category-item p {
    color: #6b7280 !important;
}

/* Why Us Section */
[data-theme="dark"] .why-us {
    background: var(--bg-secondary) !important;
}

[data-theme="dark"] .why-us h2 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .why-us p {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .benefit-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1f2937 !important;
}

[data-theme="dark"] .benefit-item h3 {
    color: #1f2937 !important;
}

[data-theme="dark"] .benefit-item p {
    color: #6b7280 !important;
}

/* Featured Products Section */
[data-theme="dark"] .featured-products {
    background: var(--bg-primary) !important;
}

[data-theme="dark"] .product-grid .product-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1f2937 !important;
}

[data-theme="dark"] .product-item h3 {
    color: #1f2937 !important;
}

[data-theme="dark"] .product-item p {
    color: #6b7280 !important;
}

[data-theme="dark"] .product-price {
    color: #059669 !important;
}

/* About Us Section */
[data-theme="dark"] .about-us {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #0f172a 100%) !important;
}

[data-theme="dark"] .section-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
    color: white !important;
}

[data-theme="dark"] .about-content h2 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .about-text .highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

[data-theme="dark"] .about-description {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .about-mission {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .feature-item.premium {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .feature-item.premium::before {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
}

[data-theme="dark"] .feature-item.premium:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .feature-icon-wrapper {
    background: linear-gradient(135deg, #3b82f625 0%, #8b5cf625 100%) !important;
}

[data-theme="dark"] .feature-icon-wrapper .feature-icon {
    color: #3b82f6 !important;
}

[data-theme="dark"] .feature-content h4 {
    color: #1f2937 !important;
    font-weight: 700 !important;
}

[data-theme="dark"] .feature-content p {
    color: #4b5563 !important;
}

[data-theme="dark"] .about-stats {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .stats-header h3 {
    color: #1f2937 !important;
}

[data-theme="dark"] .stats-header p {
    color: #4b5563 !important;
}

[data-theme="dark"] .stat-card.premium {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
}

[data-theme="dark"] .stat-card.premium:hover {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5) !important;
}

/* Ensure stat card text is white with strong contrast in both modes */
[data-theme="dark"] .stat-card.premium .stat-number,
[data-theme="dark"] .stat-card.premium .stat-label,
[data-theme="dark"] .stat-card.premium .stat-description {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .stat-card.premium .stat-number {
    font-weight: 800 !important;
}

[data-theme="dark"] .stat-card.premium .stat-label {
    font-weight: 700 !important;
}

/* Testimonials Section */
[data-theme="dark"] .testimonials {
    background: var(--bg-primary) !important;
}

[data-theme="dark"] .testimonial-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1f2937 !important;
}

[data-theme="dark"] .testimonial-text {
    color: #374151 !important;
}

[data-theme="dark"] .testimonial-author {
    color: #1f2937 !important;
}

[data-theme="dark"] .testimonial-role {
    color: #6b7280 !important;
}

/* Category icons */
[data-theme="dark"] .category-icon {
    background: #f8f9fa !important;
    color: #667eea !important;
}

/* Search and filter elements if any */
[data-theme="dark"] .search-box,
[data-theme="dark"] .filter-dropdown {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1f2937 !important;
}

/* Footer */
[data-theme="dark"] footer {
    background: #1a1a2e !important;
    color: #e2e8f0 !important;
}

[data-theme="dark"] .footer-section h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .footer-section p {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .footer-section ul li a {
    color: #94a3b8 !important;
}

[data-theme="dark"] .footer-section ul li a:hover {
    color: #60a5fa !important;
}

[data-theme="dark"] .contact-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
}

[data-theme="dark"] .footer-bottom {
    border-top: 1px solid #334155 !important;
    color: #94a3b8 !important;
}

/* Cards - Keep original colors in dark mode */
.card, .product-card, .category-card {
    background: #ffffff; /* Always white */
    border: 1px solid #e2e8f0; /* Always light border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Always light shadow */
    color: #1a202c; /* Always dark text */
}

.card:hover, .product-card:hover, .category-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Feature cards - keep original styling */
.feature-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1a202c !important;
}

.feature-card .feature-text {
    color: #374151 !important;
}

/* Buttons */
.btn-primary {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-secondary {
    background: var(--button-bg);
    border: 1px solid var(--border-color);
    color: var(--button-text);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
}

/* Forms */
input, textarea, select {
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Sections */
section {
    background: var(--bg-primary);
}

.bg-light {
    background: var(--bg-secondary) !important;
}

.bg-white {
    background: var(--card-bg) !important;
}

/* Text colors */
.text-muted {
    color: var(--text-muted) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

/* Borders */
.border {
    border-color: var(--border-color) !important;
}

.border-top, .border-bottom, .border-left, .border-right {
    border-color: var(--border-color) !important;
}

/* Dark Mode Toggle Switch */
.dark-mode-toggle {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer !important;
    transition: all 0.1s ease;
    box-shadow: 0 4px 12px var(--shadow-color);
    user-select: none;
    pointer-events: auto !important;
    white-space: nowrap; /* Prevent text wrapping */
    min-width: 80px; /* Consistent width */
}

/* Dark Mode Toggle in Header */
header .dark-mode-toggle {
    position: static;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 12px;
    margin-left: 15px;
    box-shadow: none;
    cursor: pointer !important;
    pointer-events: auto !important;
}

[data-theme="dark"] header .dark-mode-toggle {
    border-color: #475569;
    background: rgba(255, 255, 255, 0.05);
}

.dark-mode-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.dark-mode-toggle:active {
    transform: translateY(0);
}

/* Ensure header toggle is always clickable */
header .header-actions .dark-mode-toggle {
    z-index: 1001;
    position: relative;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
    background: #e5e7eb;
    border-radius: 25px;
    transition: background 0.3s ease;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.toggle-switch.active {
    background: #3b82f6 !important;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    transition: transform 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Disable transitions during page load */
.toggle-slider.no-transition {
    transition: none !important;
}

/* Prevent flash on page load - disable all transitions initially */
.dark-mode-toggle:not(.loaded) * {
    transition: none !important;
}

.dark-mode-toggle.loaded * {
    transition: all 0.1s ease !important;
}

.dark-mode-toggle.loaded .toggle-slider {
    transition: transform 0.1s ease !important;
}

/* Theme transition class - only applied during theme changes */
.theme-transition,
.theme-transition * {
    transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease, box-shadow 0.1s ease !important;
    transition-delay: 0s !important;
}

/* Keep toggle slider transition smooth */
.toggle-slider {
    transition: transform 0.1s ease !important;
}

/* Base transitions for elements that change with theme */
[data-theme] a, [data-theme] button, [data-theme] .card, [data-theme] .header, [data-theme] .footer {
    transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease;
}

/* Preload dark mode styles */
html::after {
    content: "" !important;
    display: none !important;
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}

/* Prevent layout shift during page load */
.dark-mode-toggle {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.toggle-label {
    min-width: 35px; /* Consistent width for Light/Dark text */
    text-align: left;
}

/* Prevent header elements from shifting */
.header-actions > * {
    flex-shrink: 0; /* Prevent shrinking */
}

.header-actions .login,
.header-actions .register {
    min-width: 50px;
    text-align: center;
}

.header-actions .cart {
    min-width: 60px;
}

.header-actions .dark-mode-toggle {
    min-width: 80px;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(25px);
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    user-select: none;
}

/* Toggle label in header */
header .toggle-label {
    font-size: 12px;
    color: inherit;
}

[data-theme="dark"] header .toggle-label {
    color: #e2e8f0 !important;
}

/* Fix for header integration - Make sure toggle is always clickable */
.header-actions {
    pointer-events: auto;
}

.header-actions .dark-mode-toggle,
.header-actions .dark-mode-toggle *,
.header-actions .toggle-switch,
.header-actions .toggle-slider {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Make sure all toggle elements are clickable */
.dark-mode-toggle,
.dark-mode-toggle .toggle-switch,
.dark-mode-toggle .toggle-slider,
.dark-mode-toggle .toggle-label {
    pointer-events: auto !important;
}

/* Specific dark mode overrides - minimal changes */
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

[data-theme="dark"] .hero-overlay {
    background: var(--hero-overlay);
}

/* ===== ALL FEATURE CARDS & ITEMS - HOMEPAGE ===== */

/* Hero Section Feature Cards */
[data-theme="dark"] .feature-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #1f2937 !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

[data-theme="dark"] .feature-card:hover {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-5px) !important;
}

[data-theme="dark"] .feature-card .feature-icon {
    color: #374151 !important;
    font-size: 2rem !important;
}

[data-theme="dark"] .feature-card .feature-text {
    color: #374151 !important;
    font-weight: 600 !important;
}

/* Categories Section Items */
[data-theme="dark"] .category-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1f2937 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    min-height: 180px !important;
    height: auto !important;
}

[data-theme="dark"] .category-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px) !important;
}

[data-theme="dark"] .category-item h3 {
    color: #1f2937 !important;
}

[data-theme="dark"] .category-item p {
    color: #6b7280 !important;
}

[data-theme="dark"] .category-item .category-icon {
    color: #667eea !important;
}

[data-theme="dark"] .category-item.coming-soon {
    background: #ffffff !important;
    opacity: 0.8 !important;
}

[data-theme="dark"] .category-item .coming-soon-badge {
    background: #f59e0b !important;
    color: white !important;
}

/* Why Us Section Items */
[data-theme="dark"] .why-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1f2937 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .why-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px) !important;
}

[data-theme="dark"] .why-item h3 {
    color: #1f2937 !important;
}

[data-theme="dark"] .why-item p {
    color: #6b7280 !important;
}

[data-theme="dark"] .why-item .why-icon {
    color: #667eea !important;
}

/* Product Cards (if any) */
[data-theme="dark"] .product-card,
[data-theme="dark"] .product-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1f2937 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .product-card:hover,
[data-theme="dark"] .product-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px) !important;
}

[data-theme="dark"] .product-card h3,
[data-theme="dark"] .product-item h3 {
    color: #1f2937 !important;
}

[data-theme="dark"] .product-card p,
[data-theme="dark"] .product-item p {
    color: #6b7280 !important;
}

[data-theme="dark"] .product-price {
    color: #059669 !important;
}

[data-theme="dark"] .original-price {
    color: #9ca3af !important;
}

/* Testimonial Cards */
[data-theme="dark"] .testimonial-item,
[data-theme="dark"] .testimonial-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1f2937 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .testimonial-item:hover,
[data-theme="dark"] .testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

[data-theme="dark"] .testimonial-text {
    color: #374151 !important;
}

[data-theme="dark"] .testimonial-author {
    color: #1f2937 !important;
}

[data-theme="dark"] .testimonial-role {
    color: #6b7280 !important;
}

/* Stats Cards */
[data-theme="dark"] .stat-item,
[data-theme="dark"] .stats-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1f2937 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .stat-item h3,
[data-theme="dark"] .stats-card h3 {
    color: #1f2937 !important;
}

[data-theme="dark"] .stat-item p,
[data-theme="dark"] .stats-card p {
    color: #6b7280 !important;
}

/* Service Cards */
[data-theme="dark"] .service-item,
[data-theme="dark"] .service-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1f2937 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .service-item:hover,
[data-theme="dark"] .service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px) !important;
}

[data-theme="dark"] .service-item h3,
[data-theme="dark"] .service-card h3 {
    color: #1f2937 !important;
}

[data-theme="dark"] .service-item p,
[data-theme="dark"] .service-card p {
    color: #6b7280 !important;
}

/* General Card Hover Effects for Dark Mode */
[data-theme="dark"] .card,
[data-theme="dark"] [class*="-card"],
[data-theme="dark"] [class*="-item"] {
    transition: all 0.1s ease !important;
}

/* Icons in Cards */
[data-theme="dark"] [class*="icon"] {
    color: #667eea !important;
}

[data-theme="dark"] .emoji-icon {
    filter: none !important; /* Keep emojis natural */
}

/* Badges and Status Elements */
[data-theme="dark"] .badge,
[data-theme="dark"] .status,
[data-theme="dark"] .tag {
    background: #667eea !important;
    color: white !important;
}

[data-theme="dark"] .badge.success,
[data-theme="dark"] .status.available {
    background: #10b981 !important;
}

[data-theme="dark"] .badge.warning,
[data-theme="dark"] .status.coming-soon {
    background: #f59e0b !important;
}

[data-theme="dark"] .badge.error,
[data-theme="dark"] .status.unavailable {
    background: #ef4444 !important;
}

/* Content within cards */
[data-theme="dark"] .card-body,
[data-theme="dark"] .card-content {
    color: #374151 !important;
}

[data-theme="dark"] .card-title {
    color: #1f2937 !important;
}

[data-theme="dark"] .card-subtitle {
    color: #6b7280 !important;
}

[data-theme="dark"] .card-text {
    color: #6b7280 !important;
}

/* Special styling for links within cards */
[data-theme="dark"] .card a,
[data-theme="dark"] .feature-card a,
[data-theme="dark"] .category-item a {
    color: #667eea !important;
    text-decoration: none !important;
}

[data-theme="dark"] .card a:hover,
[data-theme="dark"] .feature-card a:hover,
[data-theme="dark"] .category-item a:hover {
    color: #4f46e5 !important;
}

/* Keep dropdowns and specific elements consistent with original design */
[data-theme="dark"] .categories-dropdown {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1a202c !important;
}

[data-theme="dark"] .account-type-notes {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    border: 1px solid #e2e8f0 !important;
    color: #1a202c !important;
}

[data-theme="dark"] .note-item {
    background: #ffffff !important;
    color: #374151 !important;
}

[data-theme="dark"] .dropdown-header {
    border-bottom: 1px solid #e2e8f0 !important;
    color: #1a202c !important;
}

[data-theme="dark"] .category-item-small {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1a202c !important;
}

[data-theme="dark"] .status-badge {
    background: #f1f5f9 !important;
    color: #64748b !important;
}

[data-theme="dark"] .product-price {
    color: #059669 !important; /* Keep original green */
}

[data-theme="dark"] .original-price {
    color: #6b7280 !important; /* Keep original muted */
}

/* Ensure all cards stay light */
[data-theme="dark"] .product-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1a202c !important;
}

[data-theme="dark"] .product-card h3 {
    color: #1a202c !important;
}

[data-theme="dark"] .product-card p {
    color: #6b7280 !important;
}

[data-theme="dark"] .category-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1a202c !important;
    height: auto;
    min-height: 200px;
}

/* Mobile responsiveness for toggle */
@media (max-width: 768px) {
    .dark-mode-toggle {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .toggle-switch {
        width: 40px;
        height: 20px;
    }
    
    .toggle-slider {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    .toggle-switch.active .toggle-slider {
        transform: translateX(20px);
    }
    
    /* Kategori page responsive styles */
    [data-theme="dark"] .categories-page {
        padding: 2rem 0 !important;
    }
    
    [data-theme="dark"] .page-header h1 {
        font-size: 2rem !important;
    }
    
    [data-theme="dark"] .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    [data-theme="dark"] .category-card {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
        height: auto !important;
        min-height: 200px !important;
    }
    
    [data-theme="dark"] .category-icon {
        min-width: auto !important;
    }
    
    [data-theme="dark"] .category-stats {
        justify-content: center !important;
    }
    
    /* Info section responsive */
    [data-theme="dark"] .quick-info-section {
        margin-top: 2rem !important;
        padding: 1rem 0 !important;
    }
    
    [data-theme="dark"] .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    [data-theme="dark"] .info-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    [data-theme="dark"] .info-card {
        padding: 2rem !important;
    }
    
    [data-theme="dark"] .info-icon {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    [data-theme="dark"] .info-content h3 {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    /* Kategori page small screen styles */
    [data-theme="dark"] .page-header {
        margin-bottom: 2rem !important;
    }
    
    [data-theme="dark"] .page-header h1 {
        font-size: 1.75rem !important;
    }
    
    [data-theme="dark"] .category-card {
        padding: 1.5rem !important;
    }
    
    [data-theme="dark"] .category-icon {
        font-size: 2.5rem !important;
        padding: 0.75rem !important;
    }
    
    [data-theme="dark"] .category-content h3 {
        font-size: 1.25rem !important;
    }
    
    /* Small screen info cards */
    [data-theme="dark"] .section-header h2 {
        font-size: 1.4rem !important;
    }
    
    [data-theme="dark"] .info-card {
        padding: 1.5rem !important;
    }
    
    [data-theme="dark"] .info-icon {
        font-size: 2rem !important;
    }
    
    [data-theme="dark"] .info-content h3 {
        font-size: 1.1rem !important;
    }
    
    [data-theme="dark"] .info-content p {
        font-size: 0.9rem !important;
    }
}
