p a:hover {
    color: #27ae60!important;
}

/* Product List Enhancements */
.hero__categories {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.hero__categories ul {
    max-height: 400px;
    overflow-y: auto;
}

.hero__categories ul::-webkit-scrollbar {
    width: 6px;
}

.hero__categories ul::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.hero__categories ul::-webkit-scrollbar-thumb {
    background: #7fad39;
    border-radius: 3px;
}

.sidebar__item {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.filter__item {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product__item {
    transition: all 0.3s ease;
}

.product__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product__item__pic {
    border-radius: 4px 4px 0 0;
}

/* Loading Spinner */
.spinner-border {
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

/* Responsive improvements */
@media (max-width: 991px) {
    .filter__option {
        margin-top: 15px;
    }
    
    .hero__categories {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .filter__found h6 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .filter__option select {
        width: 100%;
    }
}
  