:root {
  --th-accent: #c8102e;
  --th-accent-dark: #96001f;
  --th-text: #23272f;
  --th-muted: #5a6472;
  --th-border: #e3e6ea;
  --th-bg-soft: #fafbfc;
}

.th-replica-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 40px 72px;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--th-text);
  text-align: left;
}

.th-replica-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 52px 0 22px;
  letter-spacing: -0.01em;
  color: #111;
  text-align: center;
  position: relative;
  padding-bottom: 14px;
}

.th-replica-wrap h2:first-of-type {
  margin-top: 0;
}

.th-replica-wrap h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--th-accent);
  border-radius: 2px;
}

.th-replica-wrap h3 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 40px 0 18px;
  letter-spacing: -0.005em;
  color: #111;
  text-align: center;
}

.th-replica-wrap p {
  margin: 0 0 18px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.th-replica-wrap strong {
  color: #111;
  font-weight: 700;
}

.th-replica-wrap a,
.th-replica-wrap a:visited {
  color: var(--th-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.th-replica-wrap a:hover,
.th-replica-wrap a:focus {
  color: var(--th-accent-dark);
  text-decoration-color: var(--th-accent-dark);
}

.th-replica-wrap a:focus-visible {
  outline: 2px solid var(--th-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.th-faq {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 2px solid var(--th-border);
}

.th-faq h2 {
  margin-top: 0;
}

.th-faq-item {
  border: 1px solid var(--th-border);
  border-radius: 10px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.th-faq-item[open] {
  border-color: var(--th-accent);
  box-shadow: 0 4px 16px rgba(200, 16, 46, .08);
}

.th-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  user-select: none;
  transition: background .2s ease;
  text-align: left;
  color: var(--th-text);
}

.th-faq-item summary::-webkit-details-marker {
  display: none;
}

.th-faq-item summary:hover {
  background: var(--th-bg-soft);
}

.th-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--th-accent);
  transition: transform .25s ease;
}

.th-faq-item[open] summary::after {
  content: "\2212";
}

.th-faq-item .th-faq-answer {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--th-muted);
  animation: thFadeIn .25s ease;
  text-align: justify;
}

@keyframes thFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .th-replica-wrap {
    padding: 36px 22px 52px;
    font-size: 0.98rem;
  }
  .th-replica-wrap h2 {
    font-size: 1.25rem;
  }
}

/* ===== Collection Carousel ===== */

.collection-carousel {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 20px auto;
  padding: 20px 14px;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  gap: 10px;
  align-items: center;
  overflow: hidden;
}

.collection-track {
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 5);
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}

.collection-track::-webkit-scrollbar {
  display: none;
}

.collection-card {
  min-width: 0;
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  color: #222222;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.collection-image {
  height: 135px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.06);
}

.collection-content {
  padding: 12px 8px 16px;
  text-align: center;
  background: #ffffff;
}

.collection-content span {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888888;
}

.collection-content strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #2b2b2b;
  word-break: normal;
  overflow-wrap: normal;
}

.collection-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
  color: #333333;
  font-size: 26px;
  line-height: 28px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 5;
}

.collection-arrow:hover {
  background: #f7f7f7;
}

.collection-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 1200px) {
  .collection-track {
    grid-auto-columns: calc((100% - 24px) / 3);
  }
}

@media (max-width: 768px) {
  .collection-carousel {
    margin: 16px auto;
    padding: 14px 8px 16px;
    border-radius: 14px;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 6px;
  }

  .collection-track {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
    padding: 6px 0;
  }

  .collection-card {
    border-radius: 12px;
  }

  .collection-image {
    height: 110px;
    padding: 8px;
  }

  .collection-content {
    padding: 10px 6px 12px;
  }

  .collection-content span {
    margin-bottom: 3px;
    font-size: 8px;
    letter-spacing: 1.2px;
  }

  .collection-content strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .collection-arrow {
    width: 28px;
    height: 28px;
    font-size: 20px;
    line-height: 22px;
  }
}

@media (max-width: 420px) {
  .collection-carousel {
    padding: 12px 6px 14px;
    grid-template-columns: 26px minmax(0, 1fr) 26px;
    gap: 5px;
  }

  .collection-track {
    grid-auto-columns: calc((100% - 10px) / 2);
    gap: 10px;
  }

  .collection-image {
    height: 95px;
    padding: 6px;
  }

  .collection-content strong {
    font-size: 13px;
  }
}