.discs-page .dtf-main {
  position: relative;
}

.discs-product[hidden],
.discs-select[hidden],
.dtf-benefits[hidden],
.dtf-note-field[hidden],
.dtf-fieldset[hidden],
.dtf-quantity[hidden] {
  display: none;
}

.discs-top-band {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 300px;
  overflow: hidden;
  pointer-events: none;
}

.discs-top-band::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgb(35 31 32 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(35 31 32 / 3%) 1px, transparent 1px);
  background-position: center, center;
  background-size: 28px 28px, 28px 28px;
  content: "";
}

.discs-top-band::after {
  position: absolute;
  z-index: 1;
  inset: -25%;
  background: radial-gradient(circle, rgb(206 15 61 / 12%) 0%, transparent 34%);
  content: "";
  animation: discs-glow-roam 17s ease-in-out infinite;
}

@keyframes discs-glow-roam {
  0% { transform: translate(32%, -8%); }
  25% { transform: translate(-14%, 18%); }
  50% { transform: translate(-28%, 58%); }
  75% { transform: translate(18%, 32%); }
  100% { transform: translate(32%, -8%); }
}

@media (prefers-reduced-motion: reduce) {
  .discs-top-band::after {
    animation: none;
  }
}

.discs-page .dtf-product-shell {
  position: relative;
  z-index: 1;
}

#discs-product-title {
  max-width: none;
  font-size: 46px;
  line-height: 1.25;
  white-space: nowrap;
}

#discs-product-title span {
  display: block;
}

#discs-product-title span:last-child {
  color: var(--brand-red);
  font-size: 22px;
  font-weight: 500;
  white-space: normal;
}

@media (max-width: 480px) {
  #discs-product-title {
    font-size: 30px;
    white-space: normal;
  }

  #discs-product-title span:last-child {
    font-size: 17px;
  }
}

.discs-meta {
  display: grid;
  margin-top: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 6px;
}

.discs-meta p {
  margin: 0;
  color: var(--brand-charcoal);
  font-size: 13px;
}

.discs-meta span:first-child {
  margin-right: 6px;
  color: var(--muted);
  font-weight: 600;
}

.discs-size-grid {
  gap: 8px;
}

.discs-size-grid .dtf-choice span {
  min-width: 56px;
  padding-inline: 12px;
}

.dtf-note-field input {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--brand-charcoal);
  background: var(--paper);
  font: 13px/1.55 var(--body);
}

.dtf-note-field input:focus {
  border-color: var(--brand-red);
  outline: 0;
}

.discs-buy-row {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: none;
  align-items: center;
  gap: 12px;
}

.discs-wishlist-button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--brand-charcoal);
  cursor: pointer;
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 600;
  transition: border-color 180ms ease, color 180ms ease;
}

.discs-wishlist-button:hover,
.discs-wishlist-button.is-active {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.discs-wishlist-button svg {
  width: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.discs-wishlist-button.is-active svg {
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  .discs-buy-row {
    flex-direction: column;
    align-items: stretch;
  }

  .dtf-add-button,
  .discs-wishlist-button {
    width: 100%;
  }

  .discs-back-link {
    margin-top: 18px;
  }
}

.discs-select {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3vw, 40px) 0 clamp(48px, 5vw, 76px);
}

.discs-select-heading {
  max-width: 640px;
  margin: 0 auto clamp(32px, 3.6vw, 48px);
  text-align: center;
}

.discs-select-heading h1 {
  margin: 0;
  font-family: var(--primary-title);
  font-size: clamp(38px, 4.1vw, 57px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.discs-select-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 20px;
}

@media (max-width: 480px) {
  .discs-select-heading p {
    margin-top: 6px;
  }
}

.discs-select-grid {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.discs-select-card {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  cursor: pointer;
  text-align: left;
  flex-direction: column;
  transition: border-color 200ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.discs-select-card:hover {
  border-color: var(--brand-silver);
  transform: translateY(-4px);
}

.discs-select-media {
  overflow: hidden;
  aspect-ratio: 1.4;
  background: var(--silver-soft);
}

.discs-select-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.discs-select-card:hover .discs-select-media img {
  transform: scale(1.04);
}

.discs-select-body {
  position: relative;
  padding: 22px 24px 26px;
}

.discs-select-body h3 {
  margin: 0 0 8px;
  color: var(--brand-charcoal);
  font-family: var(--headline);
  font-size: 19px;
  font-weight: 600;
}

.discs-select-body p {
  max-width: calc(100% - 44px);
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.discs-select-arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--silver-soft);
  place-items: center;
}

.discs-select-arrow svg {
  width: 14px;
  fill: none;
  stroke: var(--brand-charcoal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.discs-back-link {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 600;
  gap: 6px;
  grid-column: 1 / -1;
  transition: color 180ms ease;
}

.discs-back-link:hover {
  color: var(--brand-red);
}

@media (max-width: 640px) {
  .discs-select-grid {
    grid-template-columns: 1fr;
  }
}
