:root {
  --brand-red: #e31f25;
  --brand-red-rgb: 227 31 37;
  --brand-red-rgb2: 227, 31, 37;
  --brand-red: rgb(var(--brand-red-rgb));
  --brand-red-04: rgb(var(--brand-red-rgb) / 0.04);
  --brand-red-06: rgb(var(--brand-red-rgb) / 0.06);
  --brand-red-07: rgb(var(--brand-red-rgb) / 0.07);
  --brand-red-08: rgb(var(--brand-red-rgb) / 0.08);
  --brand-red-10: rgb(var(--brand-red-rgb) / 0.1);
  --brand-red-12: rgb(var(--brand-red-rgb) / 0.12);
  --brand-red-14: rgb(var(--brand-red-rgb) / 0.14);
  --brand-red-18: rgb(var(--brand-red-rgb) / 0.18);
  --ink: #272322;
  --white: #ffffff;

  --bg: var(--white) fff;
  --surface: #f6f6f6;
  --surface-2: #f2f3f5;
  --border: #e6e6e6;
  --muted: #858383;
  --muted-2: #6f6d6d;

  --success: #1f8a4c;
  --warning: #b45309;
  --danger: #b42318;

  --link: var(--ink);
  --link-hover: var(--brand-red);

  --modra: #0d6efd;

  --font-sans:
    Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-28: 28px;
  --fs-34: 34px;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  --lh-body: 1.55;
  --lh-tight: 1.2;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 6px 18px rgba(0, 0, 0, 0.08);

  --r-8: 8px;
  --r-10: 10px;
  --r-12: 12px;

  --t-fast: 120ms;
  --t-base: 180ms;
  --easing: cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-16);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg);
}
main {
  min-height: calc(100vh - 37px - 86px - 226px - 49.15px - 48px);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
}
a {
  color: var(--link);
}
a,
a i {
  transition: color var(--t-base) var(--easing);
  text-decoration: none;
}
a:hover {
  color: var(--link-hover);
}
.btn {
  transition:
    background-color var(--t-base) var(--easing),
    border-color var(--t-base) var(--easing),
    color var(--t-base) var(--easing),
    box-shadow var(--t-base) var(--easing),
    transform var(--t-fast) var(--easing) !important;
}
.btn-primary {
  background: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
  border-radius: var(--r-10) !important;
  font-size: var(--fs-15);
  font-weight: 600;
}
.btn-primary:hover {
  filter: brightness(0.94);
  box-shadow: 0 0 0 3px rgba(227, 31, 37, 0.12);
}
.btn-light {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-10) !important;
  font-size: var(--fs-14);
  font-weight: 600;
}
.btn-light:hover,
.btn-light:focus {
  background: var(--white);
  border-color: rgba(227, 31, 37, 0.45) !important;
  box-shadow:
    0 0 0 3px rgba(227, 31, 37, 0.08),
    var(--shadow-1);
}
.btn-link-muted {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.btn-link-muted:hover {
  color: #111827;
  text-decoration: underline;
}
.btn-link-muted:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
  border-radius: 8px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.btn-group > :not(.btn-check) + .btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
#content,
#column-left,
#column-right {
  padding-bottom: 0;
}
.form-control,
.form-select {
  border-radius: 10px;
  transition:
    border-color var(--t-base) var(--easing),
    box-shadow var(--t-base) var(--easing) !important;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--ink) !important;
  box-shadow: 0 0 0 3px rgba(227, 31, 37, 0.15) !important;
}
.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.input-group-text {
  border-radius: 10px;
}
label {
  cursor: pointer;
  font-size: var(--fs-14);
}
.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  padding: 0.35rem 0.25rem;
  border-radius: 0.5rem;
}
.form-check label {
  width: 100%;
}
#form-register .form-check {
  display: inline-flex;
}
.form-check:has(.form-check-input:not(:disabled)):hover {
  background: rgba(227, 31, 37, 0.04);
}
.form-check:has(.form-check-input:checked) {
  background: rgba(227, 31, 37, 0.04);
}
.form-check-input {
  margin: 0 !important;
}
.form-check-input:checked {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
}
.form-check-input:focus {
  border-color: rgba(227, 31, 37, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(227, 31, 37, 0.18);
}
.form-switch .form-check-input:checked {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
}
.form-check:has(.form-check-input:not(:disabled)):hover .form-check-label {
  color: var(--brand-red);
}

.dropdown-menu .dropdown-item {
  transition:
    background-color var(--t-fast) var(--easing),
    color var(--t-fast) var(--easing) !important;
}

/* ========= ALert ========== */

#alert {
  position: fixed;
  top: var(--alert-top, 12px);
  right: 12px;
  left: auto;
  z-index: 1080;
  width: min(560px, calc(100vw - 24px));
  pointer-events: none;
  margin-left: 0;
}
#alert .alert {
  pointer-events: auto;
  margin: 0 0 12px 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  transform: translateX(0);
}
#alert .alert.is-hiding {
  opacity: 0;
  transform: translateX(120%);
}

.alert {
  border-radius: 14px;
  border-width: 1px;
  padding: 14px 44px 14px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
  font-size: 14px;
  line-height: 1.45;
}
.alert.alert-dismissible > i {
  margin-right: 0.5rem;
  font-size: 16px;
  vertical-align: -1px;
}
.alert.alert-dismissible .btn-close {
  opacity: 0.55;
  transform: scale(0.9);
}
.alert.alert-dismissible .btn-close:hover {
  opacity: 0.85;
}
.alert ul {
  margin-bottom: 0;
}
.alert a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.alert a:hover {
  border-bottom-color: currentColor;
}
.alert-success {
  background: #eaf7ef;
  border-color: #bfe9cc;
  color: #1d5b2b;
}
.alert-success > i,
.alert-success a {
  color: #1d5b2b;
}
.alert-success > i {
  opacity: 0.6;
}
.alert-success > i:hover {
  opacity: 1;
}
.alert-danger {
  background: #fff1f1;
  border-color: rgba(227, 31, 37, 0.35);
  color: #7a0f13;
}
.alert-danger > i,
.alert-danger a {
  color: var(--brand-red);
}
@media (max-width: 575.98px) {
  #alert {
    top: auto;
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
  }
}

/* ========= Top bar ============= */

#top {
  padding-bottom: 0;
  margin-bottom: 0;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  color: #5f5d5d;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
}
.topbar__inner .list-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
#top .list-inline-item > a,
#top .list-inline-item .dropdown > a {
  color: #5f5d5d;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 8px;
  line-height: 1;
  font-size: var(--fs-14);
  display: flex;
  align-items: center;
  vertical-align: auto;
  gap: 10px;
}
#top .list-inline-item > a i,
#top .list-inline-item .dropdown > a i {
  opacity: 0.8;
  font-size: 0.95em;
}
#top a:hover,
#top .list-inline-item .dropdown > a:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.03);
}
#top a:hover i,
#top .list-inline-item .dropdown > a:hover i {
  color: var(--brand-red);
}
#top a:hover span:not(.badge-count),
#top .list-inline-item .dropdown > a:hover span:not(.badge-count) {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}
.dropdown-toggle::after {
  opacity: 0.55;
  transform: translateY(1px);
}
.badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted-2);
  font-size: var(--fs-12);
  line-height: 1;
  transform: translateY(1px);
}
#top .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--r-12);
  box-shadow: var(--shadow-2);
  padding: 8px;
  margin-top: 8px !important;
  min-width: 200px;
}
#top .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 22px;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
  box-shadow: -2px -2px 6px rgba(0, 0, 0, 0.03);
}
#top .dropdown-item {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: var(--fs-14);
  color: var(--ink);
}
#top .dropdown-item:hover,
#top .dropdown-item:focus {
  background: var(--surface);
  color: var(--ink);
}
#top .dropdown-item.active,
#top .dropdown-item:active {
  background: rgba(227, 31, 37, 0.1);
  color: var(--ink);
}
#top .dropdown-divider {
  border-top: 1px solid var(--border);
  opacity: 1;
}

@media (max-width: 991.98px) {
  #top .dropdown-menu::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  #top {
    font-size: var(--fs-12);
  }
  .topbar__inner {
    padding: 8px 0;
  }
  #wishlist-total span {
    display: none;
  }
}

/* ========= Header ============= */
header {
  padding: 14px 0 10px;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 10px 16px;
  flex-wrap: wrap;
}
header #logo {
  flex: 0 1 auto;
  margin: 0;
  min-width: 240px;
  transform: translateY(-1px);
}
header #logo img {
  display: block;
  max-height: 62px;
  height: auto;
  width: auto;
}
header form.hladaj {
  flex: 1 1 320px;
  margin: 0;
}
header form.hladaj.input-group {
  border: 1px solid var(--border);
  border-radius: var(--r-12);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  background: var(--white);
}
header form.hladaj.input-group:focus-within {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(227, 31, 37, 0.12);
}
header form.hladaj .form-control {
  border: 0 !important;
  box-shadow: none !important;
  height: 46px;
  padding: 0 14px;
}
header form.hladaj .btn {
  border: 0;
  width: 52px;
  background: var(--surface);
  color: var(--ink);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
header form.hladaj .btn:hover {
  background: var(--surface-2);
  border-color: var(--border) !important;
}
header #cart {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 220px;
  margin: 0;
}
header #cart .btn.kosik {
  height: 48px;
  border-radius: var(--r-12);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
header #cart .kosik:hover {
  border-color: rgba(227, 31, 37, 0.45);
  box-shadow:
    0 0 0 3px rgba(227, 31, 37, 0.08),
    var(--shadow-1);
}
header #cart .kosik:hover i {
  color: var(--brand-red);
}

@media (max-width: 991.98px) {
  .header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo cart"
      "search search";
    align-items: center;
    gap: 10px 12px;
  }
  header .hladaj {
    flex: 1 1 220px;
    grid-area: search;
    width: 100%;
  }
  header #cart {
    padding-left: 12px;
    white-space: nowrap;
    grid-area: cart;
    justify-self: end;
  }
  header #logo {
    grid-area: logo;
    min-width: auto;
  }
  header .hladaj .form-control {
    min-height: 44px;
  }
  header .hladaj .btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
  }
  header #cart .btn.kosik {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.95rem;
  }
}

/* ========= mini-cart dropdown ============= */

#cart .dropdown-menu {
  width: 440px;
  max-width: calc(100vw - 24px);
  border: 1px solid var(--border);
  border-radius: var(--r-12);
  box-shadow: var(--shadow-2);
  padding: 12px !important;
  background: var(--white);
  right: 0 !important;
  left: auto !important;
  margin-top: 10px !important;
}
#cart .dropdown-menu li {
  min-width: auto;
}
.mini-cart__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 360px;
  overflow: auto;
  position: relative;
}
.mini-cart__list::-webkit-scrollbar {
  width: 10px;
}
.mini-cart__list::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 999px;
  border: 2px solid var(--white);
}
.mini-cart__list::after {
  content: "";
  position: sticky;
  bottom: 0;
  display: block;
  height: 18px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  pointer-events: none;
}
.mini-cart__item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.mini-cart__item:first-child {
  border-top: 0;
  padding-top: 0;
}
.mini-cart__thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mini-cart__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  transition:
    box-shadow var(--t-base) var(--easing),
    border-color var(--t-base) var(--easing);
}
.mini-cart__thumb img:hover {
  box-shadow: var(--shadow-2);
  border-color: rgba(227, 31, 37, 0.35);
}
.mini-cart__body {
  flex: 1 1 auto;
  min-width: 0;
}
.mini-cart__title {
  display: block;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
  color: var(--ink);
  text-decoration: none;
  line-height: 1.25;
}
.mini-cart__title:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(227, 31, 37, 0.85);
  text-underline-offset: 2px;
}
.mini-cart__meta {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  font-size: var(--fs-12);
  color: var(--muted);
  line-height: 1.35;
}
.mini-cart__meta li {
  margin: 2px 0;
}
.mini-cart__aside {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mini-cart__qtyprice {
  text-align: right;
  white-space: nowrap;
  font-size: var(--fs-13);
}
.mini-cart__qty {
  display: block;
  color: var(--muted-2);
  font-weight: var(--fw-600);
}
.mini-cart__price {
  display: block;
  font-weight: var(--fw-700);
  font-size: var(--fs-14);
}
.btn-remove {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted-2);
}
.btn-remove:hover {
  border-color: rgba(227, 31, 37, 0.35);
  box-shadow: 0 0 0 3px rgba(227, 31, 37, 0.1);
  color: var(--brand-red);
}
.btn-remove:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(227, 31, 37, 0.15);
}
.mini-cart__summary {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 10px;
}
.mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 4px 0;
  font-size: var(--fs-13);
}
.mini-cart__label {
  font-size: var(--fs-13);
  color: var(--muted-2);
}
.mini-cart__value {
  font-weight: var(--fw-600);
}
.mini-cart__total.is-grand .mini-cart__value {
  font-weight: var(--fw-700);
  font-size: var(--fs-16);
}
.mini-cart__footer {
  position: sticky;
  bottom: 0;
  background: var(--white);
  padding-top: 10px;
}
.mini-cart__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}
.mini-cart__actions .btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px !important;
  padding: 0 12px;
  text-decoration: none;
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
}
.mini-cart__actions .btn-outline {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: var(--fs-13);
}
.mini-cart__actions .btn-outline:hover {
  border-color: rgba(227, 31, 37, 0.35);
}

/* ========= menu ============= */

#menu {
  border: 0;
  position: relative;
  z-index: 50;
}

#menu.navbar {
  background: #2091b7 !important;
  border-radius: var(--r-12);
  padding: 8px 10px;
  box-shadow: var(--shadow-1);
  border: 0;
}

#menu .navbar-nav {
  gap: 4px;
}

#menu .navbar-nav > li > a {
  color: var(--white);
  font-size: var(--fs-15);
  font-weight: var(--fw-600);
  padding: 11px 14px;
  border-radius: 10px;
  line-height: 1.2;
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

#menu .navbar-nav > li > a.nav-link:hover,
#menu .navbar-nav > li > a.nav-link:focus,
#menu .navbar-nav > li.catalog-mega:hover > a.nav-link,
#menu .navbar-nav > li.catalog-mega:focus > a.nav-link {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.45);
}

#menu.navbar .nav-item.active > a,
#menu.navbar .nav-link.active {
  background: rgba(255, 255, 255, 0.2) !important;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.65);
}

#menu .dropdown-toggle::after {
  opacity: 0.75;
  transform: translateY(1px);
}
#menu .navbar-toggler {
  min-width: 48px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

#menu .navbar-toggler:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

#menu .navbar-toggler[aria-expanded="true"] {
  background: rgba(0, 0, 0, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

#menu .navbar-toggler:focus {
  box-shadow: none;
}

#menu .navbar-toggler:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

#menu .catalog-mega {
  position: relative;
}

#menu .catalog-mega > .dropdown-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -11px;
  height: 12px;
  background: transparent;
}

#menu .dropdown-mega {
  width: min(980px, 92vw);
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-12);
  box-shadow: var(--shadow-2);
  margin-top: 10px;
  z-index: 60;
}

#menu .dropdown-mega .catalog-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 16px;
}

#menu .dropdown-mega .catalog-cols .dropdown-item {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  line-height: 1.3;
  text-decoration: none;
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

#menu .dropdown-mega .catalog-cols .dropdown-item:hover,
#menu .dropdown-mega .catalog-cols .dropdown-item:focus {
  background: var(--surface);
  color: var(--ink);
}

#menu .dropdown-mega .catalog-cols .dropdown-item:hover {
  box-shadow: inset 2px 0 0 rgba(227, 31, 37, 0.55);
}

#menu .dropdown-mega-footer {
  margin-top: 12px;
}

#menu .dropdown-mega-footer .dropdown-divider {
  border-top: 1px solid var(--border);
  opacity: 1;
}

#menu .dropdown-mega-footer .dropdown-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  width: auto;
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
}

#menu .dropdown-mega-footer .dropdown-item:hover {
  border-color: rgba(227, 31, 37, 0.35);
  box-shadow: 0 0 0 3px rgba(227, 31, 37, 0.1);
}

@media (max-width: 1199.98px) {
  #menu .dropdown-mega .catalog-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  #menu.navbar {
    padding: 7px 8px;
  }

  #menu .navbar-collapse {
    margin-top: 10px;
  }
  #menu .navbar-toggler {
    min-width: 44px;
    min-height: 36px;
  }

  #menu .navbar-toggler .fa-bars {
    font-size: 15px;
  }
  #menu .dropdown-toggle::after {
    opacity: 0.95;
    margin-left: 8px;
  }
  #menu .navbar-nav {
    gap: 2px;
  }

  #menu .navbar-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.25;
    border-radius: 10px;
    font-weight: 600;
  }

  #menu .navbar-nav > li + li {
    margin-top: 2px;
  }

  #menu .catalog-mega > .dropdown-mega::before {
    display: none;
  }

  #menu .catalog-mega .dropdown-mega {
    left: 0;
    right: auto;
    position: static;
    width: 100%;
    margin-top: 4px;
    padding: 8px;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
  }

  #menu .dropdown-mega .catalog-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  #menu .dropdown-mega .catalog-cols .dropdown-item {
    padding: 8px 12px 8px 16px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: var(--fw-500);
    line-height: 1.25;
    background: transparent;
    opacity: 0.92;
  }

  #menu .dropdown-mega .catalog-cols .dropdown-item:hover,
  #menu .dropdown-mega .catalog-cols .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: none;
  }

  #menu .dropdown-mega-footer {
    margin-top: 8px;
  }

  #menu .dropdown-mega-footer .dropdown-divider {
    margin: 8px 0;
    border-top-color: rgba(255, 255, 255, 0.18);
  }

  #menu .dropdown-mega-footer .dropdown-item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 11px 12px 11px 16px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 15px;
    font-weight: var(--fw-700);
  }

  #menu .dropdown-mega-footer .dropdown-item:hover,
  #menu .dropdown-mega-footer .dropdown-item:focus {
    border-color: transparent;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.14);
  }
  #menu .catalog-mega > .nav-link {
    font-weight: 700;
  }
}

@media (max-width: 575.98px) {
  #menu.navbar {
    border-radius: 12px;
    padding: 7px;
  }

  #menu .navbar-collapse {
    margin-top: 8px;
  }

  #menu .navbar-nav > li > a {
    padding: 11px 12px;
    font-size: 15px;
  }

  #menu .catalog-mega .dropdown-mega {
    padding: 6px;
    border-radius: 8px;
  }

  #menu .dropdown-mega .catalog-cols .dropdown-item,
  #menu .dropdown-mega-footer .dropdown-item {
    padding-left: 14px;
    font-size: 14px;
  }
}

/* ========= Footer ========== */

footer:not(.review-card__footer) {
  background: #2f2f2f;
  color: rgba(255, 255, 255, 0.75);
  padding: 44px 0 28px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  bottom: 0;
  position: relative;
}
footer .row {
  row-gap: 22px;
}
footer h2 {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-14);
  font-weight: var(--fw-700);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
footer ul {
  margin: 0;
}
footer li + li {
  margin-top: 8px;
}
footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: var(--fs-14);
}
footer a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  background: #2a2a2a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-13);
  padding: 14px 0;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom a:hover {
  color: var(--white);
}
.footer-bottom .muted {
  opacity: 0.75;
}

@media (max-width: 991.98px) {
  footer {
    padding: 36px 0 22px;
  }
  footer .col-sm-3 {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  footer .footer-top {
    padding: 24px 0 20px;
  }

  footer h2 {
    margin-bottom: 10px;
  }

  footer .list-unstyled li + li {
    margin-top: 7px;
  }
  .footer-bottom {
    font-size: 11px;
    line-height: 1.4;
  }
}

/* ========= Home ========== */

/* Home sections */
.home-hero {
  margin: 18px 0 22px;
}
.home-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}
.home-hero__copy {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-12);
  padding: 22px;
  box-shadow: var(--shadow-1);
}
.home-hero__title {
  font-size: var(--fs-34);
  line-height: var(--lh-tight);
  margin: 0 0 10px;
}
.home-hero__lead {
  margin: 0 0 16px;
  color: var(--muted-2);
}
.home-hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-outline {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--r-12);
}
.btn-outline:hover {
  border-color: rgba(227, 31, 37, 0.28);
  box-shadow: 0 0 0 3px rgba(227, 31, 37, 0.08);
  background: var(--white);
}
.btn-cta {
  padding: 10px 14px;
  font-size: var(--fs-14);
  font-weight: var(--fw-700);
  line-height: 1.1;
}

.home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: var(--fs-13);
  color: var(--muted-2);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-1);
}
.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(227, 31, 37, 0.8);
}

.home-hero__media {
  padding: 10px;
  border-radius: var(--r-12);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.home-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transform: scale(1.08);
  transform-origin: center;
}

.home-tiles,
.featured {
  margin-top: 24px;
}

.home-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 6px 0 10px;
}
.home-section__title {
  font-size: var(--fs-20);
  margin: 0;
}

.home-tiles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-tile {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--r-12);
  background: var(--white);
  box-shadow: var(--shadow-1);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition:
    border-color var(--t-base) var(--easing),
    box-shadow var(--t-base) var(--easing),
    transform var(--t-fast) var(--easing);
}
.home-tile:hover {
  border-color: rgba(227, 31, 37, 0.28);
  box-shadow: var(--shadow-2);
  transform: translateY(-1px);
}
.home-tile__img {
  background: var(--surface-2);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-tile__title {
  padding: 12px 12px 14px;
  font-size: var(--fs-15);
  font-weight: var(--fw-600);
  color: var(--ink);
  text-decoration: none;
}
.home-tile:hover .home-tile__title {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(227, 31, 37, 0.85);
}

.home-trust {
  margin: 18px 0;
}
.home-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-trust__item {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--r-12);
  padding: 12px;
  box-shadow: var(--shadow-1);
}
.home-trust__item strong {
  display: block;
  font-size: var(--fs-14);
  font-weight: var(--fw-700);
  margin-bottom: 4px;
}
.home-trust__item span {
  color: var(--muted-2);
  font-size: var(--fs-14);
}

.home-info {
  margin: 18px 0;
}
.home-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.home-card {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--r-12);
  padding: 16px;
  box-shadow: var(--shadow-1);
}
.home-card h3 {
  margin: 0 0 8px;
  font-size: var(--fs-18);
}
.home-card p {
  margin: 0 0 10px;
  color: var(--muted-2);
}
.home-card a {
  font-weight: var(--fw-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.home-card a:hover {
  color: var(--brand-red);
}
.home-card a::after {
  content: "→";
  margin-left: 6px;
}

.home-seo {
  margin: 18px 0 6px;
  padding: 16px;
  border-radius: var(--r-12);
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.home-seo h2 {
  font-size: var(--fs-18);
  margin: 0 0 8px;
}
.home-seo p {
  margin: 0;
  color: var(--muted-2);
  font-size: var(--fs-14);
}

.featured .row {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 16px;
}
.featured .col {
  margin-bottom: 0 !important;
}
.featured h3 {
  font-size: var(--fs-20);
  margin: 18px 0 10px;
}

@media (max-width: 991.98px) {
  .home-hero__inner {
    grid-template-columns: 1fr;
  }
  .home-tiles__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .home-trust__grid {
    grid-template-columns: 1fr;
  }
  .home-info__grid {
    grid-template-columns: 1fr;
  }
  .featured .product-thumb h4 {
    line-height: 1.3;
    padding-top: 10px;
  }
  .featured .product-thumb .price-new {
    margin-top: 6px;
  }
}

/* ========= BREADCRUMB ========== */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 10px 0 16px;
  padding: 6px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: var(--fs-14);
}
.breadcrumb > li.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: none;
  padding: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "›" !important;
  color: var(--muted);
  opacity: 0.7;
  padding: 0 2px !important;
}
.breadcrumb > li.breadcrumb-item::after {
  display: none;
}
.breadcrumb > li.breadcrumb-item > a {
  color: var(--muted-2);
}
.breadcrumb > li.breadcrumb-item:not(:first-child) > a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(227, 31, 37, 0.55);
}
.breadcrumb i {
  font-size: 14px;
}
.breadcrumb > li.breadcrumb-item:first-child > a {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px;
  border-radius: 8px;
}
.breadcrumb > li.breadcrumb-item:first-child > a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--brand-red);
}
.breadcrumb > li.breadcrumb-item:last-child {
  flex: 1 1 auto;
  max-width: 160px;
}
.breadcrumb .breadcrumb-current {
  color: var(--ink);
  font-weight: var(--fw-600);
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========= INFORMATION ========== */

#content {
  font-size: var(--fs-16);
  line-height: 1.6;
}
#content .page-lead {
  font-size: var(--fs-18);
  color: var(--muted-2);
  margin: 22px 0 10px;
}
#content h1 {
  font-size: var(--fs-34);
  line-height: var(--lh-tight);
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}
#content h2 {
  font-size: var(--fs-22);
  font-weight: var(--fw-700);
  line-height: 1.25;
  margin: 26px 0 10px;
  padding-top: 6px;
}
#content h3 {
  font-size: var(--fs-18);
  font-weight: var(--fw-700);
  margin: 18px 0 8px;
}
#content h4 {
  font-size: var(--fs-16);
  font-weight: var(--fw-700);
  margin: 14px 0 6px;
}
#content h2:first-of-type {
  margin-top: 18px;
}
#content *:not(.home-seo) p:not(.review-card__text) {
  margin: 0 0 12px;
  max-width: 75ch;
}
#content > h1 + p {
  font-size: var(--fs-18);
  color: var(--muted-2);
  margin: 0 0 18px;
  line-height: 1.45;
}
#common-success #content > h1 + p {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  margin: 0 0 1rem;
}
#content p br {
  line-height: 1.9;
}
#content ul,
#content ol {
  margin: 0 0 14px 18px;
  padding: 0;
}
#content li {
  margin: 0 0 6px;
}
#content strong {
  font-weight: var(--fw-700);
}
#content hr {
  border-color: var(--border);
  opacity: 1;
  margin: 18px 0;
}
/* úvodný callout */
.legal-callout {
  background: #f6f7f8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 12px 0 22px;
}
.legal-callout ul {
  margin: 0;
  padding-left: 18px;
}
/* Tables inside info pages */
#content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 10px 0 18px;
  font-size: 14px;
}
#content th,
#content td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  vertical-align: top;
}
#content th {
  font-weight: 600;
  background: rgba(0, 0, 0, 0.06);
}
#content table thead th {
  border-top: inherit;
}
#content table thead th:first-child {
  border-top-left-radius: 10px;
}
#content table thead th:last-child {
  border-top-right-radius: 10px;
}

#content #shopping-cart .alert {
  margin-bottom: 20px;
}
#content #shopping-cart table img {
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  transition:
    box-shadow var(--t-base) var(--easing),
    border-color var(--t-base) var(--easing);
}
#content #shopping-cart table img:hover {
  box-shadow: var(--shadow-2);
  border-color: rgba(227, 31, 37, 0.35);
}
#content #shopping-cart table a:not(.btn),
#checkout-checkout table a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
#content #shopping-cart table a:not(.btn):hover,
#checkout-checkout table a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(227, 31, 37, 0.85);
  text-underline-offset: 2px;
}
#content #shopping-cart table ul {
  font-size: 12px;
  color: var(--muted);
}
#content #shopping-cart table .stock-warning {
  color: var(--brand-red);
  font-weight: 700;
}
#content #shopping-cart input {
  width: 4rem;
}

#content fieldset {
  margin-bottom: 22px;
}
#content legend {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
#account-gdpr #content .input-group-text {
  background: var(--white);
  border-right: 0;
}
#account-gdpr #content #input-email {
  border-left: 0;
}

@media (max-width: 575.98px) {
  #content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ========= KONTAKT ========== */
.contact-loc .card-body {
  padding: 18px 18px;
}
.contact-loc__title {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  margin-bottom: 8px;
}
.contact-loc__address {
  margin: 0;
  font-style: normal;
  color: rgba(0, 0, 0, 0.7);
}
.contact-loc__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  text-transform: none;
}
.contact-loc__value {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.85);
}
.contact-loc__tel {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.contact-loc__tel:hover {
  text-decoration: underline;
}
.contact-loc__note {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
}

/* ========= Sitemap ========== */
.sitemap {
  margin-top: 12px;
}
.sitemap__section {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 16px 16px;
}
.sitemap__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.sitemap__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.sitemap__section--cats ul {
  line-height: 1.45;
}
.sitemap__section--cats .sitemap__list--lvl1 {
  column-count: 2;
  column-gap: 28px;
}
@media (min-width: 1200px) {
  .sitemap__section--cats .sitemap__list--lvl1 {
    column-count: 3;
  }
}
.sitemap__section--cats .sitemap__list--lvl1 > li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 10px;
}
.sitemap__list--lvl2 {
  padding-left: 14px;
  margin-top: 6px;
}
.sitemap__list--lvl3 {
  padding-left: 14px;
  margin-top: 6px;
}
.sitemap__list > li {
  margin: 6px 0;
}
.sitemap__section--cats ul ul > li::before {
  background: rgba(0, 0, 0, 0.1);
  width: 4px;
  height: 4px;
}
.sitemap__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  padding: 6px 8px;
  line-height: 1.25;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}
.sitemap__link:hover,
.sitemap__link:focus {
  background: rgba(227, 31, 37, 0.06);
  color: var(--brand-red);
  outline: none;
}
.sitemap__link--lvl1 {
  font-weight: 600;
}
.sitemap__link--lvl2 {
  font-weight: 500;
  opacity: 0.95;
}
.sitemap__link--lvl3 {
  font-weight: 500;
  opacity: 0.9;
}
.sitemap__list--lvl2 > li,
.sitemap__list--lvl3 > li {
  position: relative;
}
.sitemap__list--lvl2 > li::before,
.sitemap__list--lvl3 > li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: -10px;
  top: 14px;
}

/* ========= Search ========== */

.search-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  border: 0;
  margin: 1.25rem 0 1.5rem;
}
#product-search h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

/* ========= Produkty toolbar ========== */

#display-control {
  --ctl-h: 40px;
  margin-bottom: 20px;
}
#display-control .btn,
#display-control .form-select,
#display-control .input-group-text {
  height: var(--ctl-h);
}
#display-control .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0;
  padding-bottom: 0;
}
#display-control .btn-compare {
  border-radius: 999px !important;
  font-weight: 600;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}
#compare-total.btn.btn-primary {
  background: transparent !important;
  border-color: var(--brand-red) !important;
  color: var(--brand-red);
  display: flex !important;
}
#compare-total.btn.btn-primary:hover {
  background: rgba(227, 31, 37, 0.08);
}
#display-control .btn-group {
  height: var(--ctl-h);
}
#display-control #button-list,
#display-control #button-grid {
  width: var(--ctl-h);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#display-control #button-list.btn,
#display-control #button-grid.btn {
  border-color: #e6e6e6;
  color: #333;
}
#display-control #button-list.active,
#display-control #button-grid.active {
  border-color: var(--brand-red);
  background: rgba(227, 31, 37, 0.08);
  color: var(--brand-red);
}
#display-control #button-list:hover,
#display-control #button-grid:hover {
  background: #f6f6f6;
}
#display-control .input-group-text {
  background: #f3f4f6;
  border-color: #e6e6e6;
  color: #555;
  font-weight: 600;
  padding-top: 0;
  padding-bottom: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
#display-control .form-select {
  border-color: #e6e6e6;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  line-height: 1.2;
}
@media (min-width: 991.98px) {
  #display-control {
    align-items: center;
  }
  #display-control .col-md-4.offset-md-1 {
    margin-left: auto;
  }
  #display-control > [class*="col-"] {
    display: flex;
    align-items: start;
  }
}

/* ========= Produkty ========== */

.product-thumb {
  border: 1px solid var(--border);
  border-radius: var(--r-12);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  background: var(--white);
  transition:
    box-shadow var(--t-base) var(--easing),
    transform var(--t-fast) var(--easing),
    border-color var(--t-base) var(--easing);
}
.product-thumb:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-1px);
  border-color: rgba(227, 31, 37, 0.35);
}
.product-thumb .image {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.product-thumb .image a:hover {
  opacity: 1;
}
.product-thumb h4 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--fs-16);
  font-weight: var(--fw-600);
  line-height: 1.25;
  margin: 0 0 8px;
}
.product-thumb h4 a {
  text-decoration: none;
  color: var(--ink);
}
.product-thumb:hover h4 a {
  text-decoration: underline;
  text-decoration-color: rgba(227, 31, 37, 0.85);
  text-underline-offset: 2px;
}
.product-thumb .description {
  padding: 12px;
}
.product-thumb .description p {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-thumb .price-new {
  font-size: var(--fs-16);
  font-weight: var(--fw-700);
  margin-top: 8px;
}
.product-thumb .image img {
  width: 100%;
  height: 280px;
  object-fit: contain;
}
.product-thumb .button button {
  transition:
    background-color var(--t-base) var(--easing),
    border-color var(--t-base) var(--easing),
    color var(--t-base) var(--easing),
    box-shadow var(--t-base) var(--easing),
    transform var(--t-fast) var(--easing) !important;
}
.product-thumb .button button:hover {
  background-color: rgba(227, 31, 37, 0.06);
  color: var(--brand-red);
}

@media (max-width: 575.98px) {
  #product-info #content h1 {
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: 14px;
    margin-top: 14px;
  }
}

/* LIST view */
.product-list .product-thumb {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: var(--white);
}
.product-list .product-thumb:hover {
  border-color: rgba(227, 31, 37, 0.35);
}
.product-list .product-thumb .image {
  align-self: start;
  border-bottom: 0;
}
.product-list .product-thumb .image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}
.product-list .product-thumb .content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.product-list .product-thumb .description h4 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
}
.product-list .product-thumb .description p {
  margin: 0 0 10px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-list .product-thumb .price {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}
.product-list .product-thumb form {
  margin-top: auto;
}
.product-list .product-thumb .button {
  display: inline-flex;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 0;
}
.product-list .product-thumb .button button {
  width: 44px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-1);
  background: var(--white);
  border-radius: var(--r-12) !important;
  font-size: var(--fs-14);
  font-weight: 600;
}
.product-list .product-thumb .button button:hover {
  background: var(--white);
  border-color: rgba(227, 31, 37, 0.45);
  box-shadow:
    0 0 0 3px rgba(227, 31, 37, 0.08),
    var(--shadow-1);
}

/* homepage */

.featured .product-thumb .image img {
  height: 220px;
}
.featured .product-thumb .description p {
  display: none;
}
.featured form {
  display: none;
}
@media (min-width: 1200px) {
  .product-thumb .image img {
    height: 300px;
  }
}
@media (max-width: 991.98px) {
  .product-thumb h4 {
    font-size: var(--fs-15);
  }
}

/* ========= porovnanie produktov ========== */

#content .compare-table thead th {
  background: #e3e6ea !important;
  color: inherit;
  position: sticky;
  top: 0;
  z-index: 3;
}
#content .compare-table .compare-section th {
  background: #f1f3f5;
  font-weight: 700;
  border-top: 1px solid #dee2e6;
}
#content .compare-table td,
#content .compare-table th {
  vertical-align: middle;
  background-clip: padding-box;
  white-space: normal;
  overflow-wrap: anywhere;
}
#content .compare-table td.description {
  vertical-align: top;
}

/* horizontalny scroll */
#content .compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #e9ecef inset;
  scrollbar-gutter: stable both-edges;
}
#content .compare-table {
  margin: 0;
  table-layout: fixed;
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
#content .compare-table td:not(:first-child),
#content .compare-table th:not(:first-child) {
  width: 240px;
  min-width: 240px;
  max-width: 240px;
}
#content .compare-table .compare-sticky,
#content .compare-table td:first-child,
#content .compare-table th:first-child {
  width: 180px;
  min-width: 180px;
  max-width: 180px;
  position: sticky;
  left: 0;
  z-index: 2;
  background: #f1f3f5;
  box-shadow: 8px 0 12px -12px rgba(0, 0, 0, 0.25);
}
#content .compare-table thead th:first-child,
#content .compare-section th:first-child {
  border-right: 0;
  box-shadow: none;
}
#content .compare-table thead th:last-child,
#content .compare-section th:last-child {
  border-left: 0;
}

/* ========= checkout ========== */
#checkout-checkout fieldset {
  background-color: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
#checkout-checkout .input-group input {
  border-left: 0;
}
#checkout-checkout .input-group-text {
  background: var(--white);
  border-right: 0;
}
#checkout-checkout .input-group:has(input.is-invalid) .input-group-text {
  border-color: var(--bs-form-invalid-border-color);
}
#checkout-checkout .input-group .btn {
  font-size: 14px;
}
#checkout-checkout table small {
  font-size: var(--fs-12);
  color: var(--muted);
}
.modal-content {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.modal-header .btn-close {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 0 0 auto;
  padding: 0;
}
.modal-content p {
  font-size: 0.9rem;
  color: var(--muted);
}
.modal-content p:not(:first-child) {
  margin: 0;
  margin-top: 1rem;
}
.modal-content strong {
  font-weight: 600;
}
.modal-content .form-check {
  padding: 10px 12px;
  border-radius: 10px;
  margin: 4px 0;
}
.modal-content .btn-primary {
  font-size: 14px;
  padding: 12px 14px;
}
.modal-content label {
  display: flex;
  justify-content: space-between;
}
.modal-content label span {
  font-weight: 600;
  white-space: nowrap;
}
.paybox {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  max-width: 360px;
  line-height: 1.45;
}
.paybox strong {
  color: var(--muted);
  font-weight: 500;
}
.paybox .mono {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}

/* ========= PBS ========== */

.bankovy-prevod {
  display: flex;
  justify-content: space-between;
  padding: 32px 40px 28px;
  background-color: #f5faff;
  border-color: #bfdbfe;
}
.bankovy-prevod div:first-child span {
  font-weight: 600;
}

.qr-image {
  border: 1px solid rgba(15, 23, 42, 0.12);
  max-width: 100%;
  width: 240px;
  height: auto;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  padding: 8px;
  margin: 0;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.qr-bottom-txt {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.55;
}

.qr-bottom-txt .qr-txt-blue {
  color: #6fa4d7;
  font-weight: bold;
}

.qr-bottom-txt .qr-txt-gray {
  color: #ccc;
}

.qr-bottom-txt .qr-card {
  width: 20px;
  height: auto;
}

#common-success .btn-primary {
  padding: 10px 16px;
  font-size: 14px;
}

/* ========= Bocne menu ========== */

aside .list-group {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #edf0f3;
  background: var(--white);
}
aside .list-group .list-group-item {
  border: 0;
  border-bottom: 1px solid #eef1f4;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  line-height: 1.2;
  word-break: break-word;
  position: relative;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}
aside .list-group .list-group-item:last-child {
  border-bottom: 0;
}
aside .list-group .list-group-item:hover {
  background: #fafbfc;
  color: #111827;
}

/* level indentation */
aside .list-group .list-group-item.is-l2 {
  padding-left: 26px;
  font-weight: 600;
}
aside .list-group .list-group-item.is-l3 {
  padding-left: 42px;
  font-size: 13px;
  font-weight: 500;
}

/* small bullets */
aside .list-group .list-group-item.is-l2::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c5ccd6;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
aside .list-group .list-group-item.is-l3::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d6dde6;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
aside .list-group .list-group-item.is-open {
  background: rgba(227, 31, 37, 0.04);
}
aside .list-group .list-group-item.is-l2.is-open {
  background: rgba(227, 31, 37, 0.08);
}
aside .list-group .list-group-item.is-open::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(227, 31, 37, 0.35);
}
aside .list-group .list-group-item.is-current {
  background: rgba(227, 31, 37, 0.08);
  font-weight: 600;
}
aside .list-group .list-group-item.is-current::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-red);
}
aside .list-group .list-group-item.is-l2.is-open::after,
aside .list-group .list-group-item.is-l2.is-current::after,
aside .list-group .list-group-item.is-l3.is-open::after,
aside .list-group .list-group-item.is-l3.is-current::after {
  background: var(--brand-red);
}

/* ========= Spodne menu ========== */

#content .refine-subcats h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 11px;
}
.refine-subcats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.refine-subcats a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid #e6e8ee;
  border-radius: 10px;
  background: var(--white);
  color: #1f2937;
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  text-decoration: none;
}
.refine-subcats a:hover {
  background: rgba(227, 31, 37, 0.06);
  border-color: rgba(227, 31, 37, 0.35);
  color: var(--ink);
}
.refine-subcats a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(227, 31, 37, 0.18);
  border-color: rgba(227, 31, 37, 0.55);
}
.refine-subcats a.is-active {
  background: rgba(227, 31, 37, 0.1);
  border-color: rgba(227, 31, 37, 0.55);
  border-color: var(--brand-red);
  color: var(--ink);
  font-weight: 600;
}

/* ========= bez produktov ========== */

.empty-state {
  border: 1px solid #edf0f3;
  border-radius: 12px;
  background: var(--white);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 640px;
  margin-top: 16px;
}
.empty-state__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.08);
  color: var(--modra);
  flex: 0 0 auto;
}
#content h2.empty-state__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

.empty-state__text {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 14px;
}

.empty-state__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* ========= produkt detail ========== */
.product-main-image img {
  width: 100%;
  border: 1px solid #edf0f3;
  border-radius: 12px;
  background: var(--white);
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 991.98px) {
  .product-gallery {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .product-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.product-gallery .product-thumb {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--white);
  border: 1px solid #f0f2f5;
  border-radius: 10px;
}
.product-gallery a:hover img {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.product-meta {
  margin: 0 !important;
}
.product-meta li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid #eef1f4;
  font-size: 14px;
  margin: 0 !important;
}
.product-meta li:last-child {
  border-bottom: 0;
}
.product-meta li > *:first-child {
  min-width: 110px;
  color: var(--muted);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 14px;
}
.product-rating .text-muted {
  color: var(--muted) !important;
}
.product-rating .btn.btn-link {
  font-size: 13px;
  text-decoration: none;
}
.product-rating .btn.btn-link:hover {
  text-decoration: underline;
}

#product {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}
#product .input-group > * {
  height: 40px !important;
  align-items: center;
  font-size: 14px;
}
#product .input-group-text {
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  #product {
    flex-direction: column;
    align-items: start;
  }
  #form-product #button-cart {
    min-width: auto !important;
  }
}
@media (max-width: 575.98px) {
  #product .input-group-text {
    font-size: 13px;
  }
}

.product-price {
  margin: 0 !important;
}
.product-price h2 {
  margin: 0 !important;
}
.product-price .price-new {
  font-size: 26px;
  font-weight: 700;
}
.product-actions {
  margin-bottom: 0.25rem;
}
.product-actions .btn {
  width: 40px;
  height: 40px;
  border: 1px solid #edf0f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 14px;
}

#form-product .input-group > .input-group-text,
#form-product .input-group > .form-control,
#form-product .input-group > .btn {
  height: 44px;
  border-radius: 10px;
}
#form-product .input-group > .input-group-text,
#form-product .input-group > .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#form-product .input-group > .form-control {
  width: 90px;
}
#form-product #button-cart {
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  min-width: 160px;
}

.product-tabs.nav-tabs {
  border-bottom: 1px solid #eef1f4;
  gap: 6px;
  margin: 0 !important;
}
.product-tabs.nav-tabs .nav-item {
  margin: 0 !important;
}
.product-tabs.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-bottom-color: transparent;
  margin-bottom: -1px;
  padding: 8px 14px;
  border-radius: 10px 10px 0 0;
  color: #374151;
  background: transparent;
  font-weight: 600;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.product-tabs.nav-tabs .nav-link:hover {
  background: #f7f8fa;
  color: var(--ink);
  border-color: #eef1f4;
  border-bottom-color: transparent;
}
.product-tabs.nav-tabs .nav-link.active {
  background: rgba(227, 31, 37, 0.08);
  color: var(--ink);
  border-color: rgba(227, 31, 37, 0.18) !important;
  border-bottom-color: var(--white) fff !important;
}
.product-tabs.nav-tabs .nav-link.active,
.product-tabs.nav-tabs .nav-item.show .nav-link {
  border: 0;
}
.product-tabs .nav-tabs .nav-link:focus-visible {
  outline: 2px solid rgba(227, 31, 37, 0.35);
  outline-offset: 2px;
}
.tab-content {
  padding-top: 12px;
}

#tab-description {
  max-width: 780px;
}
#tab-description p {
  line-height: 1.65;
}
#tab-description ul {
  margin-top: 10px;
}
#tab-description li {
  margin: 6px 0;
}

.table-spec {
  table-layout: fixed;
}
.table-spec th[scope="col"]:first-child,
.table-spec td:first-child,
.table-spec th[scope="row"] {
  width: 38%;
}
.table-spec th[scope="col"]:last-child,
.table-spec td:last-child {
  width: 62%;
}
.table-spec th[scope="row"] {
  white-space: normal;
  overflow-wrap: anywhere;
}
@media (max-width: 575.98px) {
  .table-spec th[scope="col"]:first-child,
  .table-spec th[scope="row"],
  .table-spec td:first-child {
    width: 45%;
  }
}

#tab-review .review-empty__box,
#tab-review .review-cta__box {
  border: 1px solid #edf0f3;
  border-radius: 10px;
  background: #fbfcfe;
  padding: 14px 16px;
}
#tab-review .review-empty__box {
  margin-bottom: 14px;
}
#tab-review .review-empty__title,
#tab-review .review-cta__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
#tab-review .review-empty__title i {
  color: #2563eb;
  font-size: 14px;
  transform: translateY(1px);
}
#tab-review .review-empty__text,
#tab-review .review-cta__text {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
#tab-review .review-cta__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#tab-review .review-cta__actions .btn {
  padding: 0.35rem 0.75rem;
  font-size: 14px;
}
#input-rating {
  gap: 10px;
}
#input-rating .text-muted.small {
  line-height: 1;
}
#input-rating .rating-pills {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
#input-rating input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
#input-rating .btn-group .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border: 1px solid #dbe3ea;
  border-radius: 10px !important;
  background: var(--white);
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    color 0.15s ease;
}
#input-rating .btn-group .btn:hover {
  background: #fafbfc;
  border-color: #cbd5e1;
}
#input-rating input[type="radio"]:checked + label {
  background: rgba(227, 31, 37, 0.08);
  border-color: var(--brand-red);
  color: var(--ink);
}
#input-rating input[type="radio"]:focus-visible + label {
  outline: none;
  box-shadow: 0 0 0 3px rgba(227, 31, 37, 0.18);
  border-color: rgba(227, 31, 37, 0.45);
}
#input-rating .btn-check:checked + .btn-outline-secondary {
  border-color: var(--brand-red);
  background: rgba(227, 31, 37, 0.08);
  color: var(--ink);
}
#form-review div.required .form-label::before {
  display: none;
}

.review-card {
  border: 1px solid var(--bs-border-color);
  border-radius: 0.75rem;
  background: var(--white);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.review-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.75rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
}
.review-card__date {
  color: var(--muted);
  font-size: 0.9rem;
  opacity: 0.65;
  white-space: nowrap;
}
.review-card__text {
  margin: 0.75rem 0 0 0;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.review-card .rating {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.review-card .rating .fa-stack {
  height: 20px;
}
.review-card .rating .fa-star {
  font-size: 0.9rem;
  line-height: 1;
}

/* ========= login ========== */

#content a.forgot-link {
  font-size: 0.875rem;
  text-decoration: none;
}
#content a.forgot-link:hover {
  text-decoration: underline;
}

#form-forgotten {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--r-12);
  box-shadow: var(--shadow-1);
}

/* ========= Account dashboard ========== */

.account-dashboard .card {
  border-radius: 12px;
}
.account-dashboard h2 {
  margin-top: 0 !important;
  padding: 0 !important;
}
.account-dashboard .card-header i,
.account-dashboard .card-body i {
  color: inherit;
}

.account-dashboard .list-group-item {
  transition:
    background 0.15s ease,
    color 0.15s ease;
  padding: 12px 16px;
}
.account-dashboard .list-group-item-action:hover {
  background-color: #fff1f2;
  text-decoration: none;
  position: relative;
}
.account-dashboard .list-group-item-action:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand-red);
  border-radius: 2px;
}
.account-dashboard .card .list-group-item-action .fa-chevron-right {
  opacity: 0.55;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
  margin-left: 12px;
}
.account-dashboard .card .list-group-item-action:hover .fa-chevron-right {
  opacity: 1;
  transform: translateX(2px);
  color: var(--brand-red);
}
.account-wishlist {
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.account-wishlist:hover {
  box-shadow: var(--shadow-1);
  transform: translateY(-1px);
}
.account-nav .list-group .list-group-item {
  font-size: 0.95em;
  border-color: rgba(0, 0, 0, 0.06);
}
.account-nav .list-group .list-group-item:hover {
  background-color: var(--brand-red-06);
}
.account-nav .list-group .list-group-item.small {
  color: var(--muted);
  font-size: 0.875em;
  font-weight: 600;
}
.account-nav .list-group .list-group-item.small:hover {
  background-color: transparent;
}
.account-nav .list-group .list-group-item.active {
  background: var(--brand-red-10);
  border-color: #ffd6d6;
  color: inherit;
  font-weight: 600;
  position: relative;
}
.list-group .list-group-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand-red);
  border-radius: 2px;
}
.sticky-account-nav {
  position: sticky;
  top: 110px;
}

.account-form {
  max-width: 820px;
}
.account-form fieldset {
  margin-bottom: 1.25rem !important;
}
.account-form div.required .col-form-label::before,
.account-form div.required .form-label::before {
  display: none;
}
.account-order-car {
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.account-order-card:hover {
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-1px);
  background: var(--brand-red-06);
  border-color: rgba(var(--brand-red-rgb2), 0.18);
}

/* ========= ORDER INFO ========== */

.order-box {
  border: 1px solid var(--bs-border-color);
  border-radius: 0.5rem;
  background: var(--white);
  padding: 1rem;
}
.order-box__head h6 {
  font-size: 14px;
  font-weight: 600;
}
.order-box__body {
  font-size: 16px;
  color: var(--ink);
}
.order-box__body .text-muted {
  font-size: 0.95rem;
}

.order-timeline {
  position: relative;
  --tl-left: 12px; /* poloha čiary/bodky od ľavého okraja timeline */
  --tl-gap: 14px;
}
.order-timeline__item {
  position: relative;
  padding-left: 28px;
  margin-bottom: var(--tl-gap);
}
.order-timeline__item::after {
  content: "";
  position: absolute;
  left: var(--tl-left);
  top: 22px;
  bottom: calc(var(--tl-gap) * -1);
  width: 2px;
  background: var(--brand-red-12);
}
.order-timeline__item:last-child::after {
  display: none;
}
.order-timeline__dot {
  position: absolute;
  left: var(--tl-left);
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--brand-red);
  transform: translateX(-50%);
}
.order-timeline__content {
  grid-column: 2;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: 0.5rem;
  padding: 12px 14px;
  font-size: 0.95rem;
}
.order-timeline__content--current {
  background: var(--brand-red-04);
  border-color: var(--brand-red-12);
}
.order-timeline__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.order-timeline__date {
  font-size: 15px;
  font-weight: 600;
}
.order-timeline__status {
  font-size: 13px;
  font-weight: 500;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: var(--brand-red-10);
  border: 1px solid var(--brand-red-14);
  color: rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}
.order-timeline__comment {
  color: rgba(0, 0, 0, 0.78);
  font-size: 14px;
  line-height: 1.45;
  margin-top: 6px;
}
.order-timeline__comment .text-muted {
  font-size: 13px;
  color: var(--muted);
}

.wishlist-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.02);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.wishlist-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.wishlist-title {
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  line-height: 1.25;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wishlist-title:hover {
  text-decoration: underline;
}

.wishlist-meta {
  font-size: 14px;
  line-height: 1.35;
}

.wishlist-price {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  min-width: 110px;
  text-align: right;
  white-space: nowrap;
}
.wishlist-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
