/* 颜色样式 */
:root {
  --fs-tkcs-product-bg: #9ECCDA;
  --fs-tkcs-product-font-color: #FFFFFF;
}

/* 主题样式 */
.fs-tkcs-product {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--fs-tkcs-product-bg);
  gap: 48px;
  padding: 90px 0;
  overflow: hidden;
}

.fs-tkcs-product-title {
  color: var(--fs-tkcs-product-font-color);
  text-align: center;
  font-family: Urbanist, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  width: min(96%, 900px);
  margin: 0;
}

.fs-tkcs-product-promo {
  width: min(96%, 1200px);
}

.fs-tkcs-product-promo-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fs-tkcs-product-promo-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.fs-tkcs-product-promo-trigger:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.fs-tkcs-product-promo-trigger img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.fs-tkcs-product-event-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.6);
}

.fs-tkcs-product-event-modal-main {
  position: relative;
  width: min(100%, 560px);
  padding: 48px 40px 40px;
  border-radius: 16px;
  background: #efefef;
  animation-duration: 200ms;
}

.fs-tkcs-product-event-modal-text {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: Rubik, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
}

.fs-tkcs-product-event-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.fs-tkcs-product-event-modal-close svg path {
  fill: #000;
}

@media (max-width: 1000px) {
  .fs-tkcs-product {
    gap: 3rem;
    padding: 5.62rem 0;
  }

  .fs-tkcs-product-title {
    font-size: 3rem;
    width: 90%;
  }

  .fs-tkcs-product-promo {
    width: 92%;
  }

  .fs-tkcs-product-promo-trigger img {
    aspect-ratio: 16 / 9;
  }

  .fs-tkcs-product-event-modal-main {
    padding: 4rem 2.5rem 2.5rem;
  }

  .fs-tkcs-product-event-modal-text {
    font-size: 2rem;
  }

  .fs-tkcs-product-event-modal-close {
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
  }

  .fs-tkcs-product-event-modal-close svg {
    width: 100%;
    height: 100%;
  }
}
