.tab-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.tab-menu {
  background-color: white;
  border-radius: 999px;
  display: flex;
  gap: 0;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.tab-menu button {
  flex-grow: 1;
}
.tab {
  border: none;
  border-radius: 999px;
  padding: 12px 10px !important;
  font-size: 14px;
  background-color: transparent;
  color: #a0a4ae;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}

.tab.active {
  background-color: var(--point-color-primary);
  color: white;
  font-weight: bold;
}

.tab-content {
  margin-bottom: 20px;
  display: none;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-plan-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #7d8087;
  font-size: 14px;
  padding: 12px 8px;
}

.tab-plan-summary span {
  color: var(--point-color-primary);
  font-weight: bold;
}

.tab-plan-sort {
  font-size: 14px;

  cursor: pointer;
}

.tab-plan-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.tab-plan-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 18px;
  padding: 20px 18px;

  position: relative;
}

.plan-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
  margin-right: 16px;
}

.data-cap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  color: var(--point-color-primary);
  font-size: 12px;
  background: var(--point-color);
  padding: 4px 8px;
  border-radius: 16px;

  width: 50px;
  height: 50px;
}

.data-cap.7gb {
  color: var(--point-color);
}
.data-cap.15gb {
  color: var(--point-color);
}
.data-cap.70gb {
  color: var(--point-color);
}
.data-cap.free {
  color: var(--point-color);
}

.plan-info {
  flex: 1;
  position: relative;
}

.tab_badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.tab_badges_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.badge_option {
  font-size: 12px;
  height: 20px;
  line-height: 1.5;
  border-radius: 4px;
  padding: 1px 4px;
  color: #fff;
  text-align: center;
}

.badge_option.red {
  background: #fa5273;
}

.badge_option.gray {
  background: #9fa3af;
}

.after-price {
  color: #9fa3af;
  font-weight: 400;
  font-size: 14px;
  margin: 7px 0;
}

.main-price {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.main-price .original {
  text-decoration: line-through;
  color: #9fa3af;
  font-weight: 400;
  font-size: 14px;
  margin-left: 6px;
}

.desc {
  font-size: 12px;
  color: #9fa3af;
  margin: 9px 0 11px;
}

.features {
  max-width: 200px;
  font-size: 11px;
  color: #9fa3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plan-right {
  margin-left: 12px;
}

.like-btn {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: #ccc;
}

.tab-plan-card:hover {
  box-shadow: 0 0 0 2px var(--point-color-hover);
  border-radius: 18px;
}

.tab-right-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
