/* ═══════════════════════════════════════════════════════════════
   NAFOS STUDIOS — Product Page (v7 Glassmorphism)
   Extracted 1:1 from product-info-paddle.liquid
   BEM: nafos-product__* replacing nfs-* prefixes
   v7: strict glow eradication on glass cards
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens (resolved from Liquid schema defaults) ── */
:root {
  --nafos-product-accent-1:  #00e5c0;
  --nafos-product-accent-2:  #7c4dff;
  --nafos-product-glass-bg:  rgba(255, 255, 255, 0.035);
  --nafos-product-glass-border: rgba(255, 255, 255, 0.12);
  --nafos-product-glass-blur:   24px;
  --nafos-product-radius-card:  24px;
  --nafos-product-radius-thumb: 14px;
  --nafos-product-font-display: var(--font-heading);
  --nafos-product-font-body:    var(--font-body);
  --nafos-product-title-color:  #f0eeff;
  --nafos-product-text-color:   #f0eeff;
  --nafos-product-para-color:   rgba(220, 210, 255, 0.75);
  --nafos-product-text-primary: #f0eeff;
  --nafos-product-text-secondary: rgba(223, 223, 223, 0.65);
}

/* ── Section Wrapper ── */
.nafos-product__section {
  position: relative;
  padding: 80px 0 80px;
  font-family: var(--nafos-product-font-body);
  color: var(--nafos-product-text-primary);
  overflow-x: hidden;
  overflow-y: visible;
  background: transparent;
  min-height: 100vh;
  max-width: 100vw;
  box-sizing: border-box;
}

/* ── Ambient Background Orbs (bg only — no card bleed) ── */
.nafos-product__bg-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.nafos-product__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  animation: nafos-product-orb-drift 18s ease-in-out infinite alternate;
}
.nafos-product__orb--a {
  width: 520px; height: 520px;
  background: var(--nafos-product-accent-1);
  top: -120px; left: -100px;
  animation-delay: 0s;
}
.nafos-product__orb--b {
  width: 400px; height: 400px;
  background: var(--nafos-product-accent-2);
  bottom: -80px; right: -80px;
  animation-delay: -7s;
}
.nafos-product__orb--c {
  width: 280px; height: 280px;
  background: #00e5ff33;
  top: 50%; right: 30%;
  animation-delay: -12s;
}
@keyframes nafos-product-orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.12); }
}

/* ── Grid Container ── */
.nafos-product__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

/* ═══════════════════════════════════
   GLASS CARD BASE
   v7: ALL external shadows, glows, and
   pseudo-element gradients REMOVED.
   Only backdrop-filter + border remain.
═══════════════════════════════════ */
.nafos-product__card {
  background: var(--nafos-product-glass-bg);
  backdrop-filter: blur(var(--nafos-product-glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--nafos-product-glass-blur)) saturate(180%);
  border: 1px solid var(--nafos-product-glass-border);
  border-radius: var(--nafos-product-radius-card);
  box-shadow: none !important;
  padding: clamp(20px, 3vw, 36px);
}

/* ═══════════════════════════════════
   LEFT COLUMN — MEDIA
═══════════════════════════════════ */
.nafos-product__gallery-col {
  position: sticky;
  top: 32px;
}

.nafos-product__gallery-card {
  background: var(--nafos-product-glass-bg);
  backdrop-filter: blur(var(--nafos-product-glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--nafos-product-glass-blur)) saturate(180%);
  border: 1px solid var(--nafos-product-glass-border);
  border-radius: var(--nafos-product-radius-card);
  box-shadow: none !important;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

/* Main Media Wrap */
.nafos-product__main-wrap {
  position: relative;
  border-radius: calc(var(--nafos-product-radius-card) - 6px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.4s ease;
  cursor: zoom-in;
}
.nafos-product__main-wrap.is-video { cursor: default; }

.nafos-product__main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.5s ease;
  border-radius: inherit;
  pointer-events: none;
}
.nafos-product__main-img.is-transitioning {
  opacity: 0;
  transform: scale(1.03);
}

.nafos-product__main-video,
.nafos-product__main-iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: inherit;
  display: none;
  object-fit: cover;
}
.nafos-product__main-video.is-active,
.nafos-product__main-iframe.is-active { display: block; }

/* Fullscreen button */
.nafos-product__fs-btn {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 5, 25, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--nafos-product-text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 2;
  pointer-events: auto;
}
.nafos-product__fs-btn svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nafos-product__fs-btn:hover {
  background: rgba(0, 229, 192, 0.15);
  border-color: var(--nafos-product-accent-1);
  transform: scale(1.08);
}

/* Sold-out badge */
.nafos-product__main-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--nafos-product-accent-1), var(--nafos-product-accent-2));
  color: #fff;
  font-family: var(--nafos-product-font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  pointer-events: none;
  display: none;
  z-index: 2;
}

/* ═══════════════════════════════════
   LIGHTBOX — Image + Video + iFrame
═══════════════════════════════════ */
.nafos-product__lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nafos-product__lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.nafos-product__lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 0, 18, 0.92);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  cursor: zoom-out;
}
.nafos-product__lightbox-frame {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 960px);
  max-height: 90vh;
  width: min(90vw, 960px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.88);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #0a0518;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nafos-product__lightbox.is-open .nafos-product__lightbox-frame { transform: scale(1); }

.nafos-product__lightbox-img {
  display: block;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: inherit;
}
.nafos-product__lightbox-video {
  display: none;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: inherit;
  background: #000;
}
.nafos-product__lightbox-iframe {
  display: none;
  width: 100%;
  height: 540px;
  max-height: 90vh;
  border: none;
  border-radius: inherit;
}

.nafos-product__lightbox[data-mode="image"]  .nafos-product__lightbox-img    { display: block; }
.nafos-product__lightbox[data-mode="image"]  .nafos-product__lightbox-video  { display: none; }
.nafos-product__lightbox[data-mode="image"]  .nafos-product__lightbox-iframe { display: none; }
.nafos-product__lightbox[data-mode="video"]  .nafos-product__lightbox-img    { display: none; }
.nafos-product__lightbox[data-mode="video"]  .nafos-product__lightbox-video  { display: block; }
.nafos-product__lightbox[data-mode="video"]  .nafos-product__lightbox-iframe { display: none; }
.nafos-product__lightbox[data-mode="iframe"] .nafos-product__lightbox-img    { display: none; }
.nafos-product__lightbox[data-mode="iframe"] .nafos-product__lightbox-video  { display: none; }
.nafos-product__lightbox[data-mode="iframe"] .nafos-product__lightbox-iframe { display: block; }

.nafos-product__lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 5, 25, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.nafos-product__lightbox-close svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.nafos-product__lightbox-close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--nafos-product-accent-1);
  transform: scale(1.1) rotate(90deg);
}

/* ── Thumbnail Strip ── */
.nafos-product__thumbstrip {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nafos-product__thumb-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.nafos-product__thumb-track {
  display: flex;
  gap: 10px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.nafos-product__thumb-item {
  flex: 0 0 calc((100% - 20px) / 3);
  aspect-ratio: 1 / 1;
  border-radius: var(--nafos-product-radius-thumb);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.nafos-product__thumb-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.nafos-product__thumb-item.is-active {
  border-color: var(--nafos-product-accent-1);
  box-shadow: 0 0 0 2px var(--nafos-product-accent-1);
}
.nafos-product__thumb-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  pointer-events: none;
  transition: transform 0.4s ease;
}
.nafos-product__thumb-item:hover img { transform: scale(1.06); }
.nafos-product__thumb-item.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 229, 192, 0.1);
  border-radius: inherit;
  pointer-events: none;
}

.nafos-product__thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
.nafos-product__thumb-play svg {
  width: 28px; height: 28px;
  fill: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s ease;
}
.nafos-product__thumb-item:hover .nafos-product__thumb-play svg { transform: scale(1.15); }

.nafos-product__thumb-arrow {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--nafos-product-glass-border);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--nafos-product-text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.nafos-product__thumb-arrow svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.nafos-product__thumb-arrow:hover {
  border-color: var(--nafos-product-accent-1);
  background: rgba(0, 229, 192, 0.1);
  transform: scale(1.08);
}
.nafos-product__thumb-arrow:hover svg { transform: scale(1.15); }
.nafos-product__thumb-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  border-color: rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════
   RIGHT COLUMN — PRODUCT INFO
═══════════════════════════════════ */
.nafos-product__details-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

/* Title Block */
.nafos-product__title-card { gap: 16px; }
.nafos-product__eyebrow {
  font-family: var(--nafos-product-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nafos-product-accent-1);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.nafos-product__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--nafos-product-accent-1);
  flex-shrink: 0;
}

.nafos-product__title,
.nfs-product-title {
  font-family: var(--nafos-product-font-display);
  font-size: clamp(18px, 6vw, 70px) !important;
  font-weight: 800;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  width: 100% !important;
  display: block !important;
  background: linear-gradient(135deg, #fff 40%, var(--nafos-product-accent-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

@media (max-width: 480px) {
  .nafos-product__card,
  .nfs-glass-card {
    padding: 20px !important;
  }
}

/* ═══════════════════════════════════
   CUSTOM GLASS REVIEWS COMPONENT
═══════════════════════════════════ */
.nafos-product__reviews-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px clamp(20px, 3vw, 32px);
}
.nafos-product__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.nafos-product__star { width: 20px; height: 20px; flex-shrink: 0; }
.nafos-product__reviews-divider {
  width: 1px; height: 28px;
  background: var(--nafos-product-glass-border);
  flex-shrink: 0;
}
.nafos-product__reviews-meta { display: flex; flex-direction: column; gap: 2px; }
.nafos-product__reviews-score {
  font-family: var(--nafos-product-font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--nafos-product-accent-1), var(--nafos-product-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.nafos-product__reviews-count {
  font-size: 12px;
  font-weight: 400;
  color: var(--nafos-product-text-secondary);
  letter-spacing: 0.04em;
}

/* Price Block */
.nafos-product__price-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nafos-product-text-secondary);
  margin-bottom: 8px;
}
.nafos-product__price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.nafos-product__price-current {
  font-family: var(--nafos-product-font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--nafos-product-accent-1), var(--nafos-product-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.nafos-product__price-compare {
  font-size: 18px;
  font-weight: 400;
  color: var(--nafos-product-text-secondary);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.2);
}
.nafos-product__price-badge {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--nafos-product-font-display);
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--nafos-product-accent-1), var(--nafos-product-accent-2));
  color: #fff;
  align-self: center;
}

/* Variant Selector */
.nafos-product__variants h4 {
  font-family: var(--nafos-product-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nafos-product-text-secondary);
  margin: 0 0 14px;
}
.nafos-product__variant-options { display: flex; flex-wrap: wrap; gap: 10px; }
.nafos-product__variant-option {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--nafos-product-text-primary);
  font-family: var(--nafos-product-font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.nafos-product__variant-option:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* CTA Block */
.nafos-product__cta-card { gap: 16px; }
.nafos-product__cta-inner { display: flex; flex-direction: column; gap: 14px; }

/* ── Email input (Paddle guest checkout) ── */
.nafos-product__paddle-email-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--nafos-product-text-primary);
  font-family: var(--nafos-product-font-body);
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.nafos-product__paddle-email-wrap input[data-nfs-error="true"] {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.06);
}
.nafos-product__paddle-email-wrap input:focus {
  border-color: var(--nafos-product-accent-1);
  background: rgba(255, 255, 255, 0.07);
}

/* ── Paddle / Primary CTA Button ── */
.nafos-product__btn-paddle {
  width: 100%;
  padding: 18px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: var(--nafos-product-font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--nafos-product-accent-1), var(--nafos-product-accent-2));
  color: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nafos-product__btn-paddle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.nafos-product__btn-paddle:hover:not(:disabled) { transform: translateY(-2px); }
.nafos-product__btn-paddle:hover:not(:disabled)::before { opacity: 1; }
.nafos-product__btn-paddle:active:not(:disabled) { transform: translateY(0); }
.nafos-product__btn-paddle:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}
.nafos-product__btn-paddle .nafos-product__btn-icon {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes nafos-product-pulse-ring {
  0%   { box-shadow: 0 0 0 0 var(--nafos-product-accent-1); }
  70%  { box-shadow: 0 0 0 14px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.nafos-product__btn-paddle.nfs-added { animation: nafos-product-pulse-ring 0.6s ease-out; }

/* Demo button */
.nafos-product__btn-demo-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.nafos-product__btn-demo {
  width: 100%;
  padding: 16px 32px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-family: var(--nafos-product-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--nafos-product-text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.nafos-product__btn-demo:hover {
  border-color: var(--nafos-product-accent-1);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.nafos-product__btn-demo svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.nafos-product__btn-demo:hover svg { transform: translateX(3px) translateY(-3px); }

.nafos-product__btn-sub {
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--nafos-product-text-secondary);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.5;
  opacity: 0.85;
}

.nafos-product__feedback {
  font-size: 13px;
  font-weight: 500;
  color: var(--nafos-product-accent-2);
  text-align: center;
  min-height: 20px;
  transition: opacity 0.3s;
  opacity: 0;
  letter-spacing: 0.05em;
}
.nafos-product__feedback.visible { opacity: 1; }

.nafos-product__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--nafos-product-glass-border), transparent);
  margin: 4px 0;
}

/* ═══════════════════════════════════
   ACCORDION BLOCKS — v7 REDESIGN
   Compact glass bars. NO glow, no shadows.
═══════════════════════════════════ */
.nafos-product__accordions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nafos-product__accordion {
  background: var(--nafos-product-glass-bg);
  backdrop-filter: blur(var(--nafos-product-glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--nafos-product-glass-blur)) saturate(180%);
  border: 1px solid var(--nafos-product-glass-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none !important;
  transition: border-color 0.3s ease;
}
.nafos-product__accordion[open] {
  border-color: rgba(0, 229, 192, 0.35);
}

.nafos-product__accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
  outline: none;
  transition: background 0.2s;
  min-height: 52px;
}
.nafos-product__accordion summary::-webkit-details-marker { display: none; }
.nafos-product__accordion summary:hover { background: rgba(255, 255, 255, 0.04); }

.nafos-product__accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.nafos-product__accordion-icon {
  width: 24px; height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  border-radius: 4px;
}

.nafos-product__accordion-icon-fallback {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0, 229, 192, 0.1);
  border: 1px solid rgba(0, 229, 192, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nafos-product__accordion-icon-fallback svg {
  width: 12px; height: 12px;
  stroke: var(--nafos-product-accent-1);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nafos-product__accordion-title {
  font-family: var(--nafos-product-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nafos-product-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nafos-product__accordion-chevron {
  width: 16px; height: 16px;
  stroke: var(--nafos-product-text-secondary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.25s;
}
.nafos-product__accordion[open] .nafos-product__accordion-chevron {
  transform: rotate(180deg);
  stroke: var(--nafos-product-accent-1);
}

.nafos-product__accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nafos-product__accordion[open] .nafos-product__accordion-body { grid-template-rows: 1fr; }
.nafos-product__accordion-body-inner { overflow: hidden; }

.nafos-product__accordion-content {
  padding: 0 18px 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--nafos-product-para-color);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}
.nafos-product__accordion-content p { margin: 0 0 8px; }
.nafos-product__accordion-content p:last-child { margin: 0; }
.nafos-product__accordion-content ul,
.nafos-product__accordion-content ol { padding-left: 18px; margin: 6px 0; }
.nafos-product__accordion-content li { margin-bottom: 5px; }
.nafos-product__accordion-content a {
  color: var(--nafos-product-accent-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 77, 255, 0.4);
  transition: border-color 0.2s;
}
.nafos-product__accordion-content a:hover { border-color: var(--nafos-product-accent-2); }

/* ── v7: Paragraph text color applied globally ── */
.nafos-product__section p,
.nafos-product__section .nafos-product__desc-text {
  color: var(--nafos-product-para-color);
}

/* ═══════════════════════════════════
   PAYMENT SECTION
═══════════════════════════════════ */
.nafos-product__payment-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 12px;
  margin-top: 16px;
}

.nafos-product__secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.nafos-product__pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: nafos-product-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes nafos-product-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.nafos-product__payment-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  overflow: visible;
}
.nafos-product__payment-icon,
.nafos-product__payment-icon svg {
  height: 22px !important;
  width: auto !important;
  flex-shrink: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ═══════════════════════════════════
   LIVE DEMO MODAL
═══════════════════════════════════ */
.nafos-product__demo-modal {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  width: 100vw !important; height: 100vh !important;
  max-width: none !important; max-height: none !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(4, 0, 20, 0.72);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nafos-product__demo-modal.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}

.nafos-product__demo-panel {
  position: relative;
  width: 100%;
  max-width: 1080px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 48px 44px 44px;
  box-sizing: border-box;
  border-radius: 24px;
  background: rgba(10, 5, 30, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 24px 80px rgba(0, 0, 0, 0.55);
  transform: scale(0.93) translateY(20px);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.22, 0.68, 0, 1.2), opacity 0.38s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}
.nafos-product__demo-modal.is-open .nafos-product__demo-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.nafos-product__demo-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}
.nafos-product__demo-close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: scale(1.08) rotate(90deg);
}

.nafos-product__demo-header { position: relative; z-index: 1; margin-bottom: 36px; }
.nafos-product__demo-heading {
  font-family: var(--nafos-product-font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.nafos-product__demo-subheading {
  font-family: var(--nafos-product-font-body);
  font-size: 13px;
  color: var(--nafos-product-text-secondary);
  letter-spacing: 0.04em;
  margin: 0;
  opacity: 0.85;
}
.nafos-product__demo-header-line {
  height: 1px;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.nafos-product__demo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nafos-product__demo-card {
  flex: 1 1 300px;
  max-width: 360px;
  min-width: 260px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.32s ease, border-color 0.32s ease;
  animation: nafos-product-demo-card-in 0.5s cubic-bezier(0.22, 0.68, 0, 1.15) both;
}
.nafos-product__demo-card:nth-child(1) { animation-delay: 0.06s; }
.nafos-product__demo-card:nth-child(2) { animation-delay: 0.12s; }
.nafos-product__demo-card:nth-child(3) { animation-delay: 0.18s; }
.nafos-product__demo-card:nth-child(4) { animation-delay: 0.24s; }
@keyframes nafos-product-demo-card-in {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.nafos-product__demo-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.16);
}

.nafos-product__demo-thumb-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.nafos-product__demo-thumb-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.nafos-product__demo-card:hover .nafos-product__demo-thumb-wrap img { transform: scale(1.06); }
.nafos-product__demo-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.nafos-product__demo-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.nafos-product__demo-card-title {
  font-family: var(--nafos-product-font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.nafos-product__demo-password-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.nafos-product__demo-lock-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--nafos-product-text-secondary);
  opacity: 0.8;
  white-space: nowrap;
}
.nafos-product__demo-password-value {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}
.nafos-product__demo-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nafos-product-text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
  outline: none;
  backdrop-filter: blur(8px);
}
.nafos-product__demo-copy-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: scale(1.04);
}
.nafos-product__demo-copy-btn.is-copied {
  background: rgba(34, 213, 115, 0.15) !important;
  border-color: rgba(34, 213, 115, 0.4) !important;
  color: #2ed573 !important;
}

.nafos-product__demo-divider {
  height: 1px;
  margin: 4px 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.nafos-product__demo-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 13px 20px;
  margin-top: auto;
  transition: transform 0.3s ease, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.nafos-product__demo-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.25);
}
.nafos-product__demo-view-btn-icon { transition: transform 0.28s ease; }
.nafos-product__demo-view-btn:hover .nafos-product__demo-view-btn-icon { transform: translateX(3px) scale(1.1); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nafos-product__container { grid-template-columns: 1fr; }
  .nafos-product__gallery-col { position: relative; top: 0; }
}
@media (max-width: 640px) {
  .nafos-product__section { padding-left: 0; padding-right: 0; }
  .nafos-product__container {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    width: 100%;
    margin-left: 0; margin-right: 0;
  }
  .nafos-product__main-wrap { aspect-ratio: 4 / 3; }
  .nafos-product__btn-paddle,
  .nafos-product__btn-demo { padding: 15px 24px; font-size: 14px; }
  .nafos-product__accordion summary { padding: 12px 16px; }
}
@media (max-width: 600px) {
  .nafos-product__demo-panel { padding: 36px 20px 28px; border-radius: 18px; }
  .nafos-product__demo-grid { gap: 16px; }
  .nafos-product__demo-card { flex: 1 1 100%; max-width: 100%; min-width: 0; }
}
@media screen and (max-width: 767px) {
  .nafos-product__secure-badge { padding: 4px 10px !important; font-size: 10px !important; }
  .nafos-product__payment-icons {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    justify-content: center !important;
  }
  .nafos-product__payment-icons::-webkit-scrollbar { display: none; }
  .nafos-product__payment-icon,
  .nafos-product__payment-icon svg { height: 16px !important; }
}
@media (prefers-reduced-motion: reduce) {
  .nafos-product__accordion-body,
  .nafos-product__btn-paddle,
  .nafos-product__orb { animation: none !important; transition: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   GLASS BENEFITS SECTION
   Extracted 1:1 from glass-features.liquid · BEM: nafos-features
   v7 compliant — no card glows, dark/cyan icon aesthetic
   ═══════════════════════════════════════════════════════════════ */

.nafos-features {
  padding: 60px 20px 80px;
  display: flex;
  justify-content: center;
  background: transparent;
}

.nafos-features__container {
  max-width: 800px;
  width: 100%;
}

.nafos-features__title {
  color: #ffffff;
  text-align: center;
  margin: 0 0 40px;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ── 2-column grid on desktop, 1-column on mobile ── */
.nafos-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* ── Glass Card ── */
.nafos-features__card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  /* Scroll-reveal initial state */
  opacity: 0;
  transform: translateY(18px);
}
.nafos-features__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.nafos-features__card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
/* override reveal transform on hover once visible */
.nafos-features__card.is-visible:hover {
  transform: translateX(10px);
}

/* ── 3D Check Icon — dark/metallic/cyan remap from original #e0e0e0 ── */
.nafos-features__icon-3d {
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Outer 3D shell: dark neumorphism with subtle cyan outer ring */
  background: rgba(0, 229, 192, 0.08);
  box-shadow:
    4px 4px 10px rgba(0, 0, 0, 0.55),
    -2px -2px 6px rgba(0, 229, 192, 0.08),
    0 0 0 1px rgba(0, 229, 192, 0.15);
}

.nafos-features__icon-inner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Inner 3D bowl: deep dark with inset shadow depth */
  background: #0a0a0a;
  box-shadow:
    inset 3px 3px 7px rgba(0, 0, 0, 0.7),
    inset -2px -2px 5px rgba(0, 229, 192, 0.12);
  /* Cyan stroke on the SVG tick */
  color: var(--nafos-product-accent-1, #00e5c0);
}

.nafos-features__icon-inner svg {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
}

/* ── Benefit Text ── */
.nafos-features__text {
  color: #ffffff;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* ── Premium scroll reveal — React-Pro / Framer-Motion style ── */
.reveal-card {
  opacity: 0 !important;
  transform: translateY(40px) scale(0.96) !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease !important;
  will-change: transform, opacity;
}

.reveal-card.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.reveal-card:nth-child(1) { transition-delay: 0ms !important; }
.reveal-card:nth-child(2) { transition-delay: 100ms !important; }
.reveal-card:nth-child(3) { transition-delay: 200ms !important; }
.reveal-card:nth-child(4) { transition-delay: 300ms !important; }
.reveal-card:nth-child(5) { transition-delay: 400ms !important; }
.reveal-card:nth-child(6) { transition-delay: 500ms !important; }

@media (hover: hover) {
  .nafos-features__card.reveal-card.is-visible:hover {
    transform: translateX(10px) scale(1) !important;
  }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .nafos-features__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .nafos-features {
    padding: 40px 16px 60px;
  }
  .nafos-features__card:hover {
    transform: none;
    box-shadow: none;
  }
  .nafos-features__card.is-visible:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nafos-features__card,
  .reveal-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* NAFOS AERO THEME: Mobile Benefits Grid Overflow Fix (Isolated) */
@media (max-width: 768px) {
  .nfs-benefits-grid--aero {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .nfs-benefits-grid--aero > div {
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NFS STORES SHOWCASE
   Extracted 1:1 from nfs-store-showcase.liquid · BEM: nafos-showcase
   Centered 2-card layout · glass cards · scroll reveal
   ═══════════════════════════════════════════════════════════════ */

.nafos-showcase {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding-top: 40px;
  padding-bottom: 40px;
}

.nafos-showcase__container {
  width: 100%;
}

.nafos-showcase__header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.nafos-showcase__title {
  color: #fff;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  font-style: italic;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.nafos-showcase__wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ── Centered 2-card track ── */
.nafos-showcase__track {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* ── Scroll reveal animation ── */
.showcase-card-reveal {
  opacity: 0 !important;
  transform: translateY(30px) scale(0.97) !important;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease !important;
  will-change: transform, opacity;
}
.showcase-card-reveal.is-revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}
.showcase-card-reveal:nth-child(2) {
  transition-delay: 150ms !important;
}

/* ── Glass card ── */
.nafos-showcase__card {
  flex: 0 1 min(480px, 100%);
  max-width: 480px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: rgba(15, 15, 15, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 15px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
  will-change: transform;
}

.nafos-showcase__card:hover {
  transform: translateY(-10px);
  border-color: rgba(221, 221, 221, 0.35);
  box-shadow:
    0 15px 40px rgba(0, 229, 192, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nafos-showcase__img-container {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #0a0a0a;
  position: relative;
}

.nafos-showcase__img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.nafos-showcase__card:hover .nafos-showcase__img-container img {
  transform: scale(1.08);
}

.nafos-showcase__name {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  font-style: italic;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nafos-showcase__card:hover .nafos-showcase__name {
  color: #e8e8e8;
  text-shadow: 0 0 10px var(--nfs-cyan-glow-soft, rgba(222, 222, 222, 0.35));
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nafos-showcase {
    padding: 32px 0 36px;
  }

  .nafos-showcase__header {
    margin-bottom: 28px;
  }

  .nafos-showcase__title {
    letter-spacing: 1.2px;
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .nafos-showcase__wrapper {
    padding: 0 16px;
  }

  .nafos-showcase__track {
    gap: 24px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .nafos-showcase__card {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .nafos-showcase__name {
    font-size: 15px;
    letter-spacing: 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-card-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .nafos-showcase__card,
  .nafos-showcase__img-container img {
    transition: none !important;
  }
  .nafos-showcase__card:hover {
    transform: none;
  }
  .nafos-showcase__card:hover .nafos-showcase__img-container img {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GLASS MARQUEE
   Extracted 1:1 from marquee-glassmorphism.liquid · BEM: nafos-marquee
   CSS-native infinite scroll · hardware-accelerated translateX
   ═══════════════════════════════════════════════════════════════ */

.nafos-marquee {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  overflow: hidden;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: transparent !important;
}

/* ── Glass pill container ── */
.nafos-marquee__pill {
  position: relative;
  margin: 0 auto;
  max-width: calc(100% - 48px);
  border-radius: 9999px;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.10) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Subtle top-edge highlight */
.nafos-marquee__pill::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0) 55%
  );
  pointer-events: none;
  z-index: 1;
}

/* Edge fade masks */
.nafos-marquee__pill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(to right, rgba(5, 5, 5, 0.85) 0%, transparent 80px),
    linear-gradient(to left, rgba(5, 5, 5, 0.85) 0%, transparent 80px);
  pointer-events: none;
  z-index: 3;
}

.nafos-marquee__viewport {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* ── Scrolling track — layout only; animation on nfs-marquee-glass__track ── */
.nafos-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
}

.nafos-marquee__track:hover {
  animation-play-state: paused;
}

.nafos-marquee__track.is-paused {
  animation-play-state: paused;
}

@keyframes nfsSeamlessMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Glass Container Safeguard — seamless dual-content loop */
.nfs-marquee-glass-container,
.nafos-marquee__viewport {
  overflow: hidden !important;
  display: flex !important;
  white-space: nowrap !important;
}

.nfs-marquee-glass__track {
  display: flex !important;
  width: max-content !important;
  flex-wrap: nowrap !important;
  animation: nfsSeamlessMarquee 80s linear infinite !important;
}

.nfs-marquee-glass__content {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  padding-right: 40px !important;
}

/* ── Individual pills / labels ── */
.nafos-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  white-space: nowrap;
  flex-shrink: 0;
  color: #FFFFFF !important;
}

.nafos-marquee__item + .nafos-marquee__item::before {
  content: '·';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -2px;
  opacity: 0.85;
  font-size: 1.25em;
  line-height: 1;
  font-weight: 700;
  color: #FFFFFF !important;
  position: relative;
  left: -28px;
}

.nafos-marquee__text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nafos-marquee {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .nafos-marquee__pill {
    max-width: calc(100% - 24px);
    border-radius: 9999px;
  }

  .nafos-marquee__item {
    padding: 14px 22px;
    gap: 8px;
  }

  .nafos-marquee__text {
    font-size: 13px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 480px) {
  .nafos-marquee__item {
    padding: 12px 18px;
  }

  .nafos-marquee__text {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nafos-marquee__track {
    animation: none !important;
    transform: none !important;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .nafos-marquee__item + .nafos-marquee__item::before {
    display: none;
  }

  .nafos-marquee__item[aria-hidden="true"],
  .nfs-marquee-glass__content[aria-hidden="true"] {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GLASS FEATURES LIST
   Extracted 1:1 from custom-glass-features.liquid
   BEM: nafos-glass-features · scroll-reveal via .nafos-animate
   ═══════════════════════════════════════════════════════════════ */

.nafos-glass-features {
  background: transparent;
}

.nafos-glass-features__wrapper {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-sizing: border-box;
}

/* ── Main title pill card ── */
.nafos-glass-features__main-title {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(17px) saturate(80%) brightness(1.1);
  -webkit-backdrop-filter: blur(17px) saturate(80%) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 20px 50px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: fit-content;
  margin: 0 auto;
}

.nafos-glass-features__main-title-text {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.1;
}

/* ── Outer glass panel ── */
.nafos-glass-features__panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(17px) saturate(80%) brightness(1.1);
  -webkit-backdrop-filter: blur(17px) saturate(80%) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* ── Individual feature row ── */
.nafos-glass-features__card {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nafos-glass-features__card--reverse {
  flex-direction: row-reverse;
}

.nafos-glass-features__copy {
  flex: 1;
  color: #ffffff;
}

.nafos-glass-features__title {
  font-size: 40px;
  margin: 0 0 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}

.nafos-glass-features__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: #FFFFFF;
}

.nafos-glass-features__media {
  flex: 1;
  border-radius: 25px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.25);
  background: #0a0a0a;
}

.nafos-glass-features__media svg,
.nafos-glass-features__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Scroll-reveal animation tokens ── */
.nafos-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.nafos-animate--fade-up {
  transform: translateY(20px);
}

.nafos-animate--scale-up {
  transform: translateY(20px) scale(0.95);
}

.nafos-animate.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nafos-animate--delay-1 { transition-delay: 0.1s; }
.nafos-animate--delay-2 { transition-delay: 0.2s; }

/* ── Responsive ── */
@media screen and (max-width: 768px) {
  .nafos-glass-features__wrapper {
    padding: 40px 16px;
    gap: 28px;
  }

  .nafos-glass-features__card,
  .nafos-glass-features__card--reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .nafos-glass-features__media {
    order: -1;
  }

  .nafos-glass-features__panel {
    padding: 30px 20px;
    border-radius: 30px;
    gap: 80px;
  }

  .nafos-glass-features__main-title {
    padding: 15px 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nafos-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NFS LIVE DEMO — Single Trigger + Modal Preset Grid
   BEM: nafos-demo-trigger · nafos-demo-modal
   ═══════════════════════════════════════════════════════════════ */

.nafos-demo {
  position: relative;
  background: transparent;
  overflow: hidden;
}

.nafos-demo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(0, 229, 192, 0.07) 0%,
    rgba(99, 220, 255, 0.04) 40%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}

.nafos-demo__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 100px;
  box-sizing: border-box;
}

/* ── Page trigger card (only visible element) ── */
.nafos-demo-trigger {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 760px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s ease;
  box-shadow: none !important;
}

.nafos-demo-trigger:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 192, 0.35);
}

.nafos-demo-trigger:focus-visible {
  outline: 2px solid rgba(0, 229, 192, 0.6);
  outline-offset: 4px;
}

.nafos-demo-trigger__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.nafos-demo-trigger__preview {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nafos-demo-trigger__media::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  pointer-events: none;
}

.nafos-demo-trigger__badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.nafos-demo-trigger__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e5c0;
  box-shadow: 0 0 8px #00e5c0, 0 0 16px rgba(0, 229, 192, 0.5);
  animation: nafos-demo-trigger-pulse 2s ease-in-out infinite;
}

@keyframes nafos-demo-trigger-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

.nafos-demo-trigger__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 44px 48px 48px;
  box-sizing: border-box;
}

.nafos-demo-trigger__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.nafos-demo-trigger__title {
  margin: 0;
  font-size: clamp(24px, 4.5vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.nafos-demo-trigger__subtitle {
  margin: 0;
  max-width: 480px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.nafos-demo-trigger__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 15px 32px;
  border-radius: 14px;
  border: 1px solid rgba(0, 229, 192, 0.3);
  background: rgba(0, 229, 192, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.28s ease;
}

.nafos-demo-trigger:hover .nafos-demo-trigger__cta {
  background: rgba(0, 229, 192, 0.18);
  border-color: rgba(0, 229, 192, 0.55);
  transform: translateY(-2px);
}

.nafos-demo-trigger__cta-icon {
  transition: transform 0.28s ease;
}

.nafos-demo-trigger:hover .nafos-demo-trigger__cta-icon {
  transform: translateX(5px);
}

/* ── Modal overlay (hidden by default) ── */
.nafos-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nafos-demo-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ── Modal panel ── */
.nafos-demo-modal__panel {
  position: relative;
  width: 100%;
  max-width: 1080px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 48px 44px 44px;
  box-sizing: border-box;
  border-radius: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transform: scale(0.93) translateY(20px);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.22, 0.68, 0, 1.2), opacity 0.38s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

.nafos-demo-modal.is-active .nafos-demo-modal__panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.nafos-demo-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.nafos-demo-modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: scale(1.08) rotate(90deg);
}

.nafos-demo-modal__header {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.nafos-demo-modal__heading {
  margin: 0 0 8px;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.nafos-demo-modal__subheading {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.nafos-demo-modal__header-line {
  height: 1px;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
}

/* ── Preset grid inside modal ── */
.nafos-demo-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.nafos-demo-modal__card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: transform 0.32s ease, border-color 0.32s ease;
  box-shadow: none !important;
}

.nafos-demo-modal__card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.16);
}

.nafos-demo-modal__thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

.nafos-demo-modal__thumb svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nafos-demo-modal__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.nafos-demo-modal__card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 22px 22px 20px;
}

.nafos-demo-modal__card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.2;
}

.nafos-demo-modal__password-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.nafos-demo-modal__lock-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.nafos-demo-modal__password-value {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.nafos-demo-modal__copy-btn {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nafos-demo-modal__copy-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: scale(1.04);
}

.nafos-demo-modal__copy-btn.is-copied {
  border-color: rgba(0, 229, 192, 0.6) !important;
  background: rgba(0, 229, 192, 0.12) !important;
  color: #00e5c0 !important;
  box-shadow: 0 0 12px rgba(0, 229, 192, 0.45), 0 0 24px rgba(0, 229, 192, 0.2);
}

.nafos-demo-modal__divider {
  height: 1px;
  margin: 4px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.08) 70%, transparent 100%);
}

.nafos-demo-modal__view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.nafos-demo-modal__view-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 192, 0.45);
  background: rgba(0, 229, 192, 0.08);
  color: #00e5c0;
}

.nafos-demo-modal__view-icon {
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.nafos-demo-modal__view-btn:hover .nafos-demo-modal__view-icon {
  transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nafos-demo-modal__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nafos-demo__wrap {
    padding: 48px 16px 80px;
  }

  .nafos-demo-trigger {
    border-radius: 20px;
  }

  .nafos-demo-trigger__body {
    padding: 32px 24px 36px;
  }

  .nafos-demo-trigger__cta {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .nafos-demo-modal__panel {
    padding: 36px 20px 28px;
    border-radius: 18px;
  }

  .nafos-demo-modal__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nafos-demo-trigger__badge-dot {
    animation: none;
  }

  .nafos-demo-trigger,
  .nafos-demo-modal,
  .nafos-demo-modal__panel,
  .nafos-demo-modal__card {
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — Luxury Glassmorphism 3-Step Grid
   BEM: nafos-hiw
   ═══════════════════════════════════════════════════════════════ */

.nafos-hiw {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 24px 0;
  box-sizing: border-box;
  overflow: hidden;
  background: transparent;
}

.nafos-hiw::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(120, 80, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(0, 200, 255, 0.05) 0%, transparent 70%);
}

.nafos-hiw__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.nafos-hiw__header {
  width: 100%;
  margin-bottom: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

.nafos-hiw__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.nafos-hiw__badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7B61FF;
  box-shadow: 0 0 8px #7B61FF;
}

.nafos-hiw__title {
  margin: 0 0 16px;
  padding: 0;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.nafos-hiw__subtitle {
  margin: 0 auto;
  padding: 0;
  max-width: 600px;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* ── 3-column grid ── */
.nafos-hiw__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ── Card ── */
.nafos-hiw__card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 40px 32px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: none !important;
}

.nafos-hiw__card:hover {
  transform: translateY(-8px);
  border: 1px solid #7B61FF;
  box-shadow: 0 0 20px rgba(123, 97, 255, 0.2);
}

/* ── Watermark wrapper (absolute, out of document flow) ── */
.nafos-hiw__watermark-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.nafos-hiw__watermark {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}

/* ── Card content (above watermark) ── */
.nafos-hiw__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.nafos-hiw__card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
}

.nafos-hiw__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nafos-hiw__icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nafos-hiw__card-title {
  margin: 0;
  padding: 0;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.nafos-hiw__card-desc {
  margin: 0;
  padding: 0;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .nafos-hiw__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .nafos-hiw__card {
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
  }

  .nafos-hiw__card:last-child {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .nafos-hiw {
    padding: 60px 16px 0;
  }

  .nafos-hiw__header {
    margin-bottom: 40px;
  }

  .nafos-hiw__grid {
    flex-direction: column;
    gap: 16px;
  }

  .nafos-hiw__card {
    flex: 1 1 100%;
    min-width: 0;
    padding: 32px 24px;
  }

  .nafos-hiw__watermark {
    font-size: 6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nafos-hiw__card {
    transition: none !important;
  }
}

/* ── How It Works LUX — Premium Theme page variant ── */
.nafos-hiw--lux .nafos-hiw__subtitle {
  max-width: 640px;
  color: #A0A0B0;
}

.nafos-hiw--lux .nafos-hiw__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.nafos-hiw--lux .nafos-hiw__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.nafos-hiw--lux .nafos-hiw__card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, box-shadow;
  box-shadow: none !important;
}

.nafos-hiw--lux .nafos-hiw__card:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0px 0px 30px 0px rgba(227, 227, 227, 0.15) !important;
}

.nafos-hiw--lux .nafos-hiw__watermark {
  color: #16161A;
  opacity: 1;
}

.nafos-hiw--lux .nafos-hiw__content {
  gap: 20px;
}

.nafos-hiw--lux .nafos-hiw__icon {
  margin-bottom: 4px;
}

.nafos-hiw--lux .nafos-hiw__card-title {
  color: #FFFFFF;
}

.nafos-hiw--lux .nafos-hiw__card-desc {
  color: #A0A0B0;
}

@media (max-width: 992px) {
  .nafos-hiw--lux .nafos-hiw__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .nafos-hiw--lux .nafos-hiw__card {
    flex: unset;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .nafos-hiw--lux .nafos-hiw__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nafos-hiw--lux .nafos-hiw__card {
    flex: unset;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nafos-hiw--lux .nafos-hiw__card {
    will-change: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO TUTORIAL — Glass Title + Glowing Border Embed
   BEM: nafos-video · border-light animation
   ═══════════════════════════════════════════════════════════════ */

.nafos-video {
  background: transparent;
  padding: 0 20px 60px;
  margin-top: 100px;
  text-align: center;
  overflow: hidden;
}

.nafos-video__container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Glassmorphism title ── */
.nafos-video__title {
  display: inline-block;
  margin: 0 0 50px;
  padding: 15px 40px;
  position: relative;
  z-index: 2;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ── Video wrapper + glowing border ring ── */
.nafos-video__wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(129, 169, 214, 0.2);
}

/* ── Scroll reveal — Video Tutorial glass card ── */
.tutorial-reveal {
  opacity: 0 !important;
  transform: translateY(40px) scale(0.95) !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease !important;
  will-change: transform, opacity;
}

.tutorial-reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.nafos-video__border-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 90%,
    rgba(129, 169, 214, 0.4) 80%,
    #81A9D6 200%,
    #ffffff 100%
  );
  animation: border-light 4s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.nafos-video__glass {
  position: absolute;
  inset: 2px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 2;
  pointer-events: none;
}

@keyframes border-light {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Responsive iframe (16:9) ── */
.nafos-video__frame {
  position: relative;
  z-index: 10;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nafos-video__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* ── Operation Headless: Video Tutorial heading polish ── */
.nafos-video__title,
.nfs-video__title,
.video-tutorial__title {
  font-family: var(--nfs-font-fit) !important;
  font-size: clamp(24px, 4.5vw, 58px) !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  display: inline-block !important;
  width: auto !important;
  margin: 2 auto !important;
  text-align: center !important;
}

/* Capsule/container protection for larger title */
.nafos-video__container {
  padding-inline: 16px;
}

@media (max-width: 480px) {
  .nafos-video__title {
    padding: 14px 18px !important;
    max-width: 100%;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nafos-video {
    padding: 0 15px 40px;
  }

  .nafos-video__title {
    font-size: 20px;
    padding: 10px 22px;
    margin-bottom: 30px;
    border-radius: 14px;
  }

  .nafos-video__wrapper {
    padding: 12px;
    border-radius: 16px;
  }

  .nafos-video__glass {
    border-radius: 14px;
  }

  .nafos-video__frame {
    border-radius: 10px;
  }

  .nafos-video__iframe {
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nafos-video__border-glow {
    animation: none;
  }

  .tutorial-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA — Glass Card (Call to Action)
   BEM: nafos-nbtt · scroll reveal via .tutorial-reveal
   ═══════════════════════════════════════════════════════════════ */

.nafos-nbtt {
  position: relative;
  padding: 80px 20px 100px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  overflow: hidden;
  box-sizing: border-box;
}

.nafos-nbtt__inner {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.nafos-nbtt__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 2.5vw, 24px);
  padding: 80px 40px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  box-shadow: none !important;
}

.nafos-nbtt__heading {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.nafos-nbtt__description {
  margin: 0;
  max-width: 600px;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
  color: #A0A0B0;
}

.nafos-nbtt__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(8px, 1.5vw, 16px);
  min-height: 52px;
  min-width: 220px;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(23, 23, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
  transform: scale(1);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.nafos-nbtt__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

.nafos-nbtt__button:hover {
  transform: scale(1.04);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(30, 30, 30, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 24px rgba(255, 255, 255, 0.18),
    0 8px 32px rgba(0, 0, 0, 0.4);
}

.nafos-nbtt__button:active {
  transform: scale(1.02);
}

.nafos-nbtt__button-icon {
  display: inline-flex;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nafos-nbtt__button:hover .nafos-nbtt__button-icon {
  transform: translateY(-3px);
}

.nafos-nbtt__button-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

@media (max-width: 749px) {
  .nafos-nbtt {
    padding: 56px 16px 72px;
  }

  .nafos-nbtt__card {
    padding: 48px 24px;
    border-radius: 20px;
  }

  .nafos-nbtt__button {
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nafos-nbtt__button,
  .nafos-nbtt__button-icon {
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   NAFOS FULL-SCREEN PADDLE CHECKOUT MODAL
═══════════════════════════════════════════════════════════ */

#nafos-fullscreen-checkout {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0b0b0b;
  padding: 24px;
  box-sizing: border-box;
}

#nafos-fullscreen-checkout.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Close Button - React Pro Style */
.nfs-checkout__close-btn {
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nfs-checkout__close-svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nfs-checkout__close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.nfs-checkout__close-btn:hover .nfs-checkout__close-svg {
  transform: rotate(90deg) scale(1.1);
}

.nfs-checkout__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  max-width: 960px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.nfs-checkout__col--form {
  background: #ffffff;
  padding: 32px 24px;
  min-width: 0;
}

#paddle-checkout-container,
.paddle-checkout-container {
  min-height: 520px;
  width: 100%;
}

.nfs-checkout__col--summary {
  background: #111111;
  color: #ffffff;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.nfs-checkout__summary-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  padding: 40px 32px;
}

.nfs-checkout__header-row {
  display: grid;
  align-items: center;
  gap: 20px;
  margin-bottom: -10px;
}

.nfs-checkout__product-image-wrap {
  flex-shrink: 0;
}

.nfs-checkout__product-image {
  width: 410px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0a0a0a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nfs-checkout__product-info {
  min-width: 0;
}

.nfs-checkout__label {
  font-family: var(--nfs-font-display, var(--font-heading));
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin: 0 0 4px;
}

.nfs-checkout__product-title {
  font-family: var(--nfs-font-display, var(--font-heading));
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

.nfs-checkout__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 20px 0;
}

.nfs-checkout__price-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nfs-checkout__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nfs-checkout__price-label,
.nfs-checkout__total-label {
  font-family: var(--nfs-font-display, var(--font-heading));
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.nfs-checkout__price-label {
  font-size: 16px;
}

.nfs-checkout__total-label {
  font-size: 20px;
  color: #ffffff;
}

.nfs-checkout__price-value,
.nfs-checkout__total-value {
  font-family: var(--nfs-font-display, var(--font-heading));
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.nfs-checkout__price-value {
  font-size: 16px;
}

.nfs-checkout__total-value {
  font-size: 28px;
}

.nfs-checkout__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 4px;
}

.nfs-checkout__trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.nfs-checkout__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--nfs-font-display, var(--font-heading));
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

.nfs-trust-img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
}

@media (max-width: 860px) {
  .nfs-checkout__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nfs-checkout__col--summary {
    order: -1;
  }

  .nfs-checkout__summary-inner {
    padding: 24px;
  }

  .nfs-checkout__product-title {
    font-size: 18px;
  }

  #paddle-checkout-container,
  .paddle-checkout-container {
    min-height: 480px;
  }
}

/* ═══════════════════════════════════════════════════════════
   CHECKOUT ABANDONMENT CONFIRMATION MODAL
═══════════════════════════════════════════════════════════ */

.nfs-confirm {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.nfs-confirm.is-active {
  pointer-events: auto;
}

.nfs-confirm__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nfs-confirm.is-active .nfs-confirm__overlay {
  opacity: 1;
}

.nfs-confirm__card {
  position: relative;
  width: 90%;
  max-width: 400px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.85);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.nfs-confirm.is-active .nfs-confirm__card {
  opacity: 1;
  transform: scale(1);
}

.nfs-confirm__title {
  font-family: var(--nfs-font-display, var(--font-heading));
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.nfs-confirm__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0 0 24px;
}

.nfs-confirm__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nfs-confirm__btn {
  font-family: var(--nfs-font-display, var(--font-heading));
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.nfs-confirm__btn--primary {
  background: #fff;
  color: #000;
  border: none;
}

.nfs-confirm__btn--primary:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.nfs-confirm__btn--danger {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nfs-confirm__btn--danger:hover {
  background: #ff3b30;
  color: #fff;
  border-color: #ff3b30;
  box-shadow: 0 8px 16px rgba(255, 59, 48, 0.2);
}

/* ── Operation Headless: strict mobile product title lock ── */
@media (max-width: 768px) {
  .nafos-product__title,
  .nfs-product-title {
    font-size: 8vw !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* ── Operation Headless: Glass Features title scaling ── */
.nafos-glass-features__main-title-text,
.nfs-features-main-title,
.nafos-glass-features h2 {
  font-family: var(--nfs-font-fit) !important;
  font-size: clamp(32px, 5vw, 83px) !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  margin-bottom: -2px !important;
}

.nafos-glass-features__title,
.nfs-feature-card__title,
.nafos-glass-features h3 {
  font-family: var(--nfs-font-fit) !important;
  font-size: clamp(26px, 3.5vw, 82px) !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}

/* NAFOS PADDLE: Main Price & Compare Price Font Override */
.nafos-paddle__price,
.nfs-product-price-main,
.nafos-product__price-current,
.price-item--regular,
.price-item--sale,
.nafos-product__price-compare {
  font-family: var(--font-body, 'Nafos Fixne', sans-serif) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
}

.nafos-paddle__discount,
.nfs-product-price-badge,
.nafos-product__price-badge {
  font-family: var(--font-body, 'Nafos Fixne', sans-serif) !important;
  letter-spacing: -0.01em !important;
}
