/* ===== NordFit Store — Design System ===== */
:root {
  --paper: #f4f1ea;
  --surface: #fffdf8;
  --ink: #16130e;
  --text-2: #534d44;
  --muted: #6b6458;
  --muted-2: #9a937f;
  --accent: #ff4a1c;
  --accent-hover: #e23d12;
  --accent-soft: #ff8a6b;
  --on-dark: #b8b2a6;
  --border: rgba(22,19,14,.10);
  --border-strong: rgba(22,19,14,.18);
  --overlay: rgba(22,19,14,.42);
  --overlay-dark: rgba(22,19,14,.5);
  --r-card: 16px;
  --r-panel: 18px;
  --r-banner: 20px;
  --r-chip: 7px;
  --r-pill: 999px;
  --container: 1200px;
  --pad-x: 40px;
  --shadow-card: 0 16px 40px rgba(0,0,0,.25);
  --shadow-float: 0 26px 70px rgba(0,0,0,.32);
  --shadow-cta: 0 12px 30px color-mix(in srgb, var(--accent) 34%, transparent);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

/* Focus */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ===== Layout ===== */
.nf-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ===== Typography ===== */
.nf-display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

/* ===== Animations ===== */
@keyframes nf-ticker { to { transform: translateX(-50%); } }
@keyframes nf-pulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(0,0,0,.18), 0 0 0 0 rgba(255,74,28,.5); }
  50% { box-shadow: 0 14px 34px rgba(0,0,0,.18), 0 0 0 12px rgba(255,74,28,0); }
}
@keyframes nf-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Scroll reveal */
.nf-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.nf-reveal.nf-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .nf-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== Header / Navbar ===== */
.nf-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244,241,234,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22,19,14,.08);
}
.nf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
.nf-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.nf-logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--accent);
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  border-radius: 8px;
}
.nf-logo-text {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: .5px;
}
.nf-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  font-size: 14px;
}
.nf-nav a {
  text-decoration: none;
  color: inherit;
  transition: color .15s;
}
.nf-nav a:hover,
.nf-nav a.active {
  color: var(--accent);
}
.nf-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nf-cart-btn {
  position: relative;
  border: 0;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}
.nf-cart-badge {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 800;
}
.nf-cta-nav {
  border: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
}

/* ===== Hero (Home) ===== */
.nf-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 30px;
}
.nf-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent) 13%, transparent);
  color: color-mix(in srgb, var(--accent) 82%, #000);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .4px;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
}
.nf-h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 78px;
  line-height: .92;
  margin: 20px 0 0;
  text-transform: uppercase;
}
.nf-h1 .accent { color: var(--accent); }
.nf-hero-desc {
  max-width: 440px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 20px 0 0;
}
.nf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.nf-btn-primary {
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow-cta);
  transition: background .15s;
}
.nf-btn-primary:hover { background: var(--accent-hover); }
.nf-btn-outline {
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  padding: 15px 24px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.nf-btn-outline:hover {
  background: var(--ink);
  color: #fff;
}
.nf-btn-dark {
  border: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .15s;
}
.nf-btn-dark:hover { background: var(--accent); }
.nf-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}
.nf-rating-stars {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  color: var(--accent);
}
.nf-rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}
.nf-hero-img-wrap {
  position: relative;
}
.nf-hero-img {
  position: relative;
  height: 400px;
  border-radius: var(--r-panel);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #e8e4db 0%, #d4cfc4 100%);
}
.nf-hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 600;
}
.nf-price-tag {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--ink);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  animation: nf-float 4s ease-in-out infinite;
  box-shadow: var(--shadow-card);
}
.nf-price-tag-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.nf-price-tag-value {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  line-height: 1;
}

/* ===== Ticker ===== */
.nf-ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 13px 0;
  margin-top: 18px;
}
.nf-ticker-track {
  display: flex;
  width: max-content;
  animation: nf-ticker 24s linear infinite;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nf-ticker-item { padding: 0 26px; }
.nf-ticker-sep { color: var(--accent); padding: 0 10px; }

/* ===== Benefits ===== */
.nf-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.nf-benefit-card {
  background: var(--surface);
  border: 1px solid rgba(22,19,14,.09);
  border-radius: 14px;
  padding: 22px;
}
.nf-benefit-big {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  color: var(--accent);
}
.nf-benefit-title {
  font-weight: 800;
  font-size: 15px;
  margin-top: 10px;
}
.nf-benefit-text {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.45;
}

/* ===== Section headings ===== */
.nf-section-label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .5px;
  color: var(--accent);
  text-transform: uppercase;
}
.nf-h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  margin: 8px 0 0;
  text-transform: uppercase;
}

/* ===== Product catalog ===== */
.nf-catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.nf-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nf-filter-btn {
  font-weight: 700;
  font-size: 13px;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  transition: background .15s, color .15s, border-color .15s;
}
.nf-filter-btn.active,
.nf-filter-btn[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.nf-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.nf-product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .15s;
}
.nf-product-card:hover {
  border-color: var(--accent);
}
.nf-product-img {
  position: relative;
  height: 172px;
  border-bottom: 1px solid rgba(22,19,14,.08);
  background: linear-gradient(135deg, #e8e4db 0%, #d4cfc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 600;
}
.nf-product-img.tall { height: 190px; }
.nf-product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nf-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nf-quick-photo {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
.nf-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3px;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  pointer-events: none;
}
.nf-product-sku {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--ink);
  background: rgba(255,255,255,.7);
  padding: 2px 6px;
  border-radius: 5px;
  pointer-events: none;
}
.nf-product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nf-product-tag {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .4px;
  color: var(--accent);
  text-transform: uppercase;
}
.nf-product-name {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.05;
  margin: 8px 0 0;
}
.nf-product-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
  flex: 1;
}
.nf-product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.nf-spec-chip {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  background: #f1ede3;
  border: 1px solid rgba(22,19,14,.08);
  padding: 5px 9px;
  border-radius: var(--r-chip);
}
.nf-product-price {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  margin-top: 16px;
}
.nf-product-price.large { font-size: 28px; }
.nf-product-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.nf-btn-details {
  flex: none;
  border: 1.5px solid var(--border-strong);
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: border-color .15s;
}
.nf-btn-details:hover { border-color: var(--ink); }
.nf-btn-add {
  flex: 1;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .15s;
}
.nf-btn-add:hover { background: var(--accent); }

/* AI helper card in catalog */
.nf-ai-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nf-ai-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}
.nf-ai-card-text {
  font-size: 13px;
  color: var(--on-dark);
  line-height: 1.5;
  margin: 12px 0 16px;
}
.nf-btn-accent {
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 18px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .15s;
}
.nf-btn-accent:hover { background: var(--accent-hover); }

/* ===== Stats banner ===== */
.nf-stats {
  background: var(--ink);
  border-radius: var(--r-panel);
  padding: 34px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  color: #fff;
}
.nf-stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: var(--accent-soft);
}
.nf-stat-label {
  font-size: 13px;
  color: var(--on-dark);
  margin-top: 8px;
  font-weight: 600;
}

/* ===== Reviews ===== */
.nf-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.nf-review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}
.nf-review-stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
}
.nf-review-text {
  font-size: 15px;
  line-height: 1.55;
  margin: 12px 0 16px;
}
.nf-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nf-review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e3ded2;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}
.nf-review-name {
  font-size: 13px;
  font-weight: 700;
}
.nf-review-city {
  color: var(--muted-2);
  font-weight: 500;
}

/* ===== FAQ ===== */
.nf-faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
}
.nf-faq-intro p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.nf-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nf-faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.nf-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  gap: 14px;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  color: inherit;
}
.nf-faq-icon {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--accent);
  flex: none;
}
.nf-faq-answer {
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  display: none;
}
.nf-faq-item.open .nf-faq-answer { display: block; }

/* ===== CTA Banner ===== */
.nf-cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  border-radius: var(--r-banner);
  padding: 54px 40px;
  color: #fff;
  text-align: center;
}
.nf-cta-banner .nf-h2 {
  font-size: 52px;
  line-height: .95;
  margin: 0;
  color: #fff;
}
.nf-cta-banner p {
  font-size: 16px;
  max-width: 480px;
  margin: 16px auto 26px;
  color: rgba(255,255,255,.86);
}
.nf-cta-banner .nf-btn-dark {
  font-size: 16px;
  padding: 16px 32px;
  display: inline-block;
  text-decoration: none;
}

/* ===== Footer ===== */
.nf-footer {
  background: var(--ink);
  color: var(--muted-2);
  margin-top: 56px;
}
.nf-footer-inner {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.nf-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
}
.nf-footer-logo-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: var(--ink);
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  border-radius: 7px;
}
.nf-footer-logo-text {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
}
.nf-footer-links {
  display: flex;
  gap: 20px;
  font-weight: 700;
}
.nf-footer-links a {
  color: var(--muted-2);
  text-decoration: none;
}
.nf-footer-links a.active {
  color: var(--paper);
}

/* ===== Mini-cart drawer ===== */
.nf-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--overlay);
  display: none;
}
.nf-cart-overlay.open { display: block; }
.nf-cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  z-index: 56;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,.25);
  transition: right .3s ease;
}
.nf-cart-drawer.open { right: 0; }
.nf-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.nf-cart-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}
.nf-cart-close {
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.nf-cart-empty {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  color: var(--muted);
}
.nf-cart-empty-title {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: var(--ink);
  text-transform: uppercase;
}
.nf-cart-items {
  flex: 1;
  overflow: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nf-cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.nf-cart-item-info { flex: 1; }
.nf-cart-item-name {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
}
.nf-cart-item-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.nf-cart-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.nf-cart-stepper button {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(22,19,14,.2);
  background: #fff;
  border-radius: 7px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
}
.nf-cart-stepper span {
  min-width: 18px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
}
.nf-cart-item-right { text-align: right; }
.nf-cart-item-line {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
}
.nf-cart-item-remove {
  border: 0;
  background: transparent;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 6px;
}
.nf-cart-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.nf-cart-ship-msg {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.nf-cart-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.nf-cart-total-label {
  font-weight: 700;
  font-size: 14px;
}
.nf-cart-total-value {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
}
.nf-cart-checkout {
  width: 100%;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 15px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .15s;
}
.nf-cart-checkout:hover { background: var(--accent-hover); }

/* ===== Quick-view modal ===== */
.nf-quick-overlay {
  position: fixed;
  inset: 0;
  z-index: 57;
  background: var(--overlay-dark);
  display: none;
  place-items: center;
  padding: 20px;
}
.nf-quick-overlay.open { display: grid; }
.nf-quick-card {
  width: 760px;
  max-width: 100%;
  max-height: 90vh;
  overflow: auto;
  background: var(--paper);
  border-radius: var(--r-panel);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.nf-quick-img {
  min-height: 300px;
  background: linear-gradient(135deg, #e8e4db 0%, #d4cfc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 600;
}
.nf-quick-details {
  padding: 28px;
  position: relative;
}
.nf-quick-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
}
.nf-quick-name {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.04;
  margin: 8px 0 0;
  text-transform: uppercase;
}
.nf-quick-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 0;
}
.nf-quick-price {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  margin-top: 18px;
}
.nf-quick-add {
  width: 100%;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 15px;
  border-radius: var(--r-pill);
  cursor: pointer;
  margin-top: 16px;
  transition: background .15s;
}
.nf-quick-add:hover { background: var(--accent-hover); }
.nf-cross-sell {
  margin-top: 22px;
  border-top: 1px solid rgba(22,19,14,.12);
  padding-top: 16px;
}
.nf-cross-sell-title {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .4px;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.nf-cross-sell-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.nf-cross-sell-item:last-child { margin-bottom: 0; }
.nf-cross-sell-name {
  font-size: 13px;
  font-weight: 700;
}
.nf-cross-sell-add {
  border: 1.5px solid var(--ink);
  background: transparent;
  font-weight: 800;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  cursor: pointer;
}

/* ===== Chat widget ===== */
.nf-chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  animation: nf-pulse 2.8s ease-in-out infinite;
}
.nf-chat-launcher-avatar {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: #fff;
  color: var(--accent);
  border-radius: 50%;
  font-family: 'Anton', sans-serif;
  font-size: 11px;
}
.nf-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 40;
  width: 340px;
  background: var(--surface);
  border-radius: var(--r-panel);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border);
  display: none;
}
.nf-chat-panel.open { display: block; }
.nf-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--ink);
  color: #fff;
}
.nf-chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nf-chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  color: var(--ink);
}
.nf-chat-name {
  font-weight: 800;
  font-size: 14px;
}
.nf-chat-status {
  font-size: 11px;
  color: var(--accent-soft);
}
.nf-chat-close {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--on-dark);
}
.nf-chat-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper);
  max-height: 280px;
  overflow: auto;
}
.nf-chat-msg {
  max-width: 84%;
  font-size: 13.5px;
  line-height: 1.5;
  padding: 10px 13px;
  border-radius: 14px;
}
.nf-chat-msg.assistant {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--border);
}
.nf-chat-msg.user {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
}
.nf-chat-msg.system {
  align-self: center;
  background: rgba(255,74,28,.1);
  color: var(--ink);
  font-size: 12px;
}
.nf-chat-shortcuts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  scrollbar-width: thin;
}
.nf-chat-shortcuts button {
  flex: 0 0 auto;
  max-width: 210px;
  border: 1px solid rgba(22,19,14,.16);
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-pill);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s, color .15s;
}
.nf-chat-shortcuts button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.nf-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.nf-chat-input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(22,19,14,.15);
  border-radius: var(--r-pill);
  padding: 10px 14px;
  font-size: 13px;
  outline: none;
}
.nf-chat-icon-btn {
  border: 1px solid rgba(22,19,14,.15);
  background: #fff;
  color: var(--ink);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: none;
  transition: background .15s, border-color .15s, color .15s;
}
.nf-chat-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nf-chat-icon-btn:hover,
.nf-chat-icon-btn.active,
.nf-chat-icon-btn.listening {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: var(--accent);
}
.nf-chat-icon-btn.listening {
  animation: nf-pulse 1.4s ease-in-out infinite;
}
.nf-chat-icon-btn:disabled {
  opacity: .42;
  cursor: not-allowed;
  animation: none;
}
.nf-chat-send {
  border: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  flex: none;
  transition: background .15s;
}
.nf-chat-send:hover { background: var(--accent-hover); }

/* ===== Breadcrumb ===== */
.nf-breadcrumb {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--muted-2);
}

/* ===== Category blocks (Catalogo page) ===== */
.nf-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.nf-cat-header h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.nf-cat-line {
  height: 2px;
  flex: 1;
  background: rgba(22,19,14,.12);
}
.nf-cat-count {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--muted-2);
}

/* ===== Help band (Catalogo) ===== */
.nf-help-band {
  background: var(--ink);
  border-radius: var(--r-banner);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  color: #fff;
}
.nf-help-band .nf-section-label { color: var(--accent-soft); }
.nf-help-band .nf-h2 { font-size: 38px; margin: 10px 0 10px; }
.nf-help-band p {
  font-size: 15px;
  color: var(--on-dark);
  max-width: 520px;
  margin: 0;
}

/* ===== Chi siamo ===== */
.nf-about-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding-top: 60px;
}
.nf-about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nf-about-img {
  height: 380px;
  border-radius: var(--r-panel);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #e8e4db 0%, #d4cfc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 600;
}
.nf-mission {
  max-width: 900px;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin: 16px 0 0;
  text-transform: uppercase;
}
.nf-mission .accent { color: var(--accent); }
.nf-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.nf-value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 26px;
}
.nf-value-num {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  color: var(--accent);
}
.nf-value-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  margin-top: 12px;
  text-transform: uppercase;
}
.nf-value-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 10px 0 0;
}
.nf-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.nf-team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
.nf-team-img {
  width: 100%;
  height: 170px;
  border-bottom: 1px solid rgba(22,19,14,.08);
  background: linear-gradient(135deg, #e8e4db 0%, #d4cfc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 600;
}
.nf-team-info { padding: 18px; }
.nf-team-name {
  font-weight: 800;
  font-size: 16px;
}
.nf-team-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin-top: 2px;
}

/* ===== Contatti ===== */
.nf-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}
.nf-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  padding: 30px;
}
.nf-form-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.nf-form-note {
  font-size: 13px;
  color: var(--muted-2);
  margin: 0 0 20px;
}
.nf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.nf-form-label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  margin-top: 14px;
}
.nf-form-label:first-child { margin-top: 0; }
.nf-form-row .nf-form-label { margin-top: 0; }
.nf-form-input,
.nf-form-select,
.nf-form-textarea {
  border: 1px solid rgba(22,19,14,.16);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  background: #fff;
  width: 100%;
}
.nf-form-textarea {
  resize: vertical;
  font-family: 'Manrope', sans-serif;
}
.nf-form-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}
.nf-form-checkbox input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}
.nf-form-submit {
  margin-top: 20px;
  width: 100%;
}
.nf-info-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nf-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.nf-info-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 10px;
  background: rgba(255,74,28,.12);
  color: var(--accent);
  font-family: 'Anton', sans-serif;
  font-size: 18px;
}
.nf-info-title {
  font-weight: 800;
  font-size: 14px;
}
.nf-info-value {
  font-size: 14px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.5;
}
.nf-map-slot {
  height: 280px;
  border-radius: var(--r-panel);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #e8e4db 0%, #d4cfc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 600;
}

/* Form sent state */
.nf-form-sent {
  text-align: center;
  padding: 30px 10px;
}
.nf-form-sent-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 30px;
}
.nf-form-sent h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 30px;
  margin: 18px 0 8px;
  text-transform: uppercase;
}
.nf-form-sent p {
  font-size: 15px;
  color: var(--muted);
  max-width: 360px;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nf-hero { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
  .nf-hero-img { height: 300px; }
  .nf-h1 { font-size: 54px; }
  .nf-benefits { grid-template-columns: repeat(2, 1fr); }
  .nf-product-grid { grid-template-columns: repeat(2, 1fr); }
  .nf-stats { grid-template-columns: repeat(2, 1fr); }
  .nf-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .nf-faq-grid { grid-template-columns: 1fr; }
  .nf-nav { display: none; }
  .nf-about-hero { grid-template-columns: 1fr; gap: 34px; }
  .nf-values-grid { grid-template-columns: 1fr; }
  .nf-team-grid { grid-template-columns: repeat(2, 1fr); }
  .nf-contact-grid { grid-template-columns: 1fr; }
  .nf-help-band { grid-template-columns: 1fr; }
  .nf-catalog-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 560px) {
  :root { --pad-x: 20px; }
  .nf-h1 { font-size: 40px; }
  .nf-h2 { font-size: 30px; }
  .nf-product-grid, .nf-benefits, .nf-stats,
  .nf-reviews-grid, .nf-team-grid { grid-template-columns: 1fr; }
  .nf-cart-btn { display: none; }
  .nf-chat-panel { right: 16px; bottom: 86px; width: calc(100vw - 32px); }
  .nf-chat-launcher { right: 16px; bottom: 16px; }
  .nf-chat-shortcuts button { max-width: 180px; }
  .nf-quick-card { grid-template-columns: 1fr; }
  .nf-form-row { grid-template-columns: 1fr; }
  .nf-cta-banner .nf-h2 { font-size: 36px; }
}
