.elementor-17295 .elementor-element.elementor-element-0710849{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-0710849 */.product-showcase {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid #e5e7eb;
}

.product-card:last-child {
  border-bottom: 0;
}

.product-card--reverse .product-image {
  order: 2;
}

.product-card--reverse .product-content {
  order: 1;
}

.product-image {
  display: block;
}

.product-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-image:hover img {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.22);
}

.product-content h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

.product-subtitle {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.5;
  color: #334155;
  font-weight: 600;
}

.product-content p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.product-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-content li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

.product-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0073aa;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.product-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-icons img {
  width: 50px;
  height: 25px;
  object-fit: contain;
}

.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 6px;
  background: #0073aa;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-button:hover {
  background: #005f8c;
  transform: translateY(-2px);
}

@media (max-width: 800px) {
  .product-showcase {
    padding: 24px 16px;
  }

  .product-card,
  .product-card--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }

  .product-card--reverse .product-image,
  .product-card--reverse .product-content {
    order: initial;
  }

  .product-content h2 {
    font-size: 24px;
  }

  .product-subtitle {
    font-size: 17px;
  }

  .product-actions {
    align-items: flex-start;
  }

  .product-button {
    width: 100%;
  }
}/* End custom CSS */