/* ============================================
   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__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, #010728 0%, #0a2560 42%, #1378f3 100%);
}

.pl-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 20%, transparent 75%);
}

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

.pl-hero__glow--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: 5%;
  background: rgba(76, 147, 228, 0.35);
}

.pl-hero__glow--2 {
  width: 360px;
  height: 360px;
  bottom: -80px;
  left: -40px;
  background: rgba(227, 103, 108, 0.18);
}

.pl-hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: overlay;
}

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

.pl-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 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 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(180px, 22vw, 260px);
}

.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: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.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: hidden;
}

.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);
}

.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::before {
  content: '';
  position: absolute;
  inset: 0;
  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: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

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

.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: cover;
  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-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 {
    transform: none;
  }
}
