
.ecommerce-product-list .product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border: 1px solid #f0f0f0;
}

.ecommerce-product-list .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-list .product-card .img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ecommerce-product-list .product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecommerce-product-list .product-card .content {
  padding: 20px;
  text-align: center;
}

.ecommerce-product-list .product-card .content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.ecommerce-product-list .product-card .content h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.ecommerce-product-list .product-card .content h3 a:hover {
  color: var(--primary-color, #1e4356);
}


.ecommerce-product-list .btn-primary {
  background-color: #1e4356; 
  border-color: #1e4356;     
  color: #ffffff;            
  padding: 10px 30px;        
  font-weight: 600;          
  border-radius: 50px;       
  transition: all 0.3s ease; 
}


.ecommerce-product-list .btn-primary:hover,
.ecommerce-product-list .btn-primary:focus {
  background-color: #152f3e; 
  border-color: #152f3e;     
  color: #ffffff;            
  box-shadow: 0 4px 15px rgba(30, 67, 86, 0.25);
  transform: translateY(-2px);
}