/* Universal Product Category Cards - Full Image Visibility */
.addons-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid #009fe3;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addons-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.addons-card:hover .addons-image {
    transform: scale(1.02);
}
