/**
 * Citysystems Products Public Styles
 */

.citysystems-products-grid {
    margin: 20px 0;
}

.citysystems-product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.citysystems-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.citysystems-product-card img {
    transition: transform 0.3s ease;
}

.citysystems-product-card:hover img {
    transform: scale(1.05);
}

.citysystems-contact-btn {
    transition: background 0.3s ease;
}

.citysystems-contact-btn:hover {
    background: #45a049 !important;
}

.citysystems-categories {
    margin: 20px 0;
}

.citysystems-category-item {
    transition: all 0.3s ease;
}

.citysystems-category-item:hover {
    background: #e0e0e0 !important;
    transform: translateY(-2px);
}

.citysystems-single-product {
    padding: 20px;
}

@media (max-width: 768px) {
    .citysystems-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .citysystems-single-product > div {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .citysystems-products-grid {
        grid-template-columns: 1fr !important;
    }
}
