@charset "UTF-8";
/* narzedzie.pl — Design Tokens
   Professional automotive tools (B2B e-commerce)
   ---------------------------------------------- */
/* ---- Fonts ---- */
/* Inter */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Barlow */
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Instrument Sans */
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
/* Padding and borders should not change an element's declared size. */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Browser margin/padding defaults vary wildly across elements and vendors.
   Start from zero - handle spacing intentionally via the design system. */
* {
  margin: 0;
  padding: 0;
}

/* Prevents flex/grid children from overflowing their container.
   The default min-width: auto on flex and grid children causes overflow bugs
   that are notoriously confusing to debug. */
* {
  min-width: 0;
}

/* Hidden means hidden: !important is warranted here. */
[hidden] {
  display: none !important;
}

/* Allows CSS transitions to/from intrinsic keyword sizes (auto, min-content, etc.).
   Only meaningful for users who haven't requested reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
/* Prevent adjustments of font size after orientation changes in iOS. */
html {
  -webkit-text-size-adjust: 100%; /* Safari, iOS Safari */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%; /* Chrome, Edge, Firefox Android */
}

/* Ensures the page occupies at least the full viewport.
   dvh accounts for mobile browser UI (address bar, navigation)
   and overrides the vh fallback in browsers that support it. */
body {
  min-height: 100vh;
  min-height: 100svh;
}

/* Reserves space for the scrollbar, when the scrollbar is not showing.
   Prevents flicker when changes on the page cause the scrollbar to toggle. */
html {
  scrollbar-gutter: stable;
}

/* Scroll events captured by the scrolling area you're pointing at, by default. */
html {
  overscroll-behavior: contain;
}

/* Antialiased rendering looks better on high-DPI (retina) screens.
   On lower-DPI displays, subpixel antialiasing (the default) can be
   sharper, so this is slightly lossy on older monitors.
   Enable kerning and ligatures at small font-sizes by default. */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
  text-rendering: optimizeLegibility;
}

/* A unitless line-height avoids inheritance math issues.
   The smaller default line-height for h-elements avoids excessive
   line-height when your design system (likely) applies larger fonts.
   WCAG recommends at least 1.5 for body copy. */
body {
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
}

/* Prevents long URLs or unbreakable strings from blowing out their container. */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Smarter line-breaking:
   'pretty' avoids widows (lone words on the last line of a paragraph).
   'balance' distributes heading text more evenly across lines. 
   Harmless in browsers that don't support them. */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/* Headings carry semantic meaning, not visual weight.
   h1–h6 sizing and boldness should come from your design system. */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Inline embedded content has a gap at the bottom caused by baseline alignment.
   Block display removes it; max-width prevents overflow.
   height: auto preserves aspect ratio when max-width constrains the width. */
img, picture, video, canvas, svg, embed, iframe, object, audio {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Exemption for SVG icons (Heroicons/Lucide/Phosphor, etc.) with explicit sizes:
   these should not be constrained. */
svg[width][height] {
  max-width: revert;
}

/* Strips visual chrome from buttons so they can be styled from scratch. */
button {
  background: none;
  border: none;
}

/* Form elements use OS-level fonts and ignore font inheritance by default. */
input, button, textarea, select {
  font: inherit;
}

/* Strips OS-level native styling from interactive elements.
   Leaves border and background intact, providing accessibility by default.
   Visual styling should be handled by the design system. */
input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* Anything interactive should signal clickability.
   'button' attribute targets [type="button"], [type="submit"], etc. */
button,
[role=button],
label,
summary,
select {
  cursor: pointer;
}

/* Inherit color by default so links don't always appear in browser-default blue.
   Text-decoration is intentionally left as underlined for accessibility. */
a {
  color: inherit;
}

/* Removes bullets/numbers.
   list markers should be an explicit choice, not a default. */
ul, ol {
  list-style: none;
}

/* Tables default to separated borders with spacing between cells.
   For any custom table design, you'll want to collapse the borders. */
table {
  border-collapse: collapse;
}

/* Browsers apply bold to <th> elements.
   Boldness in tables should be controlled by your design system. */
th {
  font-weight: inherit;
}

/* Fieldsets have a surprise border and padding that most UIs don't want. */
fieldset {
  border: none;
  padding: 0;
}

/* More of a normalization, but these are inconsistently styled in some browsers. */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Ensures monospace elements render at the same size as surrounding text. */
pre, code, kbd, samp {
  font-family: monospace;
  font-size: inherit;
}

/* Browser-generated quotation marks are rarely wanted in a design system. */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: none;
}

/* Creates an explicit stacking context on the app root.
   Prevents z-index bleed from portals, modals, or tooltips
   from leaking out unexpectedly. */
#root {
  isolation: isolate;
}

:root {
  --nz-header-logo-width:300px;
  /* ---- Type ---- */
  --nz-font-sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --nz-font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --nz-font-display: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  /* Size scale (clamp-free, desktop-first) */
  --nz-text-xs: 12px; /* micro, spec labels */
  --nz-text-sm: 14px; /* helper, meta */
  --nz-text-base: 16px; /* body */
  --nz-text-md: 18px; /* lead paragraph */
  --nz-text-lg: 22px; /* card title, section lede */
  --nz-text-xl: 28px; /* page H3 */
  --nz-text-2xl: 36px; /* H2 */
  --nz-text-3xl: 48px; /* H1 / hero */
  --nz-text-4xl: 64px; /* display */
  /* Line-height */
  --nz-lh-tight: 1.15;
  --nz-lh-snug: 1.3;
  --nz-lh-base: 1.55;
  --nz-lh-loose: 1.7;
  /* Weight */
  --nz-fw-regular: 400;
  --nz-fw-medium: 500;
  --nz-fw-semi: 600;
  --nz-fw-bold: 700;
  /* Letter-spacing */
  --nz-tracking-eyebrow: 0.12em; /* UPPERCASE META */
  --nz-tracking-tight: -0.01em;
  --nz-tracking-normal: 0;
}

/* ==========================================================
   ZMIENNE NIEZALEŻNE OD MOTYWU
   ========================================================== */
:root {
  /* ----------------------------------------------------------
     Kolory marki
     ---------------------------------------------------------- */
  --nz-color-brand: #ff4b16;
  --nz-color-brand-hover: #ff642f;
  --nz-color-brand-active: #df390b;
  --nz-color-brand-border: #ff4b16;
  --nz-color-brand-border-hover: #ff754c;
  --nz-color-brand-border-active: #c93209;
  --nz-color-brand-soft: rgb(255 75 22 / 10%);
  --nz-color-brand-soft-hover: rgb(255 75 22 / 16%);
  --nz-color-brand-soft-active: rgb(255 75 22 / 22%);
  --nz-color-brand-focus: rgb(255 75 22 / 28%);
  --nz-color-brand-shadow: rgb(255 75 22 / 24%);
  /* ----------------------------------------------------------
     Stała ciemnogranatowa góra strony
     Topbar, header, nawigacja i hero
     ---------------------------------------------------------- */
  --nz-header-bg-topbar: #050c14;
  --nz-header-bg-main: #08131e;
  --nz-header-bg-nav: #0b1824;
  --nz-header-bg-nav-hover: #122433;
  --nz-header-bg-nav-active: #172d3d;
  --nz-header-bg-nav-categories: #f3f3f3;
  --nz-header-bg-input: #111d28;
  --nz-header-bg-input-hover: #162532;
  --nz-header-bg-input-focus: #192a38;
  --nz-header-text-primary: #f7f9fb;
  --nz-header-text-secondary: #c4cdd5;
  --nz-header-text-muted: #8e9ba6;
  --nz-header-text-accent: var(--nz-color-brand);
  --nz-header-border: #263746;
  --nz-header-border-subtle: rgb(183 201 214 / 14%);
  --nz-header-border-hover: #4a6273;
  --nz-header-input-border: #596b78;
  --nz-header-input-border-hover: #81909b;
  --nz-header-input-border-focus: var(--nz-color-brand);
  --nz-header-input-placeholder: #87939c;
  --nz-header-icon: #e5eaee;
  --nz-header-icon-hover: var(--nz-color-brand-hover);
  /* ----------------------------------------------------------
     Hero
     ---------------------------------------------------------- */
  --nz-hero-bg: #07111a;
  --nz-hero-text-primary: #f7f9fb;
  --nz-hero-text-secondary: #c6cfd6;
  --nz-hero-text-muted: #929fa9;
  --nz-hero-text-accent: var(--nz-color-brand);
  --nz-hero-border: #263845;
  --nz-hero-overlay: linear-gradient(90deg, rgb(5 12 19 / 99%) 0%, rgb(7 17 26 / 95%) 28%, rgb(7 17 26 / 66%) 48%, rgb(7 17 26 / 20%) 70%, rgb(7 17 26 / 4%) 100%);
  --nz-hero-overlay-mobile: linear-gradient(180deg, rgb(5 12 19 / 35%) 0%, rgb(5 12 19 / 88%) 55%, rgb(5 12 19 / 100%) 100%);
  /* ----------------------------------------------------------
     Statusy
     ---------------------------------------------------------- */
  --nz-color-success: #43b95c;
  --nz-color-success-hover: #58c96d;
  --nz-color-success-active: #319948;
  --nz-color-success-soft: rgb(67 185 92 / 12%);
  --nz-color-success-border: rgb(67 185 92 / 40%);
  --nz-color-warning: #e9a92e;
  --nz-color-warning-hover: #f6ba43;
  --nz-color-warning-active: #c88b18;
  --nz-color-warning-soft: rgb(233 169 46 / 12%);
  --nz-color-warning-border: rgb(233 169 46 / 40%);
  --nz-color-danger: #dc4141;
  --nz-color-danger-hover: #eb5656;
  --nz-color-danger-active: #bd3030;
  --nz-color-danger-soft: rgb(220 65 65 / 12%);
  --nz-color-danger-border: rgb(220 65 65 / 40%);
  --nz-color-info: #3d94c5;
  --nz-color-info-hover: #54a6d3;
  --nz-color-info-active: #287ba9;
  --nz-color-info-soft: rgb(61 148 197 / 12%);
  --nz-color-info-border: rgb(61 148 197 / 40%);
  /* ----------------------------------------------------------
     Wymiary i efekty
     ---------------------------------------------------------- */
  --nz-radius-xs: 2px;
  --nz-radius-sm: 4px;
  --nz-radius-md: 6px;
  --nz-radius-lg: 10px;
  --nz-radius-xl: 14px;
  --nz-radius-pill: 999px;
  --nz-shadow-xs: 0 1px 2px rgb(0 0 0 / 8%);
  --nz-shadow-sm: 0 4px 14px rgb(0 0 0 / 10%);
  --nz-shadow-md: 0 10px 30px rgb(0 0 0 / 14%);
  --nz-shadow-lg: 0 20px 50px rgb(0 0 0 / 18%);
  --nz-shadow-header: 0 8px 24px rgb(0 0 0 / 24%);
  --nz-shadow-brand: 0 8px 24px var(--nz-color-brand-shadow);
  --nz-transition-fast: 120ms ease;
  --nz-transition-base: 200ms ease;
  --nz-transition-slow: 320ms ease;
  --nz-transition-colors: color var(--nz-transition-base), background-color var(--nz-transition-base), border-color var(--nz-transition-base);
  --nz-transition-interactive: color var(--nz-transition-base), background-color var(--nz-transition-base), border-color var(--nz-transition-base), box-shadow var(--nz-transition-base), transform var(--nz-transition-base);
}

/* ==========================================================
   LIGHT MODE — DOMYŚLNY
   ========================================================== */
:root,
[data-theme=light] {
  color-scheme: light;
  /* ----------------------------------------------------------
     Powierzchnie strony
     ---------------------------------------------------------- */
  --nz-color-bg-page: #f4f6f8;
  --nz-color-bg-page-hover: #edeef0;
  --nz-color-bg-section: #ffffff;
  --nz-color-bg-section-alt: #f7f8fa;
  --nz-color-bg-elevated: #ffffff;
  --nz-color-bg-card: #ffffff;
  --nz-color-bg-card-hover: #fafbfc;
  --nz-color-bg-card-active: #f3f5f7;
  --nz-color-bg-card-selected: var(--nz-color-brand-soft);
  --nz-color-bg-input: #ffffff;
  --nz-color-bg-input-hover: #fbfcfd;
  --nz-color-bg-input-focus: #ffffff;
  --nz-color-bg-disabled: #edf0f2;
  --nz-color-bg-overlay: rgb(5 12 19 / 55%);
  /* ----------------------------------------------------------
     Tekst
     ---------------------------------------------------------- */
  --nz-color-text-primary: #17212b;
  --nz-color-text-secondary: #45515c;
  --nz-color-text-muted: #727e88;
  --nz-color-text-subtle: #919ba3;
  --nz-color-text-disabled: #aab2b8;
  --nz-color-text-inverse: #ffffff;
  --nz-color-text-accent: var(--nz-color-brand);
  --nz-color-link: #243746;
  --nz-color-link-hover: var(--nz-color-brand-hover);
  --nz-color-link-active: var(--nz-color-brand-active);
  /* ----------------------------------------------------------
     Obramowania
     ---------------------------------------------------------- */
  --nz-color-border: #d8dde2;
  --nz-color-border-light: #e7eaed;
  --nz-color-border-subtle: #edf0f2;
  --nz-color-border-strong: #b7c0c7;
  --nz-color-border-hover: #98a5af;
  --nz-color-border-focus: var(--nz-color-brand);
  --nz-color-divider: #e2e6e9;
  /* ----------------------------------------------------------
     Przyciski
     ---------------------------------------------------------- */
  --nz-button-primary-bg: var(--nz-color-brand);
  --nz-button-primary-bg-hover: var(--nz-color-brand-hover);
  --nz-button-primary-bg-active: var(--nz-color-brand-active);
  --nz-button-primary-text: #101820;
  --nz-button-primary-border: var(--nz-color-brand-border);
  --nz-button-primary-border-hover: var(--nz-color-brand-border-hover);
  --nz-button-secondary-bg: #ffffff;
  --nz-button-secondary-bg-hover: #f4f6f8;
  --nz-button-secondary-bg-active: #e9edf0;
  --nz-button-secondary-text: var(--nz-color-text-primary);
  --nz-button-secondary-border: #aeb8c0;
  --nz-button-secondary-border-hover: #6f7e89;
  --nz-button-ghost-bg: transparent;
  --nz-button-ghost-bg-hover: #edf0f2;
  --nz-button-ghost-bg-active: #e2e6e9;
  --nz-button-ghost-text: var(--nz-color-text-primary);
  /* ----------------------------------------------------------
     Pola formularzy
     ---------------------------------------------------------- */
  --nz-input-bg: var(--nz-color-bg-input);
  --nz-input-bg-hover: var(--nz-color-bg-input-hover);
  --nz-input-bg-focus: var(--nz-color-bg-input-focus);
  --nz-input-text: var(--nz-color-text-primary);
  --nz-input-placeholder: #87919a;
  --nz-input-border: #c8d0d6;
  --nz-input-border-hover: #919ea8;
  --nz-input-border-focus: var(--nz-color-brand);
  --nz-input-focus-ring: 0 0 0 3px var(--nz-color-brand-focus);
  /* ----------------------------------------------------------
     Cienie zależne od motywu
     ---------------------------------------------------------- */
  --nz-card-shadow: 0 4px 16px rgb(20 34 45 / 7%);
  --nz-card-shadow-hover: 0 14px 34px rgb(20 34 45 / 12%), 0 0 0 1px rgb(20 34 45 / 3%);
}

/* ==========================================================
   DARK MODE
   ========================================================== */
[data-theme=dark] {
  color-scheme: dark;
  /* ----------------------------------------------------------
     Powierzchnie strony
     ---------------------------------------------------------- */
  --nz-header-bg-nav-categories: #1c2a34;
  --nz-color-bg-page: #08121b;
  --nz-color-bg-hover: #0b1620;
  --nz-color-bg-section: #0c1822;
  --nz-color-bg-section-alt: #101f2b;
  --nz-color-bg-elevated: #142431;
  --nz-color-bg-card: #101f2b;
  --nz-color-bg-card-hover: #162936;
  --nz-color-bg-card-active: #1a303f;
  --nz-color-bg-card-selected: var(--nz-color-brand-soft);
  --nz-color-bg-input: #101f2a;
  --nz-color-bg-input-hover: #152733;
  --nz-color-bg-input-focus: #182c39;
  --nz-color-bg-disabled: #1c2a34;
  --nz-color-bg-overlay: rgb(2 7 11 / 72%);
  /* ----------------------------------------------------------
     Tekst
     ---------------------------------------------------------- */
  --nz-color-text-primary: #f1f4f6;
  --nz-color-text-secondary: #c0c9d0;
  --nz-color-text-muted: #8d9aa4;
  --nz-color-text-subtle: #6f7f89;
  --nz-color-text-disabled: #56656f;
  --nz-color-text-inverse: #09121a;
  --nz-color-text-accent: var(--nz-color-brand);
  --nz-color-link: #dce3e8;
  --nz-color-link-hover: var(--nz-color-brand-hover);
  --nz-color-link-active: var(--nz-color-brand);
  /* ----------------------------------------------------------
     Obramowania
     ---------------------------------------------------------- */
  --nz-color-border: #293c49;
  --nz-color-border-light: #233541;
  --nz-color-border-subtle: #1c2d38;
  --nz-color-border-strong: #455d6d;
  --nz-color-border-hover: #587182;
  --nz-color-border-focus: var(--nz-color-brand);
  --nz-color-divider: rgb(183 202 214 / 15%);
  /* ----------------------------------------------------------
     Przyciski
     ---------------------------------------------------------- */
  --nz-button-primary-bg: var(--nz-color-brand);
  --nz-button-primary-bg-hover: var(--nz-color-brand-hover);
  --nz-button-primary-bg-active: var(--nz-color-brand-active);
  --nz-button-primary-text: #09121a;
  --nz-button-primary-border: var(--nz-color-brand-border);
  --nz-button-primary-border-hover: var(--nz-color-brand-border-hover);
  --nz-button-secondary-bg: transparent;
  --nz-button-secondary-bg-hover: rgb(255 255 255 / 6%);
  --nz-button-secondary-bg-active: rgb(255 255 255 / 10%);
  --nz-button-secondary-text: var(--nz-color-text-primary);
  --nz-button-secondary-border: #647986;
  --nz-button-secondary-border-hover: #a7b4bc;
  --nz-button-ghost-bg: transparent;
  --nz-button-ghost-bg-hover: rgb(255 255 255 / 6%);
  --nz-button-ghost-bg-active: rgb(255 255 255 / 10%);
  --nz-button-ghost-text: var(--nz-color-text-primary);
  /* ----------------------------------------------------------
     Pola formularzy
     ---------------------------------------------------------- */
  --nz-input-bg: var(--nz-color-bg-input);
  --nz-input-bg-hover: var(--nz-color-bg-input-hover);
  --nz-input-bg-focus: var(--nz-color-bg-input-focus);
  --nz-input-text: var(--nz-color-text-primary);
  --nz-input-placeholder: #788892;
  --nz-input-border: #465d6c;
  --nz-input-border-hover: #718693;
  --nz-input-border-focus: var(--nz-color-brand);
  --nz-input-focus-ring: 0 0 0 3px var(--nz-color-brand-focus);
  /* ----------------------------------------------------------
     Cienie zależne od motywu
     ---------------------------------------------------------- */
  --nz-card-shadow: 0 5px 18px rgb(0 0 0 / 22%);
  --nz-card-shadow-hover: 0 16px 38px rgb(0 0 0 / 32%), 0 0 0 1px rgb(255 255 255 / 4%);
}

.nz-dropdown {
  display: inline-block;
  position: absolute;
}
.nz-dropdown--open .nz-dropdown__trigger, .nz-dropdown:hover .nz-dropdown__trigger {
  background-color: var(--nz-button-secondary-bg-hover);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.nz-dropdown--open .nz-dropdown__trigger::after, .nz-dropdown:hover .nz-dropdown__trigger::after {
  transform: rotate(-45deg) translateY(1px);
}
.nz-dropdown--open .nz-dropdown__panel, .nz-dropdown:hover .nz-dropdown__panel {
  display: block;
  background-color: var(--nz-button-secondary-bg-hover);
}
.nz-dropdown--open .nz-dropdown__menu, .nz-dropdown:hover .nz-dropdown__menu {
  display: block;
  background-color: var(--nz-button-secondary-bg-hover);
}
.nz-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.nz-dropdown__trigger::after {
  content: "";
  font-size: 18px;
  line-height: 1;
  margin-right: 6px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(135deg) translateY(1px);
}
.nz-dropdown__panel {
  display: none;
  position: absolute;
  padding: 10px;
  border: 1px solid var(--nz-button-secondary-border);
  box-shadow: var(--nz-card-shadow);
}
.nz-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
  border: 1px solid var(--nz-button-secondary-border);
  box-shadow: var(--nz-card-shadow);
  background-color: var(--nz-button-secondary-bg-hover);
}
.nz-dropdown__menu-item {
  border-bottom: 1px solid var(--nz-button-secondary-border);
}
.nz-dropdown__menu-link {
  display: flex;
  gap: 10px;
  text-decoration: none;
  padding: 5px 10px;
}
.nz-dropdown__menu-link-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.nz-dropdown__menu-link-secondary-text {
  font-size: var(--nz-text-xs);
  color: var(--nz-color-text-secondary);
}
.nz-dropdown__menu-link:hover {
  background-color: var(--nz-color-bg-page-hover);
}

.nz-topline {
  color: var(--nz-header-text-secondary);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-left: 1px solid var(--nz-header-border-subtle);
  border-right: 1px solid var(--nz-header-border-subtle);
  text-transform: uppercase;
  font-size: var(--nz-text-xs);
  font-family: var(--nz-font-display);
}

.nz-topline--wrapper {
  background-color: var(--nz-header-bg-topbar);
  border-bottom: 1px solid var(--nz-header-border-subtle);
}

.nz-topline__section {
  display: flex;
  border-left: 1px solid var(--nz-header-border-subtle);
}

.nz-topline__section:first-child {
  flex-grow: 1;
  border-left: 0;
}

.nz-topline__section:last-child .nz-topline__item:last-child {
  border-right: 0;
}

.nz-topline__section--announcement {
  background-color: var(--nz-color-danger-active);
  color: white;
}

.nz-topline__item {
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-right: 1px solid var(--nz-header-border-subtle);
}

.nz-topline__item--theme {
  padding-inline: 8px;
}

.nz-topline__title {
  color: var(--nz-color-brand);
}

.nz-topline__icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.nz-topline__icon--sm {
  width: 20px;
  height: 20px;
}

.nz-topline__icon--accent-stroke {
  stroke: var(--nz-color-brand);
}

.nz-topline__icon--accent-fill {
  fill: var(--nz-color-brand);
}

.nz-topline__link {
  text-decoration: none;
  display: inline-flex;
}

.nz-topline__link:hover {
  color: var(--nz-color-brand);
}

.nz-topline__link--accent {
  color: var(--nz-color-brand);
}

.nz-theme-toggle {
  position: relative;
  display: inline-flex;
  width: 50px;
  height: 26px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 5px;
  color: var(--nz-header-text-muted);
  background-color: var(--nz-header-bg-input);
  border: 1px solid var(--nz-header-border-hover);
  border-radius: var(--nz-radius-pill);
  transition: var(--nz-transition-colors);
}
.nz-theme-toggle::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset-block-start: 2px;
  inset-inline-start: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--nz-color-brand);
  border-radius: 50%;
  box-shadow: var(--nz-shadow-xs);
  transition: transform var(--nz-transition-base);
}
.nz-theme-toggle:hover {
  border-color: var(--nz-color-brand-hover);
  background-color: var(--nz-header-bg-input-hover);
}
.nz-theme-toggle:focus-visible {
  outline: 2px solid var(--nz-color-brand);
  outline-offset: 2px;
}

.nz-theme-toggle__icon {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  transition: color var(--nz-transition-fast);
}

[data-theme=light] .nz-theme-toggle__icon--light,
[data-theme=dark] .nz-theme-toggle__icon--dark {
  color: var(--nz-header-text-primary);
}

[data-theme=dark] .nz-theme-toggle::before {
  transform: translateX(24px);
}

@media (prefers-reduced-motion: reduce) {
  .nz-theme-toggle,
  .nz-theme-toggle::before,
  .nz-theme-toggle__icon {
    transition: none;
  }
}
@media (max-width: 768px) {
  .nz-topline {
    display: none;
  }
}
.nz-topbar {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo search actions";
  border-left: 1px solid var(--nz-header-border-subtle);
  border-right: 1px solid var(--nz-header-border-subtle);
}

.nz-topbar--wrapper {
  background-color: var(--nz-header-bg-topbar);
  border-bottom: 1px solid var(--nz-header-border-subtle);
}

.nz-topbar__item {
  display: flex;
  height: 100%;
  align-items: center;
  border-right: 1px solid var(--nz-header-border-subtle);
}

.nz-topbar__item:last-child {
  border: 0;
}

.nz-topbar__item--logo {
  grid-area: logo;
  width: var(--nz-header-logo-width);
}

.nz-topbar__item--search {
  grid-area: search;
  flex-grow: 1;
  padding: 10px;
}

.nz-topbar__item--actions {
  grid-area: actions;
  padding: 10px;
}

.nz-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px;
  color: white;
}

.nz-logo__svg {
  width: 48px;
  height: 48px;
  --nz-icon-bg: #ff5a1f;
  --nz-icon-symbol: #fff;
}

.nz-logo__svg-bg {
  fill: var(--nz-icon-bg);
}

.nz-logo__svg-symbol {
  fill: var(--nz-icon-symbol);
}

.nz-logo__body {
  display: flex;
  flex-direction: column;
}

.nz-logo__text {
  font-size: var(--nz-text-xl);
  font-weight: var(--nz-fw-semi);
  font-family: var(--nz-font-sans);
  line-height: 1em;
}

.nz-logo__text strong {
  color: var(--nz-color-brand);
}

.nz-logo__text small {
  color: var(--nz-header-text-secondary);
}

.nz-logo__slogan {
  font-size: clamp(0.2em, 3vw, var(--nz-text-xs));
  color: var(--nz-header-text-secondary);
}

.nz-logo--sm .nz-logo__text {
  font-size: var(--nz-text-md);
}

.nz-logo--sm .nz-logo__slogan {
  font-size: 0.7em;
}

.nz-logo--dark {
  color: var(--nz-color-text-primary);
}

.nz-logo--dark .nz-logo__text small,
.nz-logo--dark .nz-logo__slogan {
  color: var(--nz-text-secondary);
}

.nz-search {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  flex-direction: row;
  border: 1px solid var(--nz-header-border);
  background-color: var(--nz-header-bg-input);
}

.nz-search--sm {
  font-size: var(--nz-text-xs);
}

.nz-search--sm .nz-search__icon {
  width: 20px;
  height: 20px;
  left: 5px;
}

.nz-search--sm .nz-search__input {
  padding: 0 100px 0 40px;
}

.nz-search--sm .nz-search__submit {
  padding: 0 10px;
  right: 0;
}

.nz-search__icon {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 10px;
  pointer-events: none;
}

.nz-search__input {
  background-color: transparent;
  border: 0;
  flex-grow: 1;
  color: white;
  padding: 0 100px 0 40px;
  height: 100%;
  border-radius: 0;
}

.nz-search__submit {
  background-color: var(--nz-color-brand);
  display: block;
  padding: 0 20px;
  color: white;
  font-weight: var(--nz-fw-bold);
  height: 100%;
  position: absolute;
  right: 0;
}

.nz-actions {
  display: flex;
}

.nz-actions__item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 8px;
  border: 1px solid transparent;
}

.nz-actions__divider {
  width: 1px;
  background-color: var(--nz-header-border);
  margin: 0 8px;
}

.nz-actions__item:hover {
  border: 1px solid var(--nz-color-brand);
  background-color: var(--nz-header-bg-input);
}

.nz-actions__icon {
  width: 24px;
  height: 24px;
}

.nz-actions__text {
  font-size: var(--nz-text-sm);
  font-weight: var(--nz-fw-bold);
  line-height: 1em;
}

.nz-actions__text--label {
  font-size: var(--nz-text-xs);
  color: var(--nz-header-text-secondary);
}

.nz-actions__text--label-right {
  text-align: right;
}

.nz-topbar--sm .nz-logo__svg {
  width: 30px;
  height: 30px;
}

.nz-topbar--sm .nz-logo__text {
  font-size: var(--nz-text-lg);
}

.nz-topbar--sm .nz-logo__slogan {
  display: none;
}

@media (max-width: 768px) {
  .nz-topbar {
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo actions" "search search";
  }
  .nz-logo__text {
    font-size: var(--nz-text-md);
    line-height: 1em;
  }
  .nz-topbar .nz-logo__slogan {
    display: none;
  }
}
.nz-nav {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: min(90%, 24rem);
  background-color: var(--nz-color-bg-page);
  color: var(--nz-color-text-primary);
  overflow: hidden;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.nz-nav__root-categories {
  margin-bottom: 30px;
}

.nz-nav__header {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: var(--nz-color-bg-section);
  border-bottom: 1px solid var(--nz-color-border);
  height: 5em;
  flex-shrink: 0;
}

.nz-nav__title {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  overflow: hidden;
}

.nz-nav__back,
.nz-nav__close {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 5rem;
  padding: 0;
  font-size: 2.5rem;
  line-height: 1;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nz-nav__back {
  border-right: 1px solid var(--nz-color-border);
}

.nz-nav__close {
  border-left: 1px solid var(--nz-color-border);
}

.nz-nav__back:hover,
.nz-nav__close:hover {
  background-color: var(--nz-color-bg-page);
}

.nz-nav__back:focus-visible,
.nz-nav__close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}

.nz-nav__label {
  padding: 10px 10px 5px 10px;
  text-transform: uppercase;
  color: var(--nz-color-text-subtle);
  font-size: var(--nz-text-xs);
  border-bottom: 1px solid var(--nz-color-border);
}

.nz-nav__panel-lists {
  overflow-y: auto;
  flex-grow: 1;
}

.nz-nav__item {
  border-bottom: 1px solid var(--nz-color-border);
}

.nz-nav__action {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: 100%;
  padding: 10px 10px;
}

.nz-nav__action-text {
  flex-grow: 1;
  text-align: left;
}

.nz-nav__action--header {
  font-weight: var(--nz-fw-bold);
  background-color: var(--nz-header-bg-nav);
  color: var(--nz-header-text-primary);
}

.nz-nav__action--header:hover {
  background-color: var(--nz-header-bg-nav-hover) !important;
  color: var(--nz-header-text-primary) !important;
}

.nz-nav__root-categories .nz-nav__item:hover,
.nz-nav__action:hover {
  background-color: var(--nz-color-bg-section);
}

.nz-nav__action-icon {
  width: 24px;
  height: 24px;
}

.nz-nav__action--categories {
  display: none;
}

.nz-nav__action--dropdown::after,
.nz-nav__action--expand::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--nz-color-text-primary);
  border-right: 2px solid var(--nz-color-text-primary);
  transform: rotate(45deg);
  /* Nowocześniejsza strzałka w CSS */
  margin: 0 10px;
}

.nz-nav__panel {
  visibility: hidden;
  position: absolute;
  display: flex;
  flex-direction: column;
  height: 100%;
  inset: 0;
  background-color: var(--nz-color-bg-page);
  transform: translateX(100%);
  z-index: 1001;
}

.nz-nav__panel--open {
  visibility: visible;
  transform: translateX(0);
}

.nz-nav__list--root {
  overflow-y: auto;
}

@media (min-width: 64rem) {
  .nz-nav {
    position: relative;
    width: 100%;
    background-color: var(--nz-header-bg-nav);
    overflow: unset;
  }
  .nz-nav__header {
    display: none;
  }
  .nz-nav__action--categories {
    display: flex;
  }
  .nz-nav__list--root {
    display: flex;
  }
  .nz-nav__list--root > .nz-nav__item {
    border: 0;
  }
  .nz-nav__label {
    display: none;
  }
  .nz-nav__item--categories:hover .nz-nav__root-categories {
    display: block;
  }
  .nz-nav__item--categories-show .nz-nav__root-categories {
    display: block;
  }
  .nz-nav__item--categories-show .nz-nav__action--categories,
  .nz-nav__item--categories-show .nz-nav__action--categories:hover {
    width: var(--nz-header-logo-width);
  }
  .nz-nav__item--categories-show .nz-nav__action--categories::after {
    all: unset;
  }
  .nz-nav__action--categories,
  .nz-nav__action--categories:hover {
    background-color: var(--nz-color-brand);
    font-weight: var(--nz-fw-semi);
  }
  .nz-nav__action--categories::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--nz-color-text-primary);
    border-right: 2px solid var(--nz-color-text-primary);
    transform: rotate(135deg);
    margin: 0 10px;
  }
  .nz-nav__action--root {
    color: white;
    padding: 10px 20px;
    font-weight: var(--nz-fw-semi);
  }
  .nz-nav__action--root:hover {
    color: var(--nz-color-brand);
    background-color: var(--nz-header-bg-nav-hover);
  }
  .nz-nav__root-categories {
    display: none;
    position: absolute;
    background-color: var(--nz-header-bg-nav-categories);
    width: var(--nz-header-logo-width);
  }
  .nz-nav__panel {
    font-size: var(--nz-text-sm);
    width: -moz-fit-content;
    width: fit-content;
    inset: unset;
    top: 0;
    min-height: 100%;
    height: -moz-max-content;
    height: max-content;
    left: 100%;
    background-color: var(--nz-color-bg-section);
    transform: unset;
    z-index: 1001;
    box-shadow: var(--nz-card-shadow);
  }
  .nz-nav__panel .nz-nav__action:hover,
  .nz-nav__panel--dropdown .nz-nav__action:hover {
    background-color: var(--nz-color-bg-page) !important;
    color: var(--nz-color-text-primary) !important;
  }
  .nz-nav__panel-lists {
    flex-grow: unset;
    width: 800px;
    padding: 20px;
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .nz-nav__panel-lists > * {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    margin-bottom: 2.5rem;
  }
  @supports (grid-template-rows: masonry) or (display: grid-lanes) {
    .nz-nav__panel-lists {
      display: grid;
      display: grid-lanes;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: masonry;
      gap: 2.5rem 3rem;
      -moz-column-count: auto;
           column-count: auto;
    }
    .nz-nav__panel-lists > * {
      margin-bottom: 0;
    }
  }
  .nz-nav__panel .nz-nav__action {
    padding: 0px 0;
  }
}
@media (min-width: 64rem) and (hover: hover) and (pointer: fine) {
  .nz-nav__item--dropdown:hover > .nz-nav__panel {
    visibility: visible;
    transform: translateX(0);
  }
}
@media (min-width: 64rem) {
  .nz-nav__panel--dropdown {
    inset: unset;
    min-width: 200px;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 350px;
    height: -moz-max-content;
    height: max-content;
    background-color: var(--nz-color-bg-section);
    border: 1px solid var(--nz-color-border);
    box-shadow: var(--nz-card-shadow);
    transform: unset;
    z-index: 1001;
  }
  .nz-nav__action--dropdown::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--nz-header-text-secondary);
    border-right: 2px solid var(--nz-header-text-secondary);
    transform: rotate(135deg);
    margin: 0 10px;
  }
  .nz-nav__item--dropdown .nz-nav__action:hover,
  .nz-nav__item--dropdown:hover .nz-nav__action,
  .nz-nav__item--dropdown:hover {
    background-color: var(--nz-color-bg-section);
    color: var(--nz-color-text-primary);
  }
  .nz-nav__panel--dropdown .nz-nav__action {
    padding: 5px 10px;
  }
  .nz-nav__action--header {
    background-color: initial;
    color: initial;
  }
}
@media (max-width: 1140px) {
  .nz-nav__panel-lists {
    width: 600px;
  }
}
.nz-module-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  padding: 4px 2px 11px;
  border-bottom: 1px solid var(--nz-color-divider);
}
.nz-module-header--no-space {
  border-bottom: 0;
  margin-bottom: 0;
}
.nz-module-header__heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}
.nz-module-header__heading::before {
  content: "";
  width: 3px;
  height: 24px;
  flex: 0 0 auto;
  background-color: var(--nz-color-brand);
}
.nz-module-header__title {
  color: var(--nz-color-text-primary);
  font-family: var(--nz-font-display);
  font-size: clamp(18px, 2.2vw, var(--nz-text-lg));
  font-weight: var(--nz-fw-bold);
  line-height: var(--nz-lh-tight);
  letter-spacing: var(--nz-tracking-tight);
}
.nz-module-header__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 16px;
}
.nz-module-header__action {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 2px;
  color: var(--nz-color-link);
  font: inherit;
  font-size: var(--nz-text-sm);
  font-weight: var(--nz-fw-semi);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: var(--nz-transition-colors);
}
.nz-module-header__action svg {
  width: 17px;
  height: 17px;
  color: var(--nz-color-brand);
  transition: transform var(--nz-transition-base);
}
.nz-module-header__action:hover {
  color: var(--nz-color-link-hover);
}
.nz-module-header__action:hover svg {
  transform: translateX(3px);
}
.nz-module-header__action:active {
  color: var(--nz-color-link-active);
}
.nz-module-header__action:focus-visible {
  outline: 2px solid var(--nz-color-border-focus);
  outline-offset: 3px;
}

@media (min-width: 48rem) {
  .nz-module-header {
    margin-bottom: 16px;
    padding-bottom: 13px;
  }
  .nz-module-header--no-space {
    border-bottom: 0;
    margin-bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nz-module-header__action,
  .nz-module-header__action svg {
    transition: none;
  }
}
.nz-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  color: var(--nz-color-text-primary);
  background-color: var(--nz-color-bg-card);
  border: 1px solid var(--nz-color-border);
  border-radius: var(--nz-radius-md);
  box-shadow: var(--nz-shadow-xs);
  transition: var(--nz-transition-interactive);
}
.nz-product-card:hover {
  border-color: var(--nz-color-border-hover);
  box-shadow: var(--nz-card-shadow-hover);
  transform: translateY(-2px);
}
.nz-product-card__image-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #fff;
  border-bottom: 1px solid var(--nz-color-border-light);
}
.nz-product-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  padding: 10px;
  transition: transform var(--nz-transition-slow);
}
.nz-product-card:hover .nz-product-card__image {
  transform: scale(1.035);
}
.nz-product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 7px;
  color: var(--nz-color-text-inverse);
  font-size: 10px;
  font-weight: var(--nz-fw-bold);
  line-height: 1;
  letter-spacing: var(--nz-tracking-eyebrow);
  text-transform: uppercase;
  background-color: var(--nz-color-brand);
  border-radius: var(--nz-radius-xs);
  box-shadow: var(--nz-shadow-xs);
}
.nz-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 10px;
}
.nz-product-card__meta {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  font-size: 9px;
  line-height: var(--nz-lh-snug);
}
.nz-product-card__code {
  overflow: hidden;
  color: var(--nz-color-text-primary);
  font-family: var(--nz-font-mono);
  font-size: 14px;
  font-weight: var(--nz-fw-bold);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nz-product-card__manufacturer {
  overflow: hidden;
  color: var(--nz-color-text-muted);
  font-weight: var(--nz-fw-medium);
  letter-spacing: 0.04em;
  text-align: right;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.nz-product-card__title {
  min-height: 3.9em;
  margin-top: 7px;
  font-size: 13px;
  font-weight: var(--nz-fw-semi);
  line-height: 1.3;
}
.nz-product-card__title a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--nz-color-text-primary);
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.nz-product-card__title a:hover {
  color: var(--nz-color-link-hover);
}
.nz-product-card__availability {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 9px;
  color: var(--nz-color-success);
  font-size: 10px;
  line-height: 1.2;
}
.nz-product-card__availability::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background-color: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--nz-color-success-soft);
}
.nz-product-card__availability strong {
  font-weight: var(--nz-fw-bold);
}
.nz-product-card__prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 14px;
}
[data-price-mode=discount] .nz-product-card__prices[data-price-current=discount][data-price-promo-discount]:not([data-price-promo-discount=""])::before {
  content: "PROMO -" attr(data-price-promo-discount) "%";
  align-self: flex-start;
  margin-bottom: 2px;
  padding: 3px 5px;
  color: var(--nz-color-danger);
  font-size: 10px;
  font-weight: var(--nz-fw-bold);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--nz-color-danger-border);
  border-radius: var(--nz-radius-xs);
  background-color: var(--nz-color-danger-soft);
}
.nz-product-card__price-net {
  color: var(--nz-color-text-primary);
  font-size: 11px;
  line-height: 1;
}
.nz-product-card__price-net strong {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: var(--nz-fw-bold);
  letter-spacing: var(--nz-tracking-tight);
}
.nz-product-card__price-gross {
  color: var(--nz-color-text-muted);
  font-size: 10px;
}
.nz-product-card__cart {
  position: relative;
  display: inline-flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
  padding: 8px 10px;
  color: var(--nz-button-secondary-text);
  font-size: 12px;
  font-weight: var(--nz-fw-semi);
  border: 1px solid var(--nz-color-border-strong);
  border-radius: var(--nz-radius-sm);
  background-color: var(--nz-color-bg-card);
  overflow: hidden;
  transition: var(--nz-transition-interactive);
}
.nz-product-card__cart::after {
  content: attr(data-cart-feedback);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 12px;
  font-weight: var(--nz-fw-bold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity var(--nz-transition-fast), transform var(--nz-transition-fast);
}
.nz-product-card__cart svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--nz-color-brand);
  transition: opacity var(--nz-transition-fast), transform var(--nz-transition-fast);
}
.nz-product-card__cart:not(:disabled):hover {
  color: var(--nz-color-brand);
  border-color: var(--nz-color-brand-border);
  background-color: var(--nz-color-brand-soft);
}
.nz-product-card__cart:not(:disabled):active {
  color: var(--nz-color-brand-active);
  border-color: var(--nz-color-brand-border-active);
  background-color: var(--nz-color-brand-soft-active);
  transform: translateY(1px);
}
.nz-product-card__cart--pending {
  cursor: wait;
}
.nz-product-card__cart--loading, .nz-product-card__cart--added, .nz-product-card__cart--error {
  color: transparent;
  cursor: wait;
}
.nz-product-card__cart--loading svg, .nz-product-card__cart--added svg, .nz-product-card__cart--error svg {
  opacity: 0;
  transform: scale(0.75);
}
.nz-product-card__cart--loading::after, .nz-product-card__cart--added::after, .nz-product-card__cart--error::after {
  opacity: 1;
  transform: translateY(0);
}
.nz-product-card__cart--loading {
  border-color: var(--nz-color-border-hover);
  background-color: var(--nz-color-bg-section-alt);
}
.nz-product-card__cart--loading::after {
  color: var(--nz-color-text-secondary);
  animation: nz-product-card-cart-loading 700ms ease-in-out infinite alternate;
}
.nz-product-card__cart--added {
  border-color: var(--nz-color-success-border);
  background-color: var(--nz-color-success-soft);
  animation: nz-product-card-cart-added 420ms ease-out;
  cursor: default;
}
.nz-product-card__cart--added::after {
  color: var(--nz-color-success);
  animation: nz-product-card-cart-label 320ms ease-out;
}
.nz-product-card__cart--error {
  border-color: var(--nz-color-danger-border);
  background-color: var(--nz-color-danger-soft);
  cursor: default;
}
.nz-product-card__cart--error::after {
  color: var(--nz-color-danger);
}
.nz-product-card__image-link:focus-visible, .nz-product-card__title a:focus-visible, .nz-product-card__cart:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid var(--nz-color-border-focus);
  outline-offset: -3px;
}

@keyframes nz-product-card-cart-loading {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}
@keyframes nz-product-card-cart-added {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.025);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes nz-product-card-cart-label {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 40rem) {
  .nz-product-card__body {
    padding: 12px;
  }
}
@media (min-width: 64rem) {
  .nz-product-card__title {
    font-size: var(--nz-text-sm);
  }
}
@media (min-width: 80rem) {
  .nz-product-card__body {
    padding: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nz-product-card,
  .nz-product-card__image,
  .nz-product-card__cart,
  .nz-product-card__cart::after,
  .nz-product-card__cart--loading::after,
  .nz-product-card__cart--added,
  .nz-product-card__cart--added::after {
    animation: none;
    transition: none;
  }
}
.nz-new-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.nz-new-products--wrapper {
  padding: 6px 0 32px;
}

@media (min-width: 40rem) {
  .nz-new-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (min-width: 48rem) {
  .nz-new-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (min-width: 56rem) {
  .nz-new-products {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .nz-new-products {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .nz-new-products--wrapper {
    padding-top: 10px;
    padding-bottom: 38px;
  }
}
.nz-shorts--wrapper {
  padding: 10px 0;
  background-color: var(--nz-color-bg-page);
}

.nz-shorts {
  width: 100%;
  max-width: 100%; /* Zmienione na 100%, aby na wielkich ekranach sekcja mogła się rozwinąć */
}

.nz-shorts .f-carousel {
  --f-carousel-gap: 16px;
}

/* Dopasowanie szerokości kafelków do wielkości ekranu */
.nz-shorts .f-carousel {
  --f-carousel-slide-width: calc(43% - 8px);
}

.nz-shorts .f-carousel.nz-f-carousel-arrows-hover .f-button {
  margin-top: -30px;
}

@media (min-width: 768px) {
  .nz-shorts {
    background-color: var(--nz-color-bg-card);
    padding: 10px;
    border: 1px solid var(--nz-color-border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .nz-shorts .f-carousel {
    --f-carousel-slide-width: calc(15.5% - 16px); /* 6 kafelki widoczne */
  }
}
@media (min-width: 1024px) {
  .nz-shorts .f-carousel {
    --f-carousel-slide-width: calc(13.5% - 16px); /* 7 kafelków widocznych na desktopie */
  }
}
@media (min-width: 1400px) {
  .nz-shorts {
    padding: 20px 0;
  }
  .nz-shorts .f-carousel {
    --f-carousel-slide-width: calc(12% - 16px); /* 8 kafelków na szerokich monitorach */
  }
}
/* ==========================================================================
   Element: Pojedynczy kafelek wideo (Card)
   ========================================================================== */
.nz-shorts__item {
  scroll-snap-align: start; /* Punkt przyklejania kafelka do lewej krawędzi kontenera */
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

/* ==========================================================================
   Element: Miniaturka wideo (Teraz działa jako "okno" maskujące)
   ========================================================================== */
.nz-shorts__thumbnail {
  width: 100%;
  aspect-ratio: 13/16;
  background-color: #f0f0f0;
  border-radius: 12px;
  border: 1px solid var(--nz-color-border);
  /* KLUCZOWE ZMIANY */
  overflow: hidden; /* Obcina wszystko, co wyjdzie poza ramkę 12px podczas zoomu */
  position: relative; /* Daje punkt odniesienia dla wnętrza */
}

/* ==========================================================================
   Element: Nowy element trzymający fizyczny obrazek
   ========================================================================== */
.nz-shorts__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Płynny powrót animacji do stanu początkowego */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Efekt hover: Powiększamy TYLKO wewnętrzny obrazek
   ========================================================================== */
.nz-shorts__item:hover .nz-shorts__image {
  transform: scale(1.08); /* Obrazek rośnie do środka, zaokrąglone rogi stoją w miejscu */
}

/* Element: Kontener na teksty pod wideo */
.nz-shorts__meta {
  padding: 8px 4px 0 4px;
}

/* Tytuł wideo */
.nz-shorts__video-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nz-color-text-primary);
  margin: 0 0 4px 0;
  line-height: 1.3;
  /* Obcinanie tekstu do maksymalnie 2 linijek (tworzy "..." na końcu) */
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Licznik wyświetleń */
.nz-shorts__info {
  font-size: 0.8rem;
  color: var(--nz-color-text-secondary);
  font-weight: 400;
}

.nz-hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  color: var(--nz-hero-text-primary);
  padding: 15px 0;
}
.nz-hero .f-carousel {
  height: 100% !important;
}
.nz-hero--wrapper {
  background-color: var(--nz-header-bg-topbar);
}
.nz-hero__item {
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--nz-header-border-subtle);
}
.nz-hero__item--1 {
  /* Główny kafelek rozciąga się na obie kolumny, czyli zajmuje całą szerokość ekranu */
  grid-column: 1/3;
  height: 300px;
}
.nz-hero__item--1 .nz-hero__banner {
  background-position: right;
}
.nz-hero__item--2 .nz-hero__content, .nz-hero__item--3 .nz-hero__content {
  padding: 0;
}
.nz-hero__item--2 .nz-hero__title, .nz-hero__item--3 .nz-hero__title {
  margin-top: 0;
  font-family: inherit;
  font-size: clamp(13px, 3vw, 20px);
  width: 100%;
}
.nz-hero__item--2 {
  /* Zajmuje pierwszą kolumnę na dole */
  grid-column: 1/2;
  height: 150px;
}
.nz-hero__item--3 {
  /* Zajmuje drugą kolumnę na dole */
  grid-column: 2/3;
  height: 150px;
}
.nz-hero__banner {
  position: relative;
  background-color: black;
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.nz-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: clamp(5px, 3vw, 78px);
  font-size: 1em;
}
.nz-hero__product-code {
  color: var(--nz-hero-text-accent);
  font-family: var(--nz-font-mono);
  font-size: clamp(20px, 1.15vw, 22px);
  font-weight: var(--nz-fw-semi);
  letter-spacing: 0.04em;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.7);
}
.nz-hero__product-code::after {
  content: "";
  display: block;
  width: clamp(30px, 3.25vw, 62px);
  height: 3px;
  margin-top: clamp(8px, 1vw, 18px);
  background-color: var(--nz-color-brand);
}
.nz-hero__title {
  margin-top: clamp(16px, 2vw, 38px);
  font-family: "Barlow", var(--nz-font-display);
  font-size: clamp(20px, 3vw, 35px);
  font-weight: 800;
  line-height: 1.08;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: -0.035em;
  text-shadow: 2px 2px 0 black;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px;
  text-wrap: pretty;
}
.nz-hero__description {
  max-width: 650px;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--nz-hero-text-secondary);
  font-size: clamp(13px, 1.4vw, 17px);
  line-height: 1.35;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px;
}
.nz-hero__cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(20px, 2.25vw, 44px);
  padding: clamp(11px, 1vw, 19px) clamp(20px, 2vw, 38px);
  color: var(--nz-color-text-inverse);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: var(--nz-fw-bold);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--nz-color-brand-border);
  background-color: var(--nz-color-brand);
  transition: var(--nz-transition-colors);
}
.nz-hero__cta:hover {
  border-color: var(--nz-color-brand-border-hover);
  background-color: var(--nz-color-brand-hover);
}
.nz-hero__cta:focus-visible {
  outline: 2px solid var(--nz-hero-text-primary);
  outline-offset: 3px;
}

/* --- USTAWIENIA DLA DESKTOPU (Od 768px) --- */
@media (min-width: 64rem) {
  .nz-hero {
    /* Na desktopie wracamy do układu: lewa kolumna szeroka, prawa wąska */
    grid-template-columns: 3fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: calc(100% - var(--nz-header-logo-width));
    margin-left: var(--nz-header-logo-width);
    height: 420px;
    padding: 15px 0 15px 15px;
  }
  .nz-hero__item--1 {
    /* Resetujemy pozycję do układu desktopowego */
    grid-column: 1/2;
    grid-row: 1/3;
    height: unset;
  }
  .nz-hero__item--1 .nz-hero__content {
    padding: 3%;
  }
  .nz-hero__item--2 {
    grid-column: 2/3;
    grid-row: 1/2;
    height: 100%;
  }
  .nz-hero__item--3 {
    grid-column: 2/3;
    grid-row: 2/3;
    height: 100%;
  }
  .nz-hero__item--1 .nz-hero__banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
  }
}
@media (min-width: 1220px) {
  .nz-hero__item--1 .nz-hero__banner {
    align-items: center;
  }
}
.nz-categories-short {
  counter-reset: nz-category-short;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  color: var(--nz-color-text-primary);
}
.nz-categories-short--wrapper {
  padding: 6px 0 24px;
  background-color: var(--nz-color-bg-page);
}
.nz-categories-short__item {
  counter-increment: nz-category-short;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 16px;
  gap: 8px;
  align-items: center;
  min-width: 0;
  min-height: 132px;
  padding: 28px 12px 16px;
  color: var(--nz-color-text-primary);
  font: inherit;
  text-align: left;
  background-color: var(--nz-color-bg-card);
  border: 0;
  cursor: pointer;
  transition: var(--nz-transition-interactive);
}
.nz-categories-short__item::before {
  content: counter(nz-category-short, decimal-leading-zero);
  position: absolute;
  top: 10px;
  left: 12px;
  color: var(--nz-color-text-subtle);
  font-family: var(--nz-font-mono);
  font-size: 11px;
  font-weight: var(--nz-fw-bold);
  line-height: 1;
  transition: color var(--nz-transition-base);
}
.nz-categories-short__item:hover {
  color: var(--nz-color-link-hover);
  background-color: var(--nz-color-bg-card-hover);
}
.nz-categories-short__item:hover::before, .nz-categories-short__item:hover .nz-categories-short__icon {
  color: var(--nz-color-brand);
}
.nz-categories-short__item:hover .nz-categories-short__arrow {
  transform: translateX(4px);
}
.nz-categories-short__item:active {
  background-color: var(--nz-color-bg-card-active);
}
.nz-categories-short__item:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--nz-color-border-focus);
  outline-offset: -3px;
}
.nz-categories-short__icon {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--nz-color-text-secondary);
  transition: color var(--nz-transition-base);
}
.nz-categories-short__title {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  line-height: var(--nz-lh-snug);
}
.nz-categories-short__title b {
  font-size: var(--nz-text-sm);
  font-weight: var(--nz-fw-bold);
  letter-spacing: var(--nz-tracking-tight);
}
.nz-categories-short__meta {
  color: var(--nz-color-text-muted);
  font-size: 11px;
  font-weight: var(--nz-fw-regular);
  white-space: nowrap;
}
.nz-categories-short__arrow {
  display: block;
  color: var(--nz-color-brand);
  transition: transform var(--nz-transition-base);
}

@media (min-width: 40rem) {
  .nz-categories-short {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .nz-categories-short__item {
    grid-template-columns: 64px minmax(0, 1fr) 18px;
    gap: 10px;
    min-height: 120px;
    padding-inline: 14px;
  }
  .nz-categories-short__item::before {
    left: 14px;
  }
  .nz-categories-short__icon {
    width: 62px;
    height: 62px;
  }
}
@media (min-width: 64rem) {
  .nz-categories-short {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .nz-categories-short--wrapper {
    padding: 20px 0;
  }
}
@media (min-width: 80rem) {
  .nz-categories-short {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .nz-categories-short__item {
    gap: 12px;
    min-height: 116px;
    padding-inline: 16px;
  }
  .nz-categories-short__item::before {
    left: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nz-categories-short__item,
  .nz-categories-short__item::before,
  .nz-categories-short__icon,
  .nz-categories-short__arrow {
    transition: none;
  }
}
/* Responsive header behavior and navigation state. */
.nz-menu-toggle {
  display: none;
}

.nz-menu-toggle:focus-visible,
.nz-nav__action:focus-visible,
.nz-actions__item:focus-visible,
.nz-search__input:focus-visible,
.nz-search__submit:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid var(--nz-color-brand);
  outline-offset: -2px;
}

@media (min-width: 64rem) {
  .nz-nav__item--open > .nz-nav__action {
    color: var(--nz-color-text-primary);
    background-color: var(--nz-color-bg-section);
  }
  .nz-nav__item--open > .nz-nav__panel {
    visibility: visible;
    transform: translateX(0);
  }
}
@media (min-width: 64rem) and (max-width: 75rem) {
  :root {
    --nz-header-logo-width: 260px;
  }
  .nz-actions__body,
  .nz-logo__slogan {
    display: none;
  }
  .nz-actions__item {
    width: 46px;
    justify-content: center;
  }
  .nz-nav__root-categories .nz-nav__action-text {
    font-size: 0.83em;
  }
}
@media (max-width: 63.999rem) {
  .nz-shell {
    width: 100%;
    padding-inline: 16px;
  }
  .nz-topbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "logo actions menu" "search search search";
    align-items: stretch;
    border-inline: 0;
  }
  .nz-topbar__item--logo {
    width: auto;
    min-height: 64px;
    border-right: 0;
  }
  .nz-topbar__item--search {
    min-height: 52px;
    padding: 0 0 10px;
    border: 0;
  }
  .nz-topbar__item--actions {
    padding: 0;
    border: 0;
  }
  .nz-logo {
    padding: 8px 0;
  }
  .nz-logo__svg {
    width: 40px;
    height: 40px;
  }
  .nz-logo__slogan {
    font-size: 10px;
  }
  .nz-search {
    min-height: 42px;
  }
  .nz-search__input {
    padding-right: 90px;
  }
  .nz-search__submit {
    min-width: 80px;
    padding-inline: 14px;
  }
  .nz-actions {
    height: 100%;
  }
  .nz-actions__item,
  .nz-actions__item:last-child {
    width: 52px;
    height: 64px;
    justify-content: center;
    padding: 0;
    border: 0;
    border-left: 1px solid var(--nz-header-border-subtle);
  }
  .nz-actions__item:hover,
  .nz-actions__item:last-child:hover {
    border: 0;
    border-left: 1px solid var(--nz-header-border-subtle);
  }
  .nz-actions__body {
    display: none;
  }
  .nz-actions__icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
  }
  .nz-menu-toggle {
    grid-area: menu;
    display: inline-flex;
    width: 52px;
    height: 64px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--nz-header-icon);
    border-left: 1px solid var(--nz-header-border-subtle);
  }
  .nz-menu-toggle:hover {
    color: var(--nz-header-icon-hover);
    background-color: var(--nz-header-bg-input-hover);
  }
  .nz-menu-toggle:focus-visible {
    outline: 2px solid var(--nz-color-brand);
    outline-offset: -2px;
  }
  .nz-menu-toggle__line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    transition: transform var(--nz-transition-base), opacity var(--nz-transition-fast);
  }
  .nz-menu-toggle[aria-expanded=true] .nz-menu-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nz-menu-toggle[aria-expanded=true] .nz-menu-toggle__line:nth-child(2) {
    opacity: 0;
  }
  .nz-menu-toggle[aria-expanded=true] .nz-menu-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nz-nav--wrapper {
    height: 0;
    border: 0;
    background: transparent;
  }
  .nz-nav--wrapper .nz-shell {
    padding: 0;
  }
  .nz-nav {
    background-color: var(--nz-color-bg-page);
  }
  .nz-nav__header {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 68px;
    height: 68px;
    background-color: var(--nz-color-bg-section);
  }
  .nz-nav__header > .nz-logo {
    flex: 1;
    padding: 8px 12px;
  }
  .nz-nav__header .nz-logo__svg {
    width: 34px;
    height: 34px;
  }
  .nz-nav__title {
    flex: 1;
    padding-inline: 16px;
  }
  .nz-nav__back,
  .nz-nav__close {
    width: 58px;
    min-width: 58px;
    font-size: 2rem;
  }
  .nz-nav__list--root {
    display: block;
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nz-nav__list--root > .nz-nav__item {
    border-bottom: 1px solid var(--nz-color-border);
  }
  .nz-nav__root-categories {
    position: static;
    width: 100%;
    margin: 0;
    background-color: var(--nz-color-bg-section-alt);
  }
  .nz-nav__root-categories .nz-nav__item:last-child {
    border-bottom: 0;
  }
  .nz-nav__action {
    min-height: 46px;
    padding: 10px 14px;
  }
  .nz-nav__action--root {
    color: var(--nz-color-text-primary);
    font-weight: var(--nz-fw-medium);
  }
  .nz-nav__action--root:hover,
  .nz-nav__item--open > .nz-nav__action {
    color: var(--nz-color-text-primary);
    background-color: var(--nz-color-brand-soft);
  }
  .nz-nav__action--categories {
    display: none;
  }
  .nz-nav__action-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  .nz-nav__panel,
  .nz-nav__panel--dropdown {
    position: absolute;
    z-index: 4;
    inset: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 100%;
    min-height: 100%;
    background-color: var(--nz-color-bg-page);
    box-shadow: none;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform var(--nz-transition-slow), visibility var(--nz-transition-slow);
  }
  .nz-nav__panel--open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .nz-nav__panel-lists {
    display: block;
    width: 100%;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nz-nav__panel-lists > .nz-nav__list,
  .nz-nav__panel--dropdown > .nz-nav__list {
    width: 100%;
  }
}
@media (max-width: 48rem) {
  .nz-topline--wrapper {
    display: none;
  }
}
@media (max-width: 34rem) {
  .nz-shell {
    padding-inline: 12px;
  }
  .nz-logo {
    gap: 7px;
  }
  .nz-logo__svg {
    width: 34px;
    height: 34px;
  }
  .nz-logo__text {
    font-size: 17px;
  }
  .nz-logo__slogan {
    display: none;
  }
  .nz-actions__item,
  .nz-actions__item:last-child,
  .nz-menu-toggle {
    width: 46px;
  }
  .nz-search__input {
    padding-left: 36px;
    padding-right: 72px;
  }
  .nz-search__icon {
    left: 8px;
    width: 20px;
    height: 20px;
  }
  .nz-search__submit {
    min-width: 68px;
    padding-inline: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nz-nav__panel,
  .nz-menu-toggle__line {
    transition: none;
  }
}
/* Shared off-canvas drawer foundation: navigation, cart preview and future panels. */
.nz-page-lock {
  overflow: hidden;
}

.nz-overlay {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(2, 8, 14, 0.68);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--nz-transition-base), visibility var(--nz-transition-base);
}

.nz-overlay--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nz-drawer {
  --nz-drawer-width: min(90vw, 24rem);
  position: fixed;
  z-index: 1300;
  inset-block: 0;
  width: var(--nz-drawer-width);
  height: 100vh;
  height: 100dvh;
  box-shadow: var(--nz-shadow-lg);
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--nz-transition-slow), visibility var(--nz-transition-slow);
}

.nz-drawer--left {
  inset-inline-start: 0;
  transform: translateX(-100%);
}

.nz-drawer--right {
  inset-inline-end: 0;
  transform: translateX(100%);
}

.nz-drawer--open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

/* A breakpoint mode change is layout synchronization, not a drawer close action. */
.nz-drawer--mode-switch {
  transition: none !important;
}

.nz-drawer--static {
  position: relative;
  z-index: auto;
  inset: auto;
  width: 100%;
  height: auto;
  box-shadow: none;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: none;
}

.nz-drawer__header {
  display: flex;
  min-height: 68px;
  height: 68px;
  align-items: stretch;
  justify-content: space-between;
  color: var(--nz-color-text-primary);
  background-color: var(--nz-color-bg-section);
  border-bottom: 1px solid var(--nz-color-border);
}

.nz-drawer__heading {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 10px 16px;
}

.nz-drawer__eyebrow {
  color: var(--nz-color-text-muted);
  font-size: var(--nz-text-xs);
  font-weight: var(--nz-fw-semi);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nz-drawer__title {
  color: var(--nz-color-text-primary);
  font-size: var(--nz-text-md);
  font-weight: var(--nz-fw-semi);
}

.nz-drawer__close {
  display: inline-grid;
  width: 58px;
  min-width: 58px;
  height: 100%;
  place-items: center;
  color: var(--nz-color-text-primary);
  font-size: 2rem;
  line-height: 1;
  border-left: 1px solid var(--nz-color-border);
}

.nz-drawer__close:hover {
  color: var(--nz-color-brand);
  background-color: var(--nz-color-bg-page-hover);
}

.nz-drawer__close:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid var(--nz-color-brand);
  outline-offset: -2px;
}

.nz-drawer__body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nz-drawer__footer {
  margin-top: auto;
  padding: 14px 18px;
  background-color: var(--nz-color-bg-section-alt);
  border-top: 1px solid var(--nz-color-divider);
}

@media (min-width: 64rem) {
  .nz-nav.nz-drawer--static .nz-drawer__header {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nz-drawer,
  .nz-overlay {
    transition: none;
  }
}
/* Authenticated customer area: desktop dropdown and mobile drawer. */
.nz-account {
  position: relative;
  display: flex;
  height: 100%;
}

.nz-account__trigger {
  color: inherit;
  text-align: left;
  border: 1px solid transparent;
}

.nz-account__trigger:hover {
  border: 1px solid var(--nz-color-brand);
}

.nz-account-menu {
  --nz-drawer-width: min(92vw, 26rem);
  display: flex;
  flex-direction: column;
  color: var(--nz-color-text-primary);
  background-color: var(--nz-color-bg-section);
  border-left: 1px solid var(--nz-color-border);
}

.nz-account-menu__title {
  margin-top: 2px;
}

.nz-account-menu__status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  color: var(--nz-color-text-secondary);
  font-size: var(--nz-text-sm);
  border-bottom: 1px solid var(--nz-color-divider);
}

.nz-account-menu__status-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--nz-color-success);
  box-shadow: 0 0 0 3px var(--nz-color-success-soft);
}

.nz-account-menu__preference {
  border-bottom: 1px solid var(--nz-color-divider);
}

.nz-account-menu__price-toggle {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 18px;
  color: var(--nz-color-text-primary);
  text-align: left;
  background-color: var(--nz-color-bg-section-alt);
  transition: var(--nz-transition-colors);
}

.nz-account-menu__price-toggle:hover {
  background-color: var(--nz-color-bg-page-hover);
}

.nz-account-menu__preference-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.nz-account-menu__preference-copy strong {
  font-size: var(--nz-text-sm);
  font-weight: var(--nz-fw-semi);
}

.nz-account-menu__preference-copy small {
  color: var(--nz-color-text-muted);
  font-size: var(--nz-text-xs);
  line-height: var(--nz-lh-snug);
}

.nz-account-menu__switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--nz-color-border-strong);
  border-radius: var(--nz-radius-pill);
  background-color: var(--nz-color-bg-disabled);
  transition: var(--nz-transition-colors);
}

.nz-account-menu__switch::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--nz-color-text-muted);
  box-shadow: var(--nz-shadow-xs);
  transition: transform var(--nz-transition-base), background-color var(--nz-transition-base);
}

.nz-account-menu__price-toggle[aria-checked=true] .nz-account-menu__switch {
  border-color: var(--nz-color-brand-border);
  background-color: var(--nz-color-brand-soft-active);
}

.nz-account-menu__price-toggle[aria-checked=true] .nz-account-menu__switch::before {
  background-color: var(--nz-color-brand);
  transform: translateX(18px);
}

.nz-account-menu__navigation {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nz-account-menu__item {
  border-bottom: 1px solid var(--nz-color-border-light);
}

.nz-account-menu__link {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 18px;
  color: var(--nz-color-text-primary);
  font-weight: var(--nz-fw-medium);
  text-decoration: none;
  transition: var(--nz-transition-colors);
}

.nz-account-menu__link:hover {
  color: var(--nz-color-link-hover);
  background-color: var(--nz-color-bg-page-hover);
}

.nz-account-menu__link span:last-child {
  color: var(--nz-color-text-muted);
  font-size: 1.4rem;
  line-height: 1;
}

.nz-account-menu__logout {
  width: 100%;
  min-height: 42px;
  color: var(--nz-color-danger);
  font-weight: var(--nz-fw-semi);
  border: 1px solid var(--nz-color-danger-border);
  transition: var(--nz-transition-colors);
}

.nz-account-menu__logout:hover {
  color: var(--nz-color-text-inverse);
  background-color: var(--nz-color-danger);
}

.nz-account-menu__close:focus-visible,
.nz-account-menu__link:focus-visible,
.nz-account-menu__price-toggle:focus-visible,
.nz-account-menu__logout:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid var(--nz-color-brand);
  outline-offset: -2px;
}

@media (max-width: 63.999rem) {
  .nz-account__trigger.nz-actions__item,
  .nz-account__trigger.nz-actions__item:hover {
    border: 0;
    border-left: 1px solid var(--nz-header-border-subtle);
  }
}
@media (min-width: 64rem) {
  .nz-account-menu.nz-drawer--static {
    position: absolute;
    z-index: 1100;
    inset: auto 0 auto auto;
    top: calc(100% + 8px);
    display: flex;
    width: 320px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    color: var(--nz-color-text-primary);
    background-color: var(--nz-color-bg-section);
    border: 1px solid var(--nz-color-border);
    box-shadow: var(--nz-shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--nz-transition-base), transform var(--nz-transition-base), visibility var(--nz-transition-base);
  }
  .nz-account-menu.nz-drawer--static.nz-account-menu--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nz-account-menu__close {
    display: none;
  }
}
@media (min-width: 75.001rem) {
  .nz-account__trigger::after {
    content: "";
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    margin: 0 4px 3px 2px;
    border-right: 2px solid var(--nz-header-text-secondary);
    border-bottom: 2px solid var(--nz-header-text-secondary);
    transform: rotate(45deg);
    transition: transform var(--nz-transition-base);
  }
  .nz-account__trigger[aria-expanded=true]::after {
    margin-bottom: -3px;
    transform: rotate(225deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .nz-account-menu.nz-drawer--static,
  .nz-account-menu__switch,
  .nz-account-menu__switch::before {
    transition: none;
  }
}
/* Cart preview: desktop dropdown and mobile drawer. */
.nz-cart {
  position: relative;
  display: flex;
  height: 100%;
}

.nz-cart__trigger {
  position: relative;
  color: inherit;
  text-align: left;
}

.nz-cart__badge {
  position: absolute;
  top: 1px;
  left: 25px;
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding-inline: 4px;
  color: var(--nz-color-text-inverse);
  font-size: 10px;
  font-weight: var(--nz-fw-bold);
  line-height: 1;
  border: 2px solid var(--nz-header-bg-topbar);
  border-radius: var(--nz-radius-pill);
  background-color: var(--nz-color-brand);
}

.nz-cart-menu {
  --nz-drawer-width: min(94vw, 29rem);
  display: flex;
  flex-direction: column;
  color: var(--nz-color-text-primary);
  background-color: var(--nz-color-bg-section);
  border-left: 1px solid var(--nz-color-border);
}

.nz-cart-menu__title {
  margin-top: 2px;
}

.nz-cart-menu__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 18px;
  color: var(--nz-color-text-secondary);
  font-size: var(--nz-text-sm);
  border-bottom: 1px solid var(--nz-color-divider);
}

.nz-cart-menu__summary strong {
  color: var(--nz-color-text-primary);
}

.nz-cart-menu__summary-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  line-height: var(--nz-lh-snug);
}

.nz-cart-menu__summary-prices small {
  color: var(--nz-color-text-muted);
  font-size: var(--nz-text-xs);
}

.nz-cart-menu__message {
  padding: 9px 18px;
  color: var(--nz-color-text-secondary);
  font-size: var(--nz-text-xs);
  background-color: var(--nz-color-bg-section-alt);
  border-bottom: 1px solid var(--nz-color-divider);
}

.nz-cart-menu__message--error {
  color: var(--nz-color-danger);
  background-color: var(--nz-color-danger-soft);
}

.nz-cart-menu__body {
  background-color: var(--nz-color-bg-section);
}

.nz-cart-menu__empty {
  display: grid;
  place-items: center;
  gap: 5px;
  min-height: 190px;
  padding: 30px 20px;
  color: var(--nz-color-text-secondary);
  text-align: center;
}

.nz-cart-menu__empty strong {
  color: var(--nz-color-text-primary);
}

.nz-cart-menu__empty span {
  font-size: var(--nz-text-sm);
}

.nz-cart-menu__empty-action {
  min-height: 40px;
  margin-top: 10px;
  padding: 8px 14px;
  color: var(--nz-color-link);
  font-size: var(--nz-text-sm);
  font-weight: var(--nz-fw-semi);
  border: 1px solid var(--nz-color-border-strong);
  border-radius: var(--nz-radius-sm);
  background-color: var(--nz-color-bg-section);
  transition: var(--nz-transition-colors);
}

.nz-cart-menu__empty-action:hover {
  color: var(--nz-color-brand);
  border-color: var(--nz-color-brand-border);
  background-color: var(--nz-color-brand-soft);
}

.nz-cart-menu__item {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 30px;
  gap: 12px;
  padding: 16px 14px 16px 18px;
  border-bottom: 1px solid var(--nz-color-border-light);
}

.nz-cart-menu__thumbnail {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--nz-color-text-secondary);
  text-decoration: none;
  border: 1px solid var(--nz-color-border);
  border-radius: var(--nz-radius-sm);
  background-color: var(--nz-color-bg-section-alt);
  transition: var(--nz-transition-colors);
}

.nz-cart-menu__thumbnail:hover {
  color: var(--nz-color-brand);
  border-color: var(--nz-color-brand-border);
}

.nz-cart-menu__thumbnail svg {
  width: 46px;
  height: 46px;
}

.nz-cart-menu__item-body {
  min-width: 0;
}

.nz-cart-menu__product-name {
  display: block;
  color: var(--nz-color-text-primary);
  font-size: var(--nz-text-sm);
  font-weight: var(--nz-fw-semi);
  line-height: var(--nz-lh-snug);
  text-decoration: none;
}

.nz-cart-menu__product-name:hover {
  color: var(--nz-color-link-hover);
}

.nz-cart-menu__product-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 7px;
  color: var(--nz-color-text-muted);
  font-size: var(--nz-text-xs);
  line-height: var(--nz-lh-snug);
}

.nz-cart-menu__product-meta strong {
  color: var(--nz-color-text-secondary);
  font-weight: var(--nz-fw-semi);
}

.nz-cart-menu__quantity {
  display: inline-grid;
  grid-template-columns: 30px 68px 30px;
  height: 30px;
  margin-top: 9px;
}

.nz-cart-menu__quantity-button,
.nz-cart-menu__quantity-input {
  height: 30px;
  color: var(--nz-color-text-primary);
  border: 1px solid var(--nz-color-border-strong);
  background-color: var(--nz-color-bg-input);
}

.nz-cart-menu__quantity-button {
  display: inline-grid;
  place-items: center;
  font-size: var(--nz-text-md);
  line-height: 1;
  transition: var(--nz-transition-colors);
}

.nz-cart-menu__quantity-button:first-child {
  border-radius: var(--nz-radius-sm) 0 0 var(--nz-radius-sm);
}

.nz-cart-menu__quantity-button:last-child {
  border-radius: 0 var(--nz-radius-sm) var(--nz-radius-sm) 0;
}

.nz-cart-menu__quantity-button:hover:not(:disabled) {
  color: var(--nz-color-brand);
  border-color: var(--nz-color-brand-border);
  background-color: var(--nz-color-brand-soft);
}

.nz-cart-menu__quantity-button:disabled {
  color: var(--nz-color-text-disabled);
  background-color: var(--nz-color-bg-disabled);
  cursor: not-allowed;
}

.nz-cart-menu__quantity-input {
  z-index: 1;
  width: 68px;
  padding: 0 3px;
  text-align: center;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.nz-cart-menu__quantity-input::-webkit-inner-spin-button,
.nz-cart-menu__quantity-input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

.nz-cart-menu__product-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  margin-top: 7px;
  line-height: var(--nz-lh-snug);
}

.nz-cart-menu__product-price {
  color: var(--nz-color-text-primary);
  font-size: var(--nz-text-base);
  font-weight: var(--nz-fw-bold);
}

.nz-cart-menu__product-price-gross {
  color: var(--nz-color-text-muted);
  font-size: var(--nz-text-xs);
}

.nz-cart-menu__remove {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--nz-color-text-muted);
  font-size: 1.35rem;
  line-height: 1;
  border-radius: var(--nz-radius-sm);
  transition: var(--nz-transition-colors);
}

.nz-cart-menu__remove:hover {
  color: var(--nz-color-danger);
  background-color: var(--nz-color-danger-soft);
}

.nz-cart-menu__remove:disabled {
  color: var(--nz-color-text-disabled);
  cursor: wait;
}

.nz-cart-menu__footer {
  display: grid;
  gap: 12px;
}

.nz-cart-menu__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--nz-color-text-secondary);
  font-size: var(--nz-text-sm);
}

.nz-cart-menu__total strong {
  color: var(--nz-color-text-primary);
  font-size: var(--nz-text-md);
}

.nz-cart-menu__total-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  line-height: var(--nz-lh-snug);
}

.nz-cart-menu__total-prices small {
  color: var(--nz-color-text-muted);
  font-size: var(--nz-text-xs);
}

.nz-cart-menu__checkout {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--nz-color-text-inverse);
  font-weight: var(--nz-fw-bold);
  text-decoration: none;
  border: 1px solid var(--nz-color-brand-border);
  border-radius: var(--nz-radius-sm);
  background-color: var(--nz-color-brand);
  transition: var(--nz-transition-colors);
}

.nz-cart-menu__checkout:hover {
  border-color: var(--nz-color-brand-border-hover);
  background-color: var(--nz-color-brand-hover);
}

.nz-cart-menu__checkout--disabled,
.nz-cart-menu__checkout--disabled:hover {
  color: var(--nz-color-text-disabled);
  border-color: var(--nz-color-border);
  background-color: var(--nz-color-bg-disabled);
  cursor: not-allowed;
}

.nz-cart-menu__close:focus-visible,
.nz-cart-menu__thumbnail:focus-visible,
.nz-cart-menu__product-name:focus-visible,
.nz-cart-menu__quantity-button:focus-visible,
.nz-cart-menu__quantity-input:focus-visible,
.nz-cart-menu__remove:focus-visible,
.nz-cart-menu__empty-action:focus-visible,
.nz-cart-menu__checkout:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid var(--nz-color-brand);
  outline-offset: -2px;
}

@media (max-width: 63.999rem) {
  .nz-cart__trigger.nz-actions__item,
  .nz-cart__trigger.nz-actions__item:hover {
    border: 0;
    border-left: 1px solid var(--nz-header-border-subtle);
  }
  .nz-cart__badge {
    top: 10px;
    left: 29px;
  }
}
@media (min-width: 64rem) {
  .nz-cart-menu.nz-drawer--static {
    position: absolute;
    z-index: 1100;
    inset: auto 0 auto auto;
    top: calc(100% + 8px);
    display: flex;
    width: 400px;
    max-height: calc(100vh - 110px);
    overflow: hidden;
    color: var(--nz-color-text-primary);
    background-color: var(--nz-color-bg-section);
    border: 1px solid var(--nz-color-border);
    box-shadow: var(--nz-shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--nz-transition-base), transform var(--nz-transition-base), visibility var(--nz-transition-base);
  }
  .nz-cart-menu.nz-drawer--static.nz-cart-menu--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nz-cart-menu__close {
    display: none;
  }
}
@media (min-width: 75.001rem) {
  .nz-cart__trigger::after {
    content: "";
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    margin: 0 4px 3px 2px;
    border-right: 2px solid var(--nz-header-text-secondary);
    border-bottom: 2px solid var(--nz-header-text-secondary);
    transform: rotate(45deg);
    transition: transform var(--nz-transition-base);
  }
  .nz-cart__trigger[aria-expanded=true]::after {
    margin-bottom: -3px;
    transform: rotate(225deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .nz-cart-menu.nz-drawer--static {
    transition: none;
  }
}
.nz-producers--wrapper {
  padding: 18px 0 40px;
  background-color: var(--nz-color-bg-page);
}

.nz-producers {
  width: 100%;
  padding: 12px;
  overflow: hidden;
  background-color: var(--nz-color-bg-card);
  border: 1px solid var(--nz-color-border);
  box-shadow: var(--nz-card-shadow);
}
.nz-producers .f-carousel {
  --f-carousel-gap: 10px;
  --f-carousel-slide-width: calc(50% - 5px);
}
.nz-producers__item {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid var(--nz-color-border-light);
  text-decoration: none;
  transition: var(--nz-transition-interactive);
}
.nz-producers__item:hover {
  border-color: var(--nz-color-border-hover);
  box-shadow: var(--nz-shadow-sm);
}
.nz-producers__item:hover .nz-producers__logo {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}
.nz-producers__item:focus-visible {
  outline: 2px solid var(--nz-color-border-focus);
  outline-offset: -2px;
}
.nz-producers__logo {
  display: block;
  width: auto;
  max-width: 84%;
  height: auto;
  max-height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter var(--nz-transition-base), opacity var(--nz-transition-base), transform var(--nz-transition-base);
}

@media (min-width: 40rem) {
  .nz-producers .f-carousel {
    --f-carousel-gap: 12px;
    --f-carousel-slide-width: calc(33.333% - 8px);
  }
}
@media (min-width: 48rem) {
  .nz-producers {
    padding: 14px;
  }
  .nz-producers .f-carousel {
    --f-carousel-slide-width: calc(25% - 9px);
  }
  .nz-producers__item {
    min-height: 104px;
  }
}
@media (min-width: 64rem) {
  .nz-producers .f-carousel {
    --f-carousel-gap: 14px;
    --f-carousel-slide-width: calc(16.666% - 12px);
  }
}
@media (min-width: 87.5rem) {
  .nz-producers {
    padding: 16px;
  }
  .nz-producers .f-carousel {
    --f-carousel-slide-width: calc(14.285% - 12px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .nz-producers__item,
  .nz-producers__logo {
    transition: none;
  }
}
.nz-footer {
  color: var(--nz-header-text-secondary);
  background-color: var(--nz-header-bg-topbar);
  border-top: 1px solid var(--nz-header-border-subtle);
}
.nz-footer__main {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(36px, 5vw, 96px);
  padding: clamp(44px, 5vw, 72px) 0;
}
.nz-footer__brand {
  max-width: 340px;
}
.nz-footer__logo {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 0;
}
.nz-footer__logo .nz-logo__svg {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
}
.nz-footer__logo .nz-logo__text {
  color: var(--nz-header-text-primary);
}
.nz-footer__description {
  max-width: 34ch;
  margin-top: 20px;
  color: var(--nz-header-text-secondary);
  font-size: var(--nz-text-sm);
  line-height: var(--nz-lh-loose);
}
.nz-footer__heading {
  margin: 4px 0 20px;
  color: var(--nz-header-text-primary);
  font-size: var(--nz-text-sm);
  font-weight: var(--nz-fw-bold);
  line-height: var(--nz-lh-snug);
}
.nz-footer__list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nz-footer__link {
  color: var(--nz-header-text-secondary);
  font-size: var(--nz-text-sm);
  line-height: var(--nz-lh-base);
  text-decoration: none;
  transition: var(--nz-transition-colors);
}
.nz-footer__link:hover {
  color: var(--nz-color-brand-hover);
}
.nz-footer__link:focus-visible {
  color: var(--nz-header-text-primary);
  outline: 2px solid var(--nz-color-brand);
  outline-offset: 4px;
}
.nz-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0 19px;
  color: var(--nz-header-text-muted);
  font-size: var(--nz-text-xs);
  border-top: 1px solid var(--nz-header-border);
}
.nz-footer__copyright {
  font: inherit;
}
.nz-footer__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nz-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--nz-header-text-muted);
  text-decoration: none;
  transition: var(--nz-transition-colors);
}
.nz-footer__social-link:hover {
  color: var(--nz-color-brand-hover);
}
.nz-footer__social-link:focus-visible {
  color: var(--nz-header-text-primary);
  outline: 2px solid var(--nz-color-brand);
  outline-offset: 2px;
}
.nz-footer__social-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 56rem) {
  .nz-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px clamp(36px, 8vw, 80px);
  }
  .nz-footer__brand {
    grid-column: 1/-1;
    max-width: none;
  }
}
@media (max-width: 36rem) {
  .nz-footer__main {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 40px 0;
  }
  .nz-footer__brand {
    grid-column: auto;
  }
  .nz-footer__heading {
    margin-bottom: 14px;
  }
  .nz-footer__list {
    gap: 10px;
  }
  .nz-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
body {
  color: var(--nz-color-text-primary);
  background-color: var(--nz-color-bg-page);
  font-family: var(--nz-font-sans);
}

.nz-button {
  padding: 5px;
  border-radius: 0;
  background-color: var(--nz-button-secondary-bg);
  border: 1px solid var(--nz-button-secondary-border);
}
.nz-button:hover {
  background-color: var(--nz-button-secondary-bg-hover);
}
.nz-button--primary {
  color: var(--nz-button-primary-text);
  background-color: var(--nz-button-primary-bg);
  border: 1px solid var(--nz-button-primary-border);
}
.nz-button--primary:hover {
  background-color: var(--nz-button-primary-bg-hover);
  border-color: var(--nz-button-primary-border-hover);
  box-shadow: var(--nz-shadow-brand);
}
.nz-button--primary:active {
  background-color: var(--nz-button-primary-bg-active);
  border-color: var(--nz-color-brand-border-active);
  box-shadow: none;
}
.nz-button--secondary {
  color: var(--nz-button-secondary-text);
  background-color: var(--nz-button-secondary-bg);
  border: 1px solid var(--nz-button-secondary-border);
}
.nz-button--secondary:hover {
  background-color: var(--nz-button-secondary-bg-hover);
  border-color: var(--nz-button-secondary-border-hover);
}
.nz-button--secondary:active {
  background-color: var(--nz-button-secondary-bg-active);
}

.nz-shell {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}

.nz-main {
  color: var(--nz-color-text-primary);
  background-color: var(--nz-color-bg-page);
}

.nz-section {
  background-color: var(--nz-color-bg-section);
}

.nz-section--alt {
  background-color: var(--nz-color-bg-section-alt);
}

.nz-card {
  color: var(--nz-color-text-primary);
  background-color: var(--nz-color-bg-card);
  border: 1px solid var(--nz-color-border);
  box-shadow: var(--nz-card-shadow);
  transition: var(--nz-transition-interactive);
}

.nz-card:hover {
  background-color: var(--nz-color-bg-card-hover);
  border-color: var(--nz-color-border-hover);
  box-shadow: var(--nz-card-shadow-hover);
  transform: translateY(-2px);
}

.nz-card__description {
  color: var(--nz-color-text-secondary);
}

.nz-card__meta {
  color: var(--nz-color-text-muted);
}

.nz-header {
  color: var(--nz-header-text-primary);
  background-color: var(--nz-header-bg-main);
  border-bottom: 1px solid var(--nz-header-border);
}/*# sourceMappingURL=styles.css.map */