.pc-crumbs--top { margin-top: 0; }
.pc-crumbs--top span:last-child { color: var(--white); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60ch; }

.pi { display: grid; grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr); gap: 28px; align-items: start; }

.pi__gallery { display: flex; flex-direction: column; gap: 12px; }
.pi__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--navy-700) radial-gradient(140% 130% at 50% 0%, rgba(0, 81, 255, .12), transparent 72%);
  box-shadow: inset 0 0 0 1px var(--navy-600);
}
.pi__shot { position: absolute; inset: 0; display: none; padding: 18px; }
.pi__shot.is-active { display: block; }
.pi__shot img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; filter: drop-shadow(0 10px 28px rgba(3, 9, 24, .6)); }
.pi__thumbs { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding: 2px; margin: -2px; }
.pi__thumbs::-webkit-scrollbar { display: none; }
.pi__thumb {
  flex: none;
  width: 84px;
  height: 84px;
  padding: 6px;
  border-radius: 12px;
  background: var(--navy-700);
  box-shadow: inset 0 0 0 1px var(--navy-600);
  transition: box-shadow var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.pi__thumb img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; }
.pi__thumb:hover { box-shadow: inset 0 0 0 1px var(--navy-500); }
.pi__thumb.is-active { box-shadow: inset 0 0 0 1px var(--blue), 0 0 0 3px rgba(0, 81, 255, .16); background: rgba(0, 81, 255, .12); }

.pi__side { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.pi__head { display: flex; flex-direction: column; }
.pi__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, calc(26px + 12 * (100vw - 375px) / 1065), 38px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--white);
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.pi__facts { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 14px; }
.pi__fact { display: flex; flex-direction: column; gap: 4px; }
.pi__fact-k { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.pi__fact b { font-size: 15px; font-weight: 500; color: var(--white); }

.pi__buy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: var(--navy-700);
  box-shadow: inset 0 0 0 1px var(--navy-600);
}
.pi__pricebox { display: flex; flex-direction: column; gap: 4px; }
.pi__price { font-family: var(--font-display); font-size: 40px; font-weight: 500; line-height: 1; letter-spacing: -.02em; color: var(--white); font-variant-numeric: tabular-nums; }
.pi__price-unit { font-size: 24px; color: var(--periwinkle); margin-right: 4px; }
.pi__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.pi__actions .pc-btn { flex: 1 1 auto; }
.pi__owned { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--blue-light); }
.pi__owned svg { width: 16px; height: 16px; flex: none; }

.pi__pay { margin: 0; }
.pi__board { margin-top: 0; }
.pi__go { width: 100%; }
.pi__balance { margin-top: 0; }

.pi__about {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, calc(20px + 8 * (100vw - 375px) / 1065), 28px) clamp(18px, calc(18px + 8 * (100vw - 375px) / 1065), 26px);
  border-radius: var(--radius-card);
  background: var(--navy-800);
  box-shadow: inset 0 0 0 1px var(--navy-600);
}
.pi__about-title { margin: 0; font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1.15; color: var(--white); text-wrap: balance; }
.pi__about-body { font-size: 15px; line-height: 1.55; color: var(--periwinkle); max-width: 78ch; overflow-wrap: anywhere; }
.pi__about-body p { margin: 0 0 10px; }
.pi__about-body a { color: var(--blue-light); }
.pi__about-body h1, .pi__about-body h2, .pi__about-body h3 { margin: 12px 0 6px; font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--white); }
.pi__about-body ul { padding-left: 18px; list-style: disc; }
.pi__related-title { margin: 0; font-family: var(--font-display); font-size: 28px; font-weight: 500; line-height: 1.1; color: var(--white); }

@media (max-width: 960px) {
  .pi { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 560px) {
  .pi__price { font-size: 34px; }
  .pi__actions .pc-btn { flex: 1 1 100%; }
  .pi__thumb { width: 68px; height: 68px; }
}

.pi__stage { cursor: zoom-in; }
.pi__stage:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 2px; }
.pi__shot img { transition: filter var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.pi__stage:hover .pi__shot.is-active img { filter: drop-shadow(0 10px 28px rgba(3, 9, 24, .6)) brightness(.62); transform: scale(1.02); }
.pi__zoom { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--dur) var(--ease-out); pointer-events: none; }
.pi__stage:hover .pi__zoom, .pi__stage:focus-visible .pi__zoom { opacity: 1; }
.pi__zoom span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; color: var(--white); background: rgba(8, 12, 16, .55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25); }
.pi__zoom svg { width: 24px; height: 24px; }
.pi__nav, .pi-lb__x, .pi-lb__nav { display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; font: inherit; color: var(--white); cursor: pointer; transition: background-color var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out); }
.pi__nav { position: absolute; top: 50%; z-index: 2; width: 40px; height: 40px; transform: translateY(-50%); background: rgba(7, 19, 45, .72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14); opacity: 0; }
.pi__nav--prev { left: 14px; }
.pi__nav--next { right: 14px; }
.pi__nav--prev svg { transform: rotate(180deg); }
.pi__nav svg { width: 18px; height: 18px; }
.pi__stage:hover .pi__nav, .pi__nav:focus-visible { opacity: 1; }
.pi__nav:hover { background: var(--blue); }
.pi__counter { position: absolute; right: 14px; bottom: 12px; z-index: 2; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-variant-numeric: tabular-nums; color: var(--periwinkle); background: rgba(7, 19, 45, .72); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1); }
.pi__counter b { font-weight: 500; color: var(--white); }
@media (hover: none) {
  .pi__nav { opacity: 1; }
  .pi__zoom { display: none; }
}
.pi-lb { position: fixed; inset: 0; z-index: 2147483600; display: none; align-items: center; justify-content: center; padding: 34px; background: rgba(3, 7, 11, .86); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.pi-lb.is-open { display: flex; }
.pi-lb__img { display: block; width: auto; height: auto; max-width: min(1200px, 96vw); max-height: 94vh; border-radius: 12px; box-shadow: 0 30px 90px rgba(0, 0, 0, .7), inset 0 0 0 1px rgba(255, 255, 255, .08); transition: opacity .2s; }
.pi-lb__x { position: absolute; top: 22px; right: 24px; width: 42px; height: 42px; background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16); }
.pi-lb__x svg { width: 18px; height: 18px; }
.pi-lb__nav { position: absolute; top: 50%; width: 48px; height: 48px; transform: translateY(-50%); background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16); }
.pi-lb__nav--prev { left: 24px; }
.pi-lb__nav--next { right: 24px; }
.pi-lb__nav--prev svg { transform: rotate(180deg); }
.pi-lb__nav svg { width: 20px; height: 20px; }
.pi-lb__nav:hover, .pi-lb__x:hover { background: var(--blue); }
.pi-lb__counter { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); font-size: 13px; font-variant-numeric: tabular-nums; color: var(--periwinkle); }
.pi-lb__counter b { font-weight: 500; color: var(--white); }
@media (max-width: 640px) {
  .pi-lb { padding: 16px 16px 70px; }
  .pi-lb__nav { top: auto; bottom: 16px; width: 40px; height: 40px; transform: none; }
  .pi-lb__nav--prev { left: 16px; }
  .pi-lb__nav--next { right: 16px; }
  .pi-lb__x { top: 14px; right: 14px; }
  .pi-lb__counter { bottom: 28px; }
}
