/* ===== BANG GIA (PRICING TABLE - SLIDER VERSION) ===== */
.bang-gia {
  padding: 40px 0 60px;

}

.bang-gia__block {
  background: #f7aa1814;
  border-radius: 28px;
  padding: 32px 32px 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}
.bang-gia__block:not(:last-child) {
  margin-bottom: 32px;
}
.bang-gia__title {
  font-size: 22px;
  font-weight: 500;
  color: #0f172a;
  background: #fff;
  padding: 10px 16px;
  border-radius: 16px;
  margin: 0 0 32px;
}

.bang-gia__flex {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.bang-gia-labels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: end;
  padding-bottom: 50px;
}

.bang-gia-label {
  background: #ffffff;
  color: #0f172a;
  font-size: 15px;
  font-weight: 500;
  border-radius: 16px;
  padding: 10px 18px;
  box-shadow: 0 1px 2px 0 #0000000d;
  white-space: nowrap;
}

.bang-gia-label:nth-child(2n) {
  background: #ffaa17;
}

.js-slider-bang-gia {
  /* slick will override display to block; we keep spacing via padding */
  padding-bottom: 16px;
}

.js-slider-bang-gia__slide {
  padding: 8px;
}

.bang-gia .slick-dots {
  bottom: -10px;
}

.bang-gia .slick-dots li button:before {
  font-size: 10px;
  color: #1d4ed8;
}

.bang-gia .slick-dots li.slick-active button:before {
  color: #111827;
}

/* Card base */
.bang-card {
  position: relative;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
}



.bang-card--vip .bang-card__multiplier {
  background: #2f54eb;
}

.bang-card--vip .bang-card__header {
  background: #f0f5ff;
  color: #2f54eb;
}

.bang-card--premium .bang-card__multiplier {
  background: #fa541c;
}

.bang-card--premium .bang-card__header {
  background: #ffd8bf;
  color: #fa541c;
}
.bang-card--premium .bang-card__badge{
  background: #fa541c;
}
.bang-card--premium .bang-card__badge:before{
  background: #fa541c;
}
.bang-card__header-mh {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 255px;
}

.bang-card__header {
  padding: 70px 32px 16px;
  text-align: center;
  background: #f5f5f5;
  border-radius: 32px 32px 0 0;
  position: relative;
}

.bang-card__badge {
  border-radius: 8px;
  border-bottom-left-radius: 0;
  font-size: 12px;
  position: absolute;
  z-index: 2;
  left: -8px;
  top: 27px;
  padding: 6px 16px;
  background: rgb(250, 173, 20);
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.bang-card__badge:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 8px;
  height: 5px;
  background: #FF9800;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.bang-card__title {
  font-size: 22px;
  font-weight: 700;
}

.bang-card__price {
  font-size: 18px;
  font-weight: 600;
}

.bang-card__multiplier {
  margin-top: 16px;
  /* display: inline-flex; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 16px;
  background: #2250ff;
  color: #fff;
  gap: 4px;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
}

.bang-card__multiplier-value {
  font-size: 22px;
  font-weight: 700;
  display: block;
}

.bang-card__multiplier-note {
  font-size: 12px;
  /* opacity: 0.9; */
}

.bang-card__body {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  border-radius: 0 0 32px 32px;
}

.bang-card__preview {
  margin: 12px 0 8px;
}

.bang-card__preview-image {
  width: 100%;
  /* border-radius: 18px; */
  /* overflow: hidden; */
  /* background: #dbe4ff; */
}

.bang-card__preview-image img {
  display: block;
  width: 100%;
  height: auto;
}

.bang-card__footer {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.bang-card__btn {
  flex: 1;
  border-radius: 8px;
  border: none;
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bang-card__btn--primary {
  background: #f4541d;
  color: #fff;
}

.bang-card__btn--primary:hover {
  background: #020617;
}

.bang-card__btn--secondary {
  background: var(--bg-linear);
  color: white;
}

.bang-card__btn--secondary:hover {
  background: #d0ddff;
}

.bang-card__info {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bang-card__info-item {border-radius: 16px;padding: 10px 18px;color: #111827;font-size: 15px;font-weight: 500;}

.bang-card__info-item:nth-child(2n) {
  background: #ffaa17;
  box-shadow: 0 1px 2px 0 #0000000d;
}

@media (max-width: 1023px) {
  .bang-gia__block {
      padding: 24px 16px 32px;
      border-radius: 20px;
  }

  .bang-gia__flex {
      flex-direction: column;
  }

  .bang-gia-labels {
      display: none;
  }

  .js-slider-bang-gia__slide {
      padding: 8px 4px 24px;
  }

  .bang-card {
      min-height: 0;
  }

  .bang-card__body {
      padding: 0 20px 24px;
  }
}

/* ===== COMBO CARD ===== */
.combo-slider {

}

.combo-slider__item {

}

.combo-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.combo-card__header {
  background: var(--bg-linear);
  padding: 18px 32px;
  text-align: center;
}

.combo-card__header-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.combo-card__body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.combo-card__quantity {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
}

.combo-card__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.combo-card__original-price {
  font-size: 14px;
  color: #64748b;
  text-align: center;
}

.combo-card__original-price-value {
  text-decoration: line-through;
}

.combo-card__new-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-1);
  text-align: center;
}

.combo-card__savings {
  background: #dbeafe;
  color: #1e40af;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.combo-card__btn {
  width: 100%;
  background: var(--bg-linear);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 21px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: auto;
  transition: all 0.2s ease;
}

.combo-card__btn:hover {
  background: #1e3a8a;
}

@media (max-width: 1023px) {
  .combo-slider {
    flex-direction: column;
  }

  .combo-slider__item {
    min-width: 100%;
  }

  .combo-card__body {
    padding: 24px;
  }

  .combo-card__new-price {
    font-size: 32px;
  }
}

/* ===== FAQ SECTION ===== */
.sec-faq {
  padding: 60px 0;
  background: #fff;
}

.sec-faq__title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 40px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-list__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-list__item.is-open {
  border-color: #3b82f6;
}

.faq-list__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 22px;
  font-weight: 700;
  /* color: #ffaa17; */
  margin: 0;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-list__title:hover {
  background: #f8fafc;
}

.faq-list__icon {
  font-size: 28px;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.faq-list__item:not(.is-open) .faq-list__icon {
  transform: rotate(0deg);
}

.faq-list__item.is-open .faq-list__icon {
  transform: rotate(225deg);
}

.faq-list__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-list__item.is-open .faq-list__content {
  max-height: 5000px;
}

.faq-list__questions {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-question {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.faq-question__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}





.faq-question__btn-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-1);
  flex: 1;
}

.faq-question__btn-icon {
  font-size: 24px;
  color: #64748b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question__btn.is-open .faq-question__btn-icon {
  transform: rotate(45deg);
  color: var(--color-1);
}

.faq-question__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-question__btn.is-open + .faq-question__answer {
  max-height: 500px;
}

.faq-question__answer-content {
  padding: 0 20px 20px;
}

.faq-question__answer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

@media (max-width: 767px) {
  .sec-faq {
    padding: 40px 0;
  }

  .sec-faq__title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .faq-list__title {
    font-size: 18px;
    padding: 16px 20px;
  }

  .faq-list__questions {
    padding: 0 20px 20px;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-question__text {
    font-size: 15px;
  }
}

/*# sourceMappingURL=maps/bang-gia.css.map */
