.elementor-24462 .elementor-element.elementor-element-b74431f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-bddd844 *//* ====== MAIN WRAPPER ====== */
.pricing-section {
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #222;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ====== TAB BUTTONS ====== */
.pricing-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.tab-btn {
  padding: 10px 25px;
  border: 1px solid transparent;
  background: #8b5cf6;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  text-transform: capitalize;
}

.tab-btn.active {
  background: #7e22ce;
  border-color: #7e22ce;
}

.tab-btn:hover {
  background: #6d28d9;
}

/* ====== HIDE INACTIVE TABS ====== */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ====== CARD CONTAINER ====== */
.pricing-cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-behavior: smooth;
}

/* ====== INDIVIDUAL CARD ====== */
.price-card {
  flex: 0 0 310px;
  background: #fff;
  border: 1px solid #e5e5e5;
  text-align: center;
  padding: 25px 20px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 0; /* sharp edges */
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ====== HEADER & ICON ====== */
.card-header .icon {
  font-size: 30px;
  color: #8b5cf6;
  margin-bottom: 8px;
}

.price-card h3 {
  color: #000;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
}

.subtitle {
  color: #555;
  font-style: italic;
  font-size: 13px;
  margin-bottom: 10px;
}

/* ====== FEATURES ====== */
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  max-height: 150px;
  overflow-y: auto;
  border: none;
}

.price-card ul li {
  border-bottom: 1px solid #eaeaea;
  padding: 8px 5px;
  color: #444;
}

.price-card ul::-webkit-scrollbar {
  width: 5px;
}

.price-card ul::-webkit-scrollbar-thumb {
  background-color: #8b5cf6;
  border-radius: 10px;
}

/* ====== PRICE SECTION ====== */
.price {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  margin: 15px 0 5px;
}

.price .old {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-left: 5px;
  font-weight: 500;
}

.price .off {
  color: #16a34a;
  font-size: 14px;
  font-weight: 600;
  margin-left: 5px;
}

/* ====== LINKS BELOW PRICE ====== */
.price-card a {
  color: #7e22ce;
  font-weight: 500;
  text-decoration: underline;
  display: block;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.price-card a:hover {
  color: #6d28d9;
}

/* ====== ORDER BUTTON ====== */
.order-btn {
  background: #ef4444;
  color: #fff;
  padding: 12px 25px;
  border: none;
  font-weight: 700;
  border-radius: 0;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  transition: 0.3s;
}

.order-btn:hover {
  background: #dc2626;
}

/* ====== NOTE ====== */
.note {
  font-size: 12px;
  color: #777;
  font-style: italic;
}

/* ====== BADGE (BEST SELLER) ====== */
.best-seller {
  border: 1.5px solid #ef4444;
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0;
  text-transform: uppercase;
}

/* Force white text color on ORDER NOW button */
.order-btn,
.order-btn:visited,
.order-btn:focus,
.order-btn:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

.order-btn:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: row;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .price-card {
    flex: 0 0 85%;
  }

  .price-card h3 {
    font-size: 18px;
  }
}/* End custom CSS */