/**
 * Appily Fortysix — Product Bloom (new layout)
 * Compact hero · spotlight gallery · glass pick card · tabbed details · related filmstrip
 */

@keyframes prd-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(14px, -10px) scale(1.04); }
}
@keyframes prd-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(174, 213, 129, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(174, 213, 129, 0); }
}
@keyframes prd-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes prd-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes prd-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}
@keyframes prd-card-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes prd-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.page-product-bloom {
  --prd-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --prd-display: 'Syne', var(--font-display), Georgia, serif;
  --prd-lime: #AED581;
  --prd-coral: #FF7043;
  --prd-green: #558B2F;
  --prd-ink: #263238;
  --prd-shadow: 0 22px 55px rgba(38, 50, 56, 0.11);
  --prd-shadow-sm: 0 8px 26px rgba(38, 50, 56, 0.07);
  background: #eef2ef;
}
.page-product-bloom .page-main { padding-top: 0; }
.prd-bloom { padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0)); }

.prd-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--prd-ease), transform 0.65s var(--prd-ease);
}
.prd-reveal.is-visible { opacity: 1; transform: none; }

/* ── Hero strip ── */
.prd-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 1.75rem) 0 clamp(1rem, 2.5vw, 1.5rem);
  color: #fff;
}
.prd-hero-bg {
  position: absolute;
  inset: 0;
  background: #0f1f14;
  pointer-events: none;
  overflow: hidden;
}
.prd-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(174, 213, 129, 0.28), transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(255, 112, 67, 0.22), transparent 38%),
    linear-gradient(155deg, #1b3a1f, #0f1f14 55%, #152820);
}
.prd-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  animation: prd-blob 12s ease-in-out infinite;
}
.prd-blob--1 { width: 220px; height: 220px; top: -30px; right: 8%; background: rgba(255, 111, 0, 0.28); }
.prd-blob--2 { width: 180px; height: 180px; bottom: -20px; left: 5%; background: rgba(174, 213, 129, 0.24); animation-delay: -4s; }

.prd-hero-inner {
  position: relative;
  z-index: 1;
}
.prd-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
}
.prd-crumb a {
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.prd-crumb a:hover { color: var(--prd-lime) !important; }
.prd-crumb span[aria-hidden="true"] { opacity: 0.35; }
.prd-crumb [aria-current="page"] {
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.prd-hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}
.prd-hero-copy { flex: 1; min-width: 200px; }
.prd-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.prd-live.is-out { background: rgba(255, 112, 67, 0.15); border-color: rgba(255, 112, 67, 0.3); color: #FFAB91; }
.prd-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--prd-lime);
  animation: prd-pulse 2.4s ease-out infinite;
}
.prd-live.is-out .prd-live-dot { background: var(--prd-coral); animation: none; }

.prd-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--prd-display);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.prd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.prd-chip {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.prd-chip--cat { color: var(--prd-lime); border-color: rgba(174, 213, 129, 0.25); }
.prd-chip--stock.is-out { color: #FFAB91; border-color: rgba(255, 112, 67, 0.3); }

.prd-price-tag {
  flex-shrink: 0;
  padding: 0.75rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  text-align: right;
}
.prd-price-tag-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.15rem;
}
.prd-price-tag s {
  display: block;
  font-size: 0.78rem;
  opacity: 0.5;
  margin-bottom: 0.1rem;
}
.prd-price-tag-sale {
  display: inline-block;
  margin-bottom: 0.2rem;
  padding: 0.12rem 0.4rem;
  border-radius: 6px;
  background: var(--prd-coral);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.prd-price-tag strong {
  display: block;
  font-family: var(--prd-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--prd-lime);
  line-height: 1;
}

/* ── Showcase stage ── */
.prd-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 400px);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: start;
  padding: 0.75rem 0 1.25rem;
}

/* Spotlight gallery */
.prd-spotlight {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(38, 50, 56, 0.06);
  box-shadow: var(--prd-shadow);
  aspect-ratio: 1;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prd-spotlight-glow {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 213, 129, 0.25), transparent 70%);
  animation: prd-glow 5s ease-in-out infinite;
  pointer-events: none;
}
.prd-spotlight-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(85, 139, 47, 0.2);
  animation: prd-ring 40s linear infinite;
  pointer-events: none;
}
.prd-spotlight-badge,
.prd-spotlight-sale {
  position: absolute;
  z-index: 2;
  top: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.prd-spotlight-badge {
  left: 1rem;
  background: rgba(85, 139, 47, 0.9);
  color: #fff;
}
.prd-spotlight-sale {
  right: 1rem;
  background: var(--prd-coral);
  color: #fff;
}
.prd-spotlight img {
  position: relative;
  z-index: 1;
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(38, 50, 56, 0.15));
  transition: transform 0.5s var(--prd-ease);
}
.prd-spotlight:hover img { transform: scale(1.04) translateY(-4px); }

/* Pick card (purchase panel) */
.prd-pick {
  position: sticky;
  top: 1rem;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(165deg, #1a2e1c 0%, #0f1f14 55%, #152820 100%);
  color: #fff;
  border: 1px solid rgba(174, 213, 129, 0.15);
  box-shadow: var(--prd-shadow);
}
.prd-pick-head {
  padding: 1.15rem 1.35rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(174, 213, 129, 0.06);
}
.prd-pick-badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--prd-lime);
}
.prd-pick-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--prd-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.prd-pick-lede {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}
.prd-pick-body { padding: 1.15rem 1.35rem 1.35rem; }

.prd-error {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 112, 67, 0.15);
  border: 1px solid rgba(255, 112, 67, 0.35);
  color: #FFAB91;
  font-size: 0.84rem;
  font-weight: 600;
}

.prd-option { margin-bottom: 1rem; }
.prd-option-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.prd-option-label strong { color: var(--prd-lime); text-transform: none; letter-spacing: 0; font-size: 0.82rem; }
.prd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.prd-pill {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.prd-pill:hover { border-color: rgba(174, 213, 129, 0.4); color: #fff; }
.prd-pill.is-active {
  background: rgba(174, 213, 129, 0.2);
  border-color: var(--prd-lime);
  color: var(--prd-lime);
  transform: scale(1.03);
}

.prd-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.prd-qty-row label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.prd-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}
.prd-stepper button {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.prd-stepper button:hover { background: rgba(174, 213, 129, 0.15); }
.prd-stepper input {
  width: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.prd-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.prd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  border: 2px solid transparent;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.25s var(--prd-ease), filter 0.25s, border-color 0.25s;
}
.prd-btn--cart {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}
.prd-btn--cart:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }
.prd-btn--buy {
  background: linear-gradient(135deg, var(--prd-green), #33691E);
  color: #fff !important;
  background-size: 200% auto;
}
.prd-btn--buy:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  animation: prd-shimmer 2s linear infinite;
  background-image: linear-gradient(135deg, var(--prd-green), #33691E, var(--prd-lime), var(--prd-green));
}
.prd-btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.prd-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.prd-meta-cell {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}
.prd-meta-cell strong {
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.15rem;
}
.prd-payments {
  display: flex;
  gap: 0.4rem;
}
.prd-payments span {
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(174, 213, 129, 0.15);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--prd-lime);
}

/* Perks row */
.prd-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  padding: 0.25rem 0 1.25rem;
}
.prd-perk {
  display: flex;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(38, 50, 56, 0.06);
  box-shadow: var(--prd-shadow-sm);
  animation: prd-card-in 0.5s var(--prd-ease) both;
  animation-delay: calc(var(--prd-i, 0) * 0.08s);
}
.prd-perk-icon {
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
}
.prd-perk strong {
  display: block;
  font-family: var(--prd-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--prd-ink);
  margin-bottom: 0.2rem;
}
.prd-perk p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--fg-muted, #607D8B);
}

/* Tabbed details */
.prd-tabs-wrap {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(38, 50, 56, 0.06);
  box-shadow: var(--prd-shadow-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.prd-tabs-nav {
  display: flex;
  position: relative;
  padding: 0.5rem;
  gap: 0.35rem;
  border-bottom: 1px solid var(--fg-border, #ECEFF1);
  background: linear-gradient(135deg, rgba(174, 213, 129, 0.08), transparent 70%);
}
.prd-tabs-glider {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  height: calc(100% - 1rem);
  border-radius: 12px;
  background: rgba(174, 213, 129, 0.25);
  border: 1px solid rgba(85, 139, 47, 0.2);
  transition: transform 0.4s var(--prd-ease), width 0.4s var(--prd-ease);
  pointer-events: none;
}
.prd-tab-btn {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0.65rem 1rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fg-muted, #607D8B);
  cursor: pointer;
  transition: color 0.3s;
  border-radius: 12px;
}
.prd-tab-btn.is-active { color: var(--prd-green); }
.prd-tab-panel {
  display: none;
  padding: 1.25rem 1.35rem 1.35rem;
  animation: prd-card-in 0.4s var(--prd-ease);
}
.prd-tab-panel.is-active { display: block; }
.prd-tab-panel h3 {
  margin: 1rem 0 0.5rem;
  font-family: var(--prd-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--prd-ink);
}
.prd-tab-panel h3:first-child { margin-top: 0; }
.prd-detail-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--fg-muted, #607D8B);
}
.prd-detail-list li { margin-bottom: 0.35rem; }
.prd-detail-list strong { color: var(--prd-ink); }
.prd-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.prd-spec-table th,
.prd-spec-table td {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--fg-border, #ECEFF1);
  text-align: left;
}
.prd-spec-table th {
  width: 38%;
  font-weight: 700;
  color: var(--fg-muted, #607D8B);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.prd-spec-table td { color: var(--prd-ink); font-weight: 600; }
.prd-spec-table tr:last-child th,
.prd-spec-table tr:last-child td { border-bottom: 0; }

/* Related filmstrip */
.prd-related { padding-bottom: 0.5rem; }
.prd-related-head {
  margin-bottom: 0.85rem;
}
.prd-related-badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prd-green);
}
.prd-related-head h2 {
  margin: 0 0 0.25rem;
  font-family: var(--prd-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--prd-ink);
}
.prd-related-head p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--fg-muted, #607D8B);
}
.prd-related-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.prd-related-scroll::-webkit-scrollbar { height: 6px; }
.prd-related-scroll::-webkit-scrollbar-thumb { background: rgba(38, 50, 56, 0.15); border-radius: 999px; }

.prd-rel-card {
  flex: 0 0 170px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(38, 50, 56, 0.06);
  box-shadow: var(--prd-shadow-sm);
  transition: transform 0.3s var(--prd-ease), box-shadow 0.3s;
  animation: prd-card-in 0.5s var(--prd-ease) both;
  animation-delay: calc(var(--prd-i, 0) * 0.07s);
}
.prd-rel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--prd-shadow);
}
.prd-rel-link {
  display: block;
  text-decoration: none !important;
  color: inherit;
}
.prd-rel-img {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(145deg, rgba(174, 213, 129, 0.12), #fafbfa);
  overflow: hidden;
}
.prd-rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--prd-ease);
}
.prd-rel-card:hover .prd-rel-img img { transform: scale(1.06); }
.prd-rel-sale {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: var(--prd-coral);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
}
.prd-rel-body { padding: 0.7rem 0.8rem; }
.prd-rel-body h3 {
  margin: 0 0 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--prd-ink);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.prd-rel-price { margin: 0; font-size: 0.82rem; }
.prd-rel-price s { color: var(--fg-muted, #607D8B); font-size: 0.72rem; margin-right: 0.25rem; }
.prd-rel-price strong { color: var(--prd-green); font-weight: 700; }

/* Sticky dock */
.prd-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  background: rgba(15, 31, 20, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(174, 213, 129, 0.2);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s var(--prd-ease);
}
.prd-dock.is-visible { transform: translateY(0); }
.prd-dock-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}
.prd-dock-info span {
  font-family: var(--prd-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--prd-lime);
}
.prd-dock-actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}
.prd-dock-actions .prd-btn {
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
}

/* 404 miss */
.page-bloom-miss .prd-miss {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 440px;
  margin: clamp(3rem, 8vw, 5rem) auto;
  padding: 2rem 1.5rem;
}
.prd-miss-visual {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: prd-float 4s ease-in-out infinite;
}
.prd-miss h1 {
  margin: 0 0 0.65rem;
  font-family: var(--prd-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--prd-ink);
}
.prd-miss p {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--fg-muted, #607D8B);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .prd-stage { grid-template-columns: 1fr; }
  .prd-pick { position: static; order: -1; }
  .prd-spotlight { aspect-ratio: 4/3; max-height: none; }
  .prd-perks { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .prd-actions { grid-template-columns: 1fr; }
  .prd-dock-info strong { max-width: 140px; }
  .prd-crumb [aria-current="page"] { max-width: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  .prd-reveal { transition: none; opacity: 1; transform: none; }
  .prd-blob, .prd-live-dot, .prd-spotlight-ring, .prd-spotlight-glow,
  .prd-miss-visual, .prd-rel-card, .prd-perk { animation: none !important; }
  .prd-btn--buy:hover { animation: none; }
  .prd-spotlight:hover img { transform: none; }
}
