/* Products Page Custom Styles (assets/css/urunler.css) */

/* Specific sidebar hover styling */
aside ul li a {
    position: relative;
}

aside ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--heritage-gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.2s ease-in-out;
}

aside ul li a:hover::after {
    transform: scaleY(1);
}

/* Custom selection styling */
select {
    background-image: none; /* custom arrow handles this */
}
