:root {
  --pv2-accent: #2563eb;
  --pv2-border: #e5e7eb;
  --pv2-text: #0f172a;
  --pv2-muted: #64748b;
  --pv2-shadow: 0 14px 30px rgba(15, 23, 42, .06);
}

.p-wrapper--v2 {
  justify-content: center;
}

.pv2-trail {
  color: var(--pv2-accent);
  font-weight: 800;
}

body.product-v2-page {
  --pv2-shell-pad: clamp(16px, 4vw, 6px);
  --pv2-layout-max: 1440px;
  --pv2-aside-width: 370px;
  --pv2-layout-inner: calc(100vw - 2 * var(--pv2-shell-pad));
  --pv2-layout-width: min(var(--pv2-layout-max), var(--pv2-layout-inner));
  --pv2-layout-left: calc((var(--pv2-layout-inner) - var(--pv2-layout-width)) / 2 + var(--pv2-shell-pad));
  --pv2-sku-card-min-height: 560px;
  --pv2-steps-top: calc(var(--site-topbar-offset, 72px) + 24px);
}

body.product-v2-page #top .content {
  padding: 10px;
  max-width: 100%;
}

body.product-v2-page .Wrapper .content {
  max-width: 100%;
  padding: 0px;
}

body.product-v2-page .Wrapper {
  padding-top: var(--site-topbar-offset, 72px);
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.pv2-layout {
  width: 100%;
  max-width: 100%;
  margin: 0px auto;
  display: block;
  box-sizing: border-box;
}

.pv2-shell {
  width: 100%;
  box-sizing: border-box;
  padding: 0px 20px;
  display: flex;
  justify-content: center;
}

.pv2-main-column {
  width: 100%;
  min-width: 0px;
  display: flex;
  justify-content: center;
  padding-right: var(--pv2-aside-width);
  box-sizing: border-box;
  font-family: system-ui;
}

.pv2-steps {
  position: fixed;
  right: 0px;
  top: var(--site-topbar-offset, 72px);
  bottom: 0px;
  height: calc(100vh - var(--site-topbar-offset, 72px));
  width: var(--pv2-aside-width);
  background: rgb(255, 255, 255);
  box-sizing: border-box;
  z-index: 9998;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgb(153, 153, 153);
  font-family: system-ui;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.pv2-steps__inner {
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
}

.pv2-side__menu {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pv2-side__item:last-child {
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  padding-bottom: 0px;
}

.pv2-side__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pv2-side__title {
  font-size: 22px;
  color: rgb(17, 24, 39);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pv2-side__desc {
  font-size: 12px;
  color: rgb(107, 114, 128);
  font-weight: 400;
}

.pv2-side__link {
  display: block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  padding: 8px 10px;
  border-radius: 12px;
}

.pv2-steps .pv2-actionbar--sidebar {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pv2-steps .pv2-actionbar--sidebar .pv2-notice-trigger {
  width: 100%;
  padding: 10px;
  border: 1px dashed rgba(148, 163, 184, 0.65);
  background: rgba(255, 255, 255, 0.7);
  color: rgb(15, 23, 42);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.pv2-steps .pv2-actionbar--sidebar .pv2-notice-trigger:hover {
  background: rgba(255, 255, 255, 0.9);
}

.pv2-steps .pv2-actionbar--sidebar .pv2-buy-btn {
  width: 100%;
  height: 48px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pv2-steps .pv2-actionbar--sidebar .pv2-buy-btn:hover {
  background: rgb(17, 24, 39);
}

.pv2-steps .pv2-actionbar--sidebar .pv2-prev-btn {
  text-decoration: none;
  color: rgb(100, 116, 139);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-align: center;
  line-height: 48px;
  width: 100%;
  height: 48px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pv2-steps .pv2-actionbar--sidebar .pv2-prev-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: rgb(148, 163, 184);
}

body.pv2-modal-open {
  overflow: hidden;
}

.pv2-modal[hidden] {
  display: none !important;
}

.pv2-modal {
  position: fixed;
  inset: 0px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
}

.pv2-modal__backdrop {
  position: absolute;
  inset: 0px;
  background: rgba(15, 23, 42, 0.55);
}

.pv2-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(72vh, 640px);
  background: rgb(255, 255, 255);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: rgba(15, 23, 42, 0.35) 0px 28px 80px;
  display: flex;
  flex-direction: column;
}

.pv2-modal__head {
  padding: 14px 16px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(148, 163, 184, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pv2-modal__title {
  font-size: 16px;
  font-weight: 400;
  color: rgb(15, 23, 42);
}

.pv2-modal__close {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgb(58, 117, 255);
  background: rgb(255, 255, 255);
  color: rgb(58, 117, 255);
  cursor: pointer;
  line-height: 1;
  font-size: 27px;
  font-weight: 100;
}

.pv2-modal__body {
  padding: 14px 16px 16px;
  overflow: auto;
}

.pv2-modal__list {
  margin: 0px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pv2-modal__list-item {
  font-size: 14px;
  line-height: 1;
  color: rgb(0, 0, 0);
  font-weight: 300;
}

.pv2-modal__foot {
  padding: 12px 16px 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(148, 163, 184, 0.25);
}

.pv2-modal__foot .pv2-buy-btn {
  width: 100%;
  background: rgb(239, 239, 239);
  padding: 8px;
  border: medium;
  color: rgb(23, 102, 65);
  border-radius: 999px;
}

.pv2-steps__list {
  margin: 0px;
  padding: 10px 0px 5px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pv2-step {
  padding: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(148, 163, 184, 0.25);
}

.pv2-step:last-child {
  padding-bottom: 0px;
}

.pv2-step__label {
  display: block;
  padding: 4px 10px;
  border-radius: 0px;
  font-weight: 400;
  color: rgb(170, 170, 170);
  font-size: 22px;
}

.pv2-step--active .pv2-step__label {
  padding: 0px;
  color: var(--pv2-accent);
  font-weight: 700;
}

.pv2-step__detail[hidden] {
  display: none !important;
}

.pv2-step__detail {
  margin: 10px 0px 0px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgb(17, 24, 39);
  font-size: 13px;
}

.pv2-step__detail-item {
  list-style: outside;
}

.pv2-selection-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0px 0px 18px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.pv2-selection-summary__media {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(rgb(248, 250, 252), rgb(238, 242, 247));
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.pv2-selection-summary__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pv2-selection-summary__body {
  min-width: 0px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pv2-selection-summary__category {
  font-size: 11px;
  line-height: 1.2;
  color: rgb(148, 163, 184);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pv2-selection-summary__title {
  font-size: 15px;
  line-height: 1.4;
  color: rgb(15, 23, 42);
  font-weight: 500;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-container--v2 .pv2-topnav {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0px 0px 16px;
}

.product-card-container--v2 .pv2-topnav__inner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  background: rgb(243, 244, 246);
  border-radius: 999px;
  box-shadow: rgba(15, 23, 42, 0.06) 0px 0px 0px 1px inset;
}

.product-card-container--v2 .pv2-topnav__tab {
  appearance: none;
  border: 0px;
  background: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: rgb(17, 24, 39);
  white-space: nowrap;
}

.product-card-container--v2 .pv2-topnav__tab.is-active {
  background: rgb(255, 255, 255);
  box-shadow: rgba(15, 23, 42, 0.1) 0px 18px 50px;
}

.product-card-container--v2 .pv2-topnav__tab:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.product-card-container--v2 .pv2-panel {
  width: 100%;
}

.product-card-container--v2 .pv2-panel[hidden] {
  display: none !important;
}

.product-card-container--v2 .pv2-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.product-card-container--v2 .pv2-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
}

.product-card-container--v2 .pv2-tabs[hidden] {
  display: none !important;
}

.product-card-container--v2 .pv2-tabs__inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgb(243, 244, 246);
  border-radius: 999px;
  box-shadow: rgba(15, 23, 42, 0.06) 0px 0px 0px 1px inset;
}

.product-card-container--v2 .pv2-tab {
  appearance: none;
  border: 0px;
  background: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: rgb(17, 24, 39);
}

.product-card-container--v2 .pv2-tab.is-active {
  background: rgb(255, 255, 255);
  box-shadow: rgba(15, 23, 42, 0.1) 0px 18px 50px;
}

.product-card-container--v2 .pv2-tab__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.product-card-container--v2 .pv2-tab__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-card-container--v2 .pv2-tab__text {
  white-space: nowrap;
}

.product-card-container--v2 .pv2-title {
  margin: 0px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--pv2-text);
}

.product-card-container--v2 .pv2-sku-picker {
  margin-top: 0px;
  width: 100%;
}

.product-card-container--v2 .pv2-label {
  margin: 0px 0px 39px;
  font-size: 35px;
  color: rgb(17, 24, 39);
  display: flex;
  justify-content: center;
}

.product-card-container--v2 #popup-types.pv2-type-cards {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  padding: 0px;
  margin: 0px;
  place-items: stretch center;
  width: 100%;
  justify-content: center;
  flex-flow: row;
}

.product-card-container--v2 #popup-types .sku {
  position: relative;
  width: 100%;
  min-width: 0px;
  border-radius: 14px;
  background: rgb(255, 255, 255);
  padding: 46px 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: var(--pv2-sku-card-min-height);
  box-shadow: rgba(15, 23, 42, 0.05) 0px 30px 80px;
  max-width: 400px;
}

.product-card-container--v2 #popup-types .sku.active {
  border: 3px solid rgb(132, 149, 251);
}

.product-card-container--v2 #popup-types .sku.is-disabled {
  opacity: 0.6;
  background: rgb(248, 250, 252);
  transform: none;
  box-shadow: none;
}

.product-card-container--v2 #popup-types .sku .sku-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(148, 163, 184, 0.18);
  color: rgb(17, 24, 39);
}

.product-card-container--v2 #popup-types .sku .sku-badge::after {
  display: none;
}

.product-card-container--v2 .pv2-card__top {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.product-card-container--v2 .pv2-card__icon {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  border: 1px solid rgb(229, 231, 235);
  background: rgb(248, 250, 252);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgb(100, 116, 139);
  font-size: 18px;
  font-weight: 600;
}

.product-card-container--v2 .pv2-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-container--v2 .pv2-card__title {
  font-size: 22px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  letter-spacing: 0.3px;
  line-height: 1.05;
}

.product-card-container--v2 .pv2-card__subtitle {
  margin-top: 6px;
  font-size: 13px;
  color: rgb(102, 102, 102);
  min-height: 18px;
}

.product-card-container--v2 .pv2-card__divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
  z-index: 100;
  width: 100%;
}

.product-card-container--v2 .pv2-card__bottom {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
  width: 100%;
}

.product-card-container--v2 .pv2-card__duration {
  order: 2;
  font-size: 22px;
  font-weight: 700;
  color: rgb(156, 163, 175);
  margin: 0px;
  padding-left: 14px;
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: rgb(209, 213, 219);
}

.product-card-container--v2 .pv2-card__price {
  margin: 0px;
  font-size: 44px;
  color: rgb(17, 24, 39);
  letter-spacing: 0.2px;
}

.product-card-container--v2 .pv2-card__original {
  margin: 0px;
  font-size: 18px;
  color: rgb(156, 163, 175);
  text-decoration: line-through;
}

.product-card-container--v2 .pv2-card__features[hidden] {
  display: none !important;
}

.product-card-container--v2 .pv2-card__features {
  margin: 14px 0px 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgb(92, 92, 92);
  font-size: 14px;
  line-height: 1.55;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  font-family: system-ui;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-card-container--v2 .pv2-card__feature {
  position: relative;
  padding-left: 14px;
  width: 100%;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-card-container--v2 .pv2-card__remark[hidden] {
  display: none !important;
}

.product-card-container--v2 .pv2-card__remark {
  margin: 10px 0px 0px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgb(255, 247, 237);
  border: 1px solid rgb(254, 215, 170);
  color: rgb(194, 65, 12);
  font-size: 12px;
  line-height: 1.5;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-card-container--v2 .pv2-card__features *, .product-card-container--v2 .pv2-card__remark * {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-card-container--v2 .pv2-card__prices {
  justify-content: center;
}

.product-card-container--v2 .pv2-card__feature::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgb(156, 163, 175);
}

.product-card-container--v2 #popup-durations.pv2-duration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px 0px 0px;
  margin: 0px;
}

.product-card-container--v2 #popup-durations .sku {
  border-radius: 999px;
  border: 1px solid var(--pv2-border);
  background: rgb(255, 255, 255);
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.product-card-container--v2 #popup-durations .sku.active {
  border-color: var(--pv2-accent);
  background: rgba(37, 99, 235, 0.06);
}

.product-card-container--v2 #popup-durations .sku.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.product-card-container--v2 .pv2-actionbar {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--pv2-border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.product-card-container--v2 .pv2-planline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}

.product-card-container--v2 .pv2-planline__label {
  font-size: 12px;
  color: var(--pv2-muted);
}

.product-card-container--v2 .pv2-planline__value {
  font-size: 14px;
  font-weight: 900;
  color: rgb(17, 24, 39);
}

.product-card-container--v2 .pv2-planline__price {
  font-size: 14px;
  font-weight: 900;
  color: rgb(17, 24, 39);
}

.product-card-container--v2 .pv2-coupon {
  margin-top: 10px;
}

.product-card-container--v2 .pv2-coupon__label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: rgb(17, 24, 39);
}

.product-card-container--v2 .pv2-actionbar .promo-form {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.product-card-container--v2 .pv2-actionbar .promo-form__input {
  height: 44px;
  border: 1px solid var(--pv2-border);
  border-radius: 12px;
  padding: 0px 12px;
  background: rgb(248, 250, 252);
  font-size: 14px;
}

.product-card-container--v2 .pv2-actionbar .promo-form__apply {
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--pv2-border);
  background: rgb(255, 255, 255);
  font-weight: 900;
  padding: 0px 16px;
  cursor: pointer;
}

.product-card-container--v2 .pv2-actionbar .promo-form__apply:hover {
  background: rgb(243, 244, 246);
}

.product-card-container--v2 .pv2-discountline {
  margin-top: 8px;
  font-size: 12px;
  color: var(--pv2-muted);
  display: flex;
  gap: 10px;
}

.product-card-container--v2 .pv2-discountline__value {
  color: rgb(17, 24, 39);
  font-weight: 900;
}

.product-card-container--v2 .pv2-actionbar__right {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.pv2-month-form {
  width: 100%;
}

.pv2-month-options {
  display: flex;
  gap: 12px;
  padding: 8px 0px 6px;
  justify-content: center;
}

.pv2-month-option {
  display: flex;
  border: 2px solid var(--pv2-border);
  border-radius: 16px;
  background: rgb(255, 255, 255);
  padding: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  flex-direction: column;
  width: 229px;
  height: 225px;
}

.pv2-month-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pv2-month-option__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.pv2-month-option__recharge-item {
  font-size: 25px;
  color: rgb(111, 111, 111);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: fangsong;
}

.pv2-month-option__subscription-method {
  font-size: 16px;
  color: rgb(193, 107, 251);
  background: rgb(243, 244, 246);
  border-radius: 999px;
  padding: 6px 10px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pv2-month-option__label {
  font-size: 19px;
  font-weight: 900;
  color: rgb(17, 24, 39);
  font-family: monospace;
}

.pv2-month-option__price {
  font-size: 24px;
  font-weight: 600;
  color: rgb(17, 24, 39);
  font-family: math;
}

.pv2-month-option:has(input:checked) {
  border-color: var(--pv2-accent);
  flex-direction: column;
}

.pv2-month-option:focus-within {
  outline: rgba(37, 99, 235, 0.25) solid 3px;
  outline-offset: 2px;
}

.product-card-container--v2 .pv2-total__label {
  font-size: 12px;
  color: var(--pv2-muted);
}

.product-card-container--v2 .pv2-total__value {
  font-size: 30px;
  font-weight: 950;
  color: rgb(17, 24, 39);
  line-height: 1.1;
}

.product-card-container--v2 .pv2-buy-btn {
  width: 220px;
  height: 52px;
  border-radius: 16px;
  background: rgb(255, 255, 255);
  color: rgb(74, 122, 76);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgb(0, 0, 0);
}

.product-card-container--v2 .pv2-body {
  margin-top: 0px;
  display: grid;
  grid-template-columns: 1fr;
}

.product-card-container--v2 .pv2-panel--diff, .product-card-container--v2 .pv2-panel--faq {
  margin-top: 16px;
}

.product-card-container--v2 .pv2-accordion {
  border-bottom: 1px dashed var(--pv2-border);
  background: rgb(255, 255, 255);
  overflow: hidden;
}

.product-card-container--v2 .pv2-accordion__summary {
  padding: 14px 16px;
  cursor: pointer;
  font-size: 15px;
  color: rgb(17, 24, 39);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.product-card-container--v2 .pv2-accordion__summary::-webkit-details-marker {
  display: none;
}

.product-card-container--v2 .pv2-accordion__summary::after {
  content: "+";
  font-size: 20px;
  color: var(--pv2-muted);
  line-height: 1;
}

.product-card-container--v2 .pv2-accordion[open] .pv2-accordion__summary::after {
  content: "-";
}

.product-card-container--v2 .pv2-accordion__body {
  padding: 12px 16px 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(241, 245, 249);
}

.product-card-container--v2 .pv2-diff {
  background: rgb(255, 255, 255);
  padding: 14px;
  border-radius: 10px;
  min-height: 55vh;
}

.product-card-container--v2 .pv2-diff__panel {
  background: none;
  overflow: hidden;
}

.product-card-container--v2 .pv2-diff__summary {
  width: 100%;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: rgb(216, 216, 216);
  background: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgb(17, 24, 39);
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  list-style: none;
}

.product-card-container--v2 .pv2-diff__summary::-webkit-details-marker {
  display: none;
}

.product-card-container--v2 .pv2-diff__summary::after {
  content: "+";
  font-size: 30px;
  line-height: 1;
  flex: 0 0 auto;
  font-weight: 300;
  color: rgb(0, 0, 0);
}

.product-card-container--v2 .pv2-diff__panel[open] .pv2-diff__summary::after {
  content: "-";
}

.product-card-container--v2 .pv2-diff__panel[open] .pv2-diff__summary {
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
}

.product-card-container--v2 .pv2-diff__panel[open] {
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: rgb(208, 208, 208);
}

.product-card-container--v2 .pv2-diff__body {
  padding: 12px 16px 16px;
}

.product-card-container--v2 .pv2-diff__scroll {
  overflow-x: auto;
}

.product-card-container--v2 .pv2-diff__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
  min-width: 520px;
}

.product-card-container--v2 .pv2-diff__th, .product-card-container--v2 .pv2-diff__td, .product-card-container--v2 .pv2-diff__rowhead {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(148, 163, 184, 0.22);
  padding: 10px;
  vertical-align: top;
  text-align: left;
}

.product-card-container--v2 .pv2-diff__th {
  font-size: 13px;
  font-weight: 700;
  color: rgb(15, 23, 42);
  background: rgb(248, 250, 252);
}

.product-card-container--v2 .pv2-diff__th--name {
  width: 140px;
}

.product-card-container--v2 .pv2-diff__rowtitle {
  font-size: 13px;
}

.product-card-container--v2 .pv2-diff__rowdesc {
  margin-top: 4px;
  font-size: 12px;
  color: rgb(100, 116, 139);
  font-weight: 300;
}

.product-card-container--v2 .pv2-diff__cell-list {
  margin: 0px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card-container--v2 .pv2-diff__cell-line {
  font-size: 14px;
  line-height: 1.5;
  color: rgb(92, 92, 92);
  font-weight: 300;
}

.product-card-container--v2 .pv2-diff__empty {
  color: rgb(148, 163, 184);
}

.product-card-container--v2 .pv2-faq {
  border-radius: 10px;
  background: rgb(255, 255, 255);
  padding: 14px;
  min-height: 55vh;
}

.product-card-container--v2 .pv2-faq-nav[hidden] {
  display: none !important;
}

.product-card-container--v2 .pv2-faq-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0px 12px;
}

.product-card-container--v2 .pv2-faq-nav__inner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
}

.product-card-container--v2 .pv2-faq-nav__tab {
  appearance: none;
  border: 0px;
  background: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: rgb(128, 128, 128);
  white-space: nowrap;
}

.product-card-container--v2 .pv2-faq-nav__tab.is-active {
  color: rgb(0, 0, 0);
}

.product-card-container--v2 .pv2-faq-nav__tab:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.product-card-container--v2 .pv2-faq .plan-card__faq-icon {
  display: none !important;
}

.product-card-container--v2 .pv2-faq .plan-card__faq-list {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
}

.product-card-container--v2 .pv2-faq .plan-card__faq-item {
  display: block;
  background: rgb(255, 255, 255);
  overflow: hidden;
}

.product-card-container--v2 .pv2-faq .plan-card__faq-question {
  width: 100%;
  border-top-width: 1px;
  border-top-style: dashed;
  border-top-color: rgb(216, 216, 216);
  background: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgb(17, 24, 39);
  font-size: 17px;
  font-weight: 500;
  text-align: left;
}

.product-card-container--v2 .pv2-faq .plan-card__faq-question span {
  flex: 1 1 auto;
}

.product-card-container--v2 .pv2-faq .plan-card__faq-question::after {
  content: "+";
  font-size: 30px;
  line-height: 1;
  flex: 0 0 auto;
  font-weight: 300;
  color: rgb(0, 0, 0);
}

.product-card-container--v2 .pv2-faq .plan-card__faq-item.is-open .plan-card__faq-question::after, .product-card-container--v2 .pv2-faq .plan-card__faq-question[aria-expanded="true"]::after {
  content: "-";
}

.product-card-container--v2 .pv2-faq .plan-card__faq-item.is-open {
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: rgb(208, 208, 208);
}

.product-card-container--v2 .pv2-faq .plan-card__faq-answer {
  padding: 12px 16px 16px;
}

.product-card-container--v2 .pv2-faq .plan-card__faq-answer-content {
  color: rgb(121, 121, 121);
  font-size: 14px;
  line-height: 1.65;
}

.product-card-container--v2 .pv2-more-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: grid;
  gap: 6px;
}

.product-card-container--v2 .pv2-more-item a {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}

.product-card-container--v2 .pv2-more-name {
  font-size: 13px;
  color: rgb(17, 24, 39);
}

.product-card-container--v2 .pv2-more-price {
  font-size: 13px;
  color: rgb(17, 24, 39);
  font-weight: 900;
}

.product-card-container--v2 .pv2-more-sold {
  font-size: 12px;
  color: var(--pv2-muted);
}

@media (max-width: 860px) {
  body.product-v2-page #Bottom {
      padding-bottom: calc(70px + env(safe-area-inset-bottom));
      display: block !important;
  }

  body.product-v2-page #top {
      display: block !important;
  }

  body.product-v2-page .Wrapper {
      padding-top: var(--site-topbar-offset, 68px) !important;
  }

  .pv2-main-column {
      padding-right: 0px;
  }

  .pv2-shell {
      padding: 0px 8px 110px;
  }

  .product-card-container--v2 {
      padding: 16px 10px 18px;
  }

  .product-card-container--v2 .pv2-topnav {
      top: calc(var(--site-topbar-offset, 68px) + 8px);
      z-index: 1000;
      margin: 6px 0px 20px;
  }

  .product-card-container--v2 .pv2-topnav__inner {
      width: 100%;
      flex-wrap: nowrap;
      justify-content: center;
      overflow-x: auto;
      scrollbar-width: none;
  }

  .product-card-container--v2 .pv2-topnav__inner::-webkit-scrollbar {
      display: none;
  }

  .product-card-container--v2 #popup-types.pv2-type-cards {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .product-card-container--v2 #popup-types .sku {
      width: 100%;
      max-width: none;
      margin: 0px;
      min-height: 0px;
      padding: 10px;
      gap: 0px;
      border: 1px solid rgb(215, 219, 226);
      box-shadow: none;
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.24s, box-shadow 0.24s, padding-bottom 0.24s, background-color 0.24s;
  }

  .product-card-container--v2 #popup-types .sku:not(.active) {
      order: 1;
  }

  .product-card-container--v2 #popup-types .sku.active {
      order: 2;
  }

  .product-card-container--v2 #popup-types .sku .pv2-card__top {
      position: relative;
      min-height: 58px;
      padding: 12px 12px 12px 42px;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      text-align: left;
      gap: 10px;
      transition: padding 0.26s, min-height 0.26s, gap 0.26s;
  }

  .product-card-container--v2 #popup-types .sku .pv2-card__top::before {
      content: "";
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%) scale(0.72);
      width: 16px;
      height: 16px;
      border-radius: 999px;
      border: 1.5px solid rgb(156, 163, 175);
      background: rgb(255, 255, 255);
      box-sizing: border-box;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s, transform 0.22s;
  }

  .product-card-container--v2 #popup-types .sku:not(.active) .pv2-card__top::before {
      opacity: 1;
      transform: translateY(-50%) scale(1);
  }

  .product-card-container--v2 #popup-types .sku:not(.active) .pv2-card__top {
      justify-content: flex-start;
      align-items: center;
      text-align: left;
      padding-left: 30px;
      gap: 6px;
  }

  .product-card-container--v2 #popup-types .sku:not(.active) .pv2-card__icon {
      display: none;
  }

  .product-card-container--v2 #popup-types .sku.active .pv2-card__icon {
      display: inline-flex;
  }

  .product-card-container--v2 #popup-types .sku .pv2-card__icon {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      flex: 0 0 34px;
      transition: width 0.26s, height 0.26s, border-radius 0.26s, flex-basis 0.26s;
  }

  .product-card-container--v2 #popup-types .sku:not(.active) .pv2-card__title {
      text-align: left;
      margin-right: auto;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      overflow-wrap: normal;
      word-break: normal;
  }

  .product-card-container--v2 #popup-types .sku .pv2-card__title {
      flex: 1 1 auto;
      font-size: 19px;
      line-height: 1.25;
      text-align: left;
      white-space: normal;
      overflow-wrap: anywhere;
      word-break: break-word;
      transition: font-size 0.26s, line-height 0.26s, text-align 0.26s;
  }

  .product-card-container--v2 #popup-types .sku .pv2-card__subtitle, .product-card-container--v2 #popup-types .sku .pv2-card__divider, .product-card-container--v2 #popup-types .sku .pv2-card__bottom, .product-card-container--v2 #popup-types .sku .pv2-card__features, .product-card-container--v2 #popup-types .sku .pv2-card__remark {
      opacity: 0;
      max-height: 0px;
      overflow: hidden;
      transform: translateY(-6px);
      transition: max-height 0.28s, opacity 0.22s, transform 0.22s, margin 0.22s, padding 0.22s;
  }

  .product-card-container--v2 #popup-types .sku .pv2-card__subtitle {
      margin-top: 0px;
  }

  .product-card-container--v2 #popup-types .sku .pv2-card__divider {
      width: calc(100% - 32px);
      margin: 0px 16px;
  }

  .product-card-container--v2 #popup-types .sku .pv2-card__bottom {
      padding: 0px 12px;
  }

  .product-card-container--v2 #popup-types .sku .pv2-card__features {
      padding: 0px 12px;
      margin: 0px;
  }

  .product-card-container--v2 #popup-types .sku.active {
      border: 2px solid rgb(17, 24, 39);
      padding-bottom: 14px;
  }

  .product-card-container--v2 #popup-types .sku.active .pv2-card__top {
      padding: 22px 16px 8px;
      min-height: 0px;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
  }

  .product-card-container--v2 #popup-types .sku.active .pv2-card__icon {
      width: 58px;
      height: 58px;
      border-radius: 14px;
      flex-basis: 58px;
  }

  .product-card-container--v2 #popup-types .sku.active .pv2-card__title {
      font-size: clamp(32px, 9.2vw, 40px);
      line-height: 1.12;
      text-align: center;
  }

  .product-card-container--v2 #popup-types .sku.active .pv2-card__subtitle {
      opacity: 1;
      max-height: 72px;
      transform: translateY(0px);
      margin-top: 6px;
      white-space: normal;
      overflow-wrap: anywhere;
      word-break: break-word;
  }

  .product-card-container--v2 #popup-types .sku.active .pv2-card__divider {
      opacity: 1;
      max-height: 8px;
      transform: translateY(0px);
      margin: 2px 16px 0px;
  }

  .product-card-container--v2 #popup-types .sku.active .pv2-card__bottom {
      opacity: 1;
      max-height: 120px;
      transform: translateY(0px);
  }

  .product-card-container--v2 #popup-types .sku.active .pv2-card__features {
      opacity: 1;
      max-height: 360px;
      transform: translateY(0px);
      margin: 10px 0px 0px;
  }

  .product-card-container--v2 #popup-types .sku.active .pv2-card__remark {
      opacity: 1;
      max-height: 80px;
      transform: translateY(0px);
      margin: 8px 0px 0px;
  }

  .pv2-month-options {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 4px 0px 0px;
      justify-content: stretch;
  }

  .pv2-month-option {
      position: relative;
      width: 100%;
      height: auto;
      min-height: 0px;
      padding: 0px;
      gap: 0px;
      align-items: stretch;
      justify-content: flex-start;
      border: 1px solid rgb(215, 219, 226);
      border-radius: 12px;
      box-shadow: none;
      overflow: hidden;
      transition: border-color 0.24s, padding-bottom 0.24s, background-color 0.24s;
  }

  .pv2-month-option:not(:has(input:checked)) {
      order: 1;
  }

  .pv2-month-option:has(input:checked) {
      order: 2;
  }

  .pv2-month-option .pv2-month-option__top {
      position: relative;
      min-height: 58px;
      padding: 12px 12px 12px 38px;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      text-align: left;
      gap: 10px;
      transition: padding 0.26s, min-height 0.26s, gap 0.26s;
  }

  .pv2-month-option .pv2-month-option__top::before {
      content: "";
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%) scale(0.72);
      width: 16px;
      height: 16px;
      border-radius: 999px;
      border: 1.5px solid rgb(156, 163, 175);
      background: rgb(255, 255, 255);
      box-sizing: border-box;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s, transform 0.22s;
  }

  .pv2-month-option:not(:has(input:checked)) .pv2-month-option__top::before {
      opacity: 1;
      transform: translateY(-50%) scale(1);
  }

  .pv2-month-option .pv2-month-option__label {
      transition: font-size 0.26s, line-height 0.26s, text-align 0.26s;
  }

  .pv2-month-option:not(:has(input:checked)) .pv2-month-option__top {
      justify-content: flex-start;
      align-items: center;
      text-align: left;
      padding-left: 38px;
      gap: 8px;
  }

  .pv2-month-option:not(:has(input:checked)) .pv2-month-option__label {
      text-align: left;
      margin-right: auto;
  }

  .pv2-month-option:not(:has(input:checked)) .pv2-month-option__recharge-item {
      display: none;
  }

  .pv2-month-option .pv2-month-option__recharge-item, .pv2-month-option .pv2-month-option__subscription-method, .pv2-month-option .pv2-month-option__price {
      max-height: 0px;
      opacity: 0;
      overflow: hidden;
      transform: translateY(-6px);
      margin: 0px;
      padding: 0px;
      transition: max-height 0.28s, opacity 0.22s, transform 0.22s, margin 0.22s, padding 0.22s;
  }

  .pv2-month-option:has(input:checked) {
      border: 2px solid rgb(17, 24, 39);
      padding-bottom: 14px;
  }

  .pv2-month-option:has(input:checked) .pv2-month-option__top {
      padding: 20px 16px 8px;
      min-height: 0px;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
  }

  .pv2-month-option:has(input:checked) .pv2-month-option__label {
      font-size: clamp(30px, 8.8vw, 38px);
      line-height: 1.12;
      text-align: center;
  }

  .pv2-month-option:has(input:checked) .pv2-month-option__recharge-item {
      max-height: 72px;
      opacity: 1;
      transform: translateY(0px);
      margin: 0px;
  }

  .pv2-month-option:has(input:checked) .pv2-month-option__subscription-method {
      max-height: 48px;
      opacity: 1;
      transform: translateY(0px);
      margin: 0px auto;
      padding: 6px 10px;
  }

  .pv2-month-option:has(input:checked) .pv2-month-option__price {
      max-height: 56px;
      opacity: 1;
      transform: translateY(0px);
      margin: 8px auto 0px;
      font-size: 36px;
      line-height: 1.1;
  }

  .product-card-container--v2 .pv2-card__price {
      font-size: 40px;
  }

  .product-card-container--v2 .pv2-card__duration {
      font-size: 18px;
  }

  .product-card-container--v2 .pv2-actionbar {
      grid-template-columns: 1fr;
  }

  .product-card-container--v2 .pv2-actionbar__right {
      justify-content: space-between;
  }

  .product-card-container--v2 .pv2-buy-btn {
      width: 100%;
  }

  .pv2-selection-summary {
      margin: 0px;
      padding: 10px 12px;
      gap: 10px;
  }

  .pv2-selection-summary__media {
      flex-basis: 44px;
      width: 44px;
      height: 44px;
      border-radius: 12px;
  }

  .pv2-selection-summary__category {
      font-size: 10px;
  }

  .pv2-selection-summary__title {
      font-size: 13px;
      line-height: 1.35;
      -webkit-line-clamp: 1;
  }

  .pv2-layout {
      grid-template-columns: 1fr;
      padding: 0px 8px 16px;
  }

  .pv2-steps {
      position: fixed;
      inset: auto 0px 0px;
      height: auto;
      width: auto;
      border-left-width: 0px;
      border-left-style: none;
      border-left-color: currentcolor;
      border-top-width: 1px;
      border-top-style: solid;
      border-top-color: rgb(229, 231, 235);
      box-shadow: rgba(15, 23, 42, 0.08) 0px -8px 24px;
      background: rgba(255, 255, 255, 0.98);
      z-index: 9998;
  }

  .pv2-steps__inner {
      padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
      width: auto;
      height: auto;
      min-height: 0px;
      box-shadow: none;
      gap: 8px;
  }

  .pv2-side {
      display: none;
  }

  .pv2-steps .pv2-actionbar--sidebar {
      border-top-width: 0px;
      border-top-style: none;
      border-top-color: currentcolor;
      margin: 0px;
      flex-direction: row;
      align-items: center;
  }

  .pv2-steps .pv2-actionbar--sidebar .pv2-notice-trigger {
      width: auto;
      margin: 0px;
      padding: 10px 12px;
      white-space: nowrap;
  }

  .pv2-steps .pv2-actionbar--sidebar .pv2-buy-btn {
      flex: 1 1 auto;
      width: auto;
      height: 46px;
      border-radius: 12px;
  }

  body.product-v2-page .support-fab {
      right: 12px;
      bottom: calc(env(safe-area-inset-bottom) + 86px);
      z-index: 9997;
  }

  .product-card-container--v2 .pv2-diff {
      padding: 8px;
  }

  .product-card-container--v2 .pv2-diff__body {
      padding: 8px;
  }

  .product-card-container--v2 .pv2-diff__scroll {
      width: 100%;
      overflow-x: auto;
  }

  .product-card-container--v2 .pv2-diff__table {
      width: 100%;
      min-width: 100%;
      table-layout: fixed;
  }

  .product-card-container--v2 .pv2-diff__th--name {
      width: 88px;
  }

  .product-card-container--v2 .pv2-diff__th, .product-card-container--v2 .pv2-diff__td, .product-card-container--v2 .pv2-diff__rowhead {
      padding: 8px 6px;
      white-space: normal;
      word-break: break-word;
      overflow-wrap: anywhere;
  }

  .product-card-container--v2 .pv2-diff__th, .product-card-container--v2 .pv2-diff__rowtitle, .product-card-container--v2 .pv2-diff__cell-line {
      font-size: 12px;
      line-height: 1.4;
  }

  .product-card-container--v2 .pv2-diff__cell-list {
      padding-left: 14px;
      gap: 4px;
  }
}

.pv2-card__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

span.v2guid-title {
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
}

.plan-card__faq-answer-content {
  text-align: left;
}

button.buy-fab.pv2-buy-btn.pv2-prev-btn {
  background: rgb(241, 245, 249);
  color: rgb(100, 116, 139);
  border: 1px solid rgb(203, 213, 225);
}

button.buy-fab.pv2-buy-btn.pv2-prev-btn:hover {
  background: rgb(226, 232, 240);
  color: rgb(71, 85, 105);
}

summary.pv2-diff__summary {
  font-weight: 200;
}

body.product-v2-page--checkout {
  --site-topbar-offset: 96px;
  --pv2-aside-width: clamp(360px, 24vw, 420px);
  background: linear-gradient(rgb(246, 246, 248) 0%, rgb(243, 245, 249) 100%);
}

body.product-v2-page--checkout #top.pv2-site-header {
  padding: 0px;
  right: auto;
  width: calc(100% - var(--pv2-aside-width));
  border-bottom-width: 1px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body.product-v2-page--checkout #top.pv2-site-header .content {
  max-width: none;
}

body.product-v2-page--checkout .pv2-site-header__inner {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) auto minmax(0px, 1fr);
  align-items: center;
  gap: 24px;
}

body.product-v2-page--checkout .pv2-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0px;
}

body.product-v2-page--checkout .pv2-brand__mark {
  width: 40px;
  border-radius: 10px;
  background: linear-gradient(rgb(47, 57, 73), rgb(35, 43, 57));
  box-shadow: rgba(15, 23, 42, 0.14) 0px 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.product-v2-page--checkout .pv2-brand__mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.product-v2-page--checkout .pv2-brand__wordmark {
  font-family: "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  color: rgb(17, 24, 39);
}

body.product-v2-page--checkout .pv2-site-header__center {
  display: flex;
  justify-content: center;
}

body.product-v2-page--checkout .pv2-header-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0px 28px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: rgba(15, 23, 42, 0.06) 0px 8px 20px;
  color: rgb(100, 116, 139);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 0.18s, box-shadow 0.18s, color 0.18s;
}

body.product-v2-page--checkout .pv2-header-back:hover {
  transform: translateY(-1px);
  box-shadow: rgba(15, 23, 42, 0.08) 0px 12px 28px;
  color: rgb(51, 65, 85);
}

body.product-v2-page--checkout .pv2-header-back svg {
  width: 24px;
  height: 24px;
  stroke: currentcolor;
  stroke-width: 2;
  fill: none;
  flex: 0 0 24px;
}

body.product-v2-page--checkout .Wrapper {
  padding-top: var(--site-topbar-offset);
  background: none;
}

body.product-v2-page--checkout .Wrapper .content {
  max-width: 100%;
  padding: 0px;
}

body.product-v2-page--checkout .pv2-shell {
  padding: 0px 0px 0px clamp(20px, 2vw, 32px);
  align-items: stretch;
}

body.product-v2-page--checkout .pv2-layout {
  min-height: calc(100vh - var(--site-topbar-offset));
}

body.product-v2-page--checkout .pv2-main-column {
  align-items: stretch;
  padding-right: calc(var(--pv2-aside-width) + clamp(20px, 2vw, 32px));
}

body.product-v2-page--checkout .product-card-container--v2 {
  min-height: calc(100vh - var(--site-topbar-offset));
  display: flex;
  align-items: stretch;
}

body.product-v2-page--checkout .product-card-container--v2 > * {
  width: 100%;
}

body.product-v2-page--checkout .pv2-hero {
  min-height: calc(100vh - var(--site-topbar-offset) - clamp(46px, 6vh, 68px));
  padding: clamp(28px, 3vw, 42px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

body.product-v2-page--checkout .product-card-container--v2 .pv2-main {
  justify-content: center;
  gap: 28px;
}

body.product-v2-page--checkout .product-card-container--v2 .pv2-label {
  margin-bottom: 34px;
  font-family: "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: rgb(17, 24, 39);
}

body.product-v2-page--checkout .pv2-month-options {
  gap: 16px;
}

body.product-v2-page--checkout .pv2-month-option {
  min-height: 212px;
  border-radius: 24px;
  border-width: 1px;
  box-shadow: rgba(15, 23, 42, 0.04) 0px 10px 24px;
}

body.product-v2-page--checkout .pv2-month-option:has(input:checked) {
  border-width: 2px;
  box-shadow: rgba(37, 99, 235, 0.1) 0px 14px 30px;
}

body.product-v2-page--checkout .pv2-steps {
  top: 0px;
  bottom: 0px;
  height: 100vh;
  width: var(--pv2-aside-width);
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: rgba(15, 23, 42, 0.04) -18px 0px 30px;
  z-index: 10001;
}

body.product-v2-page--checkout .pv2-steps__inner {
  height: 100%;
  min-height: 100%;
  padding: clamp(22px, 2vw, 30px);
  gap: 22px;
}

body.product-v2-page--checkout .pv2-side {
  display: flex;
  flex: 1 1 auto;
  min-height: 0px;
}

body.product-v2-page--checkout .pv2-side__menu {
  flex: 1 1 auto;
  min-height: 100%;
  gap: 16px;
}

body.product-v2-page--checkout .pv2-side__item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body.product-v2-page--checkout .pv2-side__title {
  font-family: "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  font-size: clamp(18px, 1vw, 18px);
  font-weight: normal;
  letter-spacing: -0.04em;
}

body.product-v2-page--checkout .pv2-side__desc {
  font-size: 16px;
  line-height: 1.55;
  color: rgb(124, 135, 150);
}

body.product-v2-page--checkout .pv2-selection-summary {
  margin: 0px;
  gap: 16px;
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

body.product-v2-page--checkout .pv2-selection-summary__media {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  border: 0px;
  background: linear-gradient(rgb(238, 249, 242), rgb(224, 241, 232));
}

body.product-v2-page--checkout .pv2-selection-summary__category {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgb(154, 164, 178);
}

body.product-v2-page--checkout .pv2-selection-summary__title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 650;
  color: rgb(17, 24, 39);
}

body.product-v2-page--checkout .pv2-steps__list {
  position: relative;
  padding: 12px 0px 0px;
  gap: 18px;
}

body.product-v2-page--checkout .pv2-steps__list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  bottom: 20px;
  width: 2px;
  background: rgb(232, 237, 245);
}

body.product-v2-page--checkout .pv2-step {
  position: relative;
  padding: 0px 0px 0px 42px;
  border: 0px;
  background: none;
}

body.product-v2-page--checkout .pv2-step::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 3px solid rgb(217, 224, 234);
  background: rgb(255, 255, 255);
  box-sizing: border-box;
  z-index: 1;
}

body.product-v2-page--checkout .pv2-step__label {
  display: flex;
  align-items: center;
  min-height: 22px;
  padding: 0px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: normal;
  letter-spacing: -0.03em;
  color: rgb(167, 175, 185);
}

body.product-v2-page--checkout .pv2-step--active {
  padding: 20px 20px 20px 42px;
}

body.product-v2-page--checkout .pv2-step--active::before {
  left: 0px;
  top: 20px;
  border-color: rgb(37, 99, 235);
  box-shadow: rgba(37, 99, 235, 0.12) 0px 0px 0px 6px;
}

body.product-v2-page--checkout .pv2-step--active .pv2-step__label {
  color: rgb(37, 99, 235);
}

body.product-v2-page--checkout .pv2-substeps {
  margin: 14px 0px 0px;
  gap: 10px;
}

body.product-v2-page--checkout .pv2-substep {
  font-size: 14px;
  color: rgb(153, 163, 177);
  gap: 8px;
}

body.product-v2-page--checkout .pv2-substep::before {
  width: 7px;
  height: 7px;
}

body.product-v2-page--checkout .pv2-substep.is-active {
  color: rgb(37, 99, 235);
  font-weight: normal;
}

body.product-v2-page--checkout .pv2-steps .pv2-actionbar--sidebar {
  margin-top: auto;
  padding-top: 8px;
  border-top-width: 0px;
  border-top-style: none;
  border-top-color: currentcolor;
  gap: 12px;
  flex-shrink: 0;
}

body.product-v2-page--checkout .pv2-steps .pv2-actionbar--sidebar .pv2-buy-btn {
  height: 58px;
  border-radius: 18px;
  font-size: 20px;
}

body.product-v2-page--checkout .pv2-steps .pv2-actionbar--sidebar .pv2-prev-btn {
  background: rgb(243, 245, 248);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: rgb(71, 85, 105);
}

body.product-v2-page--checkout .support-fab-tip {
  display: none !important;
}

@media (max-width: 1180px), ((hover: none) and (pointer: coarse) and (max-width: 1400px)) {
  body.product-v2-page--checkout #Bottom {
      padding-bottom: calc(138px + env(safe-area-inset-bottom));
      display: block !important;
  }

  body.product-v2-page--checkout #top {
      display: block !important;
  }

  body.product-v2-page--checkout .Wrapper {
      padding-top: var(--site-topbar-offset, 74px) !important;
  }

  body.product-v2-page--checkout .pv2-layout {
      min-height: 0px;
      padding: 0px 8px 16px;
  }

  body.product-v2-page--checkout .pv2-shell {
      padding: 0px 8px 170px;
  }

  body.product-v2-page--checkout .pv2-main-column {
      padding-right: 0px;
  }

  body.product-v2-page--checkout .product-card-container--v2 {
      padding: 14px 8px 18px;
      min-height: auto;
  }

  body.product-v2-page--checkout .pv2-hero,
  body.product-v2-page--checkout .co-v2-panel {
      min-height: auto;
      border-radius: 24px;
  }

  body.product-v2-page--checkout .pv2-hero {
      padding: 20px 16px;
      align-items: stretch;
  }

  body.product-v2-page--checkout .product-card-container--v2 .pv2-main {
      justify-content: flex-start;
      gap: 20px;
  }

  body.product-v2-page--checkout .product-card-container--v2 .pv2-label {
      margin-bottom: 20px;
      font-size: clamp(30px, 5.6vw, 40px);
  }

  body.product-v2-page--checkout .pv2-month-options {
      gap: 10px;
  }

  body.product-v2-page--checkout .pv2-steps {
      position: fixed;
      inset: auto 0px 0px;
      height: auto;
      width: auto;
      border-left-width: 0px;
      border-left-style: none;
      border-left-color: currentcolor;
      border-top-width: 1px;
      border-top-style: solid;
      border-top-color: rgb(229, 231, 235);
      box-shadow: rgba(15, 23, 42, 0.08) 0px -8px 24px;
      background: rgba(255, 255, 255, 0.98);
      overflow: visible;
  }

  body.product-v2-page--checkout .pv2-steps__inner {
      padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
      width: auto;
      height: auto;
      min-height: 0px;
      gap: 10px;
  }

  body.product-v2-page--checkout .pv2-side {
      display: none;
  }

  body.product-v2-page--checkout .pv2-selection-summary {
      gap: 12px;
      border-radius: 18px;
  }

  body.product-v2-page--checkout .pv2-selection-summary__media {
      flex-basis: 48px;
      width: 48px;
      height: 48px;
      border-radius: 14px;
  }

  body.product-v2-page--checkout .pv2-selection-summary__title {
      font-size: 14px;
  }

  body.product-v2-page--checkout .pv2-steps .pv2-actionbar--sidebar {
      margin: 0px;
      padding-top: 0px;
      border-top-width: 0px;
      border-top-style: none;
      border-top-color: currentcolor;
      flex-direction: row;
      align-items: center;
      gap: 10px;
  }

  body.product-v2-page--checkout .pv2-steps .pv2-actionbar--sidebar .pv2-notice-trigger {
      width: auto;
      padding: 10px 12px;
      white-space: nowrap;
  }

  body.product-v2-page--checkout .pv2-steps .pv2-actionbar--sidebar .pv2-buy-btn,
  body.product-v2-page--checkout .pv2-steps .pv2-actionbar--sidebar .pv2-prev-btn {
      flex: 1 1 0px;
      width: auto;
      min-width: 0px;
      height: 52px;
      border-radius: 14px;
      font-size: 16px;
  }

  body.product-v2-page--checkout .support-fab {
      right: 12px;
      bottom: calc(env(safe-area-inset-bottom) + 128px);
      z-index: 10002;
  }
}

@media (max-width: 640px), ((hover: none) and (pointer: coarse) and (max-width: 900px)) {
  body.product-v2-page--checkout .support-fab {
      right: 10px;
      bottom: calc(env(safe-area-inset-bottom) + 146px);
  }
}

@media (max-width: 960px) {
  body.product-v2-page--checkout {
      --site-topbar-offset: 74px;
  }

  body.product-v2-page--checkout #top.pv2-site-header .content {
      padding: 12px 14px;
  }

  body.product-v2-page--checkout #top.pv2-site-header {
      right: 0px;
      width: 100%;
  }

  body.product-v2-page--checkout .pv2-site-header__inner {
      grid-template-columns: minmax(0px, 1fr) auto;
      gap: 12px;
  }

  body.product-v2-page--checkout .pv2-site-header__spacer {
      display: none;
  }

  body.product-v2-page--checkout .pv2-brand {
      gap: 12px;
  }

  body.product-v2-page--checkout .pv2-brand__mark {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      flex-basis: 46px;
  }

  body.product-v2-page--checkout .pv2-brand__wordmark {
      font-size: 24px;
  }

  body.product-v2-page--checkout .pv2-header-back {
      min-height: 46px;
      padding: 0px 16px;
      gap: 8px;
      font-size: 15px;
  }

  body.product-v2-page--checkout .pv2-header-back svg {
      width: 18px;
      height: 18px;
      flex-basis: 18px;
  }

  body.product-v2-page--checkout .Wrapper {
      padding-top: var(--site-topbar-offset) !important;
  }

  body.product-v2-page--checkout .pv2-shell {
      padding: 0px 8px 170px;
  }

  body.product-v2-page--checkout .pv2-main-column {
      padding-right: 0px;
  }

  body.product-v2-page--checkout .product-card-container--v2 {
      padding: 14px 8px 18px;
      min-height: auto;
  }

  body.product-v2-page--checkout .pv2-hero, body.product-v2-page--checkout .co-v2-panel {
      min-height: auto;
      border-radius: 24px;
  }

  body.product-v2-page--checkout .pv2-hero {
      padding: 18px 14px;
  }

  body.product-v2-page--checkout .product-card-container--v2 .pv2-label {
      margin-bottom: 18px;
      font-size: clamp(28px, 8.6vw, 38px);
  }

  body.product-v2-page--checkout .pv2-selection-summary {
      border-radius: 18px;
  }

  body.product-v2-page--checkout .pv2-selection-summary__media {
      flex-basis: 48px;
      width: 48px;
      height: 48px;
      border-radius: 14px;
  }

  body.product-v2-page--checkout .pv2-selection-summary__title {
      font-size: 14px;
  }
}
