/* ==========================================================================
   Alpenzaun eShop — frontend styles (auto-generated from template)
   ========================================================================== */
.aze-cat,
.aze-cat *,
.aze-cat *::before,
.aze-cat *::after {
  font-family: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif !important;
  font-style: normal !important;
  box-sizing: border-box;
}

.aze-cat {
  --az-red: #f04e23;
  --az-red2: #772008;
  --az-black: #141414;
  --az-khaki: #3d403a;
  --az-cream: #f6f5f2;
  --az-steel: #9c9c95;
  --az-line: rgba(20, 20, 20, 0.08);

  width: 100%;
  max-width: none;
  margin: 0;
  padding: 24px clamp(20px, 3vw, 48px) 48px;
  color: var(--az-black);
}

/* ─── BREADCRUMB ─── */
.aze-cat-crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--az-steel); margin-bottom: 24px;
}
.aze-cat-crumb a { color: var(--az-steel); text-decoration: none; transition: color 200ms ease; }
.aze-cat-crumb a:hover { color: var(--az-red); }
.aze-cat-crumb svg { width: 12px; height: 12px; flex-shrink: 0; }
.aze-cat-crumb [aria-current="page"] { color: var(--az-black); font-weight: 600; }

/* ─── HEADER ─── */
.aze-cat-head {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--az-line);
  margin-bottom: 28px;
}
.aze-cat-head-text { max-width: 720px; }
.aze-cat-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 11px;
  background: rgba(240, 78, 35, 0.08);
  color: var(--az-red);
  border: 1px solid rgba(240, 78, 35, 0.18);
  border-radius: 999px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 14px;
}
.aze-cat-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--az-red); }
.aze-cat-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 700;
  line-height: 1; letter-spacing: -0.025em;
  margin: 0 0 12px; color: var(--az-black);
}
.aze-cat-desc { font-size: 14.5px; line-height: 1.6; color: var(--az-khaki); margin: 0; }
.aze-cat-desc strong { color: var(--az-black); font-weight: 600; }
.aze-cat-head-stats {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 22px;
  background: #fff; border: 1px solid var(--az-line); border-radius: 10px;
}
.aze-cat-stat { display: flex; flex-direction: column; gap: 2px; text-align: center; }
.aze-cat-stat strong { font-size: 20px; font-weight: 700; color: var(--az-black); letter-spacing: -0.02em; line-height: 1; }
.aze-cat-stat span { font-size: 11px; color: var(--az-steel); letter-spacing: 0.04em; }
.aze-cat-stat-divider { width: 1px; height: 28px; background: var(--az-line); }

/* ─── SUBCATEGORIES ─── */
.aze-cat-subs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.aze-cat-sub {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: #fff; border: 1px solid var(--az-line); border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--az-black);
  text-decoration: none; transition: all 220ms ease;
}
.aze-cat-sub:hover { border-color: rgba(20, 20, 20, 0.3); transform: translateY(-1px); }
.aze-cat-sub.is-active { background: var(--az-black); border-color: var(--az-black); color: #fff; }
.aze-cat-sub-count {
  font-size: 11px; font-weight: 600; color: var(--az-steel);
  background: rgba(20, 20, 20, 0.06); padding: 2px 7px; border-radius: 999px;
}
.aze-cat-sub.is-active .aze-cat-sub-count { background: rgba(255, 255, 255, 0.16); color: #fff; }

/* ═════ TWO-COLUMN LAYOUT ═════ */
.aze-cat-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 36px;
}
.aze-cat-main { min-width: 0; }

/* ─── FILTER SIDEBAR ─── */
.aze-cat-filter {
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: 10px;
  padding: 0;
  position: sticky;
  top: 24px;
  align-self: start;
  overflow: hidden;
}
.aze-cat-filter-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--az-cream);
  border-bottom: 1px solid var(--az-line);
  position: relative;
}
.aze-cat-filter-head::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--az-red);
}
.aze-cat-filter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  color: var(--az-black);
}
.aze-cat-filter-icon svg { width: 18px; height: 18px; }
.aze-cat-filter-head h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--az-black);
}
.aze-cat-filter-group {
  padding: 18px 20px;
  border-bottom: 1px solid var(--az-line);
}
.aze-cat-filter-group:last-of-type { border-bottom: none; }
.aze-cat-filter-title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--az-black);
}

/* Color list */
.aze-cat-filter-colors {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aze-cat-filter-color {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--az-black);
  transition: color 180ms ease;
}
.aze-cat-filter-color:hover { color: var(--az-red); }
.aze-cat-filter-color input { display: none; }
.aze-cat-filter-color-swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(20, 20, 20, 0.12);
  transition: all 200ms ease;
  flex-shrink: 0;
  position: relative;
}
.aze-cat-filter-color input:checked + .aze-cat-filter-color-swatch {
  border-color: var(--az-red);
  box-shadow: 0 0 0 2px #fff inset, 0 0 0 1px rgba(20, 20, 20, 0.06) inset;
}
.aze-cat-filter-color-name { flex: 1; font-weight: 500; letter-spacing: -0.005em; }
.aze-cat-filter-color-count {
  font-size: 11px;
  color: var(--az-steel);
  letter-spacing: 0;
  font-weight: 500;
}
.aze-cat-filter-color input:checked ~ .aze-cat-filter-color-name { font-weight: 600; }

/* Option buttons — pill-shape, outline štýl (odlíšené od konfigurátora v karte) */
.aze-cat-filter-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.aze-cat-filter-opt {
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid rgba(20, 20, 20, 0.12);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 500;
  color: var(--az-khaki);
  cursor: pointer;
  transition: all 180ms ease;
  font-family: inherit;
  letter-spacing: 0;
  line-height: 1.2;
  position: relative;
}
.aze-cat-filter-opt:hover {
  border-color: rgba(20, 20, 20, 0.4);
  color: var(--az-black);
}
.aze-cat-filter-opt.is-active {
  background: rgba(240, 78, 35, 0.06);
  color: var(--az-red);
  border-color: var(--az-red);
  font-weight: 600;
}
.aze-cat-filter-opt.is-active::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--az-red);
  margin-right: 7px;
  vertical-align: middle;
  margin-top: -1px;
}

/* Range slider */
.aze-cat-filter-range { padding: 4px 8px 0; }
.aze-cat-filter-range-track {
  position: relative;
  height: 4px;
  background: var(--az-cream);
  border-radius: 2px;
  margin-bottom: 14px;
}
.aze-cat-filter-range-fill {
  position: absolute;
  left: 12%; right: 28%;
  top: 0; bottom: 0;
  background: var(--az-red);
  border-radius: 2px;
}
.aze-cat-filter-range-handle {
  position: absolute;
  top: 50%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--az-red);
  transform: translate(-50%, -50%);
  cursor: grab;
  box-shadow: 0 2px 6px rgba(20, 20, 20, 0.15);
}
.aze-cat-filter-range-handle--min { left: 12%; }
.aze-cat-filter-range-handle--max { left: 72%; }
.aze-cat-filter-range-vals {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--az-steel);
}
.aze-cat-filter-range-vals strong { color: var(--az-black); font-weight: 700; }

/* Checkboxes */
.aze-cat-filter-check {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0;
  font-size: 13px;
  cursor: pointer;
  color: var(--az-black);
}
.aze-cat-filter-check input { display: none; }
.aze-cat-filter-check-box {
  width: 16px; height: 16px;
  border: 1.5px solid rgba(20, 20, 20, 0.25);
  border-radius: 3px;
  background: #fff;
  position: relative;
  transition: all 200ms ease;
  flex-shrink: 0;
}
.aze-cat-filter-check input:checked + .aze-cat-filter-check-box {
  background: var(--az-red);
  border-color: var(--az-red);
}
.aze-cat-filter-check input:checked + .aze-cat-filter-check-box::after {
  content: '';
  position: absolute;
  left: 4px; top: 0;
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Apply / Reset */
.aze-cat-filter-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 40px);
  margin: 4px 20px 8px;
  padding: 12px;
  background: var(--az-black);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
  font-family: inherit;
}
.aze-cat-filter-apply:hover { background: var(--az-red); transform: translateY(-1px); }
.aze-cat-filter-apply span {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.18);
  padding: 2px 8px;
  border-radius: 999px;
}
.aze-cat-filter-reset {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 18px;
  padding: 0;
  background: none;
  border: none;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--az-steel);
  cursor: pointer;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-family: inherit;
  transition: color 200ms ease;
}
.aze-cat-filter-reset:hover { color: var(--az-red); }

/* ─── PER-PRODUCT CONFIGURATOR ─── */
.aze-cat-prod-config {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--az-line);
  border-bottom: 1px solid var(--az-line);
  margin: 4px 0;
}
.aze-cat-prod-config-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aze-cat-prod-config-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--az-khaki);
  letter-spacing: 0.04em;
}
.aze-cat-prod-config-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.aze-cat-prod-config-opt {
  padding: 6px 10px;
  background: var(--az-cream);
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--az-black);
  cursor: pointer;
  transition: all 180ms ease;
  font-family: inherit;
  letter-spacing: 0;
  line-height: 1.2;
}
.aze-cat-prod-config-opt:hover {
  background: #fff;
  border-color: rgba(20, 20, 20, 0.18);
}
.aze-cat-prod-config-opt.is-active {
  background: var(--az-red);
  color: #fff;
  border-color: var(--az-red);
  font-weight: 600;
}
.aze-cat-prod-config-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.aze-cat-prod-config-swatch {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease;
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.08);
}
.aze-cat-prod-config-swatch:hover { transform: scale(1.08); }
.aze-cat-prod-config-swatch.is-active {
  border-color: var(--az-red);
  box-shadow: 0 0 0 2px #fff inset, 0 0 0 1px rgba(20, 20, 20, 0.08) inset;
}
.aze-cat-prod-config-swatch.is-active::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 2px;
  background: inherit;
}

/* TOOLBAR */
.aze-cat-bar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; padding: 14px 18px;
  background: #fff; border: 1px solid var(--az-line); border-radius: 10px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.aze-cat-bar-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; flex: 1; }
.aze-cat-bar-right { display: flex; align-items: center; gap: 14px; }
.aze-cat-result { font-size: 13px; color: var(--az-steel); }
.aze-cat-result strong { color: var(--az-black); font-weight: 600; }

.aze-cat-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.aze-cat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px 6px 12px;
  background: var(--az-cream); border: 1px solid var(--az-line);
  border-radius: 6px; font-size: 12px; font-weight: 500; color: var(--az-black);
}
.aze-cat-chip button {
  background: none; border: none; color: var(--az-steel);
  font-size: 16px; line-height: 1; cursor: pointer; padding: 0;
  transition: color 200ms ease;
}
.aze-cat-chip button:hover { color: var(--az-red); }

.aze-cat-sort { display: inline-flex; align-items: center; gap: 8px; }
.aze-cat-sort label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--az-steel);
}
.aze-cat-sort select {
  padding: 8px 30px 8px 12px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23141414' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center / 14px;
  border: 1px solid var(--az-line); border-radius: 6px;
  font-size: 13px; font-weight: 500; color: var(--az-black);
  cursor: pointer; appearance: none; -webkit-appearance: none;
  font-family: inherit;
}

.aze-cat-view {
  display: inline-flex;
  border: 1px solid var(--az-line);
  border-radius: 6px; overflow: hidden;
}
.aze-cat-view button {
  width: 36px; height: 36px;
  background: #fff; border: none; color: var(--az-steel);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 200ms ease; padding: 0;
}
.aze-cat-view button:hover { background: var(--az-cream); color: var(--az-black); }
.aze-cat-view button.is-active { background: var(--az-black); color: #fff; }
.aze-cat-view button svg { width: 14px; height: 14px; }

/* GRID — auto-fill využíva celú šírku */
.aze-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.aze-cat-prod {
  position: relative;
  background: #fff; border: 1px solid var(--az-line); border-radius: 10px;
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
  display: flex; flex-direction: column;
}
.aze-cat-prod:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(20, 20, 20, 0.08);
  border-color: rgba(20, 20, 20, 0.14);
}
.aze-cat-prod-img {
  position: relative; display: block;
  aspect-ratio: 1 / 1; background: var(--az-cream); overflow: hidden;
}
.aze-cat-prod-img > a,
.aze-cat-prod-img figure,
.aze-cat-prod-img picture {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.aze-cat-prod-img img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.aze-cat-prod:hover .aze-cat-prod-img img { transform: scale(1.05); }

.aze-cat-prod-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 10px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 4px; color: #fff;
}
.aze-cat-prod-badge--sale { background: var(--az-red); }
.aze-cat-prod-badge--new  { background: var(--az-black); }
.aze-cat-prod-badge--top  { background: #34A853; }

.aze-cat-prod-fav {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--az-black); cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 200ms ease;
  opacity: 0; transform: translateY(-4px);
}
.aze-cat-prod:hover .aze-cat-prod-fav { opacity: 1; transform: translateY(0); }
.aze-cat-prod-fav:hover { background: var(--az-red); color: #fff; }
.aze-cat-prod-fav svg { width: 16px; height: 16px; }

.aze-cat-prod-info {
  padding: 16px 16px 18px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.aze-cat-prod-cat {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--az-red);
}
.aze-cat-prod-name { font-size: 14px; font-weight: 600; line-height: 1.35; margin: 0; flex: 1; }
.aze-cat-prod-name a {
  color: var(--az-black); text-decoration: none; transition: color 200ms ease;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.aze-cat-prod-name a:hover { color: var(--az-red); }
.aze-cat-prod-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.aze-cat-prod-stars { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; }
.aze-cat-prod-stars svg { width: 12px; height: 12px; color: #f59e0b; }
.aze-cat-prod-stars strong { color: var(--az-black); font-weight: 600; }
.aze-cat-prod-stars em { color: var(--az-steel); font-size: 11px; }
.aze-cat-prod-stock {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: #34A853; font-weight: 500;
}
.aze-cat-prod-stock-dot { width: 6px; height: 6px; border-radius: 50%; background: #34A853; }
.aze-cat-prod-stock--low { color: #f59e0b; }
.aze-cat-prod-stock--low .aze-cat-prod-stock-dot { background: #f59e0b; }

.aze-cat-prod-price { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.aze-cat-prod-price-old { font-size: 13px; color: var(--az-steel); text-decoration: line-through; }
.aze-cat-prod-price-new { font-size: 18px; font-weight: 700; color: var(--az-red); letter-spacing: -0.02em; }
.aze-cat-prod-price-unit { font-size: 11px; color: var(--az-steel); }

.aze-cat-prod-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; width: 100%; margin-top: 6px;
  padding: 11px 14px;
  background: transparent; color: var(--az-black);
  border: 1.5px solid var(--az-line); border-radius: 6px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 200ms ease;
  font-family: inherit;
}
.aze-cat-prod-cta:hover {
  background: var(--az-black); color: #fff; border-color: var(--az-black);
}
.aze-cat-prod-cta svg { width: 14px; height: 14px; }

/* PAGINATION */
.aze-cat-pager { display: flex; align-items: center; justify-content: center; gap: 4px; }
.aze-cat-pager-page,
.aze-cat-pager-btn {
  min-width: 38px; height: 38px;
  background: #fff; border: 1px solid var(--az-line); border-radius: 6px;
  font-size: 13px; font-weight: 500; color: var(--az-black);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  padding: 0 10px; transition: all 200ms ease;
  font-family: inherit;
}
.aze-cat-pager-page:hover,
.aze-cat-pager-btn:hover:not(:disabled) {
  border-color: rgba(20, 20, 20, 0.3); background: var(--az-cream);
}
.aze-cat-pager-page.is-active { background: var(--az-red); border-color: var(--az-red); color: #fff; }
.aze-cat-pager-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.aze-cat-pager-btn svg { width: 16px; height: 16px; }
.aze-cat-pager-dots { font-size: 13px; color: var(--az-steel); padding: 0 4px; }

/* ─── ACCESSORIES (Zubehör strip) ─── */
.aze-cat-acc {
  margin-bottom: 28px;
  padding: 28px 0 0;
  border-top: 1px solid var(--az-line);
}
.aze-cat-acc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.aze-cat-acc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 11px 4px 10px;
  background: rgba(240, 78, 35, 0.08);
  color: var(--az-red);
  border: 1px solid rgba(240, 78, 35, 0.18);
  border-radius: 999px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 12px;
}
.aze-cat-acc-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--az-red);
  animation: azAccPulse 1.6s ease-in-out infinite;
}
@keyframes azAccPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 78, 35, 0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(240, 78, 35, 0); }
}
.aze-cat-acc-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--az-black);
}
.aze-cat-acc-title span { color: var(--az-red); }
.aze-cat-acc-sub {
  font-size: 13.5px;
  color: var(--az-khaki);
  margin: 0;
  max-width: 540px;
  line-height: 1.5;
}
.aze-cat-acc-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  color: var(--az-black);
  border: 1.5px solid var(--az-line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 200ms ease;
}
.aze-cat-acc-all:hover {
  background: var(--az-black);
  color: #fff;
  border-color: var(--az-black);
}
.aze-cat-acc-all svg { width: 14px; height: 14px; }

.aze-cat-acc-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.aze-cat-acc-card {
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.aze-cat-acc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(20, 20, 20, 0.07);
  border-color: rgba(20, 20, 20, 0.14);
}
.aze-cat-acc-img {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--az-cream);
  overflow: hidden;
}
.aze-cat-acc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.aze-cat-acc-card:hover .aze-cat-acc-img img { transform: scale(1.04); }
.aze-cat-acc-badge {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 2;
  padding: 3px 8px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  background: #34A853;
  color: #fff;
}
.aze-cat-acc-badge--sale { background: var(--az-red); }
.aze-cat-acc-badge--new  { background: var(--az-black); }

.aze-cat-acc-info {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aze-cat-acc-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.005em;
}
.aze-cat-acc-name a {
  color: var(--az-black);
  text-decoration: none;
  transition: color 180ms ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.aze-cat-acc-name a:hover { color: var(--az-red); }
.aze-cat-acc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.aze-cat-acc-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--az-red);
  letter-spacing: -0.02em;
}
.aze-cat-acc-add {
  width: 32px; height: 32px;
  background: var(--az-cream);
  border: 1px solid var(--az-line);
  border-radius: 6px;
  color: var(--az-black);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
  padding: 0;
}
.aze-cat-acc-add:hover {
  background: var(--az-red);
  border-color: var(--az-red);
  color: #fff;
  transform: scale(1.05);
}
.aze-cat-acc-add svg { width: 14px; height: 14px; }

/* ─── KONFIGURATOR BANNER — viac výrazný, čisté farby ─── */
.aze-cat-cfg {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 26px;
  padding: 28px 32px;
  margin-bottom: 36px;
  background: #141414;
  border: 1px solid rgba(240, 78, 35, 0.22);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 18px 48px -16px rgba(240, 78, 35, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.18);
}

/* Hex mesh pattern overlay */
.aze-cat-cfg-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* Top-left corner badge */
.aze-cat-cfg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px 5px 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.aze-cat-cfg-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--az-red);
  box-shadow: 0 0 0 0 rgba(240, 78, 35, 0.6);
  animation: azCfgPulse 1.6s ease-in-out infinite;
}
@keyframes azCfgPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 78, 35, 0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(240, 78, 35, 0); }
}

.aze-cat-cfg-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: var(--az-red);
  border-radius: 12px;
  color: #fff;
  flex-shrink: 0;
  box-shadow:
    0 0 0 4px rgba(240, 78, 35, 0.16),
    0 8px 22px rgba(240, 78, 35, 0.4);
  transition: transform 350ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.aze-cat-cfg:hover .aze-cat-cfg-icon {
  transform: rotate(-6deg) scale(1.05);
}
.aze-cat-cfg-icon svg { width: 26px; height: 26px; }

.aze-cat-cfg-text {
  min-width: 0;
  position: relative;
  z-index: 2;
}
.aze-cat-cfg-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: #fff;
}
.aze-cat-cfg-title span {
  color: var(--az-red);
  position: relative;
  white-space: nowrap;
}
.aze-cat-cfg-title span::after {
  content: '';
  position: absolute;
  left: 0; bottom: 1px;
  width: 100%; height: 6px;
  background: rgba(240, 78, 35, 0.22);
  border-radius: 3px;
  z-index: -1;
}
.aze-cat-cfg-sub {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.aze-cat-cfg-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 2;
}
.aze-cat-cfg-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  white-space: nowrap;
}
.aze-cat-cfg-meta-item strong {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.aze-cat-cfg-meta-item svg {
  width: 14px; height: 14px;
  color: #f59e0b;
}
.aze-cat-cfg-meta-divider { display: none; }

/* CTA — solid terracotta, výrazná veľkosť a glow */
.aze-cat-cfg-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  background: var(--az-red);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
  transition: background 220ms ease, transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 240ms ease;
  box-shadow:
    0 10px 26px rgba(240, 78, 35, 0.5),
    0 4px 10px rgba(240, 78, 35, 0.28);
}
.aze-cat-cfg-cta-glow { display: none; }
.aze-cat-cfg-cta-text {
  position: relative;
  z-index: 1;
}
.aze-cat-cfg-cta:hover {
  background: var(--az-red2);
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 16px 36px rgba(119, 32, 8, 0.55),
    0 6px 14px rgba(119, 32, 8, 0.35);
}
.aze-cat-cfg-cta svg {
  width: 18px; height: 18px;
  position: relative;
  z-index: 1;
  transition: transform 220ms ease;
}
.aze-cat-cfg-cta:hover svg { transform: translateX(5px); }

/* ─── INFO CARDS ─── */
.aze-cat-info {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding: 24px;
  background: var(--az-cream); border-radius: 12px;
  margin-bottom: 36px;
}
.aze-cat-info-card { display: flex; align-items: center; gap: 14px; }
.aze-cat-info-icon {
  flex: 0 0 44px; width: 44px; height: 44px;
  background: #fff; border: 1px solid var(--az-line); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--az-red);
}
.aze-cat-info-icon svg { width: 20px; height: 20px; }
.aze-cat-info-text { display: flex; flex-direction: column; gap: 2px; }
.aze-cat-info-text strong {
  font-size: 13.5px; font-weight: 600; color: var(--az-black); letter-spacing: -0.005em;
}
.aze-cat-info-text span { font-size: 11.5px; color: var(--az-steel); }

/* ─── SEO ─── */
.aze-cat-seo { max-width: 880px; padding: 28px 0 0; border-top: 1px solid var(--az-line); }
.aze-cat-seo h2 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.015em;
  color: var(--az-black); margin: 0 0 14px;
}
.aze-cat-seo p { font-size: 14px; line-height: 1.7; color: var(--az-khaki); margin: 0 0 12px; }

/* ═════ RESPONSIVE ═════ */
@media (max-width: 1100px) {
  .aze-cat-info { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .aze-cat-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .aze-cat-filter {
    position: static;
    top: auto;
  }
}

@media (max-width: 980px) {
  .aze-cat-cfg {
    grid-template-columns: auto 1fr;
    gap: 16px 18px;
    padding: 20px 22px;
  }
  .aze-cat-cfg-meta {
    grid-column: 1 / -1;
    padding: 12px 0 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 4px;
  }
  .aze-cat-cfg-cta {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .aze-cat { padding: 18px 18px 36px; }
  .aze-cat-head { grid-template-columns: 1fr; align-items: stretch; gap: 18px; }
  .aze-cat-head-stats { align-self: flex-start; gap: 14px; padding: 12px 16px; }
  .aze-cat-stat strong { font-size: 18px; }
  .aze-cat-bar { padding: 12px 14px; }
  .aze-cat-bar-right { flex: 1; justify-content: flex-end; }
  .aze-cat-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
  .aze-cat-prod-info { padding: 14px; }
  .aze-cat-prod-name { font-size: 13.5px; }
  .aze-cat-prod-price-new { font-size: 16px; }

  .aze-cat-acc-head { gap: 16px; }
  .aze-cat-acc-track { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .aze-cat-acc-info { padding: 10px 10px 12px; gap: 8px; }
  .aze-cat-acc-name { font-size: 12.5px; }
  .aze-cat-acc-price { font-size: 14px; }

  .aze-cat-cfg-title { font-size: 16px; }
  .aze-cat-cfg-sub { font-size: 12.5px; }
  .aze-cat-cfg-icon { width: 44px; height: 44px; }
  .aze-cat-cfg-icon svg { width: 20px; height: 20px; }
}

@media (max-width: 540px) {
  .aze-cat-title { font-size: 28px; }
  .aze-cat-head-stats { width: 100%; justify-content: space-between; }
  .aze-cat-bar { flex-direction: column; align-items: stretch; }
  .aze-cat-bar-left, .aze-cat-bar-right { width: 100%; }
  .aze-cat-bar-right { justify-content: space-between; }
  .aze-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .aze-cat-prod-cta { font-size: 11px; padding: 10px 12px; }
  .aze-cat-info { grid-template-columns: 1fr; }
  .aze-cat-pager-page,
  .aze-cat-pager-btn { min-width: 34px; height: 34px; font-size: 12px; }
  .aze-cat-prod-config { gap: 8px; padding: 10px 0; }
  .aze-cat-prod-config-opt { padding: 5px 9px; font-size: 11px; }
  .aze-cat-prod-config-swatch { width: 22px; height: 22px; }
}

/* ─── Empty state ─── */
.aze-cat-empty {
  padding: 48px 32px;
  text-align: center;
  background: #fff;
  border: 1px dashed rgba(20,20,20,.18);
  border-radius: 10px;
  font-size: 14px;
  color: #9c9c95;
  font-family: 'Instrument Sans', system-ui, sans-serif;
}

/* Single-column variant when sidebar is hidden */
.aze-cat-layout.is-no-sidebar { grid-template-columns: 1fr !important; }

/* WooCommerce price formatting fix */
.aze-cat-prod-price .woocommerce-Price-amount { font-weight: inherit; color: inherit; }
.aze-cat-prod-price-old .woocommerce-Price-amount { color: #9c9c95; }
.aze-cat-prod-price-new .woocommerce-Price-amount { color: #f04e23; }
.aze-cat-acc-price .woocommerce-Price-amount { color: #f04e23; }

/* Filter chips link */
.aze-cat-chip a { color: #9c9c95; text-decoration: none; font-size: 14px; }
.aze-cat-chip a:hover { color: #f04e23; }

/* Filter form submit button */
.aze-cat-filter-form .aze-cat-filter-apply { width: 100%; margin: 16px 0 8px; }
.aze-cat-filter-form .aze-cat-filter-reset { display: block; width: 100%; text-align: center; }


/* ─── List view ─── */
.aze-cat-prod--list {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    align-items: stretch;
}
.aze-cat-prod--list .aze-cat-prod-img {
    aspect-ratio: 1 / 1;
    width: 200px;
    height: 100%;
}
.aze-cat-prod--list .aze-cat-prod-info {
    padding: 18px 20px;
}

/* ─── Color swatch checked state ─── */
.aze-cat-filter-color.is-checked .aze-cat-filter-color-swatch,
.aze-cat-filter-color input[type="checkbox"]:checked + .aze-cat-filter-color-swatch {
    border-color: #f04e23 !important;
    box-shadow: 0 0 0 2px #fff inset, 0 0 0 1px rgba(20, 20, 20, 0.06) inset !important;
}
.aze-cat-filter-color.is-checked .aze-cat-filter-color-name,
.aze-cat-filter-color input[type="checkbox"]:checked ~ .aze-cat-filter-color-name {
    font-weight: 700;
    color: #f04e23;
}

/* ─── CTA disabled / added states ─── */
.aze-cat-prod-cta.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}
.aze-cat-prod-cta.aze-added {
    background: #34A853 !important;
    color: #fff !important;
    border-color: #34A853 !important;
}

/* ─── Out of stock indicator ─── */
.aze-cat-prod-stock--out { color: #9c9c95; }
.aze-cat-prod-stock--out .aze-cat-prod-stock-dot { background: #9c9c95; }

/* ─── Mobile list view fallback ─── */
@media (max-width: 540px) {
    .aze-cat-prod--list {
        grid-template-columns: 1fr;
    }
    .aze-cat-prod--list .aze-cat-prod-img {
        width: 100%;
    }
}

/* ─── Range slider — interactive handles ─── */
.aze-cat-filter-range-handle {
    background: #fff !important;
    border: 2px solid #f04e23 !important;
    cursor: grab !important;
    padding: 0 !important;
    appearance: none;
    -webkit-appearance: none;
}
.aze-cat-filter-range-handle:active {
    cursor: grabbing !important;
    transform: translate(-50%, -50%) scale(1.15) !important;
}
.aze-cat-filter-range-handle:hover {
    box-shadow: 0 0 0 6px rgba(240, 78, 35, 0.12), 0 2px 6px rgba(20, 20, 20, 0.15) !important;
}
.aze-cat-filter-range {
    padding: 6px 8px 0 !important;
}
.aze-cat-filter-range-track {
    position: relative;
    height: 4px;
    background: rgba(20, 20, 20, 0.08);
    border-radius: 2px;
    margin-bottom: 18px;
}
.aze-cat-filter-range-fill {
    position: absolute;
    top: 0; bottom: 0;
    background: #f04e23;
    border-radius: 2px;
    transition: none !important;
}

/* ─── FIX: skryť natívne checkboxy (theme override) ─── */
.aze-cat-filter-color > input[type="checkbox"],
.aze-cat-filter-check > input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ─── COLOR SWATCH — match 2. screenshot (terracotta ring outside) ─── */
.aze-cat-filter-colors {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.aze-cat-filter-color {
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 8px 4px;
    cursor: pointer;
    color: #141414;
    font-size: 14px;
    font-weight: 500;
    transition: color 200ms ease;
    position: relative;
}
.aze-cat-filter-color:hover { color: #f04e23; }

.aze-cat-filter-color-swatch {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.1);
    transition: box-shadow 220ms ease, transform 220ms ease;
}
.aze-cat-filter-color.is-checked .aze-cat-filter-color-swatch,
.aze-cat-filter-color > input[type="checkbox"]:checked ~ .aze-cat-filter-color-swatch {
    box-shadow:
        inset 0 0 0 2px #fff,
        inset 0 0 0 3px rgba(20, 20, 20, 0.06),
        0 0 0 2px #f04e23 !important;
    border-color: transparent !important;
}

.aze-cat-filter-color-name {
    flex: 1;
    color: inherit;
    font-weight: 500;
}
.aze-cat-filter-color.is-checked .aze-cat-filter-color-name,
.aze-cat-filter-color > input[type="checkbox"]:checked ~ .aze-cat-filter-color-name {
    font-weight: 700;
    color: #141414;
}

.aze-cat-filter-color-count {
    font-size: 12px;
    color: #9c9c95;
    font-weight: 500;
    letter-spacing: 0;
}

/* ─── VERFÜGBARKEIT checkbox — pekný custom box ─── */
.aze-cat-filter-check {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    cursor: pointer;
    color: #141414;
    font-size: 13.5px;
    position: relative;
}
.aze-cat-filter-check-box {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid rgba(20, 20, 20, 0.25);
    background: #fff;
    position: relative;
    transition: all 200ms ease;
}
.aze-cat-filter-check.is-checked .aze-cat-filter-check-box,
.aze-cat-filter-check > input[type="checkbox"]:checked ~ .aze-cat-filter-check-box {
    background: #f04e23 !important;
    border-color: #f04e23 !important;
}
.aze-cat-filter-check.is-checked .aze-cat-filter-check-box::after,
.aze-cat-filter-check > input[type="checkbox"]:checked ~ .aze-cat-filter-check-box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ─── PRICE FILTER — min/max number inputs ─── */
.aze-cat-filter-price { padding: 4px 0 0; }
.aze-cat-filter-price-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}
.aze-cat-filter-price-input {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid rgba(20, 20, 20, 0.18);
    border-radius: 6px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    overflow: hidden;
}
.aze-cat-filter-price-input:focus-within {
    border-color: #f04e23;
    box-shadow: 0 0 0 3px rgba(240, 78, 35, 0.12);
}
.aze-cat-filter-price-prefix {
    padding: 0 4px 0 10px;
    color: #9c9c95;
    font-size: 13px;
    font-weight: 600;
    pointer-events: none;
}
.aze-cat-filter-price-input input[type="number"] {
    flex: 1;
    width: 100%;
    min-width: 0;
    padding: 8px 10px 8px 4px;
    border: none !important;
    background: transparent !important;
    font-size: 13px;
    font-weight: 500;
    color: #141414;
    font-family: 'Instrument Sans', system-ui, sans-serif;
    outline: none !important;
    box-shadow: none !important;
    -moz-appearance: textfield;
    appearance: textfield;
}
.aze-cat-filter-price-input input::-webkit-outer-spin-button,
.aze-cat-filter-price-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.aze-cat-filter-price-sep {
    color: #9c9c95;
    font-size: 14px;
    align-self: center;
}
.aze-cat-filter-price-hint {
    margin: 8px 2px 0;
    font-size: 11px;
    color: #9c9c95;
    letter-spacing: 0.02em;
}

/* ─── CTA BUTTON — force solid orange, override theme .button ─── */
.aze-cat-prod .aze-cat-prod-cta,
a.aze-cat-prod-cta,
.aze-cat-prod-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 13px 18px !important;
    margin: 8px 0 0 !important;
    background: #f04e23 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'Instrument Sans', system-ui, sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    border: none !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(240, 78, 35, 0.22) !important;
    cursor: pointer !important;
    transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease !important;
    text-align: center !important;
    min-height: 0 !important;
    height: auto !important;
    outline: none !important;
}
.aze-cat-prod .aze-cat-prod-cta:hover,
.aze-cat-prod-cta:hover,
.aze-cat-prod-cta:focus {
    background: #772008 !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 18px rgba(119, 32, 8, 0.32) !important;
}
.aze-cat-prod-cta svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0;
    color: #fff !important;
    stroke: #fff !important;
}
.aze-cat-prod-cta span {
    color: inherit !important;
}
.aze-cat-prod-cta.added,
.aze-cat-prod-cta.aze-added {
    background: #34A853 !important;
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.32) !important;
}
.aze-cat-prod-cta.loading::after {
    display: none !important;
}

/* ─── FIX: Filter Apply / Reset — kompaktnejšie + centrovanie ─── */
.aze-cat-filter .aze-cat-filter-apply,
button.aze-cat-filter-apply {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 14px 0 8px !important;
    padding: 10px 16px !important;
    background: #141414 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-family: 'Instrument Sans', system-ui, sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: background 200ms ease, transform 200ms ease !important;
    min-height: 0 !important;
    height: auto !important;
    text-shadow: none !important;
    box-shadow: none !important;
}
.aze-cat-filter .aze-cat-filter-apply:hover,
button.aze-cat-filter-apply:hover {
    background: #f04e23 !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
}

.aze-cat-filter .aze-cat-filter-reset,
a.aze-cat-filter-reset {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 0 4px !important;
    padding: 6px 0 !important;
    background: none !important;
    border: none !important;
    font-family: 'Instrument Sans', system-ui, sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 500 !important;
    color: #9c9c95 !important;
    text-align: center !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 3px !important;
    cursor: pointer !important;
    transition: color 200ms ease !important;
    letter-spacing: 0.02em !important;
}
.aze-cat-filter .aze-cat-filter-reset:hover,
a.aze-cat-filter-reset:hover {
    color: #f04e23 !important;
}

/* ─── FIX: Apply button — kompaktnejšie, nie full-width ─── */
.aze-cat-filter-form,
.aze-cat-filter form {
    text-align: center;
}
.aze-cat-filter .aze-cat-filter-apply,
button.aze-cat-filter-apply {
    display: inline-flex !important;
    width: auto !important;
    max-width: 70% !important;
    margin: 14px auto 8px !important;
    padding: 9px 22px !important;
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
}

/* ─── Filter head ako tlačidlo (mobile toggle) ─── */
button.aze-cat-filter-head {
    display: flex !important;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: var(--az-cream, #f6f5f2) !important;
    border: none !important;
    border-bottom: 1px solid rgba(20, 20, 20, 0.08) !important;
    padding: 16px 20px !important;
    cursor: pointer;
    text-align: left;
    font-family: 'Instrument Sans', system-ui, sans-serif !important;
    color: #141414 !important;
    position: relative;
}
button.aze-cat-filter-head::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px;
    background: #f04e23;
}
.aze-cat-filter-count {
    margin-left: 6px;
    padding: 2px 8px;
    background: #f04e23;
    color: #fff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
}
.aze-cat-filter-chev {
    margin-left: auto;
    color: #141414;
    transition: transform 240ms ease;
    display: none;
}
.aze-cat-filter-chev svg { width: 18px; height: 18px; }

.aze-cat-filter-body {
    overflow: hidden;
    transition: max-height 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* DESKTOP — vždy otvorené */
@media (min-width: 1025px) {
    .aze-cat-filter[data-collapsed="1"] .aze-cat-filter-body,
    .aze-cat-filter[data-collapsed="0"] .aze-cat-filter-body {
        max-height: none;
    }
    button.aze-cat-filter-head { cursor: default; }
    .aze-cat-filter-chev { display: none; }
}

/* MOBILE — collapse/expand */
@media (max-width: 1024px) {
    .aze-cat-filter-chev { display: inline-flex; }
    .aze-cat-filter[data-collapsed="1"] .aze-cat-filter-body {
        max-height: 0;
    }
    .aze-cat-filter[data-collapsed="0"] .aze-cat-filter-body {
        max-height: 3000px;
    }
    .aze-cat-filter[data-collapsed="0"] .aze-cat-filter-chev {
        transform: rotate(180deg);
    }
    button.aze-cat-filter-head:hover {
        background: #ede9e0 !important;
    }
}

/* ─── FIX: Sort dropdown — padding + arrow position ─── */
.aze-cat-sort {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}
.aze-cat-sort label {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #9c9c95 !important;
    white-space: nowrap;
}
.aze-cat-sort select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding: 9px 36px 9px 14px !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23141414' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 12px 12px !important;
    border: 1px solid rgba(20, 20, 20, 0.15) !important;
    border-radius: 6px !important;
    font-family: 'Instrument Sans', system-ui, sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #141414 !important;
    line-height: 1.2 !important;
    cursor: pointer !important;
    min-width: 140px;
    height: auto !important;
    box-shadow: none !important;
    text-shadow: none !important;
}
.aze-cat-sort select:hover {
    border-color: rgba(20, 20, 20, 0.3) !important;
}
.aze-cat-sort select:focus {
    outline: none !important;
    border-color: #f04e23 !important;
    box-shadow: 0 0 0 2px rgba(240, 78, 35, 0.12) !important;
}

/* ─── FIX: View toggle — softer hover/active ─── */
.aze-cat-view {
    display: inline-flex !important;
    border: 1px solid rgba(20, 20, 20, 0.12) !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    background: #fff;
}
.aze-cat-view a,
.aze-cat-view button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    background: #fff !important;
    border: none !important;
    color: #9c9c95 !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: background 200ms ease, color 200ms ease !important;
    text-decoration: none !important;
}
.aze-cat-view a:hover,
.aze-cat-view button:hover {
    background: rgba(240, 78, 35, 0.06) !important;
    color: #141414 !important;
}
.aze-cat-view a.is-active,
.aze-cat-view button.is-active {
    background: rgba(240, 78, 35, 0.1) !important;
    color: #f04e23 !important;
}
.aze-cat-view svg {
    width: 14px !important;
    height: 14px !important;
}

/* ─── FIX: list view — grid switches to single column ─── */
.aze-cat-grid.aze-cat-grid--list {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
}

.aze-cat-grid--list .aze-cat-prod,
.aze-cat-grid--list .aze-cat-prod--list {
    display: grid !important;
    grid-template-columns: 220px 1fr !important;
    gap: 0 !important;
    align-items: stretch !important;
}

.aze-cat-grid--list .aze-cat-prod-img {
    aspect-ratio: 1 / 1 !important;
    width: 220px !important;
    height: 100% !important;
}

.aze-cat-grid--list .aze-cat-prod-info {
    padding: 22px 26px !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
}

.aze-cat-grid--list .aze-cat-prod-name {
    font-size: 16px !important;
    -webkit-line-clamp: 2 !important;
}

/* Konfigurátor v list view — môže byť širší */
.aze-cat-grid--list .aze-cat-prod-config {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
}
.aze-cat-grid--list .aze-cat-prod-config-group {
    min-width: 120px;
}

.aze-cat-grid--list .aze-cat-prod-cta {
    align-self: flex-start;
    width: auto !important;
    min-width: 220px;
}

@media (max-width: 640px) {
    .aze-cat-grid--list .aze-cat-prod,
    .aze-cat-grid--list .aze-cat-prod--list {
        grid-template-columns: 1fr !important;
    }
    .aze-cat-grid--list .aze-cat-prod-img {
        width: 100% !important;
        aspect-ratio: 16 / 10 !important;
    }
    .aze-cat-grid--list .aze-cat-prod-cta {
        width: 100% !important;
    }
}

/* ─── FIX: list view image — white bg, stretch to full height ─── */
.aze-cat-grid--list .aze-cat-prod {
    background: #fff !important;
}
.aze-cat-grid--list .aze-cat-prod-img {
    aspect-ratio: auto !important;
    width: 220px !important;
    height: 100% !important;
    min-height: 100% !important;
    background: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    border-right: 1px solid rgba(20, 20, 20, 0.06);
}
.aze-cat-grid--list .aze-cat-prod-img img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}
.aze-cat-grid--list .aze-cat-prod:hover .aze-cat-prod-img img {
    transform: scale(1.02) !important;
}

/* ─── PRODUCT ACTIONS (wishlist + compare) — top-right stack ─── */
.aze-cat-prod-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 220ms ease, transform 220ms ease;
}
.aze-cat-prod:hover .aze-cat-prod-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Wishlist + Compare + Manual buttons share visual */
.aze-cat-prod-fav,
.aze-cat-prod-cmp,
.aze-cat-prod-manual,
.aze-cat-prod-fav > a,
.aze-cat-prod-cmp > a,
.aze-cat-prod-fav .yith-wcwl-add-to-wishlist,
.aze-cat-prod-fav .yith-wcwl-add-button > a,
.aze-cat-prod-fav .yith-wcwl-wishlistexistsbrowse > a,
.aze-cat-prod-fav .yith-wcwl-wishlistaddedbrowse > a {
    width: 34px !important;
    height: 34px !important;
    background: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #141414 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 200ms ease !important;
    text-decoration: none !important;
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
    font-size: 0 !important;
    line-height: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
}
.aze-cat-prod-fav:hover,
.aze-cat-prod-cmp:hover,
.aze-cat-prod-manual:hover,
.aze-cat-prod-fav > a:hover,
.aze-cat-prod-cmp > a:hover {
    background: #f04e23 !important;
    color: #fff !important;
}
.aze-cat-prod-fav svg,
.aze-cat-prod-cmp svg,
.aze-cat-prod-manual svg {
    width: 16px !important;
    height: 16px !important;
    color: inherit !important;
    stroke: currentColor !important;
}

/* YITH/Etheme plugins may wrap content in their own divs */
.aze-cat-prod-fav .yith-wcwl-add-to-wishlist {
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    height: 100% !important;
}
.aze-cat-prod-fav .yith-wcwl-add-to-wishlist::before,
.aze-cat-prod-fav .yith-wcwl-add-to-wishlist::after {
    display: none !important;
}

/* ─── PRICE TAX SUFFIX ─── */
.aze-cat-prod-price-tax {
    display: inline-block;
    margin-left: 6px;
    font-size: 10.5px;
    font-weight: 500;
    color: #9c9c95;
    letter-spacing: 0.02em;
    line-height: 1;
    vertical-align: middle;
}

/* ─── FIX: wishlist + compare správna pozícia v obrázku ─── */
.aze-cat-prod-media {
    position: relative !important;
}

/* Actions teraz absolútne v media kontajneri */
.aze-cat-prod .aze-cat-prod-actions {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 5 !important;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 220ms ease, transform 220ms ease;
}
.aze-cat-prod:hover .aze-cat-prod-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Wishlist + compare — kruh, XStore et-icon vnútri */
.aze-cat-prod-actions > a,
.aze-cat-prod-actions > div > a,
.aze-cat-prod-actions .add_to_wishlist,
.aze-cat-prod-actions .add_to_compare,
.aze-cat-prod-actions .aze-cat-prod-fav,
.aze-cat-prod-actions .aze-cat-prod-cmp {
    width: 34px !important;
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    color: #141414 !important;
    border: 1px solid rgba(20, 20, 20, 0.08) !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(20, 20, 20, 0.12) !important;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0 !important;
    line-height: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    opacity: 1 !important;
}
.aze-cat-prod-actions > a:hover,
.aze-cat-prod-actions > div > a:hover,
.aze-cat-prod-actions .add_to_wishlist:hover,
.aze-cat-prod-actions .add_to_compare:hover {
    background: #f04e23 !important;
    color: #fff !important;
    transform: scale(1.05) !important;
    border-color: #f04e23 !important;
}

/* XStore et-icon — správna veľkosť */
.aze-cat-prod-actions .et-icon {
    font-size: 16px !important;
    line-height: 1 !important;
    color: inherit !important;
}
.aze-cat-prod-actions svg {
    width: 16px !important;
    height: 16px !important;
    color: inherit !important;
    stroke: currentColor !important;
}
.aze-cat-prod-actions .screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Added state — heart filled */
.aze-cat-prod-actions .add_to_wishlist.added,
.aze-cat-prod-actions .et-add-to-wishlist.added,
.aze-cat-prod-actions a.added {
    background: #f04e23 !important;
    color: #fff !important;
    border-color: #f04e23 !important;
}
.aze-cat-prod-actions .add_to_wishlist.added .et-icon::before {
    /* Filled heart fallback */
    content: '\f06a';
}

/* When wishlist is loading */
.aze-cat-prod-actions .add_to_wishlist.loading {
    opacity: 0.6;
}

/* ─── FIX: action buttons — border-radius 9px + viditeľné SVG ikony ─── */
.aze-cat-prod-actions > a,
.aze-cat-prod-actions > div > a,
.aze-cat-prod-actions .add_to_wishlist,
.aze-cat-prod-actions .add_to_compare,
.aze-cat-prod-actions .aze-cat-prod-fav,
.aze-cat-prod-actions .aze-cat-prod-cmp {
    border-radius: 9px !important;
}

.aze-cat-prod-actions svg.aze-icon-heart,
.aze-cat-prod-actions svg.aze-icon-cmp,
.aze-cat-prod-actions a > svg {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    color: currentColor !important;
    stroke: currentColor !important;
    fill: none !important;
    flex-shrink: 0;
}

/* Skry XStore et-icon span — používame vlastné SVG */
.aze-cat-prod-actions .et-icon {
    display: none !important;
}

/* Added state — heart full terracotta */
.aze-cat-prod-actions a.added,
.aze-cat-prod-actions .add_to_wishlist.added,
.aze-cat-prod-actions .et-add-to-wishlist.added {
    background: #f04e23 !important;
    color: #fff !important;
    border-color: #f04e23 !important;
}
.aze-cat-prod-actions a.added svg {
    fill: currentColor !important;
}

/* ─── WISHLIST — filled heart state ─── */
/* POZN: NEPOUŽÍVAME `.added` triedu — XStore JS ju aplikuje aj keď produkt vo wishliste nie je.
   Vlastná `.aze-fav-on` trieda je riadená naším PHP `is_in_wishlist()` a XStore o nej nevie. */
.aze-cat-prod-actions .aze-wishlist-btn.aze-fav-on,
.aze-cat-prod-actions a.aze-wishlist-btn.aze-fav-on {
    background: #f04e23 !important;
    color: #fff !important;
    border-color: #f04e23 !important;
}
.aze-cat-prod-actions .aze-wishlist-btn.aze-fav-on svg {
    fill: currentColor !important;
    stroke: currentColor !important;
}
.aze-cat-prod-actions .aze-wishlist-btn.aze-fav-on:hover {
    background: #772008 !important;
    border-color: #772008 !important;
}
/* RESET: ak XStore JS náhodou pridá `.added` na tlačidlo, ignoruj ho — nevyfarbi srdce */
.aze-cat-prod-actions .aze-wishlist-btn.added:not(.aze-fav-on),
.aze-cat-prod-actions a.aze-wishlist-btn.added:not(.aze-fav-on) {
    background: transparent !important;
    color: inherit !important;
    border-color: rgba(20, 20, 20, 0.12) !important;
}
.aze-cat-prod-actions .aze-wishlist-btn.added:not(.aze-fav-on) svg {
    fill: none !important;
    stroke: currentColor !important;
}
.aze-cat-prod-actions .aze-wishlist-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}
.aze-cat-prod-actions .aze-wishlist-btn.loading svg {
    animation: aze-heart-pulse 0.6s ease-in-out infinite;
}
@keyframes aze-heart-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(0.85); }
}

/* ─── Toast notification (wishlist add/remove) ─── */
.aze-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 380px;
    padding: 14px 18px;
    background: #fff;
    color: #141414;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-left: 4px solid #34A853;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(20, 20, 20, 0.14), 0 4px 12px rgba(20, 20, 20, 0.06);
    font-family: 'Instrument Sans', system-ui, sans-serif;
    font-size: 13.5px;
    line-height: 1.4;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 220ms ease;
}
.aze-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
}
.aze-toast--remove {
    border-left-color: #f04e23;
}
.aze-toast svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #34A853;
}
.aze-toast--remove svg { color: #f04e23; }
.aze-toast span {
    flex: 1;
    font-weight: 500;
    color: #141414;
}
.aze-toast-link {
    display: inline-block;
    padding: 4px 0 4px 0;
    color: #f04e23;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-bottom: 1px solid currentColor;
    flex-shrink: 0;
    white-space: nowrap;
}
.aze-toast-link:hover {
    color: #772008;
}

@media (max-width: 540px) {
    .aze-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 12px 14px;
        font-size: 12.5px;
    }
}

/* ─── XStore native wishlist/compare classes — filled state ─── */
.aze-cat-prod-actions .xstore-wishlist[data-action="remove"],
.aze-cat-prod-actions .xstore-wishlist.added,
.aze-cat-prod-actions a.xstore-wishlist[data-action="remove"],
.aze-cat-prod-actions a.xstore-wishlist.added {
    background: #f04e23 !important;
    color: #fff !important;
    border-color: #f04e23 !important;
}
.aze-cat-prod-actions .xstore-wishlist[data-action="remove"] .et-icon,
.aze-cat-prod-actions .xstore-wishlist.added .et-icon {
    color: #fff !important;
}
.aze-cat-prod-actions .xstore-wishlist:hover[data-action="remove"],
.aze-cat-prod-actions .xstore-wishlist.added:hover {
    background: #772008 !important;
    border-color: #772008 !important;
}

/* XStore et-icon font icons size in our buttons */
.aze-cat-prod-actions .et-icon {
    font-size: 15px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: currentColor !important;
}

/* Skry default screen-reader text */
.aze-cat-prod-actions .screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ─── FIX: viditeľnosť SVG ikon v actions (XStore et-icon font nie je v plugin kontexte) ─── */
.aze-cat-prod-actions .aze-wishlist-btn .aze-icon-heart,
.aze-cat-prod-actions .aze-compare-btn .aze-icon-cmp {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    color: currentColor !important;
    stroke: currentColor !important;
    flex-shrink: 0;
}

/* Empty heart visible by default (data-action="add") */
.aze-cat-prod-actions .aze-wishlist-btn[data-action="add"] .aze-icon-heart--outline,
.aze-cat-prod-actions .aze-wishlist-btn:not(.added):not([data-action="remove"]) .aze-icon-heart--outline {
    display: block !important;
}
.aze-cat-prod-actions .aze-wishlist-btn[data-action="add"] .aze-icon-heart--filled,
.aze-cat-prod-actions .aze-wishlist-btn:not(.added):not([data-action="remove"]) .aze-icon-heart--filled {
    display: none !important;
}

/* Filled heart when in wishlist (data-action="remove" or .added) */
.aze-cat-prod-actions .aze-wishlist-btn[data-action="remove"] .aze-icon-heart--outline,
.aze-cat-prod-actions .aze-wishlist-btn.added .aze-icon-heart--outline {
    display: none !important;
}
.aze-cat-prod-actions .aze-wishlist-btn[data-action="remove"] .aze-icon-heart--filled,
.aze-cat-prod-actions .aze-wishlist-btn.added .aze-icon-heart--filled {
    display: block !important;
}

/* Filled state — terracotta background + biele srdce */
.aze-cat-prod-actions .aze-wishlist-btn[data-action="remove"],
.aze-cat-prod-actions .aze-wishlist-btn.added {
    background: #f04e23 !important;
    color: #fff !important;
    border-color: #f04e23 !important;
}
.aze-cat-prod-actions .aze-wishlist-btn[data-action="remove"]:hover,
.aze-cat-prod-actions .aze-wishlist-btn.added:hover {
    background: #772008 !important;
    border-color: #772008 !important;
}

/* Loading state */
.aze-cat-prod-actions .aze-wishlist-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}
.aze-cat-prod-actions .aze-wishlist-btn.loading svg {
    animation: aze-heart-pulse 0.6s ease-in-out infinite;
}

/* ─── Skry XStore et-icon font ikony v actions (sú tam len kvôli XStore JS detekcii) ─── */
.aze-cat-prod-actions .et-icon,
.aze-cat-prod-actions .xstore-wishlist .et-icon,
.aze-cat-prod-actions .xstore-compare .et-icon,
.aze-cat-prod-actions a > .et-icon,
.aze-cat-prod-actions a > i.et-icon,
.aze-cat-prod-actions a > span.et-icon {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
}

/* ─── FIX: "inkl. MwSt." bližšie k cene ─── */
.aze-cat-prod-price-tax {
    margin-left: -2px !important;
    padding-left: 6px;
    font-size: 10px !important;
    color: #9c9c95 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    align-self: baseline;
}

/* ─── FIX: "inkl. MwSt." ešte tesnejšie pri cene ─── */
.aze-cat-prod-price { gap: 4px !important; }
.aze-cat-prod-price .aze-cat-prod-price-tax {
    margin-left: -2px !important;
    padding-left: 2px !important;
}

/* ─── FIX: po pridaní do košíka iba krátka animácia, nie trvalá zelená farba ─── */
.aze-cat-prod-cta.added,
.aze-cat-prod-cta.aze-added,
a.aze-cat-prod-cta.added {
    background: #f04e23 !important;
    color: #fff !important;
    border-color: #f04e23 !important;
    box-shadow: 0 4px 12px rgba(240, 78, 35, 0.22) !important;
    animation: aze-cta-flash 1.4s ease-out !important;
}
@keyframes aze-cta-flash {
    0%   { background: #34A853 !important; box-shadow: 0 4px 18px rgba(52, 168, 83, 0.45) !important; }
    25%  { background: #34A853 !important; box-shadow: 0 4px 18px rgba(52, 168, 83, 0.45) !important; }
    100% { background: #f04e23 !important; box-shadow: 0 4px 12px rgba(240, 78, 35, 0.22) !important; }
}

/* ─── PRODUCT CARD QUANTITY + CART ROW ─── */
.aze-cat-prod-cart-row {
    display: flex !important;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    margin-top: 6px;
}
.aze-cat-prod-cart-row .aze-cat-prod-cta {
    margin: 0 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
}
.aze-cat-prod-qty {
    display: inline-flex !important;
    align-items: stretch !important;
    border: 1.5px solid rgba(20, 20, 20, 0.14) !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    background: #fff !important;
    flex-shrink: 0 !important;
    height: auto !important;
    min-width: 92px !important;
    box-sizing: border-box;
}
.aze-cat-prod-qty-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    background: transparent !important;
    border: none !important;
    color: #141414 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Instrument Sans', system-ui, sans-serif !important;
    box-shadow: none !important;
    flex-shrink: 0 !important;
    transition: background 180ms ease, color 180ms ease !important;
}
.aze-cat-prod-qty-btn:hover {
    background: #141414 !important;
    color: #fff !important;
}
.aze-cat-prod-qty-input {
    flex: 1 1 36px !important;
    width: 36px !important;
    min-width: 0 !important;
    background: transparent !important;
    border: none !important;
    border-left: 1px solid rgba(20, 20, 20, 0.08) !important;
    border-right: 1px solid rgba(20, 20, 20, 0.08) !important;
    border-radius: 0 !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #141414 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Instrument Sans', system-ui, sans-serif !important;
    outline: none !important;
    box-shadow: none !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}
.aze-cat-prod-qty-input::-webkit-outer-spin-button,
.aze-cat-prod-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

@media (max-width: 480px) {
    .aze-cat-prod-cart-row {
        flex-direction: column;
        gap: 6px;
    }
    .aze-cat-prod-qty {
        width: 100%;
        justify-content: space-between;
    }
    .aze-cat-prod-qty-input { flex: 1 !important; }
}

/* ─── FIX: Quantity row — menšia výška a zladené s cart buttonom ─── */
.aze-cat-prod-cart-row {
    align-items: stretch !important;
    gap: 6px !important;
}
.aze-cat-prod-cart-row .aze-cat-prod-cta {
    padding: 10px 14px !important;
    font-size: 11.5px !important;
    letter-spacing: 0.1em !important;
    height: 40px !important;
    min-height: 40px !important;
    line-height: 1 !important;
    align-items: center !important;
}
.aze-cat-prod-cart-row .aze-cat-prod-qty {
    height: 40px !important;
    min-height: 40px !important;
    min-width: 86px !important;
    border-width: 1px !important;
}
.aze-cat-prod-cart-row .aze-cat-prod-qty-btn {
    width: 26px !important;
    height: 100% !important;
    font-size: 14px !important;
}
.aze-cat-prod-cart-row .aze-cat-prod-qty-input {
    flex: 1 1 30px !important;
    width: 30px !important;
    height: 100% !important;
    font-size: 12.5px !important;
}
.aze-cat-prod-cart-row .aze-cat-prod-cta svg {
    width: 13px !important;
    height: 13px !important;
}

/* ─── CTA variants podľa stock status ─── */

/* Onbackorder — outline orange button (info štýl, nie cart) */
.aze-cat-prod-cta--info,
a.aze-cat-prod-cta--info {
    background: #fff !important;
    color: #f04e23 !important;
    border: 1.5px solid #f04e23 !important;
    box-shadow: none !important;
}
.aze-cat-prod-cta--info:hover {
    background: #f04e23 !important;
    color: #fff !important;
    border-color: #f04e23 !important;
    box-shadow: 0 4px 12px rgba(240, 78, 35, 0.22) !important;
}
.aze-cat-prod-cta--info svg {
    color: currentColor !important;
    stroke: currentColor !important;
}

/* Variable — outline čierny button (vedie na detail) */
.aze-cat-prod-cta--variable,
a.aze-cat-prod-cta--variable {
    background: #fff !important;
    color: #141414 !important;
    border: 1.5px solid #141414 !important;
    box-shadow: none !important;
}
.aze-cat-prod-cta--variable:hover {
    background: #141414 !important;
    color: #fff !important;
}

/* Out of stock — sivý disabled */
.aze-cat-prod-cta--disabled,
a.aze-cat-prod-cta--disabled {
    background: rgba(156, 156, 149, 0.12) !important;
    color: #9c9c95 !important;
    border: 1.5px solid rgba(156, 156, 149, 0.3) !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}
.aze-cat-prod-cta--disabled svg {
    color: #9c9c95 !important;
    stroke: #9c9c95 !important;
}

/* ─── FIX: max-width 1650px (zarovnané so stránkou) ─── */
.az-cat,
.aze-cat {
    max-width: 1650px !important;
    margin: 0 auto !important;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM SALES BADGES — Alpenzaun style
   Stack systém: až 2 badges nad sebou v ľavom hornom rohu karty
   ═══════════════════════════════════════════════════════════ */
.aze-badge-stack {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    pointer-events: none;
}
.aze-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px 6px 9px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.18),
        0 1px 0 rgba(255, 255, 255, 0.18) inset;
    /* DÔLEŽITÉ: nešmeklim sa keď som v stiesnenom flex parente (napr. admin label).
       Bez toho sa "GRATIS VERSAND" oreže pri overflow:hidden. */
    flex-shrink: 0;
    flex-grow: 0;
    width: auto;
    max-width: none;
}
.aze-badge:hover { transform: translateY(-1px) scale(1.03); }
.aze-badge svg { flex-shrink: 0; }
.aze-badge-text { white-space: nowrap; position: relative; z-index: 1; }

/* Sheen efekt — jemný horizontálny lesk */
.aze-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        transparent 0%,
        transparent 38%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 62%,
        transparent 100%);
    background-size: 200% 100%;
    background-position: 200% 0;
    animation: aze-badge-sheen 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes aze-badge-sheen {
    0%   { background-position: 200% 0; }
    60%  { background-position: -100% 0; }
    100% { background-position: -100% 0; }
}

/* ── SALE — terracotta pulse ── */
.aze-badge--sale {
    background: linear-gradient(135deg, #f04e23 0%, #d63d13 100%);
    color: #fff;
    box-shadow:
        0 4px 14px rgba(240, 78, 35, 0.45),
        0 0 0 0 rgba(240, 78, 35, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    animation: aze-badge-sheen 4s ease-in-out infinite, aze-badge-pulse-sale 2s ease-in-out infinite;
    font-weight: 900;
    letter-spacing: 0.04em;
}
@keyframes aze-badge-pulse-sale {
    0%, 100% { box-shadow: 0 4px 14px rgba(240, 78, 35, 0.45), 0 0 0 0 rgba(240, 78, 35, 0.55), 0 1px 0 rgba(255, 255, 255, 0.2) inset; }
    50%      { box-shadow: 0 6px 18px rgba(240, 78, 35, 0.55), 0 0 0 8px rgba(240, 78, 35, 0), 0 1px 0 rgba(255, 255, 255, 0.2) inset; }
}

/* ── NEU — black with terracotta accent ── */
.aze-badge--neu {
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    color: #fff;
}
.aze-badge--neu svg { color: #f04e23; }

/* ── BESTSELLER — gold gradient ── */
.aze-badge--bestseller {
    background: linear-gradient(135deg, #e8b923 0%, #c89610 100%);
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
.aze-badge--bestseller svg { color: #fff; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2)); }

/* ── TOP — deep navy ── */
.aze-badge--top {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e2a5e 100%);
    color: #fff;
}
.aze-badge--top svg { color: #f04e23; }

/* ── LIMITIERT — rich purple ── */
.aze-badge--limitiert {
    background: linear-gradient(135deg, #6b21a8 0%, #4c1485 100%);
    color: #fff;
}
.aze-badge--limitiert svg { color: #fde047; }

/* ── AKTION — bright yellow with black text ── */
.aze-badge--aktion {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #141414;
    text-shadow: none;
}
.aze-badge--aktion svg { color: #141414; }

/* ── EMPFOHLEN — green gradient ── */
.aze-badge--empfohlen {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff;
}

/* ── GRATIS VERSAND — clean white with terracotta border ── */
.aze-badge--kostenlos_versand {
    background: rgba(255, 255, 255, 0.96);
    color: #141414;
    border: 1.5px solid #f04e23;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.aze-badge--kostenlos_versand svg { color: #f04e23; }

/* Compact mobile */
@media (max-width: 640px) {
    .aze-badge-stack { top: 10px; left: 10px; gap: 4px; }
    .aze-badge { padding: 5px 9px 5px 7px; font-size: 9.5px; }
    .aze-badge svg { width: 9px; height: 9px; }
}

/* List view (catalog --list mode) */
.aze-cat-prod--list .aze-badge-stack { top: 12px; left: 12px; }

/* ═══════════════════════════════════════════════════════════
   PREMIUM ROSETTE BADGES — black octagonal s terracotta akcentom
   Cyber-Monday inspired, Alpenzaun farby (#141414 + #f04e23)
   ═══════════════════════════════════════════════════════════ */
.aze-badge--rosette {
    /* Reset pill defaults — žiadne pozadie, žiadny box-shadow, žiadna border */
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible;
    width: 78px;
    height: 78px;
    flex-shrink: 0;
    flex-grow: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Tighter, jemnejší shadow — nepôsobí ako halo */
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
    animation: none;
}
.aze-badge--rosette::before {
    /* Clean symetrická 12-bodová rosette (24 vrcholov, vypočítané goniometricky) */
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path fill='%23141414' d='M50 0L60.87 9.43L75 6.70L79.70 20.30L93.30 25L90.57 39.13L100 50L90.57 60.87L93.30 75L79.70 79.70L75 93.30L60.87 90.57L50 100L39.13 90.57L25 93.30L20.30 79.70L6.70 75L9.43 60.87L0 50L9.43 39.13L6.70 25L20.30 20.30L25 6.70L39.13 9.43Z'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}
.aze-badge-rosette-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    line-height: 1;
    padding: 6px;
    width: 100%;
}
.aze-badge-rosette-top {
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 3px;
}
.aze-badge-rosette-main {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #f04e23;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}
.aze-badge-rosette-accent {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: #f04e23;
    padding: 2px 5px;
    border-radius: 2px;
    margin-top: 3px;
    box-shadow: 0 2px 4px rgba(240, 78, 35, 0.4);
}

/* Per-typ úprava — varianty s rôznymi akcentmi */
.aze-badge--sale_premium .aze-badge-rosette-main { color: #f04e23; }
.aze-badge--bestseller_premium .aze-badge-rosette-main { color: #ffd147; }
.aze-badge--bestseller_premium .aze-badge-rosette-accent { background: #ffd147; color: #141414; box-shadow: 0 2px 4px rgba(255, 209, 71, 0.4); }
.aze-badge--neu_premium .aze-badge-rosette-main { color: #fff; font-size: 16px; }
.aze-badge--neu_premium .aze-badge-rosette-accent { background: #f04e23; }
.aze-badge--aktion_premium .aze-badge-rosette-main { color: #f04e23; }
.aze-badge--top_premium .aze-badge-rosette-main { color: #fff; }
.aze-badge--top_premium .aze-badge-rosette-accent { background: #f04e23; }

/* Hover lift */
.aze-badge--rosette:hover { transform: translateY(-2px) rotate(-3deg); }

/* Mobile scale */
@media (max-width: 640px) {
    .aze-badge--rosette { width: 64px; height: 64px; }
    .aze-badge-rosette-top { font-size: 6.5px; }
    .aze-badge-rosette-main { font-size: 14px; }
    .aze-badge-rosette-accent { font-size: 6px; padding: 1.5px 4px; }
}

/* ═══════════════════════════════════════════════════════════
   HEX BADGES — hexagonálny tvar s ostrými hranami
   Rovnaký text-layout ako rosette (top/main/accent)
   Alpenzaun paleta: #141414 + #f04e23 + #772008 + #3d403a
   ═══════════════════════════════════════════════════════════ */
.aze-badge--hex {
    /* Reset pill defaults */
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible !important;
    animation: none !important;

    /* Rovnaké rozmery ako rosette (78×78) — len iný shape */
    width: 78px;
    height: 78px;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 10px rgba(20, 20, 20, 0.32));
    font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
}

/* Hex SVG background — len čistý čierny šesťuholník BEZ bordera */
.aze-badge--hex::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><polygon points='50,2 95,27 95,73 50,98 5,73 5,27' fill='%23141414'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* Vnútorný stack — texty identické s rosette (rovnaké font sizes a layout) */
.aze-badge-hex-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    line-height: 1;
    padding: 6px;
    width: 100%;
}
.aze-badge-hex-top {
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 3px;
}
.aze-badge-hex-main {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #f04e23;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}
.aze-badge-hex-accent {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: #f04e23;
    padding: 2px 5px;
    border-radius: 2px;
    margin-top: 3px;
    box-shadow: 0 2px 4px rgba(240, 78, 35, 0.4);
}

/* ── Per-typ farebné varianty (Alpenzaun paleta) ── */
.aze-badge--sale_hex .aze-badge-hex-main { color: #f04e23; }
.aze-badge--bestseller_hex .aze-badge-hex-main { color: #fff; font-size: 16px; }
.aze-badge--bestseller_hex .aze-badge-hex-accent { background: #772008; box-shadow: 0 2px 4px rgba(119, 32, 8, 0.4); }
.aze-badge--neu_hex .aze-badge-hex-main { color: #fff; font-size: 16px; }
.aze-badge--neu_hex .aze-badge-hex-accent { background: #f04e23; }
.aze-badge--aktion_hex .aze-badge-hex-main { color: #f04e23; }
.aze-badge--top_hex .aze-badge-hex-main { color: #fff; font-size: 16px; }
.aze-badge--top_hex .aze-badge-hex-accent { background: #3d403a; box-shadow: 0 2px 4px rgba(61, 64, 58, 0.4); }

/* Hover */
.aze-badge--hex:hover { transform: translateY(-2px); }

/* Product detail — väčší (rovnaký pomer ako rosette) */
.aze-badge-stack--pd .aze-badge--hex { width: 96px; height: 96px; }
.aze-badge-stack--pd .aze-badge-hex-top { font-size: 9px; }
.aze-badge-stack--pd .aze-badge-hex-main { font-size: 21px; }
.aze-badge-stack--pd .aze-badge-hex-accent { font-size: 8px; padding: 3px 6px; }

/* Mobile */
@media (max-width: 640px) {
    .aze-badge--hex { width: 64px; height: 64px; }
    .aze-badge-hex-top { font-size: 6.5px; }
    .aze-badge-hex-main { font-size: 14px; }
    .aze-badge-hex-accent { font-size: 6px; padding: 1.5px 4px; }
}

/* ═══════════════════════════════════════════════════════════
   RIBBON BANNER — vodorovná stuha s odrezanými koncami
   ═══════════════════════════════════════════════════════════ */
.aze-badge--ribbon {
    padding: 8px 22px !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, #f04e23 0%, #d63d13 100%) !important;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(240, 78, 35, 0.35), 0 1px 0 rgba(255,255,255,0.18) inset !important;
    /* Trojuholníkové strihy na koncoch */
    clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%, 8% 50%);
    position: relative;
}
.aze-badge--ribbon .aze-badge-ribbon-text { position: relative; z-index: 1; }
.aze-badge--bestprice_ribbon {
    background: linear-gradient(135deg, #141414 0%, #2a2a2a 100%) !important;
    box-shadow: 0 6px 14px rgba(20,20,20,0.35), 0 1px 0 rgba(255,255,255,0.12) inset !important;
}
.aze-badge--hotdeal_ribbon {
    background: linear-gradient(135deg, #ffd147 0%, #e8b923 100%) !important;
    color: #141414;
    box-shadow: 0 6px 14px rgba(232, 185, 35, 0.4), 0 1px 0 rgba(255,255,255,0.4) inset !important;
}

/* ═══════════════════════════════════════════════════════════
   PRICE TAG — visačka s dierou
   ═══════════════════════════════════════════════════════════ */
.aze-badge--tag {
    padding: 8px 14px 8px 28px !important;
    border-radius: 0 6px 6px 0 !important;
    background: linear-gradient(135deg, #f04e23 0%, #d63d13 100%) !important;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(240, 78, 35, 0.32) !important;
    /* Tag shape — ľavá strana má ostrý uhol */
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 12% 100%, 0 50%);
    overflow: visible !important;
    position: relative;
    min-width: 66px;
    text-align: left;
}
.aze-badge-tag-hole {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.18) inset;
    z-index: 2;
}
.aze-badge-tag-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
    position: relative;
    z-index: 1;
}
.aze-badge-tag-top {
    font-size: 9px;
    font-weight: 800;
    opacity: 0.8;
    letter-spacing: 0.06em;
}
.aze-badge-tag-main {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
}
.aze-badge--free_tag {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    box-shadow: 0 6px 14px rgba(22, 163, 74, 0.32) !important;
}
.aze-badge--aktion_tag {
    background: linear-gradient(135deg, #141414 0%, #2a2a2a 100%) !important;
    box-shadow: 0 6px 14px rgba(20,20,20,0.32) !important;
}
.aze-badge--aktion_tag .aze-badge-tag-top { color: #f04e23; opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   CORNER FLAG — diagonálna stuha cez roh produktu
   ═══════════════════════════════════════════════════════════ */
.aze-badge-corner {
    position: absolute;
    top: 16px;
    left: -38px;
    width: 140px;
    transform: rotate(-38deg);
    background: linear-gradient(135deg, #f04e23 0%, #d63d13 100%);
    color: #fff;
    text-align: center;
    padding: 6px 0;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(240, 78, 35, 0.32);
    z-index: 3;
    pointer-events: auto;
    /* Force flat — not part of stack */
    margin: 0;
    flex-shrink: 0;
}
.aze-badge-corner--neu_corner {
    background: linear-gradient(135deg, #141414 0%, #2a2a2a 100%);
    box-shadow: 0 4px 12px rgba(20,20,20,0.32);
}
.aze-badge-corner--top_corner {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e2a5e 100%);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.32);
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT DETAIL — väčšie badges (1.3× scale)
   ═══════════════════════════════════════════════════════════ */
.aze-badge-stack--pd {
    top: 18px;
    left: 18px;
    gap: 8px;
    z-index: 5;
}
.aze-badge-stack--pd .aze-badge {
    font-size: 12px;
    padding: 8px 14px 8px 12px;
}
.aze-badge-stack--pd .aze-badge svg { width: 13px; height: 13px; }
.aze-badge-stack--pd .aze-badge--rosette { width: 96px; height: 96px; }
.aze-badge-stack--pd .aze-badge-rosette-top { font-size: 9px; }
.aze-badge-stack--pd .aze-badge-rosette-main { font-size: 21px; }
.aze-badge-stack--pd .aze-badge-rosette-accent { font-size: 8px; padding: 3px 6px; }
.aze-badge-stack--pd .aze-badge--ribbon { font-size: 13px; padding: 10px 28px !important; }
.aze-badge-stack--pd .aze-badge--tag { padding: 10px 18px 10px 34px !important; }
.aze-badge-stack--pd .aze-badge-tag-main { font-size: 15px; }
.aze-badge-stack--pd .aze-badge-tag-top { font-size: 10px; }

/* Product detail gallery musí mať position:relative aby badges plávali správne */
.aze-pd-gallery { position: relative; }

/* ═══════════════════════════════════════════════════════════
   TROPHY BADGE — kompaktná veľkosť (~50% menšia)
   STRIKTNE Alpenzaun paleta: #141414 (Black), #f04e23 (Terracotta),
   #772008 (Dark Red), #3d403a (Khaki), white, #a8a8a0 (Steel).
   Font: Instrument Sans
   ═══════════════════════════════════════════════════════════ */
.aze-badge--trophy {
    /* Reset všetkých pill defaults */
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible !important;
    animation: none !important;

    /* Zmenšené ~50% — kompaktný badge na karte */
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(20, 20, 20, 0.32));
    font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
}

/* SVG background — STRIKTNE Alpenzaun paleta:
   #141414 (Black), #f04e23 (Terracotta), #772008 (Dark Red),
   #3d403a (Khaki), bielo/cierno alpha overlays. Žiadne iné farby. */
.aze-badge--trophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500' preserveAspectRatio='xMidYMid meet'><defs><linearGradient id='bg' x1='0' y1='60' x2='0' y2='440' gradientUnits='userSpaceOnUse'><stop offset='0%25' stop-color='%23232323'/><stop offset='52%25' stop-color='%23141414'/><stop offset='100%25' stop-color='%230a0a0a'/></linearGradient><linearGradient id='ter' x1='60' y1='0' x2='440' y2='0' gradientUnits='userSpaceOnUse'><stop offset='0%25' stop-color='%23772008'/><stop offset='45%25' stop-color='%23f04e23'/><stop offset='100%25' stop-color='%23772008'/></linearGradient><linearGradient id='brd' x1='90' y1='75' x2='410' y2='425' gradientUnits='userSpaceOnUse'><stop offset='0%25' stop-color='%23f04e23'/><stop offset='100%25' stop-color='%23772008'/></linearGradient></defs><polygon points='250,45 427,147.5 427,352.5 250,455 73,352.5 73,147.5' fill='url(%23bg)' stroke='url(%23brd)' stroke-width='12' stroke-linejoin='miter'/><polygon points='250,75 401,162.5 401,337.5 250,425 99,337.5 99,162.5' fill='none' stroke='%23f04e23' stroke-width='4' stroke-linejoin='miter' opacity='0.9'/><polygon points='250,95 384,172.5 384,327.5 250,405 116,327.5 116,172.5' fill='none' stroke='%233d403a' stroke-width='3' stroke-linejoin='miter' opacity='0.85'/><path d='M250 75 L401 162.5 L384 172.5 L250 95 L116 172.5 L99 162.5 Z' fill='%23ffffff' opacity='0.05'/><polygon points='34,181 95,181 95,283 34,283 64,232' fill='%23772008'/><polygon points='466,181 405,181 405,283 466,283 436,232' fill='%23772008'/><polygon points='68,174 432,174 410,226 432,278 68,278 90,226' fill='url(%23ter)'/><path d='M90 184 H410' stroke='%23ffffff' stroke-width='3' opacity='0.28'/><path d='M90 268 H410' stroke='%23000000' stroke-width='3' opacity='0.32'/><polygon points='68,174 126,174 108,197 58,197' fill='%23ffffff' opacity='0.15'/><polygon points='432,278 374,278 392,255 442,255' fill='%23000000' opacity='0.22'/><line x1='172' y1='128' x2='210' y2='128' stroke='%23f04e23' stroke-width='4' stroke-linecap='square'/><line x1='290' y1='128' x2='328' y2='128' stroke='%23f04e23' stroke-width='4' stroke-linecap='square'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

/* ─── TEXT OVERLAY (HTML) — Instrument Sans, pozície 1:1 s user SVG ───
   Všetky pozície sú PERCENT z 500×500 viewboxu pre verné mapovanie. */

/* "BEST" — top, biele bold */
.aze-badge-trophy-top {
    position: absolute;
    top: 23%;
    left: 0; right: 0;
    text-align: center;
    color: #ffffff;
    font-size: 6.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    z-index: 3;
    text-transform: uppercase;
    text-shadow: 0 1px 1px rgba(20, 20, 20, 0.4);
}

/* RIBBON wrapper — pozicuje text PRODUCT do stredu angular ribbon */
.aze-badge-trophy-ribbon {
    position: absolute;
    top: 38%;
    left: 0; right: 0;
    height: 22%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background: none;
    box-shadow: none;
    clip-path: none;
}
.aze-badge-trophy-ribbon::before,
.aze-badge-trophy-ribbon::after { display: none; }

/* "PRODUCT" — v ribbon, čierna #141414 na terracotta gradiente */
.aze-badge-trophy-main {
    color: #141414;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* "PREMIUM" — pod ribbonom, biele bold */
.aze-badge-trophy-sub {
    position: absolute;
    top: 60%;
    left: 0; right: 0;
    text-align: center;
    color: #ffffff;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
    z-index: 3;
    text-shadow: 0 1px 1px rgba(20, 20, 20, 0.4);
}

/* "#1" — kompaktne */
.aze-badge-trophy-bottom {
    position: absolute;
    top: 71%;
    left: 0; right: 0;
    text-align: center;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.95;
    z-index: 3;
    background: none !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    white-space: normal;
    text-shadow: 0 1px 2px rgba(20, 20, 20, 0.45);
}
/* "CHOICE" sub — terracotta z palety #f04e23.
   Na malých badgoch (≤90px) je SKRYTÝ aby bol design čistý. */
.aze-badge-trophy-bottom::after {
    content: attr(data-sub);
    display: none; /* default skryté pri kompaktnej veľkosti */
    margin-top: 1px;
    font-size: 4.5px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f04e23;
    text-shadow: none;
}

/* ─── FARBA VARIANTY (rôzne ribbon farby) ─── */
/* BEST/SALE — default terracotta ribbon, riešené v base SVG */

/* TOP variant — khaki ribbon (Alpenzaun #3d403a) namiesto navy */
.aze-badge--top_trophy::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'><defs><linearGradient id='bg' x1='0' y1='60' x2='0' y2='440' gradientUnits='userSpaceOnUse'><stop offset='0%25' stop-color='%23232323'/><stop offset='52%25' stop-color='%23141414'/><stop offset='100%25' stop-color='%230a0a0a'/></linearGradient><linearGradient id='kha' x1='60' y1='0' x2='440' y2='0' gradientUnits='userSpaceOnUse'><stop offset='0%25' stop-color='%23282a26'/><stop offset='45%25' stop-color='%233d403a'/><stop offset='100%25' stop-color='%23282a26'/></linearGradient><linearGradient id='brd' x1='90' y1='75' x2='410' y2='425' gradientUnits='userSpaceOnUse'><stop offset='0%25' stop-color='%23f04e23'/><stop offset='100%25' stop-color='%23772008'/></linearGradient></defs><polygon points='250,45 427,147.5 427,352.5 250,455 73,352.5 73,147.5' fill='url(%23bg)' stroke='url(%23brd)' stroke-width='12' stroke-linejoin='miter'/><polygon points='250,75 401,162.5 401,337.5 250,425 99,337.5 99,162.5' fill='none' stroke='%23f04e23' stroke-width='4' stroke-linejoin='miter' opacity='0.9'/><polygon points='250,95 384,172.5 384,327.5 250,405 116,327.5 116,172.5' fill='none' stroke='%233d403a' stroke-width='3' stroke-linejoin='miter' opacity='0.85'/><path d='M250 75 L401 162.5 L384 172.5 L250 95 L116 172.5 L99 162.5 Z' fill='%23ffffff' opacity='0.05'/><polygon points='34,181 95,181 95,283 34,283 64,232' fill='%23282a26'/><polygon points='466,181 405,181 405,283 466,283 436,232' fill='%23282a26'/><polygon points='68,174 432,174 410,226 432,278 68,278 90,226' fill='url(%23kha)'/><path d='M90 184 H410' stroke='%23ffffff' stroke-width='3' opacity='0.22'/><path d='M90 268 H410' stroke='%23000000' stroke-width='3' opacity='0.35'/><polygon points='68,174 126,174 108,197 58,197' fill='%23ffffff' opacity='0.12'/><polygon points='432,278 374,278 392,255 442,255' fill='%23000000' opacity='0.25'/><line x1='172' y1='128' x2='210' y2='128' stroke='%23f04e23' stroke-width='4' stroke-linecap='square'/><line x1='290' y1='128' x2='328' y2='128' stroke='%23f04e23' stroke-width='4' stroke-linecap='square'/></svg>");
}
.aze-badge--top_trophy .aze-badge-trophy-main { color: #ffffff; text-shadow: 0 1px 1px rgba(0,0,0,0.45); }

/* NEU variant — dark-red ribbon (Alpenzaun #772008) */
.aze-badge--neu_trophy::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'><defs><linearGradient id='bg' x1='0' y1='60' x2='0' y2='440' gradientUnits='userSpaceOnUse'><stop offset='0%25' stop-color='%23232323'/><stop offset='52%25' stop-color='%23141414'/><stop offset='100%25' stop-color='%230a0a0a'/></linearGradient><linearGradient id='dr' x1='60' y1='0' x2='440' y2='0' gradientUnits='userSpaceOnUse'><stop offset='0%25' stop-color='%234a1505'/><stop offset='45%25' stop-color='%23772008'/><stop offset='100%25' stop-color='%234a1505'/></linearGradient><linearGradient id='brd' x1='90' y1='75' x2='410' y2='425' gradientUnits='userSpaceOnUse'><stop offset='0%25' stop-color='%23f04e23'/><stop offset='100%25' stop-color='%23772008'/></linearGradient></defs><polygon points='250,45 427,147.5 427,352.5 250,455 73,352.5 73,147.5' fill='url(%23bg)' stroke='url(%23brd)' stroke-width='12' stroke-linejoin='miter'/><polygon points='250,75 401,162.5 401,337.5 250,425 99,337.5 99,162.5' fill='none' stroke='%23f04e23' stroke-width='4' stroke-linejoin='miter' opacity='0.9'/><polygon points='250,95 384,172.5 384,327.5 250,405 116,327.5 116,172.5' fill='none' stroke='%233d403a' stroke-width='3' stroke-linejoin='miter' opacity='0.85'/><path d='M250 75 L401 162.5 L384 172.5 L250 95 L116 172.5 L99 162.5 Z' fill='%23ffffff' opacity='0.05'/><polygon points='34,181 95,181 95,283 34,283 64,232' fill='%234a1505'/><polygon points='466,181 405,181 405,283 466,283 436,232' fill='%234a1505'/><polygon points='68,174 432,174 410,226 432,278 68,278 90,226' fill='url(%23dr)'/><path d='M90 184 H410' stroke='%23ffffff' stroke-width='3' opacity='0.22'/><path d='M90 268 H410' stroke='%23000000' stroke-width='3' opacity='0.35'/><polygon points='68,174 126,174 108,197 58,197' fill='%23ffffff' opacity='0.12'/><polygon points='432,278 374,278 392,255 442,255' fill='%23000000' opacity='0.25'/><line x1='172' y1='128' x2='210' y2='128' stroke='%23f04e23' stroke-width='4' stroke-linecap='square'/><line x1='290' y1='128' x2='328' y2='128' stroke='%23f04e23' stroke-width='4' stroke-linecap='square'/></svg>");
}
.aze-badge--neu_trophy .aze-badge-trophy-main { color: #ffffff; text-shadow: 0 1px 1px rgba(0,0,0,0.5); }

/* Hover */
.aze-badge--trophy:hover { transform: translateY(-2px); }

/* Product detail — väčší: 110px (vs 80px catalog), CHOICE label visible */
.aze-badge-stack--pd .aze-badge--trophy {
    width: 110px;
    height: 110px;
    filter: drop-shadow(0 6px 12px rgba(20, 20, 20, 0.4));
}
.aze-badge-stack--pd .aze-badge-trophy-top { font-size: 9px; }
.aze-badge-stack--pd .aze-badge-trophy-main { font-size: 14px; }
.aze-badge-stack--pd .aze-badge-trophy-sub { font-size: 8px; }
.aze-badge-stack--pd .aze-badge-trophy-bottom { font-size: 15px; top: 70%; }
.aze-badge-stack--pd .aze-badge-trophy-bottom::after {
    display: block;
    font-size: 6px;
    margin-top: 1px;
}

/* Mobile — ešte menší */
@media (max-width: 640px) {
    .aze-badge--trophy { width: 60px; height: 60px; }
    .aze-badge-trophy-top { font-size: 5px; }
    .aze-badge-trophy-main { font-size: 7.5px; }
    .aze-badge-trophy-sub { font-size: 4.5px; }
    .aze-badge-trophy-bottom { font-size: 8px; }
}

/* ─── REFINED: NEU badge — výraznejší, atraktívnejší (LEGACY — zachované pre kompatibilitu) ─── */
.aze-cat-prod-badge--new {
    background: #141414 !important;
    color: #fff !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 5px 12px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.2em !important;
    border-radius: 4px !important;
    box-shadow:
        0 4px 12px rgba(20, 20, 20, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.15) inset !important;
    animation: aze-neu-pulse 2.4s ease-in-out infinite;
}
.aze-cat-prod-badge--new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 40%,
        rgba(240, 78, 35, 0.5) 50%,
        transparent 60%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: aze-neu-shine 3s ease-in-out infinite;
    pointer-events: none;
}
.aze-cat-prod-badge--new::after {
    content: '✦';
    margin-right: 4px;
    color: #f04e23;
    font-size: 9px;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    display: inline-block;
    animation: aze-neu-star 2.4s ease-in-out infinite;
}

@keyframes aze-neu-pulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(20, 20, 20, 0.35), 0 0 0 0 rgba(240, 78, 35, 0.4), 0 1px 0 rgba(255, 255, 255, 0.15) inset; }
    50%      { box-shadow: 0 6px 16px rgba(20, 20, 20, 0.45), 0 0 0 4px rgba(240, 78, 35, 0), 0 1px 0 rgba(255, 255, 255, 0.15) inset; }
}
@keyframes aze-neu-shine {
    0%   { background-position: 200% 0; }
    50%  { background-position: -100% 0; }
    100% { background-position: -100% 0; }
}
@keyframes aze-neu-star {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50%      { transform: scale(1.25) rotate(180deg); }
}

/* SALE badge tiež menší vylepšenie (subtílne) */
.aze-cat-prod-badge--sale {
    box-shadow: 0 4px 12px rgba(240, 78, 35, 0.35) !important;
}

/* ─── FIX: Catalog full-bleed — escape Elementor narrow container, content max 1650px ─── */
.az-cat,
.aze-cat {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    /* Dynamic padding — content stays max 1650px wide, centered */
    padding-left: max(20px, calc((100vw - 1650px) / 2)) !important;
    padding-right: max(20px, calc((100vw - 1650px) / 2)) !important;
    box-sizing: border-box !important;
}

/* Mobile — minimal padding, normal flow */
@media (max-width: 1024px) {
    .az-cat,
    .aze-cat {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}
@media (max-width: 640px) {
    .az-cat,
    .aze-cat {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   [alpenzaun_shop] — univerzálny shop layout
   ═══════════════════════════════════════════════════════════ */
.aze-shop {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    padding: 36px max(20px, calc((100vw - 1650px) / 2)) 80px !important;
    background: #fafaf8;
    font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif !important;
    color: var(--az-cc-text, #1a1a1a);
    box-sizing: border-box;
}
.aze-shop * { font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif !important; box-sizing: border-box; }

.aze-shop-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}
@media (max-width: 980px) {
    .aze-shop-grid { grid-template-columns: 1fr; }
}

/* ─── SIDEBAR ─── */
.aze-shop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 24px;
}
@media (max-width: 980px) { .aze-shop-sidebar { position: static; } }

.aze-shop-block {
    background: #fff;
    border: 1px solid var(--az-cc-line, rgba(20,20,20,0.08));
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(20,20,20,0.04);
}
.aze-shop-block-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: #141414 !important;
    margin: 0 0 18px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid var(--az-cc-line, rgba(20,20,20,0.08)) !important;
    position: relative;
}
.aze-shop-block-title::before {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 32px; height: 2px;
    background: #f04e23;
}

/* Categories list */
.aze-shop-cats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.aze-shop-cats li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    transition: all 180ms ease;
}
.aze-shop-cats li a:hover {
    background: #f6f5f2;
    color: #f04e23;
}
.aze-shop-cats li.is-active a {
    background: rgba(240,78,35,0.08);
    color: #f04e23;
    font-weight: 700;
}
.aze-shop-cat-count {
    font-size: 11px;
    font-weight: 600;
    color: #6b6b6b;
    background: #f6f5f2;
    padding: 2px 8px;
    border-radius: 100px;
    min-width: 24px;
    text-align: center;
}
.aze-shop-cats li.is-active .aze-shop-cat-count {
    background: #f04e23;
    color: #fff;
}

/* Filters */
.aze-shop-filters { display: flex; flex-direction: column; gap: 16px; }
.aze-shop-filter-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.aze-shop-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.aze-shop-price-row input[type="number"] {
    width: 100% !important;
    height: 40px !important;
    padding: 0 10px !important;
    border: 1.5px solid rgba(20,20,20,0.14) !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    background: #fff !important;
    -moz-appearance: textfield;
}
.aze-shop-price-row input::-webkit-inner-spin-button,
.aze-shop-price-row input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.aze-shop-price-row input:focus {
    outline: none !important;
    border-color: #f04e23 !important;
    box-shadow: 0 0 0 3px rgba(240,78,35,0.12) !important;
}
.aze-shop-price-row span { color: #6b6b6b; font-size: 14px; }
.aze-shop-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
}
.aze-shop-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border: 2px solid rgba(20,20,20,0.2);
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}
.aze-shop-check input[type="checkbox"]:checked {
    background: #f04e23;
    border-color: #f04e23;
}
.aze-shop-check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -70%) rotate(-45deg);
}
.aze-shop-filter-actions { display: flex; gap: 8px; margin-top: 4px; }
.aze-shop-filter-apply {
    flex: 1;
    height: 42px;
    background: #141414;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 180ms ease;
}
.aze-shop-filter-apply:hover { background: #f04e23; }
.aze-shop-filter-reset {
    height: 42px;
    line-height: 42px;
    padding: 0 16px;
    color: #6b6b6b;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}
.aze-shop-filter-reset:hover { color: #f04e23; }

/* ─── MAIN ─── */
.aze-shop-main { min-width: 0; }

.aze-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    background: #fff;
    border: 1px solid var(--az-cc-line, rgba(20,20,20,0.08));
    border-radius: 14px;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(20,20,20,0.04);
}
.aze-shop-count {
    font-size: 14px;
    font-weight: 600;
    color: #141414;
}
.aze-shop-sort-form { display: flex; align-items: center; gap: 10px; }
.aze-shop-sort-form label {
    font-size: 13px;
    color: #6b6b6b;
    font-weight: 500;
}
.aze-shop-sort-form select {
    height: 40px;
    padding: 0 36px 0 14px;
    border: 1.5px solid rgba(20,20,20,0.14);
    border-radius: 8px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23141414' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 13px;
    font-weight: 600;
    color: #141414;
    cursor: pointer;
}
.aze-shop-sort-form select:focus { outline: none; border-color: #f04e23; box-shadow: 0 0 0 3px rgba(240,78,35,0.12); }

/* Grid je reused (.aze-cat-grid) */

/* Pagination */
.aze-shop-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.aze-shop-page {
    min-width: 42px;
    height: 42px;
    line-height: 38px;
    padding: 0 14px;
    text-align: center;
    border: 1.5px solid rgba(20,20,20,0.1);
    border-radius: 10px;
    background: #fff;
    color: #141414;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 180ms ease;
}
.aze-shop-page:hover { border-color: #f04e23; color: #f04e23; }
.aze-shop-page.is-current {
    background: #f04e23;
    border-color: #f04e23;
    color: #fff;
}
.aze-shop-page--ellipsis {
    border: none;
    color: #6b6b6b;
    cursor: default;
}
.aze-shop-page--prev, .aze-shop-page--next { padding: 0 18px; }

/* Empty */
.aze-shop-empty {
    text-align: center;
    padding: 60px 32px;
    background: #fff;
    border: 1px solid var(--az-cc-line, rgba(20,20,20,0.08));
    border-radius: 16px;
}
.aze-shop-empty h2 {
    font-size: 24px !important;
    margin: 0 0 10px !important;
    color: #141414 !important;
    font-weight: 700 !important;
}
.aze-shop-empty p {
    color: #6b6b6b;
    margin: 0 0 24px;
}
.aze-shop-reset {
    display: inline-block;
    padding: 14px 28px;
    background: #f04e23;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.aze-shop-reset:hover { background: #772008; }

/* ─── [alpenzaun_shop] HERO (breadcrumb + title) ─── */
.aze-shop-hero {
    margin: 0 0 28px;
}
.aze-shop-crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #6b6b6b;
    font-weight: 500;
}
.aze-shop-crumb a {
    color: #6b6b6b;
    text-decoration: none;
    transition: color 180ms ease;
}
.aze-shop-crumb a:hover { color: #f04e23; }
.aze-shop-crumb svg {
    width: 14px; height: 14px;
    color: rgba(20,20,20,0.3);
    flex-shrink: 0;
}
.aze-shop-crumb span[aria-current="page"] {
    color: #141414;
    font-weight: 700;
}

.aze-shop-hero-title {
    font-size: 52px !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
    color: #141414 !important;
    margin: 0 0 10px !important;
    line-height: 1.05 !important;
}
.aze-shop-hero-sub {
    font-size: 17px;
    color: #6b6b6b;
    margin: 0;
    max-width: 720px;
    line-height: 1.5;
}
@media (max-width: 720px) {
    .aze-shop-hero-title { font-size: 36px !important; }
    .aze-shop-hero-sub { font-size: 15px; }
}

/* ─── [alpenzaun_shop] KONFIGURATOR BANNER — kompaktný ─── */
.aze-shop-cfg {
    margin: 32px 0 0;
    background: linear-gradient(135deg, #141414 0%, #1f1f1f 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 36px rgba(20,20,20,0.16);
}
.aze-shop-cfg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 220px at 25% 30%, rgba(240,78,35,0.14), transparent 60%),
        radial-gradient(ellipse 320px 180px at 80% 90%, rgba(240,78,35,0.08), transparent 60%);
    pointer-events: none;
}
.aze-shop-cfg-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr);
    gap: 0;
    min-height: 240px;
}
@media (max-width: 860px) {
    .aze-shop-cfg-inner { grid-template-columns: 1fr; min-height: auto; }
}

/* LEFT: text + CTA — menšie padding-y aby banner nebol vysoký */
.aze-shop-cfg-text {
    padding: 28px 36px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.aze-shop-cfg-title {
    font-size: 26px !important;
    font-weight: 700 !important;
    letter-spacing: -0.022em !important;
    line-height: 1.15 !important;
    color: #fff !important;
    margin: 0 0 8px !important;
}
.aze-shop-cfg-title span { color: #fff; }
.aze-shop-cfg-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 14px;
    line-height: 1.45;
    max-width: 460px;
}
.aze-shop-cfg-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
}
.aze-shop-cfg-list li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
}
.aze-shop-cfg-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 14px; height: 14px;
    background: #f04e23;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px;
}
.aze-shop-cfg-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 12px 22px;
    background: #f04e23;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 100px;
    transition: all 220ms ease;
}
.aze-shop-cfg-cta svg { width: 16px; height: 16px; transition: transform 220ms ease; }
.aze-shop-cfg-cta:hover {
    background: #772008;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(240,78,35,0.32);
}
.aze-shop-cfg-cta:hover svg { transform: translateX(4px); }

/* RIGHT: visual */
.aze-shop-cfg-visual {
    position: relative;
    background: linear-gradient(180deg, #232323 0%, #1a1a1a 100%);
    border-left: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    min-height: 240px;
}
.aze-shop-cfg-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.aze-shop-cfg-logo {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
    z-index: 2;
}
.aze-shop-cfg-logo svg {
    width: 22px; height: 22px;
    color: #f04e23;
}
.aze-shop-cfg-fence {
    position: absolute;
    inset: 20% 14% 18% 18%;
    display: flex;
    gap: 8px;
    align-items: stretch;
    transform: perspective(900px) rotateY(-22deg) rotateX(6deg);
    transform-origin: left center;
}
.aze-shop-cfg-fence i {
    flex: 1;
    background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 6px 12px rgba(0,0,0,0.3);
}
.aze-shop-cfg-dims {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.aze-shop-cfg-dim {
    position: absolute;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}
.aze-shop-cfg-dim--w { bottom: 12%; left: 50%; transform: translateX(-50%); }
.aze-shop-cfg-dim--h { top: 35%; right: 8%; }

@media (max-width: 860px) {
    .aze-shop-cfg-text { padding: 36px 28px; }
    .aze-shop-cfg-title { font-size: 28px !important; }
    .aze-shop-cfg-visual { min-height: 220px; }
}

/* Wrappery pre zdieľaný .aze-cat-cfg banner mimo katalógu */
.aze-shop-cfg-wrap { margin: 48px 0 0; }
.aze-pd-cfg-wrap { margin: 36px 0 0; }

/* Eyebrow chip BELIEBT·KOSTENLOS pre nový konfigurátor banner */
.aze-shop-cfg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    margin-bottom: 10px;
    background: rgba(240,78,35,0.12);
    border: 1px solid rgba(240,78,35,0.3);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f04e23;
    align-self: flex-start;
}
.aze-shop-cfg-eyebrow-dot {
    width: 6px; height: 6px;
    background: #f04e23;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(240,78,35,0.6);
}
.aze-shop-cfg-title span {
    color: #f04e23 !important;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE-OUT DRAWER (Zubehör) — inline vedľa kariet, sticky tab,
   panel sa vysúva animovane vedľa grid-u (nie cez celý viewport)
   ═══════════════════════════════════════════════════════════ */

/* Drawer = tenká vertikálna lišta v gride, panel sa vysúva produkt karty horizontálne */
.aze-drawer {
    /* Tenká vertikálna lišta */
    width: 46px;
    max-width: 46px;
    position: relative;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    z-index: 5;
    font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
    min-height: 100%;
    /* Aby panel vyklepnutý vpravo presahoval ZA grid — kontajner musí mať overflow visible */
    overflow: visible;
    order: 999;
    justify-self: start;   /* grid cell sa nestretchuje na 1fr track — tab ostane 80px */
    align-self: stretch;
}
/* Vždy sa otvára vpravo — `--left` rovnaký order, panel rovnako vpravo */
.aze-drawer--left, .aze-drawer--right { order: 999; }

/* TAB — terracotta vertikálna lišta (full-height ako kartová bunka) */
.aze-drawer-tab {
    position: relative;
    pointer-events: auto;
    background: #fff;
    color: #141414;
    border: 1px solid var(--az-line, rgba(20, 20, 20, .08));
    cursor: pointer;
    padding: 22px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 10px;
    box-shadow: none;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    overflow: hidden;
    font-family: inherit;
}
/* Jemný terracotta accent line vľavo */
.aze-drawer-tab::before {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: #f04e23;
    transition: width .25s ease, background .25s ease;
}
.aze-drawer-tab:hover {
    border-color: rgba(240, 78, 35, .45);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -16px rgba(20, 20, 20, .12);
}
.aze-drawer-tab:hover::before { width: 4px; }
.aze-drawer.is-open .aze-drawer-tab {
    border-color: rgba(240, 78, 35, .55);
}
.aze-drawer.is-open .aze-drawer-tab::before { width: 4px; }

.aze-drawer-tab-ico {
    width: 22px; height: 22px;
    color: #f04e23;
    padding: 0;
    background: transparent;
    border-radius: 0;
    position: relative;
    z-index: 1;
    stroke-width: 1.6;
}
.aze-drawer-tab-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    color: #141414;
    position: relative;
    z-index: 1;
}
.aze-drawer-tab-chev {
    width: 14px; height: 14px;
    color: #a8a8a0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: transform .3s ease, color .25s ease;
    position: relative;
    z-index: 1;
    stroke-width: 2;
}
.aze-drawer-tab:hover .aze-drawer-tab-chev { color: #f04e23; }
.aze-drawer.is-open .aze-drawer-tab-chev { transform: rotate(180deg); color: #f04e23; }

/* ── PANEL — horizontálny strip kariet, vysúva sa VPRAVO za tab ── */
.aze-drawer-panel {
    position: absolute;
    top: 0;
    bottom: 0;  /* presná výška grid cell = výška hlavnej karty → karty stretchujú */
    /* Otvára sa vždy VPRAVO od tabu */
    left: calc(100% + 14px);
    background: transparent;
    box-shadow: none;
    pointer-events: none;
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: stretch;
    /* Zatiaľ skryté + clip-path collapse zľava (od tabu) */
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width .5s cubic-bezier(.22, .94, .36, 1),
                opacity .3s ease .05s;
    z-index: 50;
}
.aze-drawer.is-open .aze-drawer-panel {
    /* Skutočná šírka sa nastavuje inline z JS (siaha presne po pravý okraj .aze-cat-main) */
    opacity: 1;
    pointer-events: auto;
}

/* (Header panelu odstránený — žiadny eyebrow/title/sub, len karty) */

/* Zoznam kariet — horizontálny scroll, karty stretchujú na výšku panelu (= hlavná karta) */
.aze-drawer-list {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: 100%;
}
.aze-drawer-list::-webkit-scrollbar { height: 6px; }
.aze-drawer-list::-webkit-scrollbar-thumb { background: rgba(240, 78, 35, .3); border-radius: 3px; }
.aze-drawer-list::-webkit-scrollbar-track { background: transparent; }

/* Desktop default — handle aj mobile close-X sú skryté (mobile media query ich zapne) */
.aze-drawer-handle,
.aze-drawer-close-mobile { display: none; }

/* ──────────────────────────────────────────────────────────────
   MOBILE (≤720px): drawer = horizontálna lišta v gride, panel = bottom-sheet
   ────────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
    /* Drawer cell = full-width riadok v gride (nie 80px stĺpec) */
    .aze-drawer {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        grid-column: 1 / -1;
        order: 999;
        justify-self: stretch;
        align-self: auto;
    }

    /* TAB: horizontálna lišta cez celú šírku */
    .aze-drawer-tab {
        flex-direction: row;
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 14px 18px;
        gap: 12px;
        justify-content: flex-start;
        text-align: left;
        border-radius: 10px;
    }
    .aze-drawer-tab::before {
        top: 14px; bottom: 14px; left: 0;
        width: 3px;
        height: auto;
        border-radius: 0 3px 3px 0;
    }
    .aze-drawer-tab-ico {
        width: 22px; height: 22px;
        flex-shrink: 0;
    }
    .aze-drawer-tab-text {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        transform: none;
        font-size: 13px;
        letter-spacing: .18em;
        flex: 1;
        text-align: left;
    }
    .aze-drawer-tab-chev {
        width: 16px; height: 16px;
        transform: rotate(90deg);  /* šípka nadol — "otvorí sa" */
        flex-shrink: 0;
    }
    .aze-drawer.is-open .aze-drawer-tab-chev {
        transform: rotate(-90deg); /* šípka nahor — "zatvor" */
    }

    /* BACKDROP — vykreslený ako pseudo-element na is-open drawer */
    .aze-drawer.is-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(20, 20, 20, .55);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 999998;  /* vyššie než theme sticky header / admin bar */
        animation: aze-drawer-fade .25s ease;
        pointer-events: none;  /* tap-outside rieši JS, backdrop len vizuálny */
    }
    @keyframes aze-drawer-fade {
        from { opacity: 0 }
        to { opacity: 1 }
    }

    /* PANEL: bottom-sheet, slide-up zdola */
    .aze-drawer-panel {
        position: fixed !important;
        inset: auto 0 0 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto;
        max-height: 82vh;
        background: #fff;
        padding: 28px 14px 16px;
        border-radius: 18px 18px 0 0;
        box-shadow: 0 -16px 40px rgba(0, 0, 0, .25);
        flex-direction: column;
        gap: 14px;
        transform: translateY(100%);
        transition: transform .35s cubic-bezier(.22, .94, .36, 1),
                    opacity .25s ease;
        z-index: 999999;  /* nad backdropom + nad theme stickies */
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
    }
    .aze-drawer.is-open .aze-drawer-panel {
        transform: translateY(0) !important;
        opacity: 1;
        pointer-events: auto;
    }

    /* DRAG HANDLE — vizuálny indikátor swipe-down */
    .aze-drawer-handle {
        display: block;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 44px;
        height: 4px;
        border-radius: 2px;
        background: rgba(20, 20, 20, .18);
    }

    /* CLOSE X — viditeľný len na mobile */
    .aze-drawer-close-mobile {
        display: inline-flex;
        position: absolute;
        top: 22px;
        right: 14px;
        width: 34px;
        height: 34px;
        align-items: center;
        justify-content: center;
        background: rgba(20, 20, 20, .06);
        border: 0;
        border-radius: 50%;
        color: #141414;
        cursor: pointer;
        z-index: 2;
        padding: 0;
        transition: background .2s, transform .2s;
    }
    .aze-drawer-close-mobile:hover,
    .aze-drawer-close-mobile:active {
        background: #f04e23;
        color: #fff;
    }
    .aze-drawer-close-mobile svg { width: 18px; height: 18px; }

    /* LIST — horizontálny scroll kariet (žiadny snap → žiadny auto-jump) */
    .aze-drawer-list {
        flex: 1;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 12px;
        padding: 4px 0 8px;
        height: auto;
        align-items: stretch;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: none;
        scroll-padding-left: 0;
    }
    .aze-drawer-card-wrap { scroll-snap-align: none; }
    .aze-drawer-card-wrap {
        flex: 0 0 230px;
        width: 230px;
        height: auto;
    }
    .aze-drawer-card-wrap > .aze-cat-prod {
        height: auto;  /* na mobile karta = prirodzená výška, nie row-stretch */
    }
    /* Mobile karta — 1:1 obrázok zostáva, kompaktný info-blok */
    .aze-drawer-card-wrap .aze-cat-prod-info {
        padding: 12px 12px 14px;
        gap: 6px;
    }
    .aze-drawer-card-wrap .aze-cat-prod-cta {
        padding: 9px 10px;
        font-size: 10.5px;
    }

    /* Lock body scroll keď je drawer open — bez position:fixed (nech scroll position zostane) */
    body.aze-drawer-locked {
        overflow: hidden;
        touch-action: none;
    }
}

/* (Default skrytia handle/close-X sú teraz priamo pri ich definícii vyššie, nie tu na konci) */

/* (Header panelu + legacy close/vertical-list odstránené — panel je čistý horizontálny strip kariet) */

/* Drawer card wrap — flex-grow: pri málo kartách vyplnia panel a zarovnajú sa
   s pravým okrajom obsahu nad nimi; pri veľa kartách ostanú 270px a scrollujú. */
.aze-drawer-card-wrap {
    flex: 1 0 270px;
    min-width: 270px;
    scroll-snap-align: start;
    display: flex;
}
.aze-drawer-card-wrap > .aze-cat-prod {
    width: 100%;
    height: 100%;  /* karta stretchuje na výšku panelu = výška hlavnej karty (row height) */
}
/* Kompaktnejší padding info-bloku — aby sa cart + qty stihli zmestiť pod 1:1 obrázkom */
.aze-drawer-card-wrap .aze-cat-prod-info {
    padding: 14px 14px 14px;
    gap: 6px;
}
/* Menšia price + cart sekcia, aby vyrovnala bottom alignment s hlavnou kartou */
.aze-drawer-card-wrap .aze-cat-prod-price-new,
.aze-drawer-card-wrap .aze-cat-prod-price .woocommerce-Price-amount {
    font-size: 16px !important;
}
.aze-drawer-card-wrap .aze-cat-prod-cta {
    padding: 9px 10px;
    font-size: 10.5px;
    letter-spacing: .06em;
}
.aze-drawer-card-wrap .aze-cat-prod-cta svg { width: 12px; height: 12px; }
/* Qty stepper menší (ak je v karte) */
.aze-drawer-card-wrap .aze-qty,
.aze-drawer-card-wrap .quantity {
    transform: scale(.9);
    transform-origin: left center;
}

/* Backdrop — odstránený (panel je inline, nie cez celý viewport) */
.aze-drawer-backdrop { display: none !important; }

/* Mobile-specific tuning pre veľmi malé telefóny */
@media (max-width: 420px) {
    .aze-drawer-tab { padding: 12px 14px; gap: 10px; }
    .aze-drawer-tab-text { font-size: 12px; letter-spacing: .15em; }
    .aze-drawer-card-wrap { flex: 0 0 210px; width: 210px; }
    .aze-drawer-panel { padding: 26px 12px 14px; }
}
