/* Fix for category images display */

/* Remove all overlays and transparent effects from category cards */
.category-card .category-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 140px;
}

.category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1 !important;
    filter: none !important;
    background: none !important;
}

/* Remove any overlay effects completely */
.category-card .category-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.category-card:hover .category-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Ensure images are visible on hover */
.category-card:hover .category-image img {
    opacity: 1 !important;
    filter: none !important;
    transform: scale(1.05);
}

/* Remove any background colors or gradients */
.category-card .category-image::before,
.category-card .category-image::after {
    display: none !important;
}

/* Make sure category cards show images clearly */
.category-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.category-card:hover {
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.2);
    transform: translateY(-5px);
}

/* Category content styling */
.category-content {
    padding: 15px;
    background: white;
}

.category-stats {
    margin-bottom: 15px;
    text-align: center;
}

.product-count {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    border: none;
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #DAA520, #B8860B);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}