/**
 * Product Icons Styles
 */

.product-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 8px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

/* Ensure icons are positioned above the title */
.products .product header span {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 6px;
    }
    
    .products .product header span {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .product-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 4px;
    }
    
    .products .product header span {
        font-size: 0.8em;
        line-height: 1.2;
    }
} 