/* Theme: Pasta Kırmızı - Canlı ve Modern
 * Renk Paleti: Kırmızı-Turuncu Tonları (Red-Orange Theme)
 * Versiyon: 8.0 (Red-Orange Theme)
 */
:root {
    /* --- Ana Renk Paleti (Kırmızı-Turuncu Teması) --- */
    --card-header-bg-color: #E74C3C;
    --card-header-text-color: #fff;

    --primary-color: #E74C3C;       /* Canlı Kırmızı */
    --primary-light: #FF8A80;       /* Açık Kırmızı */
    --primary-hover: #C0392B;       /* Koyu Kırmızı Hover */
    
    --secondary-color: #FF5722;     /* Derin Turuncu */
    --secondary-hover: #E64A19;     /* Koyu Turuncu Hover */
    
    --accent-color: #FF9800;        /* Turuncu Vurgu */
    --accent-light: #FFE0B2;        /* Açık Turuncu */

    /* --- Arkaplan Renkleri --- */
    --bg-creamy: #FFF5F5;           /* Çok Açık Pembe Zemin */
    --body-bg: var(--bg-creamy);    
    --card-bg: #FFFFFF; 
    --footer-bg: #2C2C2C;           /* Koyu Gri */
    
    /* --- Metin Renkleri --- */
    --text-dark: #212121;           /* Koyu Siyah-Gri */
    --text-muted: #757575;          /* Orta Gri */
    
    /* --- Diğer --- */
    --border-radius: 1rem;          /* Modern Hafif Yuvarlak */
    --btn-radius: 8px;              /* Hafif Yuvarlak Butonlar */
    
    --shadow-soft: 0 4px 20px rgba(231, 76, 60, 0.1);
    --shadow-hover: 0 10px 30px rgba(231, 76, 60, 0.2);
    --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.05);
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 50%, #FFEBEE 100%);
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .price-tag, .btn {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

a { 
    text-decoration: none; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

/* ==================== ANIMATIONS ==================== */
@keyframes floatUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInLeft {
    0% { transform: translateX(-30px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(30px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(91, 155, 213, 0.4); }
    50% { box-shadow: 0 0 20px 10px rgba(91, 155, 213, 0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

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

.animate-up { 
    animation: floatUp 0.8s ease-out forwards; 
}

.animate-fade {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

.hover-lift:hover {
    transform: translateY(-8px);
}

/* ==================== PAGES SUBMENU ==================== */
.pages-submenu {
    background: white;
    border-bottom: 1px solid rgba(91, 155, 213, 0.15);
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(91, 155, 213, 0.08);
}

.pages-menu-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.pages-menu-item {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: white;
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(91, 155, 213, 0.2);
    box-shadow: 0 2px 8px rgba(91, 155, 213, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pages-menu-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 155, 213, 0.3);
}

.pages-menu-item i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.pages-menu-item:hover i {
    opacity: 1;
}

/* ==================== NAVBAR ==================== */
.navbar-sweet {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(91, 155, 213, 0.1);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(91, 155, 213, 0.08);
    transition: all 0.3s ease;
}

.navbar-sweet.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(91, 155, 213, 0.15);
}

.brand-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.9rem;
    background: linear-gradient(135deg, var(--primary-color), #7EB8DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(91, 155, 213, 0.2);
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    padding: 0.7rem 1.3rem !important;
    border-radius: var(--btn-radius);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(91, 155, 213, 0.08);
}

.nav-link:hover::before {
    width: 70%;
}

.badge-count {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 0.7rem;
    position: absolute; 
    top: -5px; 
    right: -5px;
    width: 22px; 
    height: 22px;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border: 2px solid white;
    animation: pulse-glow 2s infinite;
}

.navbar-toggler {
    border: 2px solid var(--primary-color) !important;
    border-radius: 12px;
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%235B9BD5' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==================== SEARCH FORM ==================== */
.search-form .input-group {
    background: white;
    border-radius: 50px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(91, 155, 213, 0.15);
    border: 2px solid rgba(91, 155, 213, 0.1);
    transition: all 0.3s ease;
}

.search-form .input-group:focus-within {
    box-shadow: 0 4px 25px rgba(91, 155, 213, 0.25);
    border-color: rgba(91, 155, 213, 0.3);
}

.search-form input {
    font-weight: 500;
    color: var(--text-dark);
}

.search-form input::placeholder {
    color: var(--text-muted);
}

.search-form button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white !important;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: scale(1.05);
}

/* ==================== MOBILE CATEGORY BUTTON ==================== */
.mobile-cat-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(91, 155, 213, 0.35);
    transition: all 0.3s ease;
}

.mobile-cat-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 12px 30px rgba(91, 155, 213, 0.45); 
}

.mobile-cat-btn i {
    transition: transform 0.3s ease;
}

.mobile-cat-btn[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}

/* ==================== SIDEBAR CATEGORIES (DESKTOP) ==================== */
.category-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(91, 155, 213, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    box-shadow: var(--shadow-hover);
}

.category-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: white;
    padding: 1.3rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.category-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate-slow 4s linear infinite;
}

.cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid rgba(91, 155, 213, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cat-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.cat-link:hover {
    background: rgba(91, 155, 213, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

.cat-link:hover::before {
    transform: scaleY(1);
}

.cat-link.active {
    background: linear-gradient(90deg, rgba(91, 155, 213, 0.1), transparent);
    color: var(--primary-color);
    font-weight: 700;
}

.cat-link.active::before {
    transform: scaleY(1);
}

/* ==================== PRODUCT CARDS ==================== */
.product-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

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

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

/* Resim Alanı */
.product-img-wrapper {
    background: white;
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--border-radius) - 4px) calc(var(--border-radius) - 4px) 0 0;
}

.product-img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.product-card:hover .product-img { 
    transform: scale(1.08) rotate(2deg); 
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.product-title:hover {
    color: var(--primary-color);
}

.price-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    font-weight: 800;
}

/* Sepet Butonu */
.btn-add-floating {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: white !important;
    width: 48px !important; 
    height: 48px !important;
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important;
    border-radius: 50% !important;
    border: 3px solid white !important;
    box-shadow: 0 6px 20px rgba(91, 155, 213, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 10;
}

.btn-add-floating:hover { 
    transform: scale(1.2) rotate(10deg) !important;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color)) !important;
    box-shadow: 0 10px 30px rgba(91, 155, 213, 0.5) !important;
}

/* Popüler Rozeti */
.badge-trend {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    z-index: 10;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(91, 155, 213, 0.3);
    animation: pulse-glow 2s infinite;
}

/* ==================== FILTER BAR ==================== */
.filter-bar {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(91, 155, 213, 0.08);
}

.filter-bar h4 {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sıralama Select */
.form-select {
    background-color: rgba(91, 155, 213, 0.08);
    border: 2px solid transparent;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(91, 155, 213, 0.15);
}

/* Ürün Kodu Input */
#hizliUrunKodu {
    font-weight: 600;
    color: var(--text-dark);
}

#hizliUrunKodu::placeholder {
    color: var(--text-muted);
}

/* ==================== BUTTONS ==================== */
.btn-sweet, .btn-theme, .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    color: white;
    border-radius: var(--btn-radius);
    padding: 14px 32px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(91, 155, 213, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-sweet::before, .btn-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-sweet:hover, .btn-theme:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(91, 155, 213, 0.45);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.btn-sweet:hover::before {
    left: 100%;
}

.btn-outline-sweet {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: var(--btn-radius);
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline-sweet:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 155, 213, 0.35);
}

/* ==================== PAGINATION ==================== */
.pagination {
    gap: 0.75rem;
}

.page-link {
    background: white;
    border: 2px solid rgba(91, 155, 213, 0.15) !important;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50% !important;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.page-link:hover {
    background: rgba(91, 155, 213, 0.1);
    border-color: var(--primary-color) !important;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    border-color: transparent !important;
    color: white;
    box-shadow: 0 6px 20px rgba(91, 155, 213, 0.4);
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 5rem;
    margin-top: 6rem;
    border-radius: 60px 60px 0 0;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 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='%235B9BD5' fill-opacity='0.03'%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.5;
}

footer h5, footer h6 { 
    color: white;
    font-weight: 700;
    position: relative;
}

footer h5::after, footer h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

footer a { 
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover { 
    color: var(--primary-color);
    padding-left: 8px;
}

footer .text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

footer .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.product-detail-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(91, 155, 213, 0.08);
}

.product-detail-image {
    background: white;
    border-radius: calc(var(--border-radius) - 4px);
}

.product-features {
    background: linear-gradient(135deg, rgba(91, 155, 213, 0.05), rgba(152, 216, 232, 0.05));
    border-radius: var(--border-radius);
    border: 1px solid rgba(91, 155, 213, 0.1);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(91, 155, 213, 0.08);
}

.breadcrumb-item a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==================== MODAL ==================== */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: calc(var(--border-radius) - 4px) calc(var(--border-radius) - 4px) 0 0;
    border: none;
}

.modal-header .modal-title {
    color: white;
    font-weight: 700;
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* ==================== ORDER TRACK PAGE ==================== */
.order-track-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(91, 155, 213, 0.08);
}

.order-status-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
}

/* ==================== UTILS ==================== */
.text-primary { 
    color: var(--primary-color) !important; 
}

.bg-primary { 
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important; 
}

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

/* Card Shine Effect */
.card-shine { 
    position: relative; 
    overflow: hidden; 
}

.card-shine::after {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: -100%; 
    width: 50%; 
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); 
    transition: left 0.7s ease;
}

.card-shine:hover::after { 
    left: 150%; 
}

/* Alert Styling */
.alert {
    border-radius: var(--border-radius);
    border: none;
}

.alert-light {
    background: rgba(91, 155, 213, 0.08);
    color: var(--text-dark);
}

/* Son Gezilen Ürünler */
.recently-viewed {
    background: linear-gradient(135deg, rgba(91, 155, 213, 0.05), rgba(152, 216, 232, 0.05));
    border-radius: var(--border-radius);
    border: 1px solid rgba(91, 155, 213, 0.08);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        border-radius: var(--border-radius);
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-soft);
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    footer {
        border-radius: 40px 40px 0 0;
    }
}

@media (max-width: 576px) {
    .btn-sweet, .btn-outline-sweet {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: rgba(91, 155, 213, 0.3);
    color: var(--text-dark);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
}