/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

.custom-near-add-to-cart {
    font-size: 16px;
    color: #ff0000; /* Change text color */
    font-weight: bold;
    margin-top: 5px; /* Adjust margin if needed */
}





.product-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.category-item img {
    transition: transform 0.3s ease;
}

.category-item img:hover {
    transform: scale(1.05);
}






.product-categories-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item {
    padding: 10px; /* Add spacing inside each item */
}

.product-categories-carousel .slick-slide {
    margin: 0 10px; /* Add spacing between carousel items */
}

.category-item img {
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.category-item img:hover {
    transform: scale(1.05); /* Add hover effect for better visuals */
}

/* Optional: Adjust margins for mobile responsiveness */
@media (max-width: 768px) {
    .product-categories-carousel .slick-slide {
        margin: 0 5px;
    }
}
