.sha-ct {
  width: 100%;
  padding: 20px 0 8px;
}

.sha-ct__shell {
  display: block;
  width: 100%;
}

.sha-ct__panel {
  display: none;
}

.sha-ct__panel.is-active {
  display: block;
}

.sha-ct__intro {
  margin: 0 0 18px;
}

.sha-ct__title {
  margin: 0 0 8px;
  font-size: clamp(30px, 6vw, 52px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #111319;
}

.sha-ct__copy {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: #667085;
}

.sha-ct__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

.sha-ct__chip {
  border: 1.5px solid #d0d5dd;
  background: #ffffff;
  color: #344054;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sha-ct__chip.is-active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
}

.sha-ct__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sha-ct-card {
  background: #ffffff;
  border: 2px solid #dbe4f0;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sha-ct-card.is-selected {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.sha-ct-card__media {
  position: relative;
  aspect-ratio: 1.2 / 0.8;
  overflow: hidden;
  background: #eef2f6;
}

.sha-ct-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #eef2f6;
}

.sha-ct-card__zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2f7a3f;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.12);
}

.sha-ct-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sha-ct-card__title {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  color: #111319;
}

.sha-ct-card__price {
  font-size: 16px;
  line-height: 1.2;
  color: #667085;
  font-weight: 700;
}

.sha-btn.sha-btn--small {
  min-height: 52px;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 14px;
}

.sha-ct__footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
}

.sha-ct-confirm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sha-ct-confirm__card {
  background: #ffffff;
  border: 1.5px solid #dbe4f0;
  border-radius: 20px;
  padding: 18px;
}

.sha-ct-confirm__label {
  font-size: 14px;
  line-height: 1.1;
  color: #667085;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sha-ct-confirm__value {
  font-size: 22px;
  line-height: 1.25;
  color: #111319;
  font-weight: 900;
}

.sha-ct-zoom {
  position: fixed;
  inset: 0;
  z-index: 999999;
}

.sha-ct-zoom__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 20, 0.78);
  backdrop-filter: blur(10px);
}

.sha-ct-zoom__dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 980px);
  margin: 5vh auto 0;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.22);
}

.sha-ct-zoom__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1f2937;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.sha-ct-zoom__image {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  background: #f8fafc;
}

@media (max-width: 840px) {
  .sha-ct__grid,
  .sha-ct-confirm {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sha-ct {
    padding-top: 10px;
  }

  .sha-ct__title {
    font-size: 30px;
  }

  .sha-ct__copy {
    font-size: 16px;
  }

  .sha-ct__chips {
    gap: 10px;
    margin-bottom: 18px;
  }

  .sha-ct__chip {
    padding: 10px 18px;
    font-size: 15px;
  }

  .sha-ct-card {
    border-radius: 18px;
  }

  .sha-ct-card__zoom,
  .sha-ct-zoom__close {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  .sha-ct-card__body {
    padding: 16px;
  }

  .sha-ct-card__title {
    font-size: 18px;
  }

  .sha-ct-card__price {
    font-size: 14px;
  }

  .sha-ct__footer {
    flex-direction: column;
  }

  .sha-ct-confirm__value {
    font-size: 18px;
  }
}