/* First 90 Days Product Page — extends product.css */

/* ── TABLE OF CONTENTS SECTION ── */
.product-toc {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.product-toc-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.toc-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 3rem;
}
.toc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.toc-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.toc-weeks {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.toc-weeks-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.toc-list li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  padding-left: 1.1rem;
  position: relative;
}
.toc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .toc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .product-toc { padding: 3.5rem 1.5rem; }
  .toc-block { padding: 1.5rem; }
}