@charset "UTF-8";
.nb-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: var(--w-bold);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  height: var(--control-h);
  padding: 0 28px;
  cursor: pointer;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--nb-white);
  background: var(--nb-black);
  transition: transform 220ms var(--ease), box-shadow var(--dur) ease, opacity var(--dur) ease;
  outline: none;
  text-decoration: none;
  transform-origin: center center;
  will-change: transform;
  /* [hidden] and .nb-btn are equal specificity — without this, whichever CSS
   * rule loads second wins the cascade, so toggling the hidden attribute via
   * $btn.prop('hidden', true) silently does nothing on a .nb-btn. */
}
.nb-btn[hidden] {
  display: none;
}
.nb-btn--block {
  width: 100%;
}
.nb-btn--lg {
  height: 52px;
  padding: 0 36px;
  font-size: 14px;
}
.nb-btn--primary {
  background: var(--nb-black);
  color: var(--nb-white);
}
.nb-btn--ghost {
  background: transparent;
  color: var(--nb-black);
  border: 1.5px solid var(--nb-black);
}
.nb-btn--antracit {
  background: var(--nb-antracit);
  color: var(--nb-white);
}
.nb-btn--inverse {
  background: var(--nb-white);
  color: var(--nb-black);
  border: 1px solid var(--border);
}
.nb-btn--link {
  position: relative;
  background: transparent;
  color: var(--nb-black);
  border: 0;
  border-radius: 0;
  font-weight: var(--w-medium);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  height: auto;
  padding: 6px 2px;
  transition: opacity var(--dur) ease, color var(--dur) ease;
}
.nb-btn--link::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 1.5px;
  background: var(--nb-black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms var(--ease), background var(--dur) ease;
}
.nb-btn--link:hover::after, .nb-btn--link.is-hover::after {
  transform: scaleX(1);
}
.nb-btn--link:active, .nb-btn--link.is-active {
  color: var(--nb-antracit);
}
.nb-btn--link:active::after, .nb-btn--link.is-active::after {
  transform: scaleX(1);
  background: var(--nb-antracit);
}
.nb-btn--link:focus-visible::after, .nb-btn--link.is-focus::after {
  transform: scaleX(1);
}
.nb-btn--link:disabled, .nb-btn--link.is-disabled {
  background: transparent !important;
  color: var(--fg-muted) !important;
}
.nb-btn--link.is-disabled::after, .nb-btn--link:disabled::after {
  display: none;
}
.nb-btn--glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--nb-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 4px 18px rgba(0, 0, 0, 0.25);
}
.nb-btn--glass-dark {
  background: rgba(14, 15, 17, 0.32);
  color: var(--nb-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 18px rgba(0, 0, 0, 0.4);
}
.nb-btn--primary:hover, .nb-btn--primary.is-hover, .nb-btn--ghost:hover, .nb-btn--ghost.is-hover, .nb-btn--antracit:hover, .nb-btn--antracit.is-hover, .nb-btn--inverse:hover, .nb-btn--inverse.is-hover, .nb-btn--glass:hover, .nb-btn--glass.is-hover, .nb-btn--glass-dark:hover, .nb-btn--glass-dark.is-hover {
  transform: scale(1.04);
}
.nb-btn--primary:active, .nb-btn--primary.is-active, .nb-btn--ghost:active, .nb-btn--ghost.is-active, .nb-btn--antracit:active, .nb-btn--antracit.is-active, .nb-btn--inverse:active, .nb-btn--inverse.is-active, .nb-btn--glass:active, .nb-btn--glass.is-active, .nb-btn--glass-dark:active, .nb-btn--glass-dark.is-active {
  transform: scale(0.97);
  opacity: 0.94;
}
.nb-btn:focus-visible, .nb-btn.is-focus {
  box-shadow: 0 0 0 3px var(--state-focus-ring);
}
.nb-btn:disabled, .nb-btn.is-disabled {
  background: var(--border) !important;
  color: var(--fg-muted) !important;
  cursor: not-allowed;
  border-color: var(--border) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  transform: none !important;
  opacity: 1 !important;
}
.nb-btn.is-loading {
  color: transparent !important;
  pointer-events: none;
  position: relative;
}
.nb-btn.is-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  color: var(--nb-white);
  animation: nb-spin 720ms linear infinite;
}
.nb-btn--ghost.is-loading::after, .nb-btn--inverse.is-loading::after {
  color: var(--nb-black);
}

@keyframes nb-spin {
  to {
    transform: rotate(360deg);
  }
}
.nb-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.nb-field__label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  font-weight: var(--w-medium);
}
.nb-field__label .req {
  color: var(--fg-accent);
  margin-left: 2px;
}
.nb-field.is-error .nb-input,
.nb-field.is-error .nb-select,
.nb-field.is-error .nb-textarea {
  border-color: var(--state-error);
  box-shadow: 0 0 0 3px rgba(200, 38, 31, 0.1);
}
.nb-field.is-error .nb-field__label {
  color: var(--state-error);
}
.nb-field.is-error .nb-field__error {
  display: flex;
}
.nb-field.is-error .nb-field__help {
  display: none;
}
.nb-field.is-success .nb-input,
.nb-field.is-success .nb-textarea {
  border-color: var(--state-success);
}
.nb-field__help {
  font-size: 11px;
  letter-spacing: 0.01em;
  color: var(--fg-muted);
  line-height: 1.4;
}
.nb-field__error {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.01em;
  color: var(--state-error);
  line-height: 1.4;
}

.nb-input,
.nb-select,
.nb-textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--nb-black);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  outline: none;
  background: var(--nb-white);
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.3;
}
.nb-input::placeholder,
.nb-select::placeholder,
.nb-textarea::placeholder {
  color: var(--fg-muted);
}
.nb-input:focus,
.nb-select:focus,
.nb-textarea:focus {
  border-color: var(--nb-black);
  box-shadow: 0 0 0 3px rgba(14, 15, 17, 0.08);
}
.nb-input:disabled,
.nb-select:disabled,
.nb-textarea:disabled {
  background: var(--nb-off-white);
  color: var(--fg-muted);
  cursor: not-allowed;
  border-color: var(--border);
}

.nb-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: var(--lh-body);
}

.nb-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230E0F11' stroke-width='1.5' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

.nb-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-secondary);
  cursor: pointer;
  line-height: 1;
}
.nb-check input {
  margin: 0;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  accent-color: var(--nb-black);
  cursor: pointer;
}
.nb-check span {
  display: inline-block;
  line-height: 1.2;
}

.nb-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  height: var(--control-h);
  overflow: hidden;
}
.nb-qty__btn {
  width: 42px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--nb-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) ease;
}
.nb-qty__btn:hover {
  background: var(--nb-off-white);
}
.nb-qty__btn:disabled {
  color: var(--fg-muted);
  cursor: not-allowed;
  background: transparent;
}
.nb-qty__input {
  width: 40px;
  height: 100%;
  border: 0;
  outline: none;
  text-align: center;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--w-medium);
  color: var(--nb-black);
  -moz-appearance: textfield;
}
.nb-qty__input::-webkit-outer-spin-button, .nb-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.nb-qty {
  /* compact stepper — mini-cart / dense lists */
}
.nb-qty--sm {
  height: 32px;
}
.nb-qty--sm .nb-qty__btn {
  width: 30px;
  font-size: 14px;
}
.nb-qty--sm .nb-qty__input {
  width: 26px;
  font-size: 12px;
}
.nb-qty.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

.nb-tag {
  display: inline-grid;
  place-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  box-sizing: border-box;
  font-family: var(--font);
  font-weight: var(--w-medium);
  font-size: 10px;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.nb-tag > * {
  display: block;
  line-height: 1;
  transform: translateY(0.5px);
}
.nb-tag--solid {
  background: var(--nb-black);
  color: var(--nb-white);
}
.nb-tag--outline {
  background: transparent;
  color: var(--nb-black);
  border: 1px solid var(--border);
}
.nb-tag--muted {
  background: var(--nb-grey-web);
  color: var(--fg-secondary);
}
.nb-tag--antracit {
  background: var(--nb-antracit);
  color: var(--nb-white);
}
.nb-tag--sale {
  background: var(--nb-red);
  color: var(--nb-white);
}

/* Product-card badge pills (Novinka/Sale/Štítky) — identical to the PDP
 * .pdp-buy__flag pills, ported 1:1 from design/product/assets/scss/partials/_category.scss. */
.pc-flag {
  font-family: var(--font);
  font-weight: var(--w-medium);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nb-black);
  background: var(--nb-off-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 8px 10px 6px;
  line-height: 1;
}
.pc-flag--sale {
  color: var(--nb-white);
  background: var(--nb-red);
  border-color: transparent;
}
.pc-flag--new {
  color: var(--nb-black);
  background: var(--nb-off-white);
  border-color: var(--border);
}

.nb-chip {
  display: inline-grid;
  place-items: center;
  grid-auto-flow: column;
  gap: 8px;
  height: 34px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  box-sizing: border-box;
  font-family: var(--font);
  font-weight: var(--w-medium);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1;
  background: transparent;
  color: var(--nb-black);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), border-color var(--dur) ease, background var(--dur) ease;
  white-space: nowrap;
}
.nb-chip > * {
  transform: translateY(0.5px);
}
.nb-chip > .nb-chip__x {
  transform: translateY(0);
}
.nb-chip:hover {
  transform: scale(1.04);
  border-color: var(--nb-black);
}
.nb-chip--active {
  background: var(--nb-black);
  color: var(--nb-white);
  border-color: var(--nb-black);
}
.nb-chip__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  font-size: 13px;
  line-height: 1;
  opacity: 0.75;
}

.nb-counter-host {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nb-black);
}

.nb-counter {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  box-sizing: border-box;
  background: var(--nb-red);
  color: var(--nb-white);
  font-family: var(--font);
  font-weight: var(--w-heavy);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--nb-white);
}
.nb-counter--on-dark {
  border-color: var(--nb-black);
}

.nb-breadcrumbs {
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nb-breadcrumbs__link {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}
.nb-breadcrumbs__link:hover {
  color: var(--nb-black);
}
.nb-breadcrumbs__sep {
  color: var(--border);
  user-select: none;
}
.nb-breadcrumbs__current {
  color: var(--nb-black);
  font-weight: var(--w-medium);
}

.nb-sizes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.nb-sizes__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.nb-sizes__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: var(--w-heavy);
}
.nb-sizes__guide {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}
.nb-sizes__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nb-sizes__note {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--state-error);
}

.nb-size {
  position: relative;
}
.nb-size__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nb-size__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--tap-min);
  height: var(--tap-min);
  padding: 0 12px;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font);
  font-weight: var(--w-medium);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--nb-black);
  background: var(--nb-white);
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease, color var(--dur-fast) ease;
  user-select: none;
}
.nb-size__box:hover {
  border-color: var(--nb-black);
}
.nb-size__input:checked + .nb-size__box {
  background: var(--nb-black);
  color: var(--nb-white);
  border-color: var(--nb-black);
}
.nb-size__input:focus-visible + .nb-size__box {
  box-shadow: 0 0 0 3px var(--state-focus-ring);
}
.nb-size--out .nb-size__box {
  color: var(--fg-muted);
  cursor: not-allowed;
  background: var(--nb-off-white);
  border-color: var(--border);
  position: relative;
  overflow: hidden;
}
.nb-size--out .nb-size__box::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 50%;
  height: 1px;
  background: var(--nb-grey-50);
  transform: rotate(-18deg);
}
.nb-size--out .nb-size__box:hover {
  border-color: var(--border);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-card__media {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bg-product);
  cursor: pointer;
  display: block;
}
.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 420ms var(--ease), transform 600ms var(--ease);
}
.product-card__img--alt {
  opacity: 0;
}
.product-card__media:hover .product-card__img--primary {
  opacity: 0;
}
.product-card__media:hover .product-card__img--alt {
  opacity: 1;
  transform: scale(1.02);
}
.product-card {
  /* .nb-tag vzhľad vnútri __badges je zámerne INÝ na homepage vs PDP/shop
   * (homepage.scss / product-page.scss), preto sa tu nedeklaruje ako default. */
}
.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.product-card__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--nb-black);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform var(--dur-fast) ease, background var(--dur-fast) ease;
}
.product-card__wish:hover {
  transform: scale(1.08);
  background: #fff;
}
.product-card__wish.is-active {
  color: var(--nb-red);
}
.product-card__quick {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-sm);
  color: var(--nb-black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
  cursor: pointer;
  overflow: hidden;
}
.product-card__quick-label {
  font-family: var(--font);
  font-weight: var(--w-bold);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 180ms ease;
}
.product-card__quick:hover .product-card__quick-label {
  opacity: 0;
}
.product-card__quick-sizes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease 60ms;
}
.product-card__quick:hover .product-card__quick-sizes {
  opacity: 1;
  pointer-events: auto;
}
.product-card__media:hover .product-card__quick {
  opacity: 1;
  transform: translateY(0);
}
.product-card__qsize {
  min-width: 34px;
  height: 34px;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: var(--w-medium);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--nb-black);
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.product-card__qsize:hover {
  background: var(--nb-black);
  color: var(--nb-white);
  transform: scale(1.06);
}
.product-card__qsize--out {
  color: #b5b7b9;
  text-decoration: line-through;
  cursor: not-allowed;
}
.product-card__qsize--out:hover {
  background: transparent;
  color: #b5b7b9;
  transform: none;
}
.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 4px;
}
.product-card__name {
  font-family: var(--font);
  font-weight: var(--w-regular);
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--nb-black);
  letter-spacing: 0;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  /* Reserves 2 lines even for a 1-line title — grid rows already stretch
   * every .product-card to equal height, but without this a short title
   * pushes its own price/colors row up while a 2-line neighbour in the
   * same row keeps its price lower, so the row reads as uneven. Titles
   * rarely run to 3 lines, so that (rarer) case is left uncompensated
   * rather than reserving space for it everywhere. */
  min-height: 2.7em;
}
.product-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-card__colors {
  display: flex;
  gap: 6px;
  align-items: center;
}
.product-card__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(14, 15, 17, 0.18);
  cursor: pointer;
  transition: transform var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.product-card__swatch:hover {
  transform: scale(1.15);
}
.product-card__swatch--active {
  border: 1.5px solid var(--nb-black);
  box-shadow: inset 0 0 0 2px var(--nb-white);
}
.product-card__price {
  font-family: var(--font);
  font-weight: var(--w-bold);
  font-size: 14px;
  color: var(--nb-black);
  letter-spacing: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-card__price--sale {
  color: var(--nb-red);
}
.product-card__price-old {
  color: var(--fg-muted);
  font-weight: var(--w-regular);
  text-decoration: line-through;
  font-size: 13px;
}
.product-card {
  /* „bez DPH" pri cene — vykresľuje sa len pri cenách bez dane (B2B, US, GLOBAL) */
}
.product-card__price-note {
  color: var(--fg-muted);
  font-weight: var(--w-regular);
  font-size: 11px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.product-card {
  /* mobilné "quick add" prekrytie — na každom product grid, nielen homepage */
}
.product-card__quickadd {
  display: none;
}
@media (max-width: 480px) {
  .product-card__wish {
    width: 30px;
    height: 30px;
    top: 8px;
    right: 8px;
  }
  .product-card__wish i {
    font-size: 12px;
  }
  .product-card__badges {
    display: none;
  }
  .product-card__quickadd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-pill);
    border: 0;
    cursor: pointer;
    padding: 0;
    background: rgba(255, 255, 255, 0.92);
    color: var(--nb-black);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
  .product-card__quickadd i {
    font-size: 13px;
  }
  .product-card__quickadd:active {
    transform: scale(0.92);
  }
  .product-card__media.is-quick-open .product-card__quick {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .product-card__media.is-quick-open .product-card__quick-label {
    opacity: 0;
  }
  .product-card__media.is-quick-open .product-card__quick-sizes {
    opacity: 1;
    pointer-events: auto;
  }
  .product-card__media.is-quick-open .product-card__quickadd i {
    transform: rotate(45deg);
    transition: transform var(--dur) var(--ease);
  }
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--container-pad);
  gap: 24px;
  color: var(--nb-white);
  background: var(--nb-black);
  transition: transform 320ms var(--ease), background 220ms ease, backdrop-filter 220ms ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  will-change: transform;
}
.site-header.is-scrolled {
  background: rgba(14, 15, 17, 0.94);
  -webkit-backdrop-filter: blur(8px) saturate(110%);
  backdrop-filter: blur(8px) saturate(110%);
}
.home .site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header__nav {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-self: start;
}
.site-header__link {
  color: var(--nb-white);
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: var(--w-medium);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: opacity var(--dur-fast) ease;
}
.site-header__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--nb-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease);
}
.site-header__link:hover::after {
  transform: scaleX(1);
}
.site-header__logo-wrap {
  justify-self: center;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.site-header__logo {
  height: 18px;
  display: block;
}
.site-header__right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}
.site-header__search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background var(--dur) ease, border-color var(--dur) ease;
  cursor: text;
  width: 180px;
  box-sizing: border-box;
}
.site-header__search svg {
  flex: 0 0 auto;
  opacity: 0.85;
  display: block;
}
.site-header__search span {
  display: inline-block;
  line-height: 1;
  transform: translateY(0.5px);
}
.site-header__search:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--nb-white);
}
.site-header__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--nb-white);
  transition: background var(--dur) ease, transform var(--dur) ease;
}
.site-header__icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.06);
}
.site-header__icon svg {
  display: block;
}
.site-header__bag {
  position: relative;
}
.site-header__bag .nb-counter {
  top: 4px;
  right: 4px;
  border-color: var(--nb-black);
}

/* ── Layout primitives (section-head / home-section) ──────────────────────
 * Boli len v homepage.css, ale používajú ich aj PDP a sign-grid blok
 * (nb-sign-grid wrappuje do .home-section). */
.home-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-8) var(--container-pad);
}
.home-section--tight {
  padding-block: var(--space-7);
}
.home-section--flush {
  padding-inline: 0;
  max-width: none;
}
.home-section--rail-lead {
  padding-top: var(--space-5);
}
.home-section--wide {
  max-width: 1680px;
}
@media (max-width: 768px) {
  .home-section {
    padding-block: var(--space-6);
  }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
.section-head__lead {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.section-head__kicker {
  font-family: var(--font);
  font-weight: var(--w-medium);
  font-size: var(--fs-kicker);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.section-head__kicker .accent {
  color: var(--fg);
}
.section-head__title {
  font-family: var(--font);
  font-weight: var(--w-heavy);
  font-size: clamp(21px, 2.3vw, 32px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.section-head__link {
  flex: 0 0 auto;
  align-self: flex-end;
  font-family: var(--font);
  font-weight: var(--w-medium);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--fg);
  transition: gap var(--dur) var(--ease), opacity var(--dur) ease;
}
.section-head__link .arr {
  transition: transform var(--dur) var(--ease);
}
.section-head__link:hover {
  opacity: 0.62;
}
.section-head__link:hover .arr {
  transform: translateX(4px);
}
.section-head--row {
  align-items: baseline;
  justify-content: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}
.section-head--row .nb-btn--link {
  margin-left: auto;
  flex: 0 0 auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.section-head--row .nb-btn--link svg {
  display: block;
  flex: 0 0 auto;
}
.section-head__line {
  font-family: var(--font);
  font-weight: var(--w-regular);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
}
.section-head__pre {
  color: var(--fg-muted);
  font-weight: var(--w-regular);
}
@media (max-width: 768px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  .section-head--row {
    margin-bottom: var(--space-4);
  }
  .home .section-head--row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
  }
}

/* ── Reveal-on-scroll utility ── */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal-ready .reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal--d1 {
  transition-delay: 80ms;
}

.reveal--d2 {
  transition-delay: 160ms;
}

.reveal--d3 {
  transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
}
/* ── Placeholder / pattern block (used wherever no real image is set) ── */
.nb-ph {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--nb-black);
  color: var(--nb-white);
  isolation: isolate;
}
.nb-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../../images/n-pattern-white.png") repeat;
  background-size: 340px auto;
  opacity: 0.06;
}
.nb-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.05), transparent 60%);
  pointer-events: none;
}
.nb-ph__tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.03);
}
.nb-ph__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nb-grey-50);
  flex: 0 0 auto;
}
.nb-ph--paper {
  background: var(--nb-grey-web);
  color: var(--nb-antracit);
}
.nb-ph--paper::before {
  filter: invert(1);
  opacity: 0.05;
}
.nb-ph--paper .nb-ph__tag {
  color: var(--fg-muted);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.5);
}

/* ── Horizontal rail / carousel primitive (hand-rolled native scroll —
 * assets/js/homepage/product-rail.js, NOT Splide. .rail__track is a real
 * scroll container (overflow-x:auto + scroll-snap); .rail__list/.splide__slide
 * class names are kept as-is from the pre-Splide-removal markup contract
 * (nebbia-blocks/includes/helpers.php) to avoid a site-wide rename. ── */
.rail {
  position: relative;
}
.rail__track {
  margin-inline: calc(-1 * var(--container-pad));
  padding-inline: var(--container-pad);
  padding-bottom: var(--space-2);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--container-pad);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rail__track::-webkit-scrollbar {
  display: none;
}
.rail__track.is-grab {
  scroll-snap-type: none;
}
.rail__list {
  display: flex;
  gap: var(--space-2);
}
.rail__list img,
.rail__list a {
  -webkit-user-drag: none;
  user-select: none;
}
.rail .splide__slide {
  flex-shrink: 0;
  box-sizing: border-box;
  scroll-snap-align: start;
  width: clamp(192px, 50vw, 230px);
}
@media (min-width: 1024px) {
  .rail .splide__slide {
    width: clamp(280px, 23vw, 320px);
  }
}
.rail {
  /* arrows — pre-rendered server-side (nebbia_rail_arrows(), Font Awesome
   * icons), wired up by product-rail.js. Disabled state (start/end of the
   * rail) is set via the native `disabled` attribute, read live off the
   * track's scroll position — never cached, so it can't go stale. */
}
.rail .splide__arrows {
  display: contents;
}
.rail .splide__arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--nb-white);
  color: var(--nb-black);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur) ease, background var(--dur) ease, opacity var(--dur) ease, transform var(--dur-fast) ease;
}
.rail .splide__arrow i {
  display: block;
  font-size: 14px;
  line-height: 1;
}
.rail .splide__arrow:hover {
  border-color: var(--nb-black);
}
.rail .splide__arrow:active {
  transform: translateY(-50%) scale(0.94);
}
.rail .splide__arrow:disabled {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}
.rail .splide__arrow--prev {
  left: 6px;
}
.rail .splide__arrow--next {
  right: 6px;
}
@media (min-width: 1024px) and (hover: hover) {
  .rail .splide__arrow {
    display: inline-flex;
  }
}

/* ── Tile carousel (homepage "populárne" aj shop subnav rail) ── */
.rail--cats .rail__list {
  gap: 2px;
}

.poptiles .splide__slide {
  width: clamp(240px, 38vw, 560px);
}

/* Homepage poptiles (bare .rail--cats, i.e. NOT the shop subnav — see the
 * .subnav override in shop.scss) are a carousel on desktop but a static
 * 2-col grid on phones — product-rail.js only activates the carousel
 * (adds .is-carousel) at/above 783px for this flavor; below that, CSS takes
 * over here into the intended 2-col grid instead. The shop subnav reuses
 * the same rail--cats/poptiles markup but stays a carousel at every width
 * (product-rail.js always adds .is-carousel there, see the .subnav check). */
.rail--cats:not(.is-carousel) .rail__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.rail--cats:not(.is-carousel) .splide__slide {
  width: auto;
}

.poptile {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: var(--nb-white);
  color: var(--nb-black);
}
.poptile__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-product);
}
.poptile__media .nb-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.poptile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform 700ms var(--ease);
  -webkit-user-drag: none;
  user-select: none;
}
.poptile:hover .poptile__img {
  transform: scale(1.04);
}
.poptile__scrim {
  display: none;
}
.poptile__name {
  position: static;
  margin: 0;
  padding: var(--space-3) var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: var(--w-heavy);
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nb-black);
}
.poptile__name .arr {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur) ease, transform var(--dur) var(--ease);
}
.poptile:hover .poptile__name .arr {
  opacity: 1;
  transform: none;
}
@media (max-width: 480px) {
  .poptile__media {
    aspect-ratio: 3/4;
  }
  .poptile__name {
    font-size: 12px;
    padding: 10px 12px var(--space-5);
    letter-spacing: 0.06em;
  }
}

/* ── USP bar (renders on every page by default — footer.php order) ── */
.usp {
  background: var(--nb-black);
  color: var(--nb-white);
}
.usp__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-7) var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 768px) {
  .usp__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6) var(--space-5);
  }
}
@media (max-width: 480px) {
  .usp__grid {
    grid-template-columns: 1fr;
  }
}
.usp__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.usp__item--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.usp__item--link .usp__icon {
  transition: background var(--dur) ease, color var(--dur) ease, border-color var(--dur) ease;
}
.usp__item--link:hover .usp__icon {
  background: var(--nb-white);
  color: var(--nb-black);
  border-color: var(--nb-white);
}
.usp__item--link:hover .usp__arrow {
  opacity: 1;
  transform: translateX(0);
}
.usp__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  color: var(--nb-white);
}
.usp__txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.usp__label {
  font-family: var(--font);
  font-weight: var(--w-bold);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.usp__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.usp__arrow {
  margin-left: auto;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--dur) ease, transform var(--dur) ease;
}

/* ── Site footer (renders on every page — footer.php always includes it) ── */
.site-footer {
  background: var(--nb-black);
  color: var(--nb-white);
  position: relative;
  overflow: hidden;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-8) var(--container-pad) var(--space-6);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--space-6);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6) var(--space-5);
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 30ch;
}
@media (max-width: 1024px) {
  .site-footer__brand {
    grid-column: 1/-1;
    max-width: none;
  }
}
.site-footer__logo {
  height: 20px;
  width: auto;
  align-self: flex-start;
}
.site-footer__tag {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.site-footer__socials {
  display: flex;
  gap: 10px;
}
.site-footer__social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-grid;
  place-items: center;
  color: var(--nb-white);
  font-size: 16px;
  text-decoration: none;
  transition: background var(--dur) ease, transform var(--dur-fast) ease, border-color var(--dur) ease;
}
.site-footer__social:hover {
  background: var(--nb-white);
  color: var(--nb-black);
  border-color: var(--nb-white);
  transform: translateY(-2px);
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-5);
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-footer__pay {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}
.site-footer__legal a:hover {
  color: var(--nb-white);
}
.site-footer__copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.footer-col__head {
  font-family: var(--font);
  font-weight: var(--w-heavy);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nb-white);
  margin: 0 0 var(--space-4);
}
.footer-col__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col__links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: color var(--dur-fast) ease;
}
.footer-col__links a:hover {
  color: var(--nb-white);
}
.footer-col__links a .tag-sale {
  color: inherit;
  font-weight: var(--w-bold);
}

.pay-badge {
  height: 30px;
  min-width: 46px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: #1a1b1e;
  display: inline-grid;
  place-items: center;
  font-family: var(--font);
  font-weight: var(--w-heavy);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
