/* Font giống Apple */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #F5F5F7;
}

/* Banner */
.banner {
  background-color: #f5f5f7;
  overflow: hidden;
}

.banner-content {
  display: grid;
  grid-template-columns: minmax(500px, 0.9fr) minmax(420px, 1.1fr);
  grid-template-areas:
    "copy media"
    "apps media";
  align-items: center;
  column-gap: clamp(24px, 4vw, 56px);
  row-gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 520px;
  padding: 48px clamp(16px, 2.2vw, 32px) 46px;
}

.banner-texts {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
}

.banner-lottie {
  width: 184px;
  height: 62px;
  display: block;
  margin: 0 0 12px -5px;
}

.banner-title {
  margin: 0 0 -4px;
  padding-bottom: 8px;
  max-width: none;
  font-size: clamp(58px, 5.1vw, 72px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.045em;
  white-space: nowrap;
  background: linear-gradient(90deg, #0084ff 30%, #ff6600 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 18px 64px rgba(255, 159, 64, 0.28);
}

.apple-icon {
  width: 38px;
  height: 38px;
  fill: currentColor;
  flex-shrink: 0;
}

.banner-apple {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 14px 0 0;
  color: #1d1d1f;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
  white-space: nowrap;
}

.banner-apple > span:first-of-type,
.esign-brand > span {
  letter-spacing: 0.06em;
}

.brand-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  color: #6e6e73;
  line-height: 1;
  transform: translateY(0.16em);
}

.brand-x svg {
  display: block;
  width: 0.68em;
  height: 0.68em;
  overflow: visible;
}

.brand-x path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.esign-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #469cf8;
}

.esign-app-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: none;
}

.banner-app-preview {
  grid-area: apps;
  width: min(100%, 560px);
  margin-left: 10px;
}

.banner-app-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.payment-acceptance {
  width: 100%;
  color: #1d1d1f;
  padding-top: 4px;
}

.payment-eyebrow {
  margin: 0 0 16px;
  font-size: 23px;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.payment-method {
  position: relative;
  min-width: 0;
  padding-left: 13px;
  padding-top: 1px;
}

.payment-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 32px;
  border-radius: 999px;
  background: #007aff;
}

.payment-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  width: 1px;
  height: 28px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    to bottom,
    rgba(63, 63, 65, 0.72) 0 3px,
    transparent 3px 7px
  );
}

.payment-method h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 600;
  color: #444;
  letter-spacing: -0.02em;
}

.payment-method p {
  margin: 0 0 8px;
  min-height: 18px;
  font-size: 12px;
  color: #6e6e73;
  white-space: nowrap;
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
}

.payment-logos img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
}

.payment-logos span {
  margin-left: 1px;
  font-size: 14px;
  color: #1d1d1f;
}

.paypal-logo-wrap {
  align-items: center;
  min-height: 22px;
}

.payment-logos img.paypal-logo {
  width: auto;
  max-width: none;
  height: 22px;
  display: block;
  border-radius: 0 !important;
  background: transparent !important;
}

.banner-image {
  grid-area: media;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.banner-image img {
  display: block;
  width: min(100%, 620px);
  height: auto;
  filter: none;
}

@media (min-width: 769px) and (max-width: 980px) {
  .banner-content {
    grid-template-columns: minmax(360px, 0.95fr) minmax(300px, 1.05fr);
    max-width: 900px;
  }

  .banner-title {
    font-size: clamp(50px, 6vw, 64px);
    white-space: normal;
  }

  .banner-apple {
    font-size: clamp(24px, 3vw, 32px);
  }
}

@media (max-width: 768px) {
  .banner-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "apps";
    justify-items: center;
    gap: 10px;
    min-height: 0;
    padding: 34px 22px 18px;
    text-align: center;
  }

  .banner-texts {
    grid-area: copy;
    order: 1;
    align-items: center;
    text-align: center;
  }

  .banner-lottie {
    width: 190px;
    height: 64px;
    margin: 0 0 6px;
  }

  .banner-title {
    font-size: clamp(42px, 13vw, 58px);
    margin-bottom: -2px;
    padding-bottom: 7px;
  }

  .banner-apple {
    margin: 10px 0 24px;
    gap: 8px;
    font-size: clamp(22px, 7vw, 30px);
  }

  .apple-icon {
    width: 31px;
    height: 31px;
  }

  .esign-app-icon {
    width: 25px;
    height: 25px;
    border-radius: 7px;
  }

  .esign-brand {
    gap: 8px;
  }

  .banner-app-preview {
    grid-area: apps;
    order: 3;
    width: min(100%, 560px);
    margin: 4px auto 0;
  }

  .payment-acceptance {
    width: min(100%, 360px);
    margin: 0 auto;
    text-align: left;
  }

  .payment-eyebrow {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .payment-method-grid {
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    column-gap: 32px;
    row-gap: 0;
  }

  .payment-method {
    padding-left: 10px;
    padding-right: 0;
  }

  .payment-line {
    left: 0;
    transform: none;
    top: 0;
    width: 3px;
    height: 28px;
  }

  .payment-line::after {
    height: 24px;
  }

  .payment-logos {
    justify-content: flex-start;
  }

  .payment-method h3 {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .payment-method p {
    font-size: 11px;
    white-space: normal;
  }

  .payment-logos img {
    width: 18px;
    height: 18px;
    border-radius: 5px;
  }

  .payment-logos span {
    font-size: 12px;
  }

  .payment-logos img.paypal-logo {
    width: auto;
    height: 18px;
  }

  .banner-image {
    grid-area: media;
    order: 2;
    width: 100%;
  }

  .banner-image img {
    width: min(100%, 420px);
    filter: none;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}


/* Toggle section */
.plan-filter {
  background-color: #F5F5F7; /* cùng nền với body */
  padding: 80px 0 30px 0;
  text-align: center;
}

.toggle {
  position: relative;
  display: inline-flex;
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 4px;
  width: 260px; 
  height: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Thanh trượt */
.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background-color: #F5F5F7;
  border-radius: 30px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.32s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
  z-index: 0;
}

.toggle-btn {
  flex: 1;
  position: relative;
  background: transparent;
  border: none;
  border-radius: 30px;
  padding: 8px 24px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  color: #333;
  z-index: 1;
}

.toggle-btn.active {
  background-color: transparent;
  color: #000000;
  font-weight: 600;
  box-shadow: none;
}

/* Plans + hiệu ứng */
.plans {
  position: relative;
  min-height: auto; /* để container không bị co lại */
}

.plans-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px 20px;

  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;

  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: all 0.4s ease;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* mượt trên iOS */
  scroll-snap-type: x mandatory;
}

.plans-container.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.plans-container.is-switching {
  opacity: 0;
  transform: translateY(14px);
}

.plan-btn {
  background: #fff;
  border: none;              /* bỏ viền */
  border-radius: 24px;
  cursor: pointer;
  justify-content: left;
  text-align: left;
  width: 280px;
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  scroll-snap-align: start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.plans-container a {
  text-decoration: none;
}

.join-now, .buy-now {
  position: static;
  align-self: flex-start;
  margin-top: auto;
  background-color: #007aff; /* Xanh Apple */
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 24px;     /* bo tròn hai đầu */
  user-select: none;        /* không cho bôi đen */
  pointer-events: none;     /* 👈 quan trọng! để không thể click */
}

.plan-content:has(.join-now)::after,
.plan-content:has(.buy-now)::after {
  content: "";
  display: block;
  height: 10px;
  order: 98;
}

.join-now,
.buy-now {
  order: 99;
}

.plan-btn img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.plan-content {
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
}

/* Dòng giá */
.plan-content .price {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline; /* căn cho /năm thấp hơn một chút */
  gap: 4px;
}

.plan-content .price-stack {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.plan-content .price-stack .price {
  margin-bottom: 0;
}

.plan-content .price-original .old-amount {
  color: #8e8e93 !important;
  font-size: 18px;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.plan-content .price-original .period {
  color: #8e8e93;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* Phần giá to và màu cam */
.plan-content .price .amount {
  font-size: 24px;
  font-weight: 700;
  color: #246dda;
  line-height: 1;
}

.unban .amount { color: #f47a1f !important;}

.plan-content .price-original .amount.old-amount,
.unban .plan-content .price-original .amount.old-amount {
  color: #8e8e93 !important;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.unban .plan-content .price-original .period {
  color: #8e8e93 !important;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* Phần /năm nhỏ và màu xám nhẹ */
.plan-content .price .period {
  font-size: 14px;
  color: #6e6e73;
}

.plan-content .price-original .period {
  color: #8e8e93;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.plan-btn h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #1d1d1f;
}

.plan-btn ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #6e6e73;
}

/* Dấu chấm tròn cam lõm */
.plan-content ul li::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: inset 0.5px 2px 2px rgba(0, 0, 0, 0.5),
              inset -2px -10px 5px rgba(221, 101, 32, 0.3);
}

/* Dòng 1 – màu cam */
.plan-content ul li:nth-child(1)::before {
  background: #f47a1f;
}

/* Dòng 2 – màu vàng */
.plan-content ul li:nth-child(2)::before {
  background: #47b6ff;
}

/* Dòng 3 – màu đỏ nhạt */
.plan-content ul li:nth-child(3)::before {
  background: #ffffff;
}

.plan-btn .note {
  font-size: 14px;
  color: #1d1d1f;
  line-height: 1.5;
}


/* Thẻ đặc biệt */
.special-plan {
  background: #000 !important;   /* nền đen */
  color: #fff !important;        /* chữ trắng */
  text-decoration: none;         /* bỏ gạch chân của <a> */
  display: flex;                 /* giống button */
  flex-direction: column;
  align-items: flex-start;
}

.special-plan h3,
.special-plan ul li,
.special-plan p {
  color: #fff !important;
  line-height: 1.5;
}

.special-plan img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}


/* Hover: scale nhẹ thay vì dịch chuyển lên */
.plan-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.plan-btn:active {
  transform: scale(0.99);             /* bấm vào thì thu nhỏ nhẹ */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Mobile: cuộn ngang */
@media screen and (max-width: 767px) {
   .plans-container {
    flex-wrap: nowrap;         /* không xuống dòng */
    overflow-x: auto;          /* scroll ngang */
    justify-content: flex-start;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 20px;
  }
    
  .plans-container::-webkit-scrollbar {
    display: none; /* ẩn thanh cuộn ngang */
  }
}

.esign-title {
  text-align: left;
  font-size: 36px;
  font-weight: 400;
  margin: 80px 20px 4px;
  background: linear-gradient(90deg, #0084ff 5%, #ff6600 15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Link “Tìm hiểu thêm” --- */
.esign-link {
  text-align: left;
  margin: 0 20px 30px;
}

.esign-link a {
  color: #0071e3;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* 👇 Vẽ icon “>” bằng CSS */
.esign-link .arrow-icon {
  display: inline-block;
  width: 6.5px;
  height: 6.5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* Container chứa các thẻ */
.esign-container {
  display: flex;
  gap: 20px;
  padding: 0 20px 20px 80px;
  justify-content: left;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;

  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;  /* Ẩn scrollbar trên IE/Edge */
  scrollbar-width: none;     /* Ẩn scrollbar trên Firefox */
}

.esign-container::-webkit-scrollbar {
  display: none; /* Ẩn scrollbar trên Chrome/Safari */
}

/* Mỗi thẻ */
.esign-card {
  flex: 0 0 calc((100% - 40px) / 6); 
  aspect-ratio: 5 / 7;               /* tỷ lệ ảnh nền 5:7 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
}

/* Text phía trên */
.esign-card .text-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  z-index: 2;
}

/* --- MOBILE --- */
@media screen and (max-width: 767px) {
  .esign-title {
    font-size: 30px;
    background: linear-gradient(90deg, #0084ff 15%, #ff6600 45%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .esign-container {
    flex-wrap: nowrap;
    padding-right: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
  }

  .esign-card {
    flex: 0 0 90%; /* chiếm ~80% màn hình */
    max-width: 320px;
    scroll-snap-align: start;
  }
}

.benefits-section {
  padding: 80px 0;
  background-color: #F5F5F7;
}

.benefits-title {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #000000;
}

.benefits-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 0 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;

  /* Thêm scroll snap */
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;  /* IE & Edge */
  scrollbar-width: none;     /* Firefox */
}

.benefits-container::-webkit-scrollbar {
  display: none;
}

.benefit-card {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  text-align: left;

  /* Snap từng thẻ */
  scroll-snap-align: start;
}

.benefit-card img,
.benefit-icon {
  width: 30px;
  height: 30px;
  display: block;
  flex: 0 0 auto;
  color: #2f83dc;
  fill: currentColor;
}

.benefit-card img {
  object-fit: contain;
  border-radius: 0;
}

.benefit-icon-apple {
  width: 38px;
  height: 38px;
  margin: -4px 0 -2px -2px;
}

.benefit-icon-shield {
  transform: scale(1.08);
  transform-origin: center;
}

.benefit-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f1d1d;
  margin: 0;
}

.benefit-card p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
  margin: 0;
}

.benefits-section br {
  display: none;
}

/* Mobile */
@media screen and (max-width: 767px) {
  .benefits-title {
    text-align: left;
    font-size: 30px;
    padding-left: 20px;
  }
  .benefits-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: left;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
  }
  .benefit-card {
    flex: 0 0 80%;
    max-width: 280px;
    scroll-snap-align: start;
  }
  .benefits-section br {
    display: flex;
  }
}

.faq-section {
  background-color: #fff;
  padding: 30px 15px 50px;
  margin-top: 30px;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000;
}

@media screen and (max-width: 767px) {
  .faq-title {
    font-size: 30px;
  }
}

.faq-card {
  border-bottom: 1px solid #e0e0e0; /* đường ngang giữa các nút */
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  background-color: #fff; /* trùng với nền */
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background-color: #f5f5f7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  margin: 20px 10px;
  font-size: 14px;
  color: #6e6e73;
}

.faq-arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.faq-card.active .faq-arrow {
  transform: rotate(135deg);
}

/* Soldout Popup */
.is-soldout {
  position: relative;
  opacity: 0.92;
}

.soldout-now {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #dbe3ee;
  color: #1f2937;
  font-weight: 600;
  text-align: center;
}

.soldout-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.soldout-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.soldout-modal {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 440px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 32px 24px;
  text-align: center;
  transform: translateY(30px) scale(0.95);
  opacity: 0;
}

.soldout-overlay.show .soldout-modal {
  animation: soldoutPopupShow 0.3s ease both;
}

@keyframes soldoutPopupShow {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.soldout-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #0f172a;
  background: #edf2ff;
  border: 1px solid #dbeafe;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.soldout-title {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
  color: #1d1d1f;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.soldout-text {
  margin: 0;
  color: #6e6e73;
  font-size: 17px;
  line-height: 1.4;
}

.soldout-actions {
  margin-top: 24px;
}

.soldout-btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 14px;
  cursor: pointer;
}

.soldout-btn:hover {
  background: #000;
}

@media (max-width: 640px) {
  .soldout-modal {
    width: 92%;
    padding: 24px 18px;
  }

  .soldout-title {
    font-size: 24px;
  }

  .soldout-text {
    font-size: 15px;
  }
}
