/* Arşiv, kategori ve sayfa linkleri */
.widget_archive li a, 
.widget_categories li.cat-item a, 
.widget_pages li a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover efekti: renk değişimi ve hafif alt çizgi */
.widget_archive li a:hover, 
.widget_categories li.cat-item a:hover, 
.widget_pages li a:hover {
    color: #0073aa; /* WordPress mavisi */
    text-decoration: underline;
}

/* Ürün yan menüsündeki başlık linkleri */
.product-sidebar .single-post .content h5 a {
    color: #000;
    font-weight: 300;
    transition: color 0.3s ease;
}

/* Hover efekti: başlık linkleri mavileşsin */
.product-sidebar .single-post .content h5 a:hover {
    color: #0073aa;
}

/* Kategori widget'ı kutu tasarımı */
.widget_categories {
    background-color: #f3f6f8;
    border: 10px solid #f3f6f8;
    border-radius: 8px;
    padding: 10px;
    transition: box-shadow 0.3s ease;
}

/* Hover efekti: hafif gölge */
.widget_categories:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}