/* ============================================
   ARICA — Product Listing (Detail) Page
   ============================================ */

.productlisting-page {
  --pl-section-pad: clamp(3rem, 6vw, 5rem);
}

/* ---- Hero ---- */
.pl-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--topbar-h) + clamp(2.5rem, 4vw, 3.5rem)) 0 clamp(1rem, 2vw, 1.5rem);
  background: #010728;
  overflow: hidden;
  color: var(--white);
}

.pl-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pl-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.pl-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(1, 7, 40, 0.8) 0%,
    rgba(1, 7, 40, 0.52) 38%,
    rgba(1, 7, 40, 0.22) 68%,
    rgba(1, 7, 40, 0.1) 100%
  );
}

.pl-hero__bg-sheen {
  position: absolute;
  inset: -25%;
  background: linear-gradient(120deg,
    rgba(19, 120, 243, 0) 0%,
    rgba(19, 120, 243, 0.35) 35%,
    rgba(140, 205, 255, 0.28) 50%,
    rgba(19, 120, 243, 0) 65%);
  background-size: 250% 250%;
  animation: plSheenShift 11s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.pl-hero__bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.pl-hero__bubbles span {
  position: absolute;
  bottom: -10%;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(150, 205, 255, 0.18) 60%, rgba(150, 205, 255, 0) 76%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 6px 1px rgba(110, 190, 255, 0.55), 0 0 16px 4px rgba(19, 120, 243, 0.35);
  filter: drop-shadow(0 0 4px rgba(140, 205, 255, 0.5));
  opacity: 0;
  animation: plBubbleRise linear infinite;
}

.pl-hero__bubbles span:nth-child(1)  { left: 6%;  width: 9px;  height: 9px;  --drift: 22px;  animation-duration: 8.5s;  animation-delay: 0s; }
.pl-hero__bubbles span:nth-child(2)  { left: 16%; width: 14px; height: 14px; --drift: -18px; animation-duration: 11s;   animation-delay: 1.2s; }
.pl-hero__bubbles span:nth-child(3)  { left: 27%; width: 7px;  height: 7px;  --drift: 12px;  animation-duration: 7.5s;  animation-delay: 2.6s; }
.pl-hero__bubbles span:nth-child(4)  { left: 40%; width: 12px; height: 12px; --drift: -20px; animation-duration: 10s;   animation-delay: 0.6s; }
.pl-hero__bubbles span:nth-child(5)  { left: 52%; width: 8px;  height: 8px;  --drift: 16px;  animation-duration: 9s;    animation-delay: 3.4s; }
.pl-hero__bubbles span:nth-child(6)  { left: 63%; width: 15px; height: 15px; --drift: -14px; animation-duration: 12.5s; animation-delay: 1.8s; }
.pl-hero__bubbles span:nth-child(7)  { left: 74%; width: 6px;  height: 6px;  --drift: 10px;  animation-duration: 7s;    animation-delay: 4.2s; }
.pl-hero__bubbles span:nth-child(8)  { left: 84%; width: 11px; height: 11px; --drift: -22px; animation-duration: 10.5s; animation-delay: 2.2s; }
.pl-hero__bubbles span:nth-child(9)  { left: 92%; width: 9px;  height: 9px;  --drift: 18px;  animation-duration: 8s;    animation-delay: 0.9s; }
.pl-hero__bubbles span:nth-child(10) { left: 97%; width: 13px; height: 13px; --drift: -16px; animation-duration: 11.5s; animation-delay: 3.8s; }

@keyframes plSheenShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes plBubbleRise {
  0% {
    transform: translateY(0) translateX(0) scale(0.6);
    opacity: 0;
  }
  12% { opacity: 0.6; }
  55% { opacity: 0.35; }
  100% {
    transform: translateY(-320px) translateX(var(--drift, 16px)) scale(1);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pl-hero__bg-sheen,
  .pl-hero__bubbles span {
    animation: none;
  }

  .pl-hero__bubbles {
    display: none;
  }
}

.pl-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.pl-hero__content {
  max-width: 34rem;
}

.pl-hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.pl-hero__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.38rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
}

.pl-hero__type {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-navy);
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: var(--green-lime);
}

.pl-hero__title {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.35rem;
  text-wrap: balance;
}

.pl-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem 0.65rem 0.65rem;
  margin-bottom: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.pl-hero__brand:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(4px);
}

.pl-hero__brand-logo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.pl-hero__brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pl-hero__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.pl-hero__brand-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.pl-hero__brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.pl-hero__brand-arrow {
  width: 18px;
  height: 18px;
  margin-left: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s;
}

.pl-hero__brand:hover .pl-hero__brand-arrow {
  transform: translateX(3px);
}

.pl-hero__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 30rem;
  margin-bottom: 1.75rem;
}/* Showcase */
.pl-hero__showcase {
  display: none;
}

.pl-hero__showcase-glow {
  position: absolute;
  width: min(90%, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(19, 120, 243, 0.12) 45%, transparent 70%);
  filter: blur(20px);
}

.pl-hero__showcase-ring {
  position: absolute;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  animation: plRipple 3.2s ease-out infinite;
}

.pl-hero__showcase-ring--1 { animation-delay: 0s; }
.pl-hero__showcase-ring--2 { animation-delay: 0.8s; }
.pl-hero__showcase-ring--3 { animation-delay: 1.6s; }
.pl-hero__showcase-ring--4 { animation-delay: 2.4s; }

@keyframes plRipple {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(3);   opacity: 0; }
}

.pl-hero__showcase-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 210px);
  padding: 1.25rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.pl-hero__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.pl-hero__curve {
  display: none;
}

/* ---- Breadcrumb ---- */
.pl-breadcrumb {
  padding: 0.85rem 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.pl-breadcrumb__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pl-breadcrumb__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--gray-100);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  padding: 0.45rem 1.1rem 0.45rem 0.85rem;
  border-radius: 999px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}

.pl-breadcrumb__back svg {
  transition: transform 0.25s var(--ease);
}

.pl-breadcrumb__back:hover {
  background: var(--white);
  border-color: rgba(19, 120, 243, 0.3);
  color: var(--brand-blue);
  transform: translateX(-2px);
}

.pl-breadcrumb__back:hover svg {
  transform: translateX(-3px);
}

.pl-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  list-style: none;
  padding: 0;
  margin: 0;
}

.pl-breadcrumb__list a {
  transition: color 0.25s;
}

.pl-breadcrumb__list a:hover {
  color: var(--brand-blue);
}

.pl-breadcrumb__sep {
  opacity: 0.4;
}

.pl-breadcrumb__current {
  color: var(--gray-800);
  font-weight: 600;
}

/* ---- Detail Section ---- */
.pl-detail {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0 var(--pl-section-pad);
  background: var(--white);
  overflow: visible;
}

.pl-detail__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pl-detail__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.pl-detail__orb--1 {
  width: 400px;
  height: 400px;
  top: -80px;
  left: -60px;
  background: rgba(19, 120, 243, 0.06);
}

.pl-detail__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -60px;
  right: -40px;
  background: rgba(227, 103, 108, 0.05);
}

/* .pl-back-link removed — back button moved into .pl-breadcrumb__back */.pl-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ---- Left: Image ---- */
.pl-detail__visual {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  z-index: 2;
}

.pl-detail__visual:has(.is-zooming) {
  z-index: 6;
}

.pl-detail__image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #f0f4fa 0%, #e8f0fe 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 20px 60px rgba(10, 37, 96, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.pl-detail__image-frame.pl-zoom {
  overflow: visible;
  cursor: crosshair;
}

.pl-detail__image-frame.pl-zoom .pl-detail__image {
  border-radius: 24px;
  overflow: hidden;
}

.pl-detail__image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, rgba(19, 120, 243, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.pl-detail__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
  background: linear-gradient(145deg, #f0f4fa 0%, #e8f0fe 100%);
  border-radius: 24px;
}

.pl-detail__visual:hover .pl-detail__image {
  transform: scale(1.03);
}

.pl-detail__visual:hover .pl-zoom.is-zooming .pl-detail__image,
.pl-zoom.is-zooming .pl-detail__image {
  transform: none;
}

/* ---- Image magnifier (1mg-style) ---- */
.pl-zoom__lens {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(19, 120, 243, 0.85);
  border-radius: 8px;
  background: rgba(19, 120, 243, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  pointer-events: none;
  opacity: 0;
  z-index: 4;
  display: none;
}

.pl-zoom__result {
  position: absolute;
  top: 0;
  left: calc(100% + 1.25rem);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(15, 40, 80, 0.1);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 0 0;
  box-shadow: 0 24px 60px rgba(10, 37, 96, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 20;
  display: none;
}

.pl-zoom__hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(1, 7, 40, 0.72);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.pl-zoom__hint svg {
  flex-shrink: 0;
}

.pl-zoom.is-zooming .pl-zoom__lens,
.pl-zoom.is-zooming .pl-zoom__result {
  opacity: 1;
  visibility: visible;
}

.pl-zoom.is-zooming .pl-zoom__hint,
.pl-zoom.is-zooming .pl-detail__type-badge,
.pl-zoom.is-zooming .pl-detail__brand-tag {
  opacity: 0;
}

@media (min-width: 901px) and (hover: hover) {
  .pl-zoom__hint--desktop {
    display: flex;
  }

  .pl-zoom__lens {
    display: block;
  }

  .pl-zoom__result {
    display: block;
  }
}

@media (max-width: 900px), (hover: none) {
  .pl-zoom__hint--mobile {
    display: flex;
  }

  .pl-detail__image-frame.pl-zoom {
    cursor: zoom-in;
  }
}

/* Mobile lightbox zoom */
.pl-zoom-lb {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(1, 7, 40, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.pl-zoom-lb.is-open {
  opacity: 1;
  visibility: visible;
}

.pl-zoom-lb__img {
  max-width: min(100%, 920px);
  max-height: min(78vh, 920px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  touch-action: pinch-zoom;
}

.pl-zoom-lb__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.pl-zoom-lb__tip {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

body.pl-zoom-lb-open {
  overflow: hidden;
}

.pl-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.pl-gallery__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #f0f4fa 0%, #e8f0fe 100%);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(10, 37, 96, 0.08);
}

.pl-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.pl-gallery__thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 120, 243, 0.35);
}

.pl-gallery__thumb.is-active {
  border-color: var(--brand-blue);
  box-shadow: 0 6px 18px rgba(19, 120, 243, 0.22);
}

.pl-detail__type-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(1, 7, 40, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pl-detail__brand-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-800);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pl-detail__brand-tag img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
}

/* ---- Right: Info ---- */
.pl-detail__info {
  padding-top: 0.5rem;
}

.pl-detail__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.pl-detail__subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.pl-detail__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.pl-detail__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 2rem;
}/* ---- Related Products ---- */
.pl-related {
  position: relative;
  padding: var(--pl-section-pad) 0;
  background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
  overflow: hidden;
}

.pl-related__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pl-related__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.pl-related__orb--1 {
  width: 380px;
  height: 380px;
  top: -80px;
  right: -60px;
  background: rgba(19, 120, 243, 0.07);
}

.pl-related__orb--2 {
  width: 320px;
  height: 320px;
  bottom: -60px;
  left: -40px;
  background: rgba(227, 103, 108, 0.05);
}

.pl-related__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.pl-related__header .section-label {
  display: flex;
  justify-content: center;
}

.pl-related__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-800);
  margin-bottom: 0.65rem;
}

.pl-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.pl-related-card {
  display: block;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(10, 37, 96, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.pl-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(10, 37, 96, 0.1);
  border-color: rgba(19, 120, 243, 0.18);
}

.pl-related-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafc 0%, #eef4fc 100%);
}

.pl-related-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.45s var(--ease);
}

.pl-related-card:hover .pl-related-card__image {
  transform: scale(1.05);
}

.pl-related-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(1, 7, 40, 0.72);
  border-radius: 999px;
}

.pl-related-card__body {
  padding: 0.9rem 0.85rem 1rem;
  text-align: center;
}

.pl-related-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
  line-height: 1.35;
}

.pl-related-card__type {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pl-related__footer {
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.pl-related__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-blue);
  background: var(--white);
  border: 1px solid rgba(19, 120, 243, 0.2);
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pl-related__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.pl-related__link:hover {
  background: var(--green-lime);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19, 120, 243, 0.12);
}

.pl-related__link:hover svg {
  transform: translateX(3px);
}

/* ---- Not Found ---- *//* ---- CTA ---- *//* ---- Responsive ---- */
@media (max-width: 1024px) {
  .pl-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .pl-detail__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pl-detail__visual {
    position: static;
  }}

@media (max-width: 768px) {
  .pl-hero {
    min-height: auto;
    padding-bottom: 4.5rem;
  }

  .pl-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    gap: 2rem;
  }

  .pl-hero__content {
    max-width: none;
    order: 2;
  }

  .pl-hero__showcase {
    order: 1;
    min-height: 240px;
  }

  .pl-hero__showcase-frame {
    width: min(72vw, 280px);
    padding: 1rem;
  }

  .pl-hero__showcase-ring--1,
  .pl-hero__showcase-ring--2 {
    width: min(78vw, 300px);
  }

  .pl-hero__badges {
    justify-content: center;
  }

  .pl-hero__brand {
    margin-left: auto;
    margin-right: auto;
  }

  .pl-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }}

@media (max-width: 480px) {
  .pl-detail__image-frame {
    border-radius: 18px;
  }

  .pl-gallery__thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .pl-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pl-hero__showcase-ring--1,
  .pl-hero__showcase-ring--2 {
    animation: none;
  }

  .pl-detail__visual:hover .pl-detail__image,
  .pl-related-card:hover .pl-related-card__image,
  .pl-gallery__thumb:hover {
    transform: none;
  }

  .pl-zoom__lens,
  .pl-zoom__result,
  .pl-zoom__hint {
    display: none !important;
  }
}
