.elementor-10 .elementor-element.elementor-element-fb89a87{margin-top:5px;margin-bottom:5px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-10 .elementor-element.elementor-element-e9b65ce{text-align:center;}.elementor-10 .elementor-element.elementor-element-e9b65ce .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:20px;font-weight:500;color:#B0354D;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-1bdb8b3 *//* Overall container styling */
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

/* Individual product card styling */
.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Product image styling */
.product-image {
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product details section */
.product-details {
  padding: 15px;
  background-color: #fff;
}

.product-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 12px;
  height: 48px;
  overflow: hidden;
  color: #222;
  line-height: 1.3;
}

/* Price container styling */
.price-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.sale-price {
  font-size: 20px;
  font-weight: 700;
  color: #d32f2f;
  margin-right: 10px;
}

.original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-right: 10px;
}

.discount-badge {
  background-color: #388e3c;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

/* Button styling */
.buy-btn {
  width: 100%;
  padding: 12px 0;
  background-color: #1565c0;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.buy-btn:hover {
  background-color: #0d47a1;
}

/* Mobile app banner styling */
.mobile-app-banner {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.mobile-app-banner a {
  color: #1565c0;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

.mobile-app-banner a:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
  .product-card {
    width: 100%;
    max-width: 340px;
  }
}/* End custom CSS */