/* =========================================
   PRODUCTS SECTION
========================================= */

.products-section {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  position: relative;
}

.section-header {
  max-width: 760px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 26px;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.featured-product {
  border: 2px solid #2563eb;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.14);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #2563eb);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.product-top h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  padding-right: 90px;
}

.product-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 600;
}

.product-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-price-box {
  padding: 18px;
  border-radius: 14px;
  background: #f8fafc;
  margin-bottom: 20px;
}

.product-price-box h4 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

.product-price-box h4 span {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.product-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #334155;
  font-size: 14px;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 700;
}

.product-btn {
  width: 100%;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
}

.addon-card .product-price-box {
  background: #f0fdf4;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 30px;
  }

  .product-top h3 {
    padding-right: 0;
  }
}