/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

.custom-product-grid 
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    border: 1px solid #eee;
    padding: 10px;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-title {
    font-size: 16px;
    margin: 10px 0;
}

.product-price {
    font-weight: bold;
}

.custom-pagination {
    margin-top: 30px;
    text-align: center;
}

.custom-pagination a,
.custom-pagination span {
    margin: 0 5px;
    padding: 8px 12px;
    border: 1px solid #ddd;
}

.custom-pagination .current {
    background: #333;
    color: #fff;
}

.search-bar{
	display:flex;
}

.search-bar button.search-bar-btn
{
    border-radius: 3px !important;
    padding: 0px 14px !important;
    border: 1px solid black !important;
}

@media (max-width: 1024px) {
    .custom-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) 
{
    .custom-product-grid 
	{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 425px) 
{
    .custom-product-grid 
	{
        grid-template-columns: repeat(2, 1fr);
		gap: 12px;
    }
	.product-price, .product-category, .product-brand {
		font-size: 14px;
	}
	.product-card .product-title
	{
		font-size: 16px;	
	}
}