.elementor-1765 .elementor-element.elementor-element-8fc12c9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:50px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-1765 .elementor-element.elementor-element-bbc4c06{text-align:center;}.elementor-1765 .elementor-element.elementor-element-bbc4c06 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:32px;font-weight:600;color:#0F172A;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6f4fc08 */.slider-wrapper {
  max-width: 1250px;
  margin: auto;
}

/* GRID LAYOUT */
.product-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
}

/* Card */
.product-card {
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  border-radius: 8px;
}

/* Image */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Title */
.product-card h3 {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Button */
.read-more {
  margin-top: auto;
  padding: 8px 18px;
  background: linear-gradient(135deg, #02559c, #0284c7);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.read-more:hover {
  opacity: 0.9;
}

/* Remove dots */
.dots {
  display: none;
}

/* Tablet */
@media (max-width: 992px) {
  .product-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .product-slider {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */