    /* product grid */



.products-grids {
    display: grid;
  grid-template-columns: auto auto auto;
    gap: 20px;
    margin: 20px 0;
}
.product-card {
    position: relative;
    overflow: hidden;
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    display: block;
}
.product-info
{
	text-align:left;
}
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.7); /* default overlay color */
    color: #fff;
    padding: 10px 15px;
  font-size:18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.product-overlay .overlay-icon {
    opacity: 0; /* hidden by default */
    margin-right: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-5px);
}
a.pro-title:visited
{
	color:#fff;
}

a.pro-title
{
	color:#fff;
}
/* Hover Effects */
.product-card:hover .product-image .product-overlay  {
    background: rgba(0, 0, 0, 0.85);
	color:#fff;
	font-size:18px;
}

 .product-image:hover .overlay-icon {
    opacity: 1;
    transform: translateX(0);
	 color:#fff;
	 font-size:18px;
}
.product-image img {
    max-width: 100%;
    height: auto;
}
.product-title {
    font-size: 18px;
    margin: 10px 0;
}
.product-excerpt {
    font-size: 14px;
    color: #666;
}
/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .products-grids {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .products-grids {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    .product-info h3 {
        font-size: 22pxpx;
    }
}

@media (max-width: 480px) {
    .products-grids {
        grid-template-columns: 1fr;
		padding:20px 8px;
    }
    .product-info {
/*         padding: 10px; */
    }
    .product-info h3 {
        font-size: 22pxpx;
    }
    .product-info p {
        font-size: 17px;
    }
}


/* doors css */	
.doors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 20px;
}

.post-grid {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.post-grid:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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