/* nepShoot ring-gallery homepage — loaded by nepshoot-home.php */

#nsh-app {
  --nsh-ink: #12242A;
  --nsh-charcoal: #263B41;
  --nsh-slate: #52666B;
  --nsh-steel: #74868A;
  --nsh-stone: #96A3A5;
  --nsh-green: #3DDC84;
  --nsh-green-press: #17A660;
  --nsh-on-primary: #0B2B33;
  --nsh-teal: #0B2B33;
  --nsh-surface: #FAF9F7;
  --nsh-hairline: #E7E3DD;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--nsh-surface);
  color: var(--nsh-ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
#nsh-app *, #nsh-app *::before, #nsh-app *::after { box-sizing: border-box; }
#nsh-app button { font-family: inherit; }
.nsh-has-cursor, .nsh-has-cursor * { cursor: none !important; }

/* ---------------- nav ---------------- */
.nsh-nav {
  position: fixed; top: 0; left: 0; right: 0; height: 76px; z-index: 1200;
  display: flex; align-items: center; gap: 48px; padding: 0 48px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nsh-hairline);
}
.nsh-wordmark { display: inline-flex; align-items: center; text-decoration: none; }
.nsh-logo-img {
  display: block !important; height: 40px !important; width: 40px !important;
  max-width: 40px !important; max-height: 40px !important;
  object-fit: contain; border-radius: 6px;
}
.nsh-nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nsh-nav-links li { position: relative; }
.nsh-nav-links > li > a {
  position: relative; display: inline-block; padding: 6px 0;
  font-size: 15px; font-weight: 600; color: var(--nsh-charcoal); text-decoration: none;
  transition: color 0.2s ease-out;
}
.nsh-nav-links > li > a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--nsh-ink); transform: scaleX(0); transform-origin: left;
  transition: transform 0.24s ease-out;
}
.nsh-nav-links > li > a:hover { color: var(--nsh-ink); }
.nsh-nav-links > li > a:hover::after { transform: scaleX(1); }
.nsh-nav-links li.menu-item-has-children > a {
  padding-right: 14px;
}
.nsh-nav-links li.menu-item-has-children > a::before {
  content: ''; position: absolute; right: 0; top: 50%; margin-top: -5px;
  width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.nsh-nav-links .sub-menu {
  list-style: none; margin: 0; padding: 10px 0;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  min-width: 230px; background: #fff; border: 1px solid var(--nsh-hairline); border-radius: 12px;
  box-shadow: 0 18px 40px rgba(11, 43, 51, 0.14);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0.2s;
  z-index: 20;
}
.nsh-nav-links li.menu-item-has-children:hover > .sub-menu,
.nsh-nav-links li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nsh-nav-links .sub-menu a {
  display: block; padding: 9px 22px; font-size: 14px; font-weight: 600; white-space: nowrap;
  color: var(--nsh-charcoal); text-decoration: none; transition: background-color 0.15s ease-out, color 0.15s ease-out;
}
.nsh-nav-links .sub-menu a:hover { background: var(--nsh-surface); color: var(--nsh-ink); }
.nsh-burger {
  display: none; margin-left: auto; width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: 1px solid var(--nsh-hairline); border-radius: 999px;
}
.nsh-burger span { display: block; width: 16px; height: 2px; background: var(--nsh-ink); }

/* ---------------- hero ---------------- */
.nsh-hero {
  position: relative; height: 100vh; min-height: 640px; overflow: hidden;
  padding-top: 76px; user-select: none; -webkit-user-select: none;
}
.nsh-utility {
  position: absolute; top: 100px; left: 48px; right: 48px; z-index: 10;
  display: flex; justify-content: space-between;
}
.nsh-textbtn {
  background: none; border: 0; padding: 2px 0;
  font-size: 15px; font-weight: 700; color: var(--nsh-ink);
  border-bottom: 2px solid var(--nsh-ink);
  transition: color 0.2s ease-out, border-color 0.2s ease-out;
}
.nsh-textbtn:hover { color: var(--nsh-green-press); border-color: var(--nsh-green); }

.nsh-hero-center {
  position: absolute; left: 50%; top: 15%; transform: translateX(-50%);
  width: min(780px, 92vw); display: grid; text-align: center; z-index: 5;
}
.nsh-hero-center > * { grid-area: 1 / 1; }
.nsh-hero-copy, .nsh-hero-preview {
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity 0.28s ease-out, transform 0.28s ease-out;
}
.nsh-hero-copy.is-visible, .nsh-hero-preview.is-visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.nsh-hero-copy h1 {
  margin: 0 0 18px; font-size: clamp(36px, 6vw, 72px); font-weight: 800;
  letter-spacing: -2.5px; line-height: 1.08; color: var(--nsh-ink);
}
.nsh-hero-copy p {
  margin: 0 auto; max-width: 620px; font-size: 18px; line-height: 1.55;
  color: var(--nsh-slate);
}
.nsh-hero-preview { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.nsh-preview-swatchrow { display: flex; align-items: center; gap: 8px; }
.nsh-preview-swatch { width: 10px; height: 10px; border-radius: 2px; background: var(--nsh-slate); }
.nsh-preview-badge {
  font-family: 'Source Code Pro', monospace; font-size: 12px;
  letter-spacing: 0.2em; color: var(--nsh-steel);
}
.nsh-preview-img {
  width: 360px; height: 252px; object-fit: cover; border-radius: 12px;
  border: 1px solid var(--nsh-hairline);
  box-shadow: 0 18px 40px rgba(11, 43, 51, 0.18); background: #e8e6e2;
}
.nsh-preview-title {
  margin: 6px 0 0; font-size: clamp(24px, 3vw, 38px); font-weight: 800;
  letter-spacing: -1.2px; line-height: 1.12; color: var(--nsh-ink);
}
.nsh-preview-meta {
  margin: 0; font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--nsh-stone);
}
.nsh-preview-cta {
  display: none; margin-top: 8px; padding: 12px 26px; border-radius: 999px;
  background: var(--nsh-green); color: var(--nsh-on-primary);
  font-size: 15px; font-weight: 800; text-decoration: none;
  transition: background-color 0.2s ease-out;
}
.nsh-preview-cta:hover { background: var(--nsh-green-press); }
.nsh-hero-preview.nsh-show-cta .nsh-preview-cta { display: inline-flex; }

/* ---------------- ring ---------------- */
.nsh-ring-wrap {
  position: absolute; left: 50%; top: 70%; width: 0; height: 0; z-index: 2;
  perspective: 1300px;
}
.nsh-ring-stage { position: absolute; left: 0; top: 0; transform-style: preserve-3d; }
.nsh-panel {
  position: absolute; left: 0; top: 0; border-radius: 2px;
  border: 1px solid rgba(18, 36, 42, 0.14);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  background-size: cover; background-position: center;
  will-change: transform, opacity; backface-visibility: hidden;
  transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out;
}
.nsh-panel.is-hot {
  border-color: rgba(18, 36, 42, 0.55);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}
.nsh-panel.is-active {
  border-color: var(--nsh-green-press);
  box-shadow: 0 0 0 2px rgba(61, 220, 132, 0.55), 0 12px 26px rgba(0, 0, 0, 0.18);
}
.nsh-panel-num {
  position: absolute; bottom: 4px; left: 0; right: 0; text-align: center;
  font-family: 'Source Code Pro', monospace; font-size: 7px; letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* ---------------- category labels ---------------- */
.nsh-cat-label {
  position: absolute; z-index: 6; background: none; border: 0; padding: 0 0 2px;
  font-size: 14px; font-weight: 700; color: var(--nsh-ink);
  border-bottom: 2px solid rgba(18, 36, 42, 0.7);
  transition: border-color 0.2s ease-out, color 0.2s ease-out;
  white-space: nowrap;
}
.nsh-cat-label:hover { border-color: var(--nsh-green); }
.nsh-cat-count {
  font-family: 'Source Code Pro', monospace; font-size: 10px; font-weight: 600;
  color: var(--nsh-steel); margin-left: 3px;
}
.nsh-cat-label:nth-of-type(1)  { left: 2%;  top: 48%; }
.nsh-cat-label:nth-of-type(2)  { left: 4%;  top: 63%; }
.nsh-cat-label:nth-of-type(3)  { left: 12%; top: 79%; }
.nsh-cat-label:nth-of-type(4)  { left: 26%; top: 90%; }
.nsh-cat-label:nth-of-type(5)  { left: 43%; top: 95%; }
.nsh-cat-label:nth-of-type(6)  { left: 57%; top: 95%; }
.nsh-cat-label:nth-of-type(7)  { left: 71%; top: 90%; }
.nsh-cat-label:nth-of-type(8)  { right: 12%; top: 79%; }
.nsh-cat-label:nth-of-type(9)  { right: 4%;  top: 63%; }
.nsh-cat-label:nth-of-type(10) { right: 2%;  top: 48%; }

.nsh-instruction {
  position: absolute; left: 50%; top: 70%; transform: translate(-50%, -50%);
  z-index: 6; margin: 0; width: max-content; max-width: 90vw; pointer-events: none;
  text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(0, 0, 0, 0.35);
}

/* ---------------- grid view ---------------- */
.nsh-grid-view { display: none; padding: 130px 48px 90px; max-width: 1380px; margin: 0 auto; }
.nsh-mode-grid .nsh-hero { display: none; }
.nsh-mode-grid .nsh-grid-view { display: block; }

/* ---------------- standalone genre page ---------------- */
.nsh-genre-hero { padding: 130px 48px 0; max-width: 1380px; margin: 0 auto; }
.nsh-back-link { display: inline-block; margin-bottom: 22px; }
.nsh-genre-title { margin: 0; font-size: clamp(32px, 5vw, 56px); font-weight: 800; letter-spacing: -1.8px; }
.nsh-genre-count { margin: 8px 0 0; font-size: 14px; font-weight: 600; color: var(--nsh-steel); }
.nsh-grid-static { display: block; padding-top: 36px; }
@media (max-width: 767px) {
  .nsh-genre-hero { padding: 100px 20px 0; }
  .nsh-grid-static { padding: 100px 20px 60px; }
}
.nsh-grid-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.nsh-grid-title { margin: 0; font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -1.5px; }
.nsh-grid-count { margin: 6px 0 0; font-size: 14px; color: var(--nsh-steel); font-weight: 600; }
.nsh-grid-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; margin-top: 36px;
}
.nsh-card {
  border: 1px solid var(--nsh-hairline); border-radius: 12px; overflow: hidden;
  background: #fff; transition: box-shadow 0.24s ease-out; cursor: pointer;
}
.nsh-card:hover { box-shadow: 0 16px 36px rgba(11, 43, 51, 0.10); }
.nsh-card-media { position: relative; aspect-ratio: 3 / 2; background: #e8e6e2; }
.nsh-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nsh-card-status {
  position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 999px;
  background: rgba(11, 43, 51, 0.85); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.nsh-card-body { padding: 16px 18px 20px; }
.nsh-card-tag {
  display: inline-block; margin-bottom: 10px; padding: 3px 10px; border: 1px solid;
  border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.nsh-card-title { margin: 0 0 6px; font-size: 18px; font-weight: 800; letter-spacing: -0.3px; line-height: 1.25; }
.nsh-card-meta { margin: 0; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; color: var(--nsh-stone); }
.nsh-card-price { margin: 8px 0 0; font-family: 'Source Code Pro', monospace; font-size: 13px; color: var(--nsh-slate); }

/* ---------------- filter overlay ---------------- */
.nsh-filter-overlay {
  position: fixed; inset: 0; z-index: 5000; background: #fff;
  opacity: 0; visibility: hidden; overflow-y: auto;
  padding: 100px 48px 80px;
  transition: opacity 0.25s ease-out, visibility 0.25s;
}
.nsh-filter-open .nsh-filter-overlay { opacity: 1; visibility: visible; }
.nsh-close-filter {
  position: absolute; top: 26px; right: 40px; width: 46px; height: 46px;
  border: 1px solid var(--nsh-hairline); border-radius: 999px; background: none;
  font-size: 24px; line-height: 1; color: var(--nsh-ink);
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
}
.nsh-close-filter:hover { background: var(--nsh-teal); color: #fff; }
.nsh-filter-groups {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px; max-width: 1200px; margin: 0 auto;
}
.nsh-filter-group h4 {
  margin: 0 0 14px; font-size: 13px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--nsh-steel);
}
.nsh-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.nsh-chip {
  padding: 9px 18px; border: 1px solid var(--nsh-hairline); border-radius: 999px;
  background: #fff; color: var(--nsh-charcoal); font-size: 14px; font-weight: 600;
  transition: background-color 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out;
}
.nsh-chip:hover { border-color: var(--nsh-stone); }
.nsh-chip.is-on { background: var(--nsh-teal); border-color: var(--nsh-teal); color: #fff; }
.nsh-filter-footer {
  display: flex; justify-content: flex-end; align-items: center; gap: 22px;
  max-width: 1200px; margin: 56px auto 0;
}
.nsh-btn-primary {
  padding: 14px 30px; border: 0; border-radius: 999px;
  background: var(--nsh-green); color: var(--nsh-on-primary);
  font-size: 15px; font-weight: 800;
  transition: background-color 0.2s ease-out;
}
.nsh-btn-primary:hover { background: var(--nsh-green-press); }
.nsh-btn-ghost {
  background: none; border: 0; padding: 4px 0;
  font-size: 15px; font-weight: 700; color: var(--nsh-slate);
  transition: color 0.2s ease-out;
}
.nsh-btn-ghost:hover { color: var(--nsh-ink); }

/* ---------------- photo viewer ---------------- */
.nsh-viewer {
  position: fixed; inset: 0; z-index: 6000; background: rgba(11, 43, 51, 0.92);
  opacity: 0; visibility: hidden; overflow-y: auto;
  padding: 90px 48px;
  transition: opacity 0.25s ease-out, visibility 0.25s;
}
.nsh-viewer-open .nsh-viewer { opacity: 1; visibility: visible; }
.nsh-viewer-close {
  position: fixed; top: 26px; right: 40px; width: 46px; height: 46px; z-index: 6001;
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 999px; background: none;
  font-size: 24px; line-height: 1; color: #fff;
  transition: background-color 0.2s ease-out;
}
.nsh-viewer-close:hover { background: rgba(255, 255, 255, 0.12); }
.nsh-viewer-inner {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: 40px; max-width: 1200px; margin: 0 auto; align-items: center;
}
.nsh-viewer-media { border-radius: 12px; overflow: hidden; background: rgba(255, 255, 255, 0.06); }
.nsh-viewer-img { display: block; width: 100%; max-height: 78vh; object-fit: contain; }
.nsh-viewer-meta { color: #fff; }
.nsh-viewer-tag {
  display: inline-block; margin-bottom: 14px; padding: 4px 12px; border: 1px solid;
  border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.nsh-viewer-title {
  margin: 0 0 8px; font-size: clamp(22px, 2.6vw, 32px); font-weight: 800;
  letter-spacing: -0.8px; line-height: 1.2; color: #fff !important;
}
.nsh-viewer-location {
  margin: 0 0 18px; font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.6);
}
.nsh-viewer-availability {
  display: inline-block; margin: 0 0 24px; padding: 5px 14px; border-radius: 999px;
  background: rgba(61, 220, 132, 0.16); border: 1px solid rgba(61, 220, 132, 0.5);
  color: var(--nsh-green); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.nsh-viewer-sizes { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.nsh-size-row {
  display: grid; grid-template-columns: 1.3fr 0.7fr 0.9fr auto; gap: 10px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px; font-weight: 600;
}
.nsh-size-head {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5); border-bottom-color: rgba(255, 255, 255, 0.22);
}
.nsh-size-row span:nth-child(2), .nsh-size-row span:nth-child(3) {
  font-family: 'Source Code Pro', monospace;
}
.nsh-size-buy {
  padding: 7px 16px; border-radius: 999px; background: var(--nsh-green); color: var(--nsh-on-primary);
  font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap;
  transition: background-color 0.2s ease-out, opacity 0.2s ease-out;
}
.nsh-size-buy:hover { background: var(--nsh-green-press); }
.nsh-size-row.nsh-size-unavailable .nsh-size-buy { opacity: 0.35; pointer-events: none; }
@media (max-width: 480px) {
  .nsh-size-row { grid-template-columns: 1fr 0.6fr 0.8fr; row-gap: 8px; }
  .nsh-size-buy { grid-column: 1 / -1; text-align: center; }
  .nsh-size-head .nsh-size-buy, .nsh-size-head span:last-child { display: none; }
}
@media (max-width: 900px) {
  .nsh-viewer-inner { grid-template-columns: 1fr; }
  .nsh-viewer { padding: 80px 24px; }
}

/* ---------------- footer ---------------- */
.nsh-footer {
  background: var(--nsh-teal); color: #fff; padding: 44px 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.nsh-footer-mark { font-size: 17px; font-weight: 800; letter-spacing: 0.14em; }
.nsh-footer-copy { font-size: 14px; color: rgba(255, 255, 255, 0.55); }

/* ---------------- custom cursor ---------------- */
.nsh-cursor {
  position: fixed; left: 0; top: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--nsh-ink); border: 0 solid var(--nsh-ink);
  pointer-events: none; z-index: 99999;
  transition: width 0.18s ease-out, height 0.18s ease-out,
              background-color 0.18s ease-out, border-width 0.18s ease-out;
}
.nsh-cursor.is-ring { width: 34px; height: 34px; background: transparent; border-width: 1.5px; }

/* ---------------- responsive ---------------- */
@media (max-width: 1023px) {
  .nsh-nav { padding: 0 32px; gap: 32px; }
  .nsh-utility { left: 32px; right: 32px; }
  .nsh-grid-view { padding-left: 32px; padding-right: 32px; }
  .nsh-filter-overlay { padding-left: 32px; padding-right: 32px; }
  .nsh-cat-label { font-size: 13px; }
}
@media (max-width: 767px) {
  .nsh-nav { height: 64px; padding: 0 20px; gap: 20px; }
  .nsh-hero { padding-top: 64px; min-height: 560px; }
  .nsh-utility { top: 84px; left: 20px; right: 20px; }
  .nsh-burger { display: flex; }
  .nsh-nav-menu .nsh-nav-links { display: none; }
  .nsh-nav-open .nsh-nav-menu .nsh-nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 64px; left: 0; right: 0; max-height: calc(100vh - 64px); overflow-y: auto;
    background: #fff; border-bottom: 1px solid var(--nsh-hairline);
    padding: 18px 24px;
  }
  .nsh-nav-links li { width: 100%; }
  .nsh-nav-links > li > a { display: block; padding: 10px 0; }
  .nsh-nav-links li.menu-item-has-children > a::before { display: none; }
  .nsh-nav-links .sub-menu {
    position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none;
    box-shadow: none; border: 0; border-radius: 0; padding: 0 0 4px 16px; min-width: 0;
  }
  .nsh-nav-links .sub-menu a { padding: 8px 0; }
  .nsh-hero-center { top: 13%; }
  .nsh-hero-copy p { font-size: 15px; }
  .nsh-preview-img { width: 280px; height: 196px; }
  .nsh-cat-labels {
    position: absolute; bottom: 46px; left: 0; right: 0; z-index: 6;
    display: flex; gap: 22px; overflow-x: auto; padding: 4px 20px;
    -webkit-overflow-scrolling: touch;
  }
  .nsh-cat-labels .nsh-cat-label { position: static; }
  .nsh-instruction { letter-spacing: 3px; font-size: 10px; }
  .nsh-grid-view { padding: 100px 20px 60px; }
  .nsh-filter-overlay { padding: 90px 20px 60px; }
  .nsh-close-filter { top: 16px; right: 16px; }
  .nsh-footer { padding: 34px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  #nsh-app * { transition-duration: 0.01ms !important; }
}
