.elementor-2983 .elementor-element.elementor-element-83a5c05{--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;}.elementor-2983 .elementor-element.elementor-element-2b64a02{--display:flex;}.elementor-2983 .elementor-element.elementor-element-d7ad09f{margin:100px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}body.elementor-page-2983:not(.elementor-motion-effects-element-type-background), body.elementor-page-2983 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-d7ad09f */body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f8f9fa;
  color: #222;
}

.page-title {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 32px;
  font-weight: 600;
  color: #002b64;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 30px;
  justify-content: center;
  padding: 0 50px 80px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  max-width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

.product-title {
  margin: 20px 0 15px;
  font-size: 20px;
  font-weight: 600;
}

.product-btn {
  display: inline-block;
  background: #d91b2a;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.product-btn:hover {
  background: #b01521;
}

@media (max-width: 600px) {
  .product-image {
    height: 350px;
  }
  .product-title {
    font-size: 18px;
  }
}/* End custom CSS */