/* ============================================
   PROCESS
   ============================================ */
.section--process {
  position: relative;
  overflow: hidden;
}

.process__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(122, 215, 207, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(241, 145, 125, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.process::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(241, 145, 125, 0.4) 10%,
    rgba(122, 215, 207, 0.3) 50%,
    rgba(242, 199, 111, 0.4) 90%,
    transparent
  );
  z-index: -1;
}

.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.92), rgba(24, 31, 33, 0.92));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.process__step:hover {
  border-color: rgba(241, 145, 125, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.process__step--featured {
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.12), rgba(242, 199, 111, 0.06)),
    linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  border-color: rgba(241, 145, 125, 0.3);
}

.process__step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.process__step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 145, 125, 0.3);
  background: rgba(241, 145, 125, 0.1);
  color: var(--coral);
  margin-bottom: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.process__step-icon svg {
  width: 24px;
  height: 24px;
}

.process__step--featured .process__step-icon {
  background: var(--coral);
  color: #160f10;
  box-shadow: 0 0 24px rgba(241, 145, 125, 0.4);
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.process__step-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}
.process__step-desc em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

.process__step-time {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan);
  border: 1px solid rgba(122, 215, 207, 0.3);
  background: rgba(122, 215, 207, 0.06);
  margin-top: auto;
}

.process__cta {
  margin-top: 56px;
  text-align: center;
}

/* ============================================
   FAQ TABS
   ============================================ */
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.faq-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.5);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.faq-tab {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.faq-tab:hover {
  color: var(--text);
  background: rgba(255, 248, 239, 0.04);
}

.faq-tab.is-active {
  background: linear-gradient(135deg, rgba(241, 145, 125, 0.18), rgba(242, 199, 111, 0.1));
  border-color: rgba(241, 145, 125, 0.35);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(241, 145, 125, 0.15);
}

.faq-tab__icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--coral);
  flex-shrink: 0;
}
.faq-tab__icon svg {
  width: 18px;
  height: 18px;
}

.faq-tab.is-active .faq-tab__icon {
  color: var(--coral);
}

.faq-tab__label {
  font-weight: 700;
}

.faq-tab__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 248, 239, 0.06);
  border: 1px solid var(--line);
}

.faq-tab.is-active .faq-tab__count {
  color: var(--coral);
  background: rgba(241, 145, 125, 0.1);
  border-color: rgba(241, 145, 125, 0.3);
}

.faq-panel {
  animation: faqPanelFade 0.35s var(--ease);
}

.faq-panel[hidden] {
  display: none !important;
}

@keyframes faqPanelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   WORKS — OVERLAY & BUTTON RESET
   ============================================ */
.work {
  /* Reset for button */
  font: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  padding: 0;
  color: inherit;
  display: block;
}

.work__img {
  position: relative;
}

.work__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(15, 13, 16, 0.15) 0%, rgba(15, 13, 16, 0.75) 100%);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.work:hover .work__overlay,
.work:focus-visible .work__overlay {
  opacity: 1;
}

.work__overlay-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--coral);
  background: rgba(241, 145, 125, 0.2);
  color: var(--coral);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transform: scale(0.85);
  transition: transform 0.35s var(--ease);
}

.work:hover .work__overlay-icon,
.work:focus-visible .work__overlay-icon {
  transform: scale(1);
}

.work:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 6, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.8);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  transition: all 0.25s var(--ease);
}
.lightbox__close:hover {
  background: var(--coral);
  color: #160f10;
  border-color: var(--coral);
  transform: rotate(90deg);
}

.lightbox__content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  transform: scale(0.96);
  transition: transform 0.35s var(--ease);
}

.lightbox.is-open .lightbox__content {
  transform: scale(1);
}

.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.lightbox__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 70vh;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.3);
}

.lightbox__caption {
  padding: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
}

.lightbox__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lightbox__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.lightbox__desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

body.lightbox-open {
  overflow: hidden;
}

/* ============================================
   SUB-PAGE HERO
   ============================================ */
.sub-hero {
  position: relative;
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 10vw, 100px);
  overflow: hidden;
}

.sub-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.sub-hero__inner--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sub-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.5);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.sub-hero__back:hover {
  color: var(--coral);
  border-color: rgba(241, 145, 125, 0.4);
  transform: translateX(-4px);
}

.sub-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.6);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.sub-hero__inner--center .sub-hero__back {
  margin-left: auto;
  margin-right: auto;
}

.sub-hero__title {
  margin-bottom: 24px;
}

.sub-hero__desc {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.sub-hero__desc--center {
  margin-left: auto;
  margin-right: auto;
}

.sub-hero__desc strong {
  color: var(--text);
}

.container--narrow {
  max-width: 880px;
}

/* ============================================
   BUTTON LARGE
   ============================================ */
.btn--large {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ============================================
   COURSE PAGE
   ============================================ */
.course-price {
  display: inline-block;
  padding: 18px 28px;
  margin: 0 0 32px;
  border: 1px solid rgba(242, 199, 111, 0.4);
  background: linear-gradient(135deg, rgba(242, 199, 111, 0.12), rgba(241, 145, 125, 0.08));
}

.course-price__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.course-price__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.course-price__old {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(241, 145, 125, 0.6);
}

.course-price__new {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: var(--lime);
  line-height: 1;
}

.course-price__save {
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
  background: rgba(241, 145, 125, 0.15);
  border: 1px solid rgba(241, 145, 125, 0.4);
}

.course-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.course-intro__text p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 20px;
}

.course-intro__lead {
  font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
  color: var(--text) !important;
  font-weight: 600;
}

.course-intro__text strong { color: var(--text); }
.course-intro__text em {
  font-style: normal;
  color: var(--coral);
  font-weight: 600;
}

.course-intro__benefits {
  position: sticky;
  top: 100px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.9), rgba(24, 31, 33, 0.9));
  backdrop-filter: blur(10px);
}

.course-intro__benefits h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--coral);
}

.course-intro__benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-intro__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.course-intro__benefits svg {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Audience */
.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience__card {
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.92), rgba(24, 31, 33, 0.92));
  text-align: center;
  transition: all 0.35s var(--ease);
}

.audience__card:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.audience__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 145, 125, 0.3);
  background: rgba(241, 145, 125, 0.08);
  color: var(--coral);
  margin: 0 auto 16px;
  border-radius: 50%;
}
.audience__icon svg {
  width: 24px;
  height: 24px;
}

.audience__card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.audience__card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Curriculum */
.curriculum {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: ch;
}

.curriculum__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.9), rgba(24, 31, 33, 0.9));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.curriculum__item:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateX(4px);
}

.curriculum__item--featured {
  border-color: rgba(241, 145, 125, 0.3);
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.08), rgba(242, 199, 111, 0.04)),
    linear-gradient(135deg, rgba(33, 25, 28, 0.92), rgba(24, 31, 33, 0.92));
}

.curriculum__num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  text-align: center;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.curriculum__item--featured .curriculum__num {
  color: var(--lime);
}

.curriculum__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.curriculum__desc {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.curriculum__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.curriculum__points li {
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.04);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.92), rgba(24, 31, 33, 0.92));
  text-align: center;
  transition: all 0.35s var(--ease);
}
.feature:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(241, 145, 125, 0.08);
  color: var(--coral);
  margin: 0 auto 16px;
}
.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Instructor */
.instructor {
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.9), rgba(24, 31, 33, 0.9));
  backdrop-filter: blur(10px);
}

.instructor__avatar {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(241, 145, 125, 0.35);
  background:
    radial-gradient(circle at 30% 30%, rgba(241, 145, 125, 0.10), transparent 60%),
    rgba(33, 25, 28, 0.6);
  box-shadow: 0 0 60px rgba(241, 145, 125, 0.18), inset 0 0 30px rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  justify-self: center;
  margin: 0 auto;
}
.instructor__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(241, 145, 125, 0.28));
}

.instructor__text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.instructor__role {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.instructor__text p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.instructor__text p strong { color: var(--text); }

.instructor__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--coral);
  font-size: 0.95rem;
  transition: gap 0.25s var(--ease);
}
.instructor__more:hover { gap: 12px; }

/* Enroll Card */
.enroll-card {
  position: relative;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 60px);
  border: 1px solid rgba(241, 145, 125, 0.3);
  background:
    radial-gradient(ellipse at top, rgba(241, 145, 125, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  backdrop-filter: blur(12px);
  text-align: center;
  overflow: hidden;
}

.enroll-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--coral), transparent);
}

.enroll-card__inner {
  max-width: 640px;
  margin: 0 auto;
}

.enroll-card__tag {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(241, 145, 125, 0.4);
  background: rgba(241, 145, 125, 0.08);
}

.enroll-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.enroll-card__desc {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 28px;
}

.enroll-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px 28px;
  border: 1px solid var(--line);
  background: rgba(15, 13, 16, 0.5);
}

.enroll-card__price-old {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.enroll-card__price-new {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--lime);
  line-height: 1;
}

.enroll-card__note {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* Related */
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.92), rgba(24, 31, 33, 0.92));
  transition: all 0.35s var(--ease);
}

.related__card:hover {
  border-color: rgba(241, 145, 125, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.related__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related__card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.related__card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================
   SHOP / GALLERY FILTERS
   ============================================ */
.shop-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.5);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.shop-filter {
  flex: 1;
  min-width: 90px;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.shop-filter:hover {
  color: var(--text);
  background: rgba(255, 248, 239, 0.04);
}

.shop-filter.is-active {
  background: linear-gradient(135deg, rgba(241, 145, 125, 0.2), rgba(242, 199, 111, 0.1));
  border-color: rgba(241, 145, 125, 0.4);
  color: var(--text);
}

/* Shop Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shop-item {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  transition: all 0.35s var(--ease);
}

.shop-item:hover {
  border-color: rgba(241, 145, 125, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.shop-item--featured {
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.1), rgba(242, 199, 111, 0.06)),
    linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  border-color: rgba(241, 145, 125, 0.25);
}

.shop-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.shop-item__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-item__badge {
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral);
  border: 1px solid rgba(241, 145, 125, 0.4);
  background: rgba(241, 145, 125, 0.1);
  letter-spacing: 0.05em;
}

.shop-item__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.shop-item__desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.shop-item__points {
  margin-bottom: 20px;
  flex: 1;
}
.shop-item__points li {
  padding: 4px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.shop-item__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(15, 13, 16, 0.5);
}
.shop-item__price span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.shop-item__price strong {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--lime);
  line-height: 1;
}

.shop-item .btn {
  width: 100%;
  justify-content: center;
}

.shop-item[hidden] { display: none !important; }

/* ============================================
   GALLERY PAGE — Hierarchical Filter
   ============================================ */
.gallery-filters {
  margin-bottom: 36px;
}

.gallery-filters__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.5);
  backdrop-filter: blur(10px);
}

.filter-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}

.filter-main:hover {
  color: var(--text);
  background: rgba(255, 248, 239, 0.04);
}

.filter-main.is-active {
  background: linear-gradient(135deg, rgba(241, 145, 125, 0.2), rgba(242, 199, 111, 0.1));
  border-color: rgba(241, 145, 125, 0.4);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(241, 145, 125, 0.18);
}

.filter-main__icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--coral);
  flex-shrink: 0;
}
.filter-main__icon svg {
  width: 22px;
  height: 22px;
}

.filter-main__label {
  flex: 0 1 auto;
}

.filter-main__count {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 26px;
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 248, 239, 0.06);
  border: 1px solid var(--line);
}
.filter-main.is-active .filter-main__count {
  color: var(--coral);
  background: rgba(241, 145, 125, 0.12);
  border-color: rgba(241, 145, 125, 0.35);
}

/* Sub-filter container */
.gallery-filters__subs {
  position: relative;
  min-height: 0;
}

.filter-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-top: 2px solid rgba(241, 145, 125, 0.3);
  background: rgba(15, 13, 16, 0.4);
  backdrop-filter: blur(8px);
  animation: subFadeIn 0.35s var(--ease);
}

.filter-subs[hidden] {
  display: none !important;
}

@keyframes subFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(33, 25, 28, 0.5);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.filter-sub:hover {
  color: var(--text);
  border-color: rgba(241, 145, 125, 0.3);
  background: rgba(241, 145, 125, 0.05);
}

.filter-sub.is-active {
  color: #160f10;
  background: var(--coral);
  border-color: var(--coral);
}

.filter-sub__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 18px;
  padding: 0 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 248, 239, 0.08);
  border: 1px solid var(--line);
  color: var(--muted);
}

.filter-sub.is-active .filter-sub__count {
  background: rgba(22, 15, 16, 0.4);
  color: #160f10;
  border-color: rgba(22, 15, 16, 0.5);
}

/* Empty state */
.gallery-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vw, 100px) 24px;
  border: 1px dashed var(--line);
  background: rgba(33, 25, 28, 0.4);
  gap: 12px;
}

.gallery-empty[hidden] {
  display: none !important;
}

.gallery-empty svg {
  color: rgba(241, 145, 125, 0.5);
  margin-bottom: 8px;
}

.gallery-empty h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 0;
}

.gallery-empty p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid .work[hidden],
.gallery-grid .work-placeholder[hidden] {
  display: none !important;
}

.work-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 24px;
  border: 1px dashed var(--line);
  background: rgba(33, 25, 28, 0.4);
  transition: all 0.35s var(--ease);
}

.work-placeholder:hover {
  border-color: rgba(241, 145, 125, 0.3);
  background: rgba(33, 25, 28, 0.6);
}

.work-placeholder__inner {
  text-align: center;
  color: var(--muted);
}

.work-placeholder__inner svg {
  color: rgba(241, 145, 125, 0.5);
  margin: 0 auto 14px;
}

.work-placeholder__tag {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--coral);
  letter-spacing: 0.1em;
}

.work-placeholder__inner h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.work-placeholder__inner p {
  font-size: 0.85rem;
  margin: 0;
}

.gallery-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  background: rgba(122, 215, 207, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}
.gallery-note svg {
  color: var(--cyan);
  flex-shrink: 0;
}

/* ============================================
   LINKS PAGE
   ============================================ */
.links-avatar {
  width: clamp(160px, 40vw, 220px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(241, 145, 125, 0.4);
  background:
    radial-gradient(circle at 30% 30%, rgba(241, 145, 125, 0.10), transparent 60%),
    rgba(33, 25, 28, 0.7);
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px rgba(241, 145, 125, 0.22), inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.links-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(241, 145, 125, 0.28));
}

.links-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.9), rgba(24, 31, 33, 0.9));
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}

.link-card:hover {
  border-color: rgba(241, 145, 125, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(241, 145, 125, 0.08), rgba(24, 31, 33, 0.9));
}

.link-card--primary {
  border-color: rgba(241, 145, 125, 0.3);
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.1), rgba(242, 199, 111, 0.04)),
    linear-gradient(135deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
}

.link-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: rgba(241, 145, 125, 0.08);
  color: var(--coral);
}
.link-card__icon svg {
  width: 22px;
  height: 22px;
}

.link-card__icon--ig {
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  color: #fff;
  border-color: transparent;
}
.link-card__icon--fb {
  background: #1877f2;
  color: #fff;
  border-color: transparent;
}
.link-card__icon--line {
  background: #06c755;
  color: #fff;
  border-color: transparent;
}
.link-card__icon--mail {
  background: rgba(122, 215, 207, 0.15);
  color: var(--cyan);
  border-color: rgba(122, 215, 207, 0.4);
}

.link-card__text {
  flex: 1;
  min-width: 0;
}

.link-card__text h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.link-card__text p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-card__arrow {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.link-card:hover .link-card__arrow {
  color: var(--coral);
  transform: translate(4px, -4px);
}

