.products-landing-wrapper {
    padding: 40px 0px;
    max-width:1200px;
    margin:auto;
}

/* .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
     border: 1px solid #ddd; 
    border-radius: 10px;
    overflow: hidden;
/*     background: #fff; 
    transition: 0.3s ease;
    text-decoration: none;
}
 */


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

.product-info {
    margin-top:30px;

	text-align:left;
}
a.custom-title {
    position: absolute;
    /* width: 100%; */
    background: rgba(35, 32, 32, 0.8);
    color: #fff;
    padding: 19px 16px 13px;
    transition: all ease 0.5s;
    width: 35.5%;
    bottom: -92.5%;
}
.product-info h5 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #0073aa !important;
	font-weight:500;
}

.product-info p {
    color:#25343C;
}

a.pro-title:visited
{
	color:#fff;
}
a.pro-title
{
	color:#fff;
}
/* .linkOverlayBoxContent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6); 
    color: #fff; 
    padding: 10px;
    font-size: 18px;
    text-align:left;
   
    transition: opacity 0.3s ease;
    pointer-events: none; 
}
.linkOverlayBoxContent .product-title::before {
    content: "→";
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.product-item:hover .linkOverlayBoxContent {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(0);
    opacity: 1;
}

.product-item:hover .linkOverlayBoxContent .product-title::before {
    opacity: 1;
    transform: translateX(0);
}

.product-item:hover .product-image img {
    transform: scale(1.05);
} */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    position: relative;
    overflow: hidden;
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    display: block;
}

.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);
}

/* 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;
}
/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .products-grid {
        gap: 15px;
    }
}

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

@media (max-width: 480px) {
    .products-grid{
        grid-template-columns: 1fr;
				padding:20px 15px;

    }
    .product-info {
        padding: 10px;
    }
    .product-info h3 {
        font-size: 15px;
    }
    .product-info p {
        font-size: 13px;
    }
}
/*a.linkOverlayBoxContent:before:hover {*/
/*    content: url('https://wmiserver.com/illusionflyscreens/wp-content/uploads/2025/08/home-service-link-arrow.png');*/
/*    padding-right: 8px;*/
/*}*/