/* ============================================
   TIMBOT — product-detail.css
   product-s.php / product-d.php 전용
   ============================================ */

/* ── PRODUCT HERO ──────────────────────────── */
.product-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: calc(var(--nav-h) + 72px) 6vw 80px;
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

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

.product-hero__orb {
  position: absolute;
  width: 660px; height: 660px;
  border-radius: 50%;
  filter: blur(80px);
  top: -200px; right: -180px;
  opacity: 0.18;
}
.product-hero--a .product-hero__orb {
  background: radial-gradient(circle, var(--color-cyan), transparent 70%);
}
.product-hero--b .product-hero__orb {
  background: radial-gradient(circle, var(--color-gray-400), transparent 70%);
}

.product-hero__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.product-hero--a .product-hero__eyebrow { color: var(--color-cyan); }
.product-hero--b .product-hero__eyebrow { color: var(--color-gray-300); }

.product-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.product-hero--a .product-hero__title em { color: var(--color-cyan); font-style: normal; }
.product-hero--b .product-hero__title em { color: var(--color-gray-300); font-style: normal; }

.product-hero__sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.product-hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.product-hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── PRODUCT MOCKUP ────────────────────────── */
.product-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-mockup--sm { width: 200px; height: 200px; }
.product-mockup--md { width: 300px; height: 300px; }
.product-mockup--lg { width: 400px; height: 400px; }

.product-mockup__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: ringPulse 4.5s ease infinite;
}
.product-mockup--a .product-mockup__ring { border-color: var(--product-s-ring); }
.product-mockup--b .product-mockup__ring { border-color: var(--product-d-ring); }

.product-mockup__ring--1 { inset: 0;      animation-delay: 0s; }
.product-mockup__ring--2 { inset: -18px;  animation-delay: 0.9s; opacity: 0.95; }
.product-mockup__ring--3 { inset: -36px;  animation-delay: 1.8s; opacity: 0.75; }

@keyframes ringPulse {
  0%, 100% { transform: scale(1);    opacity: 0.8; }
  50%       { transform: scale(1.03); opacity: 1; }
}

.product-mockup__core {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.product-mockup--sm .product-mockup__core { width: 128px; height: 128px; }
.product-mockup--md .product-mockup__core { width: 188px; height: 188px; }
.product-mockup--lg .product-mockup__core { width: 248px; height: 248px; }

.product-mockup--a .product-mockup__core {
  background: radial-gradient(135deg at 35% 35%, var(--color-cyan-light), var(--color-cyan-dark));
  box-shadow: 0 20px 60px var(--product-s-glow);
}
.product-mockup--b .product-mockup__core {
  background: radial-gradient(135deg at 35% 35%, var(--color-gray-300), var(--color-gray-600));
  box-shadow: 0 20px 60px var(--product-d-glow);
}

.product-mockup__core span {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.product-mockup__core strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.product-mockup--sm .product-mockup__core strong { font-size: 3rem; }
.product-mockup--md .product-mockup__core strong { font-size: 4.5rem; }
.product-mockup--lg .product-mockup__core strong { font-size: 6rem; }

/* ── PD FEATURES ────────────────────────────── */
.pd-features {
  padding: 96px 0;
}
.pd-features--light { background: var(--color-gray-50); }
.pd-features--dark  { background: #0e0e0e; }

.pd-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.pd-feature-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pd-feature-card:hover { transform: translateY(-4px); }

.pd-feature-card--light {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}
.pd-feature-card--light:hover {
  box-shadow: 0 18px 38px rgba(0,0,0,0.07);
}

.pd-feature-card--dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.pd-feature-card--dark:hover {
  background: rgba(31, 227, 255, 0.04);
  border-color: rgba(31, 227, 255, 0.14);
  box-shadow: 0 18px 38px rgba(0,0,0,0.4);
}

.pd-feature-card__icon {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

.pd-feature-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}
.pd-feature-card--light h3 { color: var(--color-gray-800); }
.pd-feature-card--dark  h3 { color: var(--color-white); }

.pd-feature-card p {
  font-size: 0.83rem;
  line-height: 1.7;
}
.pd-feature-card--light p { color: var(--color-text-muted); }
.pd-feature-card--dark  p { color: rgba(255,255,255,0.35); }

/* ── PD SPEC ────────────────────────────────── */
.pd-spec { padding: 96px 0; }
.pd-spec--light { background: var(--color-white); }
.pd-spec--dark  { background: var(--color-gray-900); }

.pd-spec__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.pd-spec__grid--light { background: var(--color-gray-200); }
.pd-spec__grid--dark  { background: rgba(255,255,255,0.06); }

.pd-spec__item {
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pd-spec__grid--light .pd-spec__item { background: var(--color-gray-50); }
.pd-spec__grid--dark  .pd-spec__item { background: #111; }

.pd-spec__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pd-spec__grid--light .pd-spec__label { color: var(--color-text-muted); }
.pd-spec__grid--dark  .pd-spec__label { color: rgba(255,255,255,0.25); }

.pd-spec__value {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pd-spec__grid--light .pd-spec__value { color: var(--color-gray-800); }
.pd-spec__grid--dark  .pd-spec__value { color: var(--color-white); }

/* ── PD CTA ─────────────────────────────────── */
.pd-cta { padding: 96px 0; text-align: center; }
.pd-cta--light { background: var(--color-gray-50); }
.pd-cta--dark  { background: var(--color-black); }

.pd-cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}
.pd-cta--light .pd-cta__inner h2 { color: var(--color-gray-800); }
.pd-cta--dark  .pd-cta__inner h2 { color: var(--color-white); }

.pd-cta__inner p {
  font-size: 1rem;
  margin-bottom: 2.25rem;
}
.pd-cta--light .pd-cta__inner p { color: var(--color-text-muted); }
.pd-cta--dark  .pd-cta__inner p { color: rgba(255,255,255,0.35); }

.pd-cta__actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 반응형 ──────────────────────────────────── */
@media (max-width: 900px) {
  .pd-features__grid { grid-template-columns: repeat(2, 1fr); }
  .pd-spec__grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .product-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 48px);
    gap: 3rem;
  }
  .product-hero__actions { justify-content: center; }
  .product-mockup--lg { width: 280px; height: 280px; }
  .product-mockup--lg .product-mockup__core { width: 176px; height: 176px; }
  .product-mockup--lg .product-mockup__core strong { font-size: 4rem; }
  .pd-features__grid { grid-template-columns: 1fr; }
  .pd-spec__grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .pd-cta__actions .btn { width: 100%; max-width: 280px; }
}





.product-mockup-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 460px;
  height: 460px;
}

.product-mockup__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,180,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.product-mockup-img {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,229,204,0.2);
  box-shadow: 0 0 40px rgba(0,200,180,0.15);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.product-mockup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.product-mockup-badge {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(0,229,204,0.1);
  border: 1px solid rgba(0,229,204,0.35);
  border-radius: 20px;
  padding: 6px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  backdrop-filter: blur(6px);
}

.product-mockup-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e5cc;
  animation: badgePulse 1.8s infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.product-mockup-badge__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #00e5cc;
  text-transform: uppercase;
}

.product-mockup-badge__sub {
  font-size: 11px;
  color: rgba(0,229,204,0.6);
}

    





































/* ══════════════════════════════════════════════
   prm-  (PR Masonry MORPH)
   ══════════════════════════════════════════════ */

/* ── 섹션 ───────────────────────────────────── */
.prm-sec {
  background: var(--color-gray-900);
  position: relative;
  overflow: hidden;
}
.prm-sec__inner {
  margin: 10px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 배경 orb ────────────────────────────────── */
.prm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.6s var(--ease), transform 2s var(--ease);
}
.prm-orb--1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, var(--color-cyan-soft) 0%, transparent 65%);
  top: -280px; left: -200px;
  transform: translate(-40px, -40px);
  transition-delay: .2s;
}
.prm-orb--2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,40,50,.7) 0%, transparent 65%);
  bottom: -180px; right: -120px;
  transform: translate(40px, 40px);
  transition-delay: .5s;
}
.prm-orb--3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--color-cyan-soft) 0%, transparent 65%);
  top: 50%; left: 58%;
  transform: translate(-50%, -50%) scale(.7);
  transition-delay: .8s;
}
.prm-sec.prm-in .prm-orb { opacity: 1; transform: translate(0, 0) scale(1); }
.prm-sec.prm-in .prm-orb--3 { transform: translate(-50%, -50%) scale(1); }

/* ── 그리드 ──────────────────────────────────── */
.prm-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
  height: 560px;
  width: 70%;
  position: relative;
  z-index: 2;
}

/* ── 공통 카드 ───────────────────────────────── */
.prm-card {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  clip-path: circle(0% at var(--prm-ox, 50%) var(--prm-oy, 50%));
  transition:
    opacity .01s,
    clip-path 1s cubic-bezier(.4, 0, .2, 1),
    transform .9s cubic-bezier(.22, 1, .36, 1),
    box-shadow .4s var(--ease);
  will-change: transform, clip-path;
}
.prm-sec.prm-in .prm-card {
  opacity: 1;
  clip-path: circle(150% at var(--prm-ox, 50%) var(--prm-oy, 50%));
  transform: translate(0, 0) rotate(0deg) scale(1) !important;
}
.prm-card:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
}

/* ── 이미지 풀블리드 (공통) ──────────────────── */
.prm-card__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.prm-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.prm-card:hover .prm-card__img {
  transform: scale(1.04);
}

/* ── 텍스트 오버레이 (공통) ──────────────────── */
.prm-card__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.8rem 2rem;
}

/* 공통 텍스트 */
.prm-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: #000000;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(12px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
  transition-delay: .82s;
}
.prm-sec.prm-in .prm-card__title { opacity: 1; transform: none; filter: blur(0); }

.prm-card__desc {
  font-size: .86rem;
  color: rgba(0,0,0,.55);
  line-height: 1.75;
  opacity: 0;
  filter: blur(4px);
  transition: opacity .6s var(--ease), filter .6s var(--ease);
  transition-delay: .95s;
}
.prm-sec.prm-in .prm-card__desc { opacity: 1; filter: blur(0); }

/* ── Main: 왼쪽 하단 ────────────────────────── */
.prm-main {
  grid-row: span 2;
  --prm-ox: 10%; --prm-oy: 90%;
  transform: translate(-80px, 60px) scale(.9);
  transition-delay: .05s;
}
.prm-main .prm-card__body {
  justify-content: flex-end;
  align-items: flex-start;
}

/* ── Mini: 오른쪽 중앙 ──────────────────────── */
.prm-mini--light {
  --prm-ox: 90%; --prm-oy: 5%;
  transform: translate(56px, -48px) rotate(3deg) scale(.88);
  transition-delay: .25s;
}
.prm-mini--dark {
  --prm-ox: 90%; --prm-oy: 95%;
  transform: translate(56px, 48px) rotate(-3deg) scale(.88);
  transition-delay: .4s;
}
.prm-mini--light .prm-card__body,
.prm-mini--dark  .prm-card__body {
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

/* ── 반응형 ──────────────────────────────────── */
@media (max-width: 900px) {
  .prm-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
    width: 100%;
  }
  .prm-main { grid-column: span 2; }
}
@media (max-width: 600px) {
  .prm-sec { padding: 80px 0 100px; }
  .prm-grid { grid-template-columns: 1fr; }
  .prm-main { grid-column: span 1; }
  .prm-card__title { font-size: 1.4rem; }
}