/* @media only screen and (min-width: 992px) {
    .hero-logo[style] {
        width: 30rem !important;
        height: 20rem !important;
    } 
} */

@media only screen and (min-width: 576px) {
    .hero-logo[style] {
        width: 30rem !important;
        height: 30rem !important;
    }
}

@media only screen and (max-width: 576px) {
    .hero-logo[style] {
        width: 15rem !important;
        height: 15rem !important;
    }
}

.color-green {
    color: #60ad5e;
}

.bg-green {
    background-color: #60ad5e;
}

.btn-green {
    background-color: #60ad5e;
}

.btn-green:hover {
    background-color: #005005;
}

.link-alt-green {
    color: white;
}

.link-alt-green:hover {
    color: #60ad5e;
}

.link-green {
    color: #60ad5e;
}

.link-green:hover {
    color: #005005;
}

.nav-link:hover {
    color: #60ad5e !important;
}

.link-alt2-green {
    color: black;
}

.link-alt2-green:hover {
    color: #60ad5e;
}

#compro {
    border: none;
    background-color: #005005;
    color: white;
    padding: 5px;
    margin-top: 10px;
    border-radius: 5px;
}

#compro a {
    color: white;
}

/* Search Bar Styles */
#product_search {
    border-radius: 25px 0 0 25px;
    border: 2px solid #60ad5e;
}

#product_search:focus {
    border-color: #005005;
    box-shadow: 0 0 0 0.2rem rgba(96, 173, 94, 0.25);
}

#search_button {
    border-radius: 0;
    border: 2px solid #60ad5e;
    border-left: none;
}

#clear_search {
    border-radius: 0 25px 25px 0;
    border: 2px solid #ddd;
    border-left: none;
}

#clear_search:hover {
    background-color: #f8f9fa;
    border-color: #60ad5e;
}

/* Pagination Styles */
.pagination {
    margin-top: 20px;
}

.pagination .page-link {
    color: #60ad5e;
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin: 0 3px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: #60ad5e;
    color: white;
    border-color: #60ad5e;
}

.pagination .page-item.active .page-link {
    background-color: #60ad5e;
    border-color: #60ad5e;
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #ddd;
}

/* Product Card Improvements */
[data-product-item] {
    transition: transform 0.3s ease;
}

[data-product-item]:hover {
    transform: translateY(-5px);
}

[data-product-item] img {
    transition: transform 0.3s ease;
}

[data-product-item]:hover img {
    transform: scale(1.05);
}

/* Result Info */
#result_info {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

/* Loading Spinner */
#icon-loading {
    animation: spin 1s linear infinite;
}

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

/* Responsive Search Bar */
@media (max-width: 768px) {
    #product_search {
        font-size: 14px;
        height: 45px !important;
    }
    
    #search_button,
    #clear_search {
        height: 45px !important;
        padding: 0 15px;
    }
    
    .pagination .page-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}