/* VtipnaTricka.cz – Design Tokens & Custom Styles */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap');

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

:root {
  /* Brand */
  --brand-500: #C82F2A;
  --brand-600: #B82623;
  --brand-700: #9D1F1C;

  /* Ink */
  --ink-900: #161616;
  --ink-700: #2D2E2E;
  --ink-500: #646464;
  --ink-300: #A3A3A3;

  /* Background */
  --bg-0: #FFFFFF;
  --bg-100: #F7F7F7;

  /* Line */
  --line-200: #E6E6E6;

  /* State */
  --success-500: #1F8A4C;
  --warning-500: #E08B00;
  --error-500: #C62828;
  --info-500: #2563EB;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

svg {
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink-900);
  background: var(--bg-0) url('/assets/im/layout/bg.webp') repeat;
  background-size: 512px 512px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}
main {
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
}

/* Utility bar */
.utility-bar {
  background: url('/assets/im/layout/bg.header.png') repeat;
  background-size: auto;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
}
.utility-bar a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.15s; }
.utility-bar a:hover { color: #fff; }
@media (max-width: 639px) { .utility-bar { display: none; } }

/* Announcement bar */
.announcement-bar {
  background: #fff;
  color: var(--brand-500);
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 6px 16px;
  position: relative;
  overflow: hidden;
  height: 32px;
}
@media (max-width: 639px) {
  .announcement-bar { font-size: 11px; height: 26px; padding: 4px 12px; }
  .announcement-item svg { display: none; }
}
.announcement-track {
  position: relative;
  height: 100%;
}
.announcement-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.announcement-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 639px) {
  .header-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
  }
}

/* Header */
.site-header {
  background: transparent;
  color: var(--ink-900);
}

/* Menu button light */
#menuBtn { color: var(--ink-700); }
#menuBtn:hover { background: rgba(0,0,0,0.06) !important; color: var(--ink-900); }

/* Search bar on light header */
.site-header .search-bar {
  border-color: var(--line-200);
  background: var(--bg-100);
  box-shadow: none;
}
.site-header .search-bar input {
  color: var(--ink-900);
}
.site-header .search-bar input::placeholder {
  color: var(--ink-300);
}
.site-header .search-bar:focus-within {
  border-color: var(--brand-500);
  background: #fff;
  box-shadow: 0 2px 8px rgba(200,47,42,0.15);
}

/* Fav & cart icons on light header */
.site-header .fav-trigger a svg,
.site-header .cart-trigger > a svg { color: var(--ink-700); }
.site-header .fav-trigger a:hover svg,
.site-header .cart-trigger > a:hover svg { color: var(--ink-900); }
.site-header .cart-trigger > a > span { color: var(--ink-700); }

/* Category nav */
.cat-nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
  border-bottom: 1px solid var(--line-200);
}
.cat-nav.scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.cat-nav a {
  color: var(--ink-900);
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 12px 0;
  position: relative;
  transition: color 0.15s;
}
.cat-nav a:hover {
  color: var(--brand-500);
}

.cat-nav a.active {
  font-weight: bold;
  color: var(--brand-500);
}
/* Highlighted nav link – Vlastní návrh */
.cat-nav a.nav-highlight {
  background: linear-gradient(135deg, #C82F2A 0%, #e84040 100%);
  color: #fff !important;
  padding: 5px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(200,47,42,0.4);
  transition: box-shadow 0.15s, transform 0.15s, background 0.15s;
}
.cat-nav a.nav-highlight:hover {
  background: linear-gradient(135deg, #b52626 0%, #cc3030 100%);
  box-shadow: 0 4px 14px rgba(200,47,42,0.5);
  transform: translateY(-1px);
  color: #fff !important;
}
.cat-nav a.nav-highlight::after {
  display: none;
}

/* Mega nav items */
.mega-nav-item a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mega-chevron {
  transition: transform 0.2s;
  margin-top: 1px;
}
.mega-nav-item.open .mega-chevron {
  transform: rotate(180deg);
}

/* Mega dropdown */
.mega-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--bg-0);
  border-top: 1px solid var(--line-200);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 150;
  pointer-events: none;
}
.mega-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Nav icons */
.nav-icon-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 47, 42, 0.22);
  border-radius: var(--radius-sm);
  color: #e87c78;
  flex-shrink: 0;
}

/* Mega layout */
.mega-layout {
  display: flex;
  gap: 32px;
}
.mega-footer {
  display: flex;
  justify-content: center;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--line-100);
  grid-column: 1 / -1;
}
.mega-footer .btn-primary,
.mega-footer .btn-primary:hover,
.mega-footer .btn-primary:active {
  color: #fff;
}
.mega-footer .btn-primary {
  font-size: 13px;
  padding: 8px 20px;
  box-shadow: none;
}
.mega-categories {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-content: start;
}
.mega-cat-link,
.cat-nav .mega-cat-link {
  color: var(--ink-900);
  text-transform: none;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--ink-700);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mega-cat-link:hover {
  background: var(--bg-100);
  color: var(--brand-500);
}
.mega-cat-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: var(--bg-100);
  border: 1px solid var(--line-200);
  flex-shrink: 0;
}
.mega-cat-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mega-cat-name {
  /*color: var(--brand-500);*/
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
.mega-cat-desc {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.3;
  margin-top: 2px;
}
.mega-cat-link:hover .mega-cat-name {
  color: var(--brand-500);
}

/* Featured product panel */
.mega-featured {
  width: 240px;
  flex-shrink: 0;
  border-left: 1px solid var(--line-200);
  padding-left: 32px;
}
.mega-featured-inner,
.cat-nav .mega-featured-inner {
  color: var(--ink-900);
  text-transform: none;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  /*color: inherit;*/
  transition: transform 0.2s;
}
.mega-featured-inner:hover {
  transform: translateY(-2px);
}
.mega-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--brand-500);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.mega-featured-img-wrap {
  position: relative;
  width: 100%;
}
.mega-featured-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--bg-0);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  display: block;
}
.mega-featured-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega-featured-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-500);
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.mega-featured-original-price {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-300);
  text-decoration: line-through;
}

/* ── Mega product grid (Vlastní návrh dropdown) ─────────── */
.mega-product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.mega-product-card {
  display: block;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-0);
  color: inherit;
  transition: box-shadow 0.15s, transform 0.15s;
}
.mega-product-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}
.mega-product-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  /*background: var(--bg-100);*/
}
.mega-product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s;
}
.mega-product-card:hover .mega-product-card-img {
  transform: scale(1.04);
}
.mega-product-card-body {
  padding: 8px 10px 10px;
}
.mega-product-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-700);
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
}
.mega-product-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-top: 4px;
}
.mega-product-card-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-900);
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.mega-product-card-price small {
  font-size: 0.7em;
  font-weight: 400;
  opacity: 0.75;
}
.mega-product-card-orig {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-300);
  text-decoration: line-through;
}
.mega-product-card-sale {
  color: var(--brand-500);
}
.mega-product-card-stock {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 600;
  color: #16a34a;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: auto;
}
.mega-product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.mega-product-card-colors {
  display: flex;
  align-items: center;
  gap: 3px;
}
.mega-product-card-sizes {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mega-product-card-sizes span {
  font-size: 10px;
  font-weight: 500;
  padding: 1px 5px;
  border: 1px solid var(--line-200);
  border-radius: 3px;
  color: var(--ink-500);
  background: var(--bg-100);
}

/* Product card */
.product-card {
  background: var(--bg-0);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.card-img-wrap {
  position: relative;
  overflow: hidden;
}
.card-img-primary,
.card-img-secondary {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--bg-100);
  display: block;
}
.card-img-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.product-card:hover .card-img-secondary {
  opacity: 1;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: white;
}
.card-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-500);
  border: 1.5px solid var(--brand-500);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 4px;
}
.card-label--action {
  border-color: #d97706;
  color: #d97706;
}
.card-label-icon {
  font-size: 1.35em;
  line-height: 1;
  vertical-align: middle;
}
.product-card .card-body {
  padding: var(--space-4);
}
.product-card .card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--ink-900);
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product-card .card-title span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-top: 8px;
}
.product-card .card-price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink-900);
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.card-price-orig {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-300);
  text-decoration: line-through;
}
.card-price-sale {
  color: var(--brand-500);
}
.card-stock {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--success-500);
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}
/* Card Rating */
.card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  line-height: 1;
  margin-top: 5px;
}
.card-star {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  display: block;
}
.card-star--full { fill: #fbbf24; }
.card-star--empty { fill: none; stroke: #d1d5db; stroke-width: 1.5; }
.card-rating-score {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-900);
  margin-left: 2px;
  line-height: 1;
}
.card-rating-count {
  font-size: 11px;
  color: var(--ink-300);
  line-height: 1;
}
/*.product-card .card-price .card-price-sale small {*/
/*  left: -6px;*/
/*}*/

.product-card .card-price small {
  font-size: 0.7em;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0;
  position: relative;
  /*left: -4px;*/
}

@media (max-width: 639px) {
  .product-card .card-price {
    font-size: 15px;
  }
}

/* Category browse grid (HP) – mobile adjustments */
@media (max-width: 639px) {
  .cat-browse-grid > a {
    padding-top: 8px;
  }
  .cat-browse-grid > a > div {
    text-align: center;
  }
}

/* Size picker (PDP) */
.size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border: 2px solid var(--line-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-700);
  background: var(--bg-0);
  cursor: pointer;
  transition: all 0.15s;
}
.size-btn:hover {
  border-color: var(--ink-500);
}
.size-btn.active {
  border-color: var(--brand-500);
  color: var(--brand-500);
  background: rgba(200, 47, 42, 0.05);
}
.size-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-500);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(200, 47, 42, 0.25);
}
.btn-primary:hover {
  background: var(--brand-600);
  box-shadow: 0 4px 12px rgba(200, 47, 42, 0.3);
}
.btn-primary:active {
  transform: scale(0.98);
  background: var(--brand-700);
}
.btn-primary:focus-visible {
  outline: 3px solid rgba(200, 47, 42, 0.4);
  outline-offset: 2px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-700);
  border: 2px solid var(--ink-700);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}

/* Trust badges */
.trust-badge {
  text-align: center;
}
@media (max-width: 639px) {
  .trust-badge h3 { font-size: 13px; }
  .trust-badge p  { font-size: 12px; }
}
.trust-badge .icon svg {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35));
}
.trust-badge .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--brand-500);
  clip-path: polygon(
    50% 0%, 65% 12%, 85% 15%, 89% 34%,
    100% 50%, 89% 66%, 85% 85%, 65% 88%,
    50% 100%, 35% 88%, 15% 85%, 11% 66%,
    0% 50%, 11% 34%, 15% 15%, 35% 12%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  filter: none;
}

/* Sidebar */
.sidebar-section h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--ink-900);
}
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  text-decoration: none;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.sidebar-link:hover { color: var(--brand-500); }
.sidebar-link.active { color: var(--brand-500); font-weight: 600; }
.sidebar-link .count { color: var(--ink-300); font-size: 13px; font-weight: 400; }

.sidebar-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  text-decoration: none;
  color: var(--ink-500);
  font-size: 13px;
  transition: color 0.15s;
}
.sidebar-sublink:hover { color: var(--brand-500); }
.sidebar-sublink.active { color: var(--brand-500); font-weight: 600; }
.sidebar-sublink .count { color: var(--ink-300); font-size: 11px; }

/* Sidebar section shadow */
.sidebar-section {
  box-shadow: none;
}
.sidebar-section + .sidebar-section {
  border-top: 1px solid var(--line-200);
  padding-top: 20px;
}

/* Color swatches */
.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.color-swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.15s;
  position: relative;
}
.color-swatch:hover { outline-color: var(--ink-300); }
.color-swatch.active { outline-color: var(--brand-500); }

/* Hlášky filter */
.hlasky-search {
  width: 100%;
  height: 34px;
  padding: 0 10px;
  border: 1.5px solid var(--line-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--ink-900);
  outline: none;
  margin-bottom: 8px;
  transition: border-color 0.15s;
}
.hlasky-search:focus { border-color: var(--brand-500); }
.hlasky-search::placeholder { color: var(--ink-300); }
.hlasky-list {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line-200) transparent;
}
.hlasky-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 2px;
  font-size: 13px;
  color: var(--ink-700);
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.1s;
}
.hlasky-item:hover { background: var(--bg-100); }
.hlasky-item input[type="checkbox"] { accent-color: var(--brand-500); flex-shrink: 0; }
.hlasky-item.hidden { display: none; }

/* Footer */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
}
.site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.site-footer a:hover { color: #fff; }
.site-footer h4 {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Mobile menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: fit-content;
  max-height: 100vh;
  max-height: 100dvh;
  width: 300px;
  max-width: 85vw;
  background: var(--bg-0);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.menu-drawer.open {
  transform: translateX(0);
}
.menu-drawer a {
  display: block;
  padding: 10px 24px;
  color: var(--ink-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.menu-drawer a:hover { background: var(--bg-100); color: var(--brand-500); }

/* Mobile nav accordion */
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  color: var(--ink-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.mobile-nav-link:hover { background: var(--bg-100); color: var(--brand-500); }
.mobile-nav-group {
}
.mobile-nav-toggle {
  display: flex;
  align-items: stretch;
}
.mobile-nav-label {
  flex: 1;
  padding: 10px 8px 10px 24px;
  color: var(--ink-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav-count {
  display: none;
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-300);
  margin-left: auto;
}
.mobile-nav-submenu .mobile-nav-count {
  display: inline;
}
.mobile-nav-label:hover { color: var(--brand-500); }
.mobile-nav-chevron-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--ink-500);
  flex-shrink: 0;
}
.mobile-nav-chevron-btn:hover { color: var(--brand-500); }
.mobile-nav-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.mobile-nav-chevron-btn[aria-expanded="true"] .mobile-nav-chevron {
  transform: rotate(180deg);
}
.mobile-nav-chevron-btn[aria-expanded="true"] { color: var(--brand-500); }
.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-100);
}
.mobile-nav-submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 24px;
  color: var(--ink-700);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  border-bottom: none;
}
.mobile-nav-submenu a:hover { color: var(--brand-500); background: var(--line-200); }
.mobile-nav-subitem-img {
  display: none;
}

/* Gallery (PDP) */
.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--bg-0);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-200);
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.gallery-thumb {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--bg-0);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s;
}
.gallery-thumb:hover, .gallery-thumb.active {
  border-color: var(--brand-500);
}

/* PDP tabs */
.pdp-tab {
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-300);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  font-family: inherit;
}
.pdp-tab:hover { color: var(--ink-700); }
.pdp-tab.active {
  color: var(--brand-500);
  font-weight: 600;
  border-bottom-color: var(--brand-500);
}
.pdp-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  background: var(--bg-100);
  color: var(--ink-400);
  border-radius: 10px;
  padding: 1px 6px;
  margin-left: 4px;
  line-height: 1.4;
}
.pdp-tab.active .pdp-tab-count {
  background: rgba(200,47,42,0.1);
  color: var(--brand-500);
}
.pdp-tab-panel[hidden] { display: none; }

/* PDP Description three-column layout */
.pdp-desc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 640px) {
  .pdp-desc-layout {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .pdp-desc-layout {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
  }
}

/* Care icons list */
.pdp-care-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-care-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-500);
}
.pdp-care-item svg {
  color: var(--ink-300);
  flex-shrink: 0;
}


/* Parameters */
.pdp-params-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-300);
  margin-bottom: 12px;
}
.pdp-param-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-100);
}
.pdp-param-row:last-child {
  border-bottom: none;
}
.pdp-param-row dt {
  font-size: 14px;
  color: var(--ink-400);
  flex-shrink: 0;
}
.pdp-param-row dd {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-800);
  text-align: right;
}
@media (min-width: 1024px) {
  .pdp-params-card {
    border-left: 1px solid var(--line-200);
    padding-left: 36px;
  }
}

/* Size table */
.pdp-size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pdp-size-table th {
  padding: 6px 10px;
  text-align: center;
  font-weight: 600;
  color: var(--ink-500);
  border-bottom: 2px solid var(--line-200);
  white-space: nowrap;
}
.pdp-size-table th:first-child { text-align: left; }
.pdp-size-table td {
  padding: 7px 10px;
  text-align: center;
  color: var(--ink-700);
  border-bottom: 1px solid var(--line-200);
}
.pdp-size-table td:first-child {
  text-align: left;
  color: var(--ink-900);
  font-weight: 600;
}
.pdp-size-table tbody tr:last-child td { border-bottom: none; }

/* Care modal trigger */
.care-modal-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-600);
  background: var(--bg-100);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-align: left;
}
.care-modal-trigger:hover {
  background: var(--bg-200);
  color: var(--ink-900);
  border-color: var(--line-300);
}

/* Care modal overlay */
.care-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.care-modal-overlay[hidden] { display: none; }
.care-modal-box {
  background: var(--bg-0);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 28px 32px;
}
.care-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.care-modal-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg-100);
  color: var(--ink-500);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.care-modal-close:hover { background: var(--bg-200); color: var(--ink-900); }
.care-modal-item { align-items: flex-start !important; }

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  color: var(--ink-500);
}
.breadcrumb a {
  color: var(--ink-500);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--brand-500); }
.breadcrumb .sep { margin: 0 6px; }

/* Sticky Nav Bar (PDP) */
.pdp-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--bg-0);
  border-bottom: 1px solid var(--line-200);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}
.pdp-sticky-nav.visible {
  transform: translateY(0);
}
.pdp-sticky-row {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 52px;
}
.pdp-sticky-title {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  flex-shrink: 0;
}
.pdp-sticky-tabs {
  display: flex;
  align-items: stretch;
  flex: 1;
  margin-left: 8px;
}
.pdp-sticky-tabs-mobile {
  display: flex;
  border-top: 1px solid var(--line-100);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pdp-sticky-tabs-mobile::-webkit-scrollbar { display: none; }
.pdp-sticky-tab {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-400);
  white-space: nowrap;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.15s;
  height: 52px;
}
.pdp-sticky-tabs-mobile .pdp-sticky-tab {
  height: 38px;
  font-size: 13px;
  padding: 0 12px;
}
.pdp-sticky-tab:hover { color: var(--ink-700); }
.pdp-sticky-tab.active {
  color: var(--brand-500);
  border-bottom-color: var(--brand-500);
}
.pdp-sticky-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.pdp-sticky-price {
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-900);
}

/* Pagination */
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.15s;
}
.pagination a {
  color: var(--ink-700);
  border: 1px solid var(--line-200);
}
.pagination a:hover {
  border-color: var(--brand-500);
  color: var(--brand-500);
}
.pagination .current {
  background: var(--brand-500);
  color: #fff;
  border: 1px solid var(--brand-500);
}

/* Sort pills */
.sort-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--line-200);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-500);
  text-decoration: none;
  transition: all 0.15s;
  background: var(--bg-0);
}
.sort-pill:hover { border-color: var(--ink-500); color: var(--ink-700); }
.sort-pill.active {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}

/* Newsletter input */
.newsletter-input {
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.newsletter-input input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: none;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.newsletter-input input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input button {
  background: var(--brand-500);
  border: none;
  padding: 12px 20px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.15s;
}
.newsletter-input button:hover { background: var(--brand-600); }

/* Search wrap + dropdown */
.search-wrap { position: relative; }

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 420px;
  background: var(--bg-0);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 300;
  overflow: hidden;
  display: none;
}
.search-dropdown.open { display: block; }

.search-section { padding: 12px 0 4px; }
.search-section + .search-section { border-top: 1px solid var(--line-200); padding-top: 12px; }
.search-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-300);
  padding: 0 16px 6px;
}
.search-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  text-decoration: none;
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.12s;
  cursor: pointer;
}
.search-cat-item:hover,
.search-cat-item.focused { background: var(--bg-100); }
.search-cat-item svg { color: var(--ink-300); flex-shrink: 0; }
.search-cat-name { flex: 1; }
.search-cat-parent {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-300);
}
.search-cat-arrow { color: var(--ink-300); font-size: 13px; margin-left: auto; }

.search-prod-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  text-decoration: none;
  color: var(--ink-900);
  transition: background 0.12s;
}
.search-prod-item:hover,
.search-prod-item.focused { background: var(--bg-100); }
.search-prod-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line-200);
  flex-shrink: 0;
  background: var(--bg-100);
}
.search-prod-info { flex: 1; min-width: 0; }
.search-prod-name {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-prod-cat {
  font-size: 11px;
  color: var(--ink-300);
  margin-top: 1px;
}
.search-prod-price {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-mono, monospace);
  color: var(--ink-900);
  flex-shrink: 0;
}

.search-empty {
  padding: 20px 16px;
  font-size: 14px;
  color: var(--ink-500);
  text-align: center;
  display: none;
}
.search-empty.show { display: block; }

.search-footer {
  border-top: 1px solid var(--line-200);
  padding: 10px 16px;
}
.search-footer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-500);
  text-decoration: none;
  padding: 4px 0;
}
.search-footer a:hover { text-decoration: underline; }
.search-footer a.focused { text-decoration: underline; }
.search-dropdown mark {
  background: none;
  color: var(--brand-500);
  font-weight: 700;
}

/* Search bar */
.search-bar {
  display: flex;
  border: 2px solid var(--line-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.search-bar:focus-within {
  box-shadow: 0 2px 8px rgba(200, 47, 42, 0.1);
}
.search-bar:focus-within { border-color: var(--brand-500); }
.search-bar input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  background: transparent;
}
.search-bar button {
  background: var(--brand-500);
  border: none;
  padding: 0 20px;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}
.search-bar button:hover { background: var(--brand-600); }

/* Cart dropdown */
.cart-trigger {
  position: relative;
}
.cart-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: -12px;
  width: 320px;
  background: var(--bg-0);
  border: 1px solid var(--line-200);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  pointer-events: none;
}
.cart-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: var(--bg-0);
  border-left: 1px solid var(--line-200);
  border-top: 1px solid var(--line-200);
  transform: rotate(45deg);
}
/* neviditelný most přes mezeru mezi triggerem a dropdownem */
.cart-dropdown::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.cart-trigger:not(.is-empty):hover .cart-dropdown,
.cart-trigger:not(.is-empty) .cart-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.cart-dropdown-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-200);
}
.cart-dropdown-item:last-of-type {
  border-bottom: none;
}
.cart-dropdown-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--bg-100);
}
.cart-dropdown-item-info {
  flex: 1;
  min-width: 0;
}
.cart-dropdown-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-dropdown-item-meta {
  font-size: 13px;
  color: var(--ink-300);
  margin-top: 3px;
}
.cart-dropdown-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  white-space: nowrap;
  margin-top: 4px;
}
.cart-dropdown-items {
  max-height: 320px;
  overflow-y: auto;
}
.cart-dropdown-items::-webkit-scrollbar { width: 4px; }
.cart-dropdown-items::-webkit-scrollbar-track { background: transparent; }
.cart-dropdown-items::-webkit-scrollbar-thumb { background: var(--line-300); border-radius: 2px; }
.cart-dropdown-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--line-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cart-dropdown-total-label {
  font-size: 13px;
  color: var(--ink-400);
}
.cart-dropdown-total-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  font-family: var(--font-mono, monospace);
}

/* Filter bottom sheet (mobile) */
.filter-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-0);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 24px;
  z-index: 201;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  max-height: 70vh;
  overflow-y: auto;
  display: none;
}
@media (max-width: 1023px) {
  .filter-sheet { display: block; }
}
.filter-sheet.open {
  transform: translateY(0);
}
.filter-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink-700);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.filter-cat-link span {
  font-size: 12px;
  color: var(--ink-300);
}
.filter-cat-link:hover {
  background: var(--bg-100);
  color: var(--ink-900);
}
.filter-cat-link.active {
  background: rgba(200,47,42,0.07);
  color: var(--brand-500);
  font-weight: 600;
}
.filter-cat-link.active span {
  color: var(--brand-500);
  opacity: 0.7;
}

/* Auth Modal */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,22,22,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.auth-overlay.open {
  opacity: 1;
  visibility: visible;
}
.auth-modal {
  background: var(--bg-0);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s ease;
  opacity: 0;
  position: relative;
  overflow: hidden;
}
.auth-overlay.open .auth-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.auth-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg-100);
  color: var(--ink-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  z-index: 1;
}
.auth-modal-close:hover { background: var(--line-200); color: var(--ink-900); }
.auth-modal-header {
  padding: 28px 28px 0;
}
.auth-modal-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.auth-modal-logo img { height: 28px; }
.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--line-200);
  gap: 0;
}
.auth-tab {
  flex: 1;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  color: var(--ink-300);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.auth-tab.active {
  color: var(--brand-500);
  border-bottom-color: var(--brand-500);
}
.auth-tab:hover:not(.active) { color: var(--ink-700); }
.auth-modal-body {
  padding: 24px 28px 28px;
}
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-field {
  margin-bottom: 16px;
}
.auth-field input {
  width: 100%;
  height: 56px;
  padding: 20px 14px 4px;
  border: 1.5px solid var(--line-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--ink-900);
  background: var(--bg-0);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.auth-field input:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(200,47,42,0.12);
}
.auth-field input::placeholder { color: transparent; }
.auth-field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.auth-field-row label { margin-bottom: 0; }
.auth-forgot {
  font-size: 13px;
  color: var(--ink-500);
  text-decoration: none;
  transition: color 0.15s;
}
.auth-forgot:hover { color: var(--brand-500); text-decoration: underline; }
.auth-submit {
  width: 100%;
  height: 46px;
  background: var(--brand-500);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 8px;
}
.auth-submit:hover { background: var(--brand-600); }
.auth-submit:active { transform: scale(0.99); }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--ink-300);
  font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-200);
}
.auth-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.auth-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--brand-500);
  cursor: pointer;
}
.auth-checkbox-row label {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.5;
  cursor: pointer;
}
.auth-checkbox-row a { color: var(--brand-500); text-decoration: none; }
.auth-checkbox-row a:hover { text-decoration: underline; }
.auth-switch {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-500);
}
.auth-switch button {
  background: none;
  border: none;
  color: var(--brand-500);
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

/* ── Načíst více ─────────────────────────────────────────── */
.load-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 180px;
  max-width: 280px;
  height: 44px;
  border: 1.5px solid var(--line-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--bg-0);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, opacity 0.15s;
}
.load-more-btn:hover { border-color: var(--brand-500); color: var(--brand-500); }
.load-more-btn:disabled { opacity: 0.45; cursor: default; pointer-events: none; }
.load-more-btn .lm-spinner {
  width: 16px; height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.load-more-btn.loading .lm-spinner { display: block; }
.load-more-btn.loading .lm-label { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SEO text dvousloupcový s rozbalením ─────────────────── */
.seo-text-grid {
  margin-top: 48px;
  margin-bottom: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line-200);
}
.seo-text-grid p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-500);
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .seo-text-content { column-count: 2; column-gap: 40px; }
  .seo-text-content p, .seo-text-content h2, .seo-text-content h3 { break-inside: avoid; }
}
.seo-text-grid h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 10px;
  font-family: 'Sora', sans-serif;
}
.seo-expandable {
  position: relative;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.seo-expandable.collapsed { max-height: 88px; }
.seo-expandable.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--bg-0));
  pointer-events: none;
}
.seo-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-500);
  background: none;
  border: none;
  padding: 6px 0 0;
  cursor: pointer;
  transition: color 0.15s;
}
.seo-expand-btn:hover { color: var(--brand-600); }
.seo-expand-btn svg { transition: transform 0.3s; }
.seo-expand-btn.open svg { transform: rotate(180deg); }

/* ── Scroll to top button ────────────────────────────────── */
.scroll-top-btn {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--brand-500);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(200,47,42,0.35), 0 1px 4px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s, background 0.15s, box-shadow 0.15s;
}
.scroll-top-btn:hover {
  background: var(--brand-600);
  box-shadow: 0 6px 20px rgba(200,47,42,0.45);
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 1024px) { .scroll-top-btn { display: flex; } }
.auth-switch button:hover { text-decoration: underline; }

/* ── Výběr barvy v detailu produktu ─────────────────────── */
.color-pick {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  cursor: pointer;
  transition: outline-color 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.color-pick:hover { outline-color: var(--ink-300); transform: scale(1.1); }
.color-pick.active { outline-color: var(--brand-500); }

/* Výběr varianty produktu pomocí obrázku (typ=1) */
.color-variant-pick {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line-200);
  outline: 2px solid transparent;
  outline-offset: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: outline-color 0.15s, border-color 0.15s, transform 0.15s;
  flex-shrink: 0;
  text-decoration: none;
}
.color-variant-pick img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-0);
}
.color-variant-pick:hover { outline-color: var(--ink-300); transform: scale(1.05); }
.color-variant-pick.active { outline-color: var(--brand-500); border-color: var(--brand-500); }

/* Chybový stav – barva nebo velikost nevybrána */
.selector-error { outline: 2px solid #dc2626; outline-offset: 4px; border-radius: 6px; animation: shake 0.3s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-4px); }
  75%       { transform: translateX(4px); }
}

/* ── Srdíčko na kartičce produktu ───────────────────────── */
.card-img-wrap { position: relative; }
.card-fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-300);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.15s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), color 0.15s, background 0.15s;
}
.product-card:hover .card-fav-btn { opacity: 1; transform: scale(1); }
.card-fav-btn.active { opacity: 1; transform: scale(1); color: var(--brand-500); }
.card-fav-btn.active svg { fill: var(--brand-500); }
.card-fav-btn:hover { background: #fff; color: var(--brand-500); }

/* ── Počet + Poznámka (PDP) ──────────────────────────────── */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 40px;
}
.qty-btn {
  width: 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: var(--ink-500);
  background: var(--bg-100);
  border: none;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  user-select: none;
}
.qty-btn:hover { background: var(--line-200); color: var(--ink-900); }
.qty-input {
  width: 44px;
  height: 100%;
  border: none;
  border-left: 1.5px solid var(--line-200);
  border-right: 1.5px solid var(--line-200);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  background: var(--bg-0);
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.note-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-400);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.note-toggle:hover { color: var(--ink-700); }
.note-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease;
  opacity: 0;
  margin-top: 0;
}
.note-wrap.open {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}
.note-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--line-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--ink-700);
  background: var(--bg-0);
  resize: none;
  outline: none;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color 0.15s;
}
.note-textarea:focus { border-color: var(--ink-400); }

/* ── Srdíčko v detailu produktu ─────────────────────────── */
.pdp-fav-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1.5px solid var(--line-200);
  border-radius: var(--radius-sm);
  background: var(--bg-0);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-400);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.pdp-fav-btn:hover { border-color: var(--brand-500); color: var(--brand-500); }
.pdp-fav-btn.active {
  border-color: var(--brand-500);
  color: var(--brand-500);
  background: rgba(200,47,42,0.05);
}
.pdp-fav-btn.active svg { fill: var(--brand-500); }

/* ── Oblíbené v hlavičce ─────────────────────────────────── */
.fav-trigger {
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 639px) { .fav-dropdown { display: none; } }
.fav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: -12px;
  width: 300px;
  background: var(--bg-0);
  border: 1px solid var(--line-200);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  pointer-events: none;
}
.fav-trigger:not(.is-empty):hover .fav-dropdown,
.fav-trigger:not(.is-empty) .fav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.fav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; right: 22px;
  width: 12px; height: 12px;
  background: var(--bg-0);
  border-left: 1px solid var(--line-200);
  border-top: 1px solid var(--line-200);
  transform: rotate(45deg);
}
.fav-dropdown::after {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}
.fav-dropdown-empty {
  padding: 28px 16px;
  text-align: center;
  color: var(--ink-400);
  font-size: 14px;
}
.fav-dropdown-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line-200);
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
}
.fav-dropdown-item:hover { background: var(--bg-50); }
.fav-dropdown-item img {
  width: 44px; height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid var(--line-200);
}
.fav-dropdown-item-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  line-height: 1.4;
}
.fav-dropdown-item-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  font-family: 'IBM Plex Mono', monospace;
  margin-top: 2px;
}
.fav-dropdown-footer {
  padding: 10px 16px;
}
.fav-dropdown-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  text-decoration: none;
  padding: 6px 0;
}
.fav-dropdown-footer a:hover { color: var(--brand-500); }
/* ── Recently viewed ─────────────────────────────────────── */
.rv-section {
  background: var(--bg-0);
}
.rv-section .prod-slider-item {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
}
@media (min-width: 640px) {
  .rv-section .prod-slider-item { flex: 0 0 calc(20% - 20px); }
}
@media (min-width: 1024px) {
  .rv-section .prod-slider-item { flex: 0 0 calc(12.5% - 21px); }
}

/* Customer photos slider – 6 per row on desktop */
@media (min-width: 1024px) {
  .cust-photos-section .prod-slider-item { flex: 0 0 calc(16.666% - 20px); }
}
.rv-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.2s;
}
.rv-card:hover { transform: translateY(-3px); }
.rv-card-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  /*background: var(--bg-100);*/
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.rv-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s;
}
.rv-card:hover .rv-card-img-wrap img { transform: scale(1.04); }
.rv-card-body { padding: 0 2px; }
.rv-card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}
.rv-card-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-900);
  white-space: nowrap;
}
.rv-card-price small {
  font-size: 0.7em;
  font-weight: 400;
  opacity: 0.75;
}

/* ── Product slider ─────────────────────────────────────── */
.prod-slider-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.prod-slider-viewport.dragging {
  cursor: grabbing;
}
.prod-slider-viewport.dragging .prod-slider-item {
  pointer-events: none;
}
.prod-slider-viewport img {
  -webkit-user-drag: none;
  user-drag: none;
}
.prod-slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.42s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.prod-slider-item {
  flex: 0 0 calc(50% - 8px);
  min-width: 0;
}
@media (min-width: 640px) {
  .prod-slider-track { gap: 24px; }
  .prod-slider-item { flex: 0 0 calc(33.333% - 16px); }
}
@media (min-width: 1024px) {
  .prod-slider-item { flex: 0 0 calc(25% - 18px); }
}
.prod-slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line-200);
  background: var(--bg-0);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.prod-slider-btn:hover:not(:disabled) {
  background: var(--brand-500);
  border-color: var(--brand-500);
  color: #fff;
  transform: scale(1.05);
}
.prod-slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 768px) {
  .reviews-layout {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }
}
.reviews-summary {
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: #fefce8;
  position: relative;
  overflow: hidden;
}
.heureka-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: box-shadow 0.15s;
}
.heureka-badge:hover {
  box-shadow: 0 2px 8px rgba(255,102,0,0.12);
}
.reviews-score-number {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink-900);
  letter-spacing: -2px;
}
.reviews-stars-row {
  display: flex;
  align-items: center;
  gap: 1px;
  margin: 8px 0 4px;
  color: var(--brand-500);
}
.reviews-total {
  font-size: 14px;
  color: var(--ink-500);
}
.reviews-distribution {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.reviews-bar-row-label {
  width: 10px;
  text-align: right;
  color: var(--ink-500);
  flex-shrink: 0;
}
.reviews-bar-row-count {
  width: 28px;
  color: var(--ink-300);
  font-size: 11px;
  flex-shrink: 0;
}
.reviews-bar-track {
  flex: 1;
  height: 5px;
  background: var(--line-200);
  border-radius: 3px;
  overflow: hidden;
}
.reviews-bar-fill {
  height: 100%;
  background: var(--brand-500);
  border-radius: 3px;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card {
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  background: var(--bg-0);
  transition: box-shadow 0.15s;
}
.review-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.3;
}
.review-meta {
  font-size: 13px;
  color: var(--ink-300);
  margin-top: 2px;
}
.review-verified {
  font-size: 11px;
  font-weight: 500;
  color: var(--success-500);
  background: rgba(31,138,76,0.08);
  border: 1px solid rgba(31,138,76,0.15);
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
.review-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 8px;
  color: var(--brand-500);
}
.review-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 5px;
}
.review-text {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.65;
}
.review-pros-cons {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.review-pro, .review-con {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}
.review-pro { color: var(--success-500); }
.review-con { color: var(--error-500); }

.fav-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--brand-500);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Prose — typografické styly pro textové stránky */
.prose h2 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink-900); margin: 32px 0 12px; }
.prose h3 { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px; color: var(--ink-900); margin: 20px 0 8px; }
.prose p { font-size: 14px; line-height: 1.7; color: var(--ink-500); margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 12px; }
.prose li { font-size: 14px; line-height: 1.7; color: var(--ink-500); margin-bottom: 4px; }
.prose ul li { list-style-type: disc; }
.prose ol li { list-style-type: decimal; }
.prose strong { color: var(--ink-700); font-weight: 600; }
.prose a { color: var(--brand-500); text-decoration: underline; }

/* VOP Sidebar Navigation */
.vop-nav-link {
  display: block;
  padding: 6px 0 6px 10px;
  font-size: 13px;
  color: var(--ink-500);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  line-height: 1.4;
}
.vop-nav-link:hover {
  color: var(--brand-500);
  border-left-color: var(--line-200);
}
.vop-nav-link.is-active {
  color: var(--ink-900);
  border-left-color: var(--brand-500);
  font-weight: 500;
}

.vop-sticky-sidebar {
  position: sticky;
  top: 100px;
}

/* Floating Label Fields */
.field-float {
  position: relative;
}
.field-float-label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-300);
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease, transform 0.15s ease;
  line-height: 1;
}
/* Textarea: label anchored near top */
.field-float--textarea .field-float-label {
  top: 16px;
  transform: none;
}
/* Floated — text inputs & textarea */
.field-float input:focus ~ .field-float-label,
.field-float input:not(:placeholder-shown) ~ .field-float-label,
.field-float textarea:focus ~ .field-float-label,
.field-float textarea:not(:placeholder-shown) ~ .field-float-label {
  top: 8px;
  transform: none;
  font-size: 0.6875rem;
  color: var(--ink-500);
}
/* Floated — select */
.field-float select:focus ~ .field-float-label,
.field-float select.has-value ~ .field-float-label {
  top: 8px;
  transform: none;
  font-size: 0.6875rem;
  color: var(--ink-500);
}
/* On focus: label turns brand colour */
.field-float input:focus ~ .field-float-label,
.field-float select:focus ~ .field-float-label,
.field-float textarea:focus ~ .field-float-label {
  color: var(--brand-500);
}

/* ── Košík modal – slider doporučených produktů ────── */
.kosik-modal-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.kosik-modal-slider::-webkit-scrollbar { display: none; }
.kosik-modal-card {
  flex-shrink: 0;
  width: 88px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}
.kosik-modal-card-img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-200);
  background: var(--bg-0);
  transition: border-color 0.15s;
}
.kosik-modal-card:hover .kosik-modal-card-img { border-color: var(--brand-500); }
