:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --accent: #3b82f6;
    --accent-light: #93c5fd;
    --border: #e5e7eb;
    --shadow: rgba(0, 0, 0, 0.1);
    --card-bg: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --radius: 12px;
    --transition: 0.3s ease;
  }
  
  [data-theme="dark"] {
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --accent: #3b82f6;
    --accent-light: #1d4ed8;
    --border: #374151;
    --shadow: rgba(0, 0, 0, 0.3);
    --card-bg: #1f2937;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color var(--transition), color var(--transition);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Header */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(var(--bg-primary), 0.8);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .logo-shape {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 8px;
    transform: rotate(-5deg);
  }
  
  .logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .theme-toggle button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition);
  }
  
  .theme-toggle button:hover {
    background-color: var(--bg-secondary);
  }
  
  .theme-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--text-primary);
  }
  
  [data-theme="light"] .moon-icon {
    display: block;
  }
  
  [data-theme="light"] .sun-icon {
    display: none;
  }
  
  [data-theme="dark"] .moon-icon {
    display: none;
  }
  
  [data-theme="dark"] .sun-icon {
    display: block;
  }
  
  /* Hero Section */
  .hero {
    padding: 6rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.1));
  }
  
  .hero h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
  }
  
  .search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
    background: var(--bg-primary);
    color: var(--text-primary);
  }
  
  .search-btn {
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition);
  }
  
  .search-btn:hover {
    background: var(--accent-light);
  }
  
  .hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
  }
  
  .shape-1 {
    width: 250px;
    height: 250px;
    background: rgba(59, 130, 246, 0.2);
    top: -50px;
    left: -100px;
    animation: float 10s ease-in-out infinite;
  }
  
  .shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(147, 197, 253, 0.15);
    bottom: -80px;
    right: -50px;
    animation: float 14s ease-in-out infinite reverse;
  }
  
  .shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(59, 130, 246, 0.1);
    bottom: 100px;
    left: 10%;
    animation: float 8s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  /* Categories Section */
  .categories {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
  }
  
  .categories h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
    font-weight: 700;
  }
  
  .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
  }
  
  .filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
  }
  
  .filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  
  .filter-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
  }
  
  .companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .company-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}
  
  .company-card:hover {
    transform: translateY(-10px);
  }
  
  .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}
  
.company-logo.category-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.company-logo.category-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.category-label {
    background: var(--accent);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
  
  .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .stars {
    color: #f59e0b;
  }
  
  .count {
    font-weight: 600;
    color: var(--text-secondary);
  }
  
  .company-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
    font-weight: 600;
  }
  
  .company-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
  
  .btn-contact {
    display: inline-block;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    transition: background-color var(--transition);
    margin-top: auto;
}
  
  .btn-contact:hover {
    background: var(--accent-light);
  }
  
  /* About Section */
  .about {
    padding: 5rem 0;
  }
  
  .about-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .about p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
  }
  
  .stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    color: var(--text-secondary);
    font-size: 1.125rem;
  }
  
/* Nowoczesny footer z buttonami */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo h3 {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    min-width: 140px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-secondary);
    transition: all var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.footer-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    margin-bottom: 0.5rem;
    transition: transform var(--transition);
}

.footer-btn span {
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.footer-btn:hover svg {
    transform: scale(1.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Animacja pulsowania dla przycisków */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsywność */
@media (max-width: 576px) {
    .footer-btn {
        min-width: 120px;
        padding: 1rem;
    }
    
    .footer-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
    }
}
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 2.25rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .stats {
      gap: 2rem;
    }
    
    .companies-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
  }
  
  @media (max-width: 576px) {
    header .container {
      flex-direction: column;
      gap: 1rem;
    }
    
    .theme-toggle {
      position: absolute;
      top: 1rem;
      right: 1rem;
    }
    
    .hero {
      padding: 4rem 0 6rem;
    }
    
    .hero h2 {
      font-size: 1.75rem;
    }
    
    .filter-buttons {
      flex-direction: column;
      align-items: stretch;
    }
    
    .companies-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 2rem;
    }
  }

  /* Specjalne stylowanie dla przycisku Zgłoś firmę */
.highlight-btn {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.1));
    border: 1px solid var(--accent-light);
    position: relative;
    overflow: hidden;
}

.highlight-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent), transparent, var(--accent-light));
    z-index: -1;
    border-radius: var(--radius);
    animation: glowing 3s ease-in-out infinite;
    opacity: 0.5;
}

.highlight-btn svg {
    stroke: var(--accent);
    fill: rgba(59, 130, 246, 0.1);
}

.highlight-btn:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(147, 197, 253, 0.15));
}

.highlight-btn:hover svg {
    animation: pulse 1s infinite;
}

@keyframes glowing {
    0% { opacity: 0.4; }
    50% { opacity: 0.7; }
    100% { opacity: 0.4; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Cookie Consent Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: -200px; /* Start offscreen */
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: bottom 0.5s ease;
    border-top: 1px solid var(--border);
}

.cookie-consent-banner.show {
    bottom: 0;
}

.consent-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    gap: 2rem;
}

.consent-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.consent-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.consent-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid var(--border);
    font-size: 0.9rem;
}

.accept-btn {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.accept-btn:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.necessary-btn {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.customize-btn {
    background: transparent;
    color: var(--text-secondary);
}

.necessary-btn:hover, .customize-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Cookie Settings Popup */
.cookie-settings-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.cookie-settings-popup.show {
    display: flex;
}

.settings-content {
    background-color: var(--bg-primary);
    border-radius: var(--radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 2rem;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.settings-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.settings-description {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-option {
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.option-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.cookie-option p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.settings-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.save-btn {
    background: var(--accent);
    color: white;
}

.save-btn:hover {
    background: var(--accent-light);
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--accent);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--accent);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    opacity: 0.7;
    cursor: not-allowed;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .consent-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .consent-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
    
    .accept-btn {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .consent-buttons {
        grid-template-columns: 1fr;
    }
    
    .accept-btn {
        grid-column: span 1;
    }
    
    .settings-content {
        padding: 1.5rem;
    }
}

/* Style dla kategorii */
.categories-container {
    padding: 2rem 0;
    background-color: #f8fafc;
}

.categories-section, 
.companies-section, 
.about {
    padding: 6rem 0; /* Zwiększony padding górny i dolny */
}

.categories-section {
    background-color: var(--bg-secondary);
    position: relative;
}

[data-theme="dark"] .section-title {
    color: #ffffff; /* Jaśniejszy kolor w trybie ciemnym */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Mocniejszy cień w trybie ciemnym */
}

.dark-mode .categories-container {
    background-color: #1e293b;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem; /* Zwiększony rozmiar czcionki */
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Dodany cień dla lepszej czytelności */
    padding-bottom: 1rem; /* Dodatkowy padding na dole */
}

.dark-mode .section-title {
    color: #f8fafc;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 120px;
    padding: 1rem;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    position: relative;
    overflow: hidden;
}

.dark-mode .category-btn {
    background-color: #334155;
    color: #f8fafc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #93c5fd);
    transition: all 0.3s ease;
}

.category-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .category-btn:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.category-btn svg {
    width: 36px;
    height: 36px;
    margin-bottom: 0.8rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.category-btn:hover svg {
    color: #2563eb;
    transform: scale(1.1);
}

.category-btn span {
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-btn {
        width: 110px;
        height: 110px;
    }
    
    .category-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .category-btn span {
        font-size: 0.8rem;
    }
}

/* Dodatkowe style dla sekcji firm */
.companies-section {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
}

.loading, .error, .no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.error {
    color: var(--error);
}

/* Poprawione style dla animacji kart firm */
.company-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    padding: 2rem;
}

/* Styl dla aktywnego przycisku kategorii */
.category-btn.active-category {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.category-btn.active-category::before {
    height: 6px;
}

.category-btn.active-category svg {
    color: #1d4ed8;
    transform: scale(1.2);
}

/* Poprawka dla sekcji firm */
.companies-section {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.fallback-info {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    text-align: center;
}

[data-theme="dark"] .fallback-info {
    background-color: #2d2a16;
    color: #ffeeba;
    border-color: #856404;
}

/* Lepszy kontrast w trybie ciemnym dla sekcji */
[data-theme="dark"] .categories-section {
    background-color: #1a202c; /* Ciemniejsze tło */
}

[data-theme="dark"] .companies-section {
    background-color: #171923; /* Ciemniejsze tło */
}

[data-theme="dark"] .company-card {
    background-color: #2d3748; /* Ciemniejsze tło kart */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); /* Mocniejszy cień */
}

/* Poprawiony kontrast ikon kategorii w trybie ciemnym */
[data-theme="dark"] .category-btn svg {
    color: #63b3ed; /* Jaśniejszy niebieski dla lepszej widoczności */
}

[data-theme="dark"] .category-btn.active-category svg {
    color: #90cdf4; /* Jeszcze jaśniejszy dla aktywnego */
}