* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", Arial, sans-serif !important;
  background-color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.custom-products-section-2025 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px;
  max-width: 1300px;
  margin: auto;
}

.custom-product-item-2025 {
  text-align: center;
  transition: box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 10px;
  height: 420px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom-product-item-2025:hover {
  color: rgb(46 66 119);
}

.custom-product-item-2025:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.custom-product-image-2025 {
  width: 100%;
  height: 340px;
  object-fit: contain;
  transition: transform 0.5s ease;
  cursor: pointer;
  display: block;
}

.custom-product-name-2025 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
}
/* .custom-product-name-2025:hover {
        color: cornflowerblue;
      } */

@media (max-width: 768px) {
  .custom-products-section-2025 {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px;
  }
}
