/*
|---------------------------------------------------------------
| qinc2026-futureshop-plan-price.css
|---------------------------------------------------------------
*/

.futureshop-plan-price {
  background: #f8f3eb;
  padding: clamp(64px, 8vw, 120px) 0;
}

.futureshop-plan-price__divider {
  margin: 0 0 clamp(40px, 5vw, 56px);
  text-align: center;
}

.futureshop-plan-price__divider-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #180241;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 700;
  color: #180241;
}

.futureshop-plan-price__divider-logo {
  display: inline-block;
  height: 32px;
  width: auto;
  vertical-align: middle;
}

.futureshop-plan-price__columns {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.futureshop-plan-price__col {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  border: 5px solid #180241;
  border-radius: 16px;
  padding: 28px 20px;
  box-sizing: border-box;
}

.futureshop-plan-price__col--dark {
  background: #180241;
  color: #ffffff;
}

.futureshop-plan-price__col--light {
  background: #ffffff;
  color: #343434;
}

.futureshop-plan-price__col-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
}

.futureshop-plan-price__col--dark .futureshop-plan-price__col-title {
  color: #ffffff;
}

.futureshop-plan-price__prices {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.futureshop-plan-price__price {
  flex: 1;
  position: relative;
  border-radius: 12px;
  padding: 28px 20px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.futureshop-plan-price__col--dark .futureshop-plan-price__price {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #343434;
}

.futureshop-plan-price__col--light .futureshop-plan-price__price {
  background: #e6e6eb;
  border: 1px solid #e6e6eb;
}

.futureshop-plan-price__num {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11%;
  min-width: 24px;
  aspect-ratio: 1 / 1;
  padding: 0 8px;
  background: #180241;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px 0 8px 0;
}

.futureshop-plan-price__price-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #180241;
  text-align: center;
}

.futureshop-plan-price__price-title img {
  display: inline-block;
  max-width: 100%;
  height: 2.2em;
}

@media screen and (max-width:1024px) {
  .futureshop-plan-price__price-title img {
    height: 1.7em;
  }

}

.futureshop-plan-price__amount {
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  color: #180241;
}

.futureshop-plan-price__amount-num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}

.futureshop-plan-price__amount-unit {
  font-size: 14px;
  font-weight: 700;
}

.futureshop-plan-price__price-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.futureshop-plan-price__price-strong {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.futureshop-plan-price__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}

.futureshop-plan-price__plus-icon {
  position: relative;
  width: 28px;
  height: 28px;
}

.futureshop-plan-price__plus-icon::before,
.futureshop-plan-price__plus-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #180241;
  transform: translate(-50%, -50%);
}

.futureshop-plan-price__plus-icon::before {
  width: 28px;
  height: 4px;
}

.futureshop-plan-price__plus-icon::after {
  width: 4px;
  height: 28px;
}

.futureshop-plan-price__price-html {
  margin-bottom: 16px;
}

.futureshop-plan-price__price-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media screen and (max-width:1024px) {
  .futureshop-plan-price__price-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.futureshop-plan-price__price-cell {
  background-color: #fff;
  padding: 16px;
  border-radius: 10px;
}

.futureshop-plan-price__price-cell.cell-heading {
  grid-column: 1 / -1;
  background-color: var(--fs-navy);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.futureshop-plan-price__price-cell.cell-plan__heading {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--fs-navy);
  padding: 0 0 8px;
}

.futureshop-plan-price__price-cell.cell-plan__desc {
  font-size: 14px;
  padding: 0;
}


@media (max-width: 1024px) {
  .futureshop-plan-price__columns {
    flex-direction: column;
  }

  .futureshop-plan-price__plus {
    flex: 0 0 auto;
    padding: 8px 0;
  }

  .futureshop-plan-price__amount-num {
    font-size: clamp(24px, 7vw, 34px);
  }
}