/* Start custom CSS for html, class: .elementor-element-305046b */.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  background: #f3f4f6;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 6px;
}

.product-card h3 {
  font-size: 20px;
  color: #1E3A8A;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

.btn-product {
  background-color: #F97316;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-product:hover {
  background-color: #ea620e;
}

/* CTA Button Reuse */
.cta-button {
  background: white;
  color: #F97316;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.cta-button:hover {
  background: #fff0e4;
}/* End custom CSS */