:root {
  --vexa-blue: #0068c9;
  --vexa-blue-dark: #00539f;
  --vexa-ink: #111416;
  --vexa-muted: #606970;
  --vexa-line: #dfe4e8;
  --vexa-soft: #f5f7f8;
  --vexa-white: #ffffff;
  --vexa-radius: 14px;
  --vexa-shadow: 0 16px 42px rgba(17, 20, 22, .08);
}

body {
  color: var(--vexa-ink);
  background: var(--vexa-white);
}

.main {
  width: 100%;
  max-width: 1800px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 32px;
  padding-left: 32px;
}

/* Header */
.header {
  padding: 20px 0;
  background: var(--vexa-white);
  border-bottom: 1px solid var(--vexa-line);
}

.header .main {
  gap: 28px;
}

.header a.logo img {
  height: 46px;
}

.header .line {
  width: 1px;
  height: 42px;
  background: var(--vexa-line);
}

.header .hdr {
  color: var(--vexa-ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .045em;
}

.breadcrumbs {
  margin: 20px 0 28px;
  font-size: 14px;
}

.breadcrumbs ul li,
.breadcrumbs ul li a {
  color: var(--vexa-muted);
  font-size: 14px;
}

.breadcrumbs ul li:last-child {
  color: var(--vexa-ink);
  font-weight: 600;
}

.breadcrumbs ul li::after {
  color: var(--vexa-blue);
  opacity: .8;
}

/* Titulna strana - povodna struktura bez doplnenych prvkov */
.pr_container {
  width: 100%;
  max-width: 1800px;
  margin: 34px auto 70px;
  padding: 0 32px;
}

.pr_container .products {
  width: 100%;
  max-width: none;
}

.products .productslist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  border: 0;
}

.products .productslist a.item.list {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  color: var(--vexa-ink);
  background: var(--vexa-white);
  border: 1px solid var(--vexa-line);
  border-radius: var(--vexa-radius);
  box-shadow: 0 8px 28px rgba(17, 20, 22, .055);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.products .productslist a.item.list:hover {
  color: var(--vexa-ink);
  background: var(--vexa-white);
  border-color: #b9c3ca;
  outline: 0;
  box-shadow: var(--vexa-shadow);
  transform: translateY(-3px);
}

.products .productslist .item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(290px, 23vw, 410px);
  min-height: 0;
  margin: 0;
  padding: 28px 36px 16px;
  background: var(--vexa-white);
}

.products .productslist .item .image img {
  width: 100%;
  height: 100%;
  max-width: 680px;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
}

.products .productslist .item .bottom {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  margin: 0;
  padding: 18px 188px 18px 24px;
  background: var(--vexa-white);
  border-top: 1px solid var(--vexa-line);
}

.products .productslist .item .bottom h3,
.products .productslist .item .bottom h3.name {
  margin: 0;
  color: var(--vexa-ink);
  font-size: clamp(20px, 1.4vw, 26px);
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -.025em;
  text-align: left;
}

.products .productslist .item .hover_active {
  position: absolute;
  top: auto;
  right: 20px;
  bottom: 17px;
  left: auto;
  display: flex;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
  opacity: 1;
  background: transparent;
}

.products .productslist .item .hover_active span {
  display: inline-flex;
  width: auto;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  color: var(--vexa-white);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .035em;
  background: var(--vexa-blue);
  border: 0;
  border-radius: 8px;
  transition: background .2s ease;
}

.products .productslist .item .hover_active span::after {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  content: "\2192";
  color: var(--vexa-blue);
  font-size: 16px;
  line-height: 1;
  background: var(--vexa-white);
  border-radius: 50%;
}

.products .productslist .item:hover .hover_active {
  opacity: 1;
}

.products .productslist .item:hover .hover_active span,
.products .productslist .item .hover_active span:hover {
  color: var(--vexa-white);
  background: var(--vexa-blue-dark);
}

/* Detail konfiguratora */
.product.cnf {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1800px;
  align-items: start;
  margin: 0 auto;
  padding: 0 0 70px;
}

.product.cnf > .left,
.product.cnf > .container {
  width: auto;
  min-width: 0;
}

.product.cnf > .left {
  position: sticky;
  top: 20px;
  height: auto;
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px;
  background: var(--vexa-white);
  border: 1px solid var(--vexa-line);
  border-radius: var(--vexa-radius);
  box-shadow: var(--vexa-shadow);
}

.product.cnf h1 {
  margin: 0;
  color: var(--vexa-ink);
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.04em;
}

.product.cnf .imagetitle {
  width: 100%;
  height: clamp(300px, 31vw, 470px);
  margin-top: 24px;
  overflow: hidden;
  background: var(--vexa-white);
  border: 1px solid var(--vexa-line);
  border-radius: 10px;
}

.product.cnf .imagetitle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product.cnf > .left:has(.cnf_result1_item_user) .imagetitle {
  height: 230px;
}

.cnf_result1,
.cnf_result1.user {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 22px;
  padding: 14px;
  overflow: visible;
  opacity: 1;
  background: var(--vexa-soft);
  border: 1px solid var(--vexa-line);
  border-radius: 10px;
}

.cnf_result1.user {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cnf_result1:empty {
  display: none;
}

.cnf_result1 .cnf_result1_item,
.cnf_result1 .cnf_result1_item_user {
  width: 100%;
  min-width: 0;
  padding: 12px;
  background: var(--vexa-white);
  border: 1px solid var(--vexa-line);
  border-radius: 8px;
}

.cnf_result1 .cnf_result1_item_user .image {
  height: 110px;
  margin-bottom: 12px;
}

.cnf_result1 .cnf_result1_item_user .image img {
  max-height: 110px;
}

.cnf_result1 .cnf_result1_item .data h4,
.cnf_result1 .cnf_result1_item_user .data h4 {
  color: var(--vexa-ink);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.cnf_result1 .cnf_result1_item .data .price,
.cnf_result1 .cnf_result1_item_user .data .price {
  color: var(--vexa-blue);
  font-size: 15px;
  font-weight: 700;
}

.cnf_items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cnf_items .cnf_item {
  overflow: hidden;
  margin: 0;
  background: var(--vexa-white);
  border: 1px solid var(--vexa-line);
  border-radius: 12px;
  box-shadow: 0 7px 22px rgba(17, 20, 22, .045);
}

.cnf_items .cnf_item.active {
  border-color: #b7c1c8;
  box-shadow: 0 12px 30px rgba(17, 20, 22, .08);
}

.cnf_items .cnf_item .cnf_top {
  min-height: 82px;
  gap: 16px;
  padding: 18px 22px;
  color: var(--vexa-ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  background: var(--vexa-white);
}

.cnf_items .cnf_item.active .cnf_top {
  color: var(--vexa-white);
  background: var(--vexa-ink);
}

.cnf_items .cnf_item .cnf_top .cnf_count {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: var(--vexa-ink);
  font-size: 15px;
  font-weight: 700;
  background: var(--vexa-soft);
  border-radius: 50%;
}

.cnf_items .cnf_item .cnf_top .cnf_count.active {
  color: var(--vexa-white);
  background: var(--vexa-blue);
}

.cnf_items .cnf_item .cnf_top .tag {
  padding: 8px 13px;
  color: var(--vexa-muted);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  border-color: var(--vexa-line);
}

.cnf_items .cnf_item.active .cnf_top .tag {
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .35);
}

.cnf_items .cnf_item .cnf_top .arrow {
  position: relative;
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--vexa-line);
  border-radius: 50%;
}

.cnf_items .cnf_item .cnf_top .arrow::after {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 0 4px;
  content: "";
  background: none;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.cnf_items .cnf_item.active .cnf_top .arrow {
  border-color: rgba(255, 255, 255, .3);
}

.cnf_items .cnf_item.active .cnf_top .arrow::after {
  margin: 4px 0 0;
  transform: rotate(225deg);
}

.cnf_items .cnf_item .cnf_body {
  padding: 20px;
  background: var(--vexa-soft);
  border-top: 0;
}

.cnf_items .cnf_item .cnf_products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cnf_items .cnf_item .cnf_products .item {
  position: relative;
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  color: var(--vexa-ink);
  background: var(--vexa-white);
  border: 1px solid var(--vexa-line);
  border-radius: 10px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.cnf_items .cnf_item .cnf_products .item:hover {
  color: var(--vexa-ink);
  background: var(--vexa-white);
  border-color: #9eabb4;
  box-shadow: 0 10px 24px rgba(17, 20, 22, .1);
  transform: translateY(-2px);
}

.cnf_items .cnf_item .cnf_products .item.active {
  color: var(--vexa-ink);
  background: var(--vexa-white);
  border: 2px solid var(--vexa-blue);
  box-shadow: 0 0 0 3px rgba(0, 104, 201, .12);
}

.cnf_items .cnf_item .cnf_products .item.active::after {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  content: "\2713";
  color: var(--vexa-white);
  font-size: 15px;
  font-weight: 700;
  background: var(--vexa-blue);
  border-radius: 50%;
}

.cnf_items .cnf_item .cnf_products .item .image {
  width: 100%;
  aspect-ratio: 16 / 11;
  padding: 12px;
  background: var(--vexa-white);
  border-bottom: 1px solid var(--vexa-line);
}

.cnf_items .cnf_item .cnf_products .item .image span {
  bottom: 8px;
  padding: 5px 8px;
  color: var(--vexa-muted);
  font-size: 12px;
  background: rgba(255, 255, 255, .94);
}

.cnf_items .cnf_item .cnf_products .item .data {
  margin: 0;
  padding: 16px;
  text-align: left;
}

.cnf_items .cnf_item .cnf_products .item .data h4 {
  padding: 0;
  color: var(--vexa-ink);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

.cnf_items .cnf_item .cnf_products .item .data .price {
  margin-top: 9px;
  color: var(--vexa-blue);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}

.cnf_items .cnf_item .cnf_products .item .data .price small {
  font-size: 13px;
}

.cnf_items .cnf_item .cnf_products .item .tobasket_buttons,
.cnf_items .cnf_item .cnf_products .item .tobasket_button_one {
  width: calc(100% - 32px);
  margin: auto 16px 16px;
}

.button1,
.button2,
.form_primary_button,
.basket_primary_button,
.tobasket_button_one,
.tobasket_buttons button,
.tobasket_buttons input[type="submit"] {
  min-height: 52px;
  padding: 0 24px;
  color: var(--vexa-white) !important;
  font-size: 16px;
  font-weight: 650;
  background: var(--vexa-blue) !important;
  border: 0 !important;
  border-radius: 8px !important;
  transition: background .2s ease, transform .2s ease;
}

.button1:hover,
.button2:hover,
.form_primary_button:hover,
.basket_primary_button:hover,
.tobasket_button_one:hover,
.tobasket_buttons button:hover,
.tobasket_buttons input[type="submit"]:hover {
  color: var(--vexa-white) !important;
  background: var(--vexa-blue-dark) !important;
  transform: translateY(-1px);
}

.product.cnf > .container > .line {
  margin-top: 24px !important;
  margin-bottom: 20px !important;
  background: var(--vexa-line);
}

.product.cnf .basket_prices {
  gap: 13px;
  padding: 22px;
  background: var(--vexa-white);
  border: 1px solid var(--vexa-line);
  border-radius: 12px;
}

.product.cnf .basket_prices .row .left,
.product.cnf .basket_prices .row .right {
  color: var(--vexa-ink);
  font-size: 17px;
}

.product.cnf .basket_prices .row.total {
  margin-top: 3px;
  padding-top: 14px;
  border-top: 1px solid var(--vexa-line);
}

.product.cnf .basket_prices .row.total .left,
.product.cnf .basket_prices .row.total .right {
  font-size: 25px;
}

.product.cnf > .container > a.button1.mt-30 {
  float: right;
  min-height: 54px;
  height: 54px;
  margin-top: 18px !important;
  padding: 0 28px;
}

.cnf_result {
  gap: 32px;
  width: 100%;
  max-width: 1400px;
  margin: 45px auto 0;
  padding: 0 32px;
}

.forms input[type="text"],
.forms input[type="password"],
.forms textarea,
.forms select {
  color: var(--vexa-ink);
  background: var(--vexa-white);
  border-color: var(--vexa-line);
}

.forms input[type="text"]:focus,
.forms input[type="password"]:focus,
.forms textarea:focus,
.forms select:focus {
  border-color: var(--vexa-blue);
  box-shadow: 0 0 0 3px rgba(0, 104, 201, .1);
}

/* Footer */
.footer {
  margin-top: 60px;
  padding: 58px 0;
  color: var(--vexa-white);
  background: var(--vexa-ink);
  border-top: 4px solid var(--vexa-blue);
}

.footer .main {
  justify-content: space-between;
}

.footer .main .col1 img {
  height: 76px;
}

.footer .main .col2 .row a,
.footer .main .col2 .row span {
  color: var(--vexa-white);
  font-size: 15px;
}

.footer .main .col2 .row span {
  opacity: .68;
}

@media screen and (max-width: 1120px) {
  .product.cnf {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product.cnf > .left {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .product.cnf .imagetitle,
  .product.cnf > .left:has(.cnf_result1_item_user) .imagetitle {
    height: clamp(300px, 48vw, 470px);
  }

  .cnf_items .cnf_item .cnf_products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 820px) {
  .main,
  .pr_container {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .products .productslist {
    grid-template-columns: 1fr;
  }

  .products .productslist .item .image {
    height: clamp(260px, 55vw, 380px);
  }

  .cnf_items .cnf_item .cnf_products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cnf_result1
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .cnf_result1.user {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 600px) {
  .main,
  .pr_container {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  .header {
    padding: 14px 0;
  }

  .header .main {
    gap: 14px;
  }

  .header a.logo img {
    height