/* Temel Değişkenler */

:root {
    /* Ana Renkler */
    --primary: #84cc16;
    --primary-light: #a3e635;
    --primary-dark: #65a30d;
    --secondary: #f59e0b;
    --secondary-light: #fbbf24;
    --secondary-dark: #d97706;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --accent-dark: #1d4ed8;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    /* Gradyanlar */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
    /* Gölgeler */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}


/* Genel Stil Sıfırlama */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.5;
}


/* Header ve Menü Stilleri */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: white;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    max-height: 450px;
    overflow-y: auto;
}

.mega-menu.active,
.mega-menu-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mega-menu-category {
    position: relative;
}

.mega-menu-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    color: var(--dark);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.mega-menu-title:hover {
    background: #f8fafc;
    color: var(--primary);
}

.mega-menu-title i {
    font-size: 1.25rem;
    color: #9ca3af;
}

.mega-menu-items {
    position: absolute;
    top: 0;
    left: 100%;
    width: 280px;
    background: white;
    border-radius: 0 1rem 1rem 0;
    box-shadow: 4px 0 6px -1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.mega-menu-category:hover .mega-menu-items {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mega-menu-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    color: #4b5563;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.mega-menu-item:hover {
    background: #f3f4f6;
}


/* Sayfa Başlık Bölümü */

.page-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: white;
}


/* Sözleşme Sayfaları */

.contract-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.contract-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contract-content h2 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.contract-content h3 {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.contract-content p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contract-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.contract-content li {
    color: #4b5563;
    margin-bottom: 0.5rem;
}


/* Animasyonlar */

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
}


/* Özel Scrollbar */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* Responsive */

@media (max-width: 1024px) {
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mega-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80vh;
        border-radius: 1rem 1rem 0 0;
        transform: translateY(100%);
    }
    .mega-menu.active {
        transform: translateY(0);
    }
    .mega-menu-items {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80vh;
        border-radius: 1rem 1rem 0 0;
    }
}


/* Foto Galeri */

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

.galeri-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.galeri-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.galeri-image {
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.galeri-item:hover .galeri-image {
    transform: scale(1.1);
}

.galeri-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
}


/* Filtre Butonları */

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--primary);
    color: white;
}


/* Loading Animasyonu */

.loading-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Smooth Scroll */

html {
    scroll-behavior: smooth;
}


/* Swiper Düzenlemeleri */

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}


/* Animasyonlar */

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

.animate-fade-in {
    animation: fadeIn 0.3s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.3s ease-in-out;
}


/* Genel Stil Düzenlemeleri */

.rounded-button {
    border-radius: 0.5rem;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Grid/List View Butonları */

.grid-view-btn.active,
.list-view-btn.active {
    background-color: var(--accent);
    color: white;
}


/* Ürün Kartı Hover Efektleri */

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    padding-bottom: 100%;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}


/* Sepet Badge */

.sepet-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #2563eb;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


/* Form Elemanları */

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
    outline: none;
}


/* Responsive Düzenlemeler */

@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
}


/* Benzer Ürünler Carousel */

.benzer-slider {
    overflow: hidden;
    position: relative;
}

.benzer-slider .swiper-slide {
    height: auto;
}

.benzer-prev,
.benzer-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.benzer-prev:hover,
.benzer-next:hover {
    background: var(--accent);
    color: white;
}

.benzer-prev {
    left: 10px;
}

.benzer-next {
    right: 10px;
}


/* Blog Kartı */

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    padding-bottom: 60%;
}

.blog-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}


/* Butonlar */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 0.5rem;
}

.btn i {
    font-size: 1.25rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    filter: brightness(110%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    filter: brightness(110%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-accent:hover {
    filter: brightness(110%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-secondary {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


/* Kartlar */

.card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}


/* Kategori Kartı */

.category-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
}


/* Toast Mesajları */

.toast {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-success {
    border-left: 4px solid var(--primary);
}

.toast-error {
    border-left: 4px solid #ef4444;
}


/* Sepet Badge */

.cart-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Yeni Gradient Tanımlamaları */

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}


/* Hover Efektleri */

.hover-gradient:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.hover-shadow:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}


/* Footer */

.footer {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #92400e 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.15;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 2px;
    background: var(--white);
    opacity: 0.2;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(0.5rem);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.footer-cards {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
}

.footer-card-img {
    height: 2rem;
    transition: opacity 0.3s ease;
}

.footer-card-img:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-title {
        font-size: 1.125rem;
        /* Responsive font size adjustment */
    }
}


/* Back to Top Button */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0);
    z-index: 50;
}

.back-to-top.active {
    transform: scale(1);
}

.back-to-top:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}


/* Font Ayarları */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    line-height: 1.5;
}


/* Arama Sonuçları Dropdown */

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    z-index: 50;
    margin-top: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--light);
}

.search-result-image {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.search-result-info {
    flex: 1;
}

.search-result-title {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.search-result-price {
    color: var(--primary);
    font-weight: 600;
}

.search-no-results {
    padding: 2rem;
    text-align: center;
    color: var(--dark);
    opacity: 0.7;
}


/* Animasyonlar */

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

.animate-fade-in {
    animation: fadeIn 0.3s ease-out;
}


/* Diğer Sitelerimiz Dropdown */

.other-sites-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 18rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 50;
}

.other-sites-trigger:hover .other-sites-dropdown,
.other-sites-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.other-sites-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.other-sites-item:hover {
    background: var(--light);
}

.other-sites-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 0.75rem;
}

.other-sites-info h4 {
    font-weight: 500;
    color: var(--dark);
}

.other-sites-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
}


/* Kategori Listesi */

.category-item {
    position: relative;
}

.category-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background: transparent;
}

.category-button:hover {
    background: var(--light);
}

.category-button.active {
    background: var(--primary-light);
    color: white;
}

.category-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    margin-right: 0.75rem;
}

.category-arrow {
    transition: transform 0.3s ease;
}

.category-button[aria-expanded="true"] .category-arrow {
    transform: rotate(180deg);
}

.subcategories {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    display: none;
}

.subcategories.show {
    display: block;
}

.subcategory-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    color: var(--gray-600);
}

.subcategory-link:hover {
    background: var(--light);
    color: var(--primary);
}

.subcategory-link.active {
    background: var(--primary-light);
    color: white;
}