/* LUANA - cart page redesign */
:root {
  --cart-blue: #102d73;
  --cart-blue-hover: #173b8f;
  --cart-blue-soft: #eef6ff;
  --cart-blue-line: #dce8f7;
  --cart-text: #202638;
  --cart-muted: #65738c;
  --cart-red: #ed1c24;
  --cart-green: #129331;
  --cart-green-cta: #0fa755;
  --cart-green-dark: #08733a;
}

body.in-kosik.ordering-process #content.content,
body.in-kosik.ordering-process .content-inner,
body.in-kosik.ordering-process #cart-wrapper {
  color: var(--cart-text);
  font-family: "Source Sans 3", var(--template-font), Arial, sans-serif;
}

body.in-kosik.ordering-process #content-wrapper.container {
  max-width: 1440px;
}

body.in-kosik.ordering-process #content.content {
  width: 100% !important;
  max-width: none !important;
}

body.in-kosik.ordering-process .content-inner {
  padding-top: 28px;
}

body.in-kosik.ordering-process #cart-wrapper {
  margin: 0 auto 44px;
}

body.in-kosik.ordering-process .cart-inner {
  margin: 0 !important;
  padding: 0 !important;
}

body.in-kosik.ordering-process .cart-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 32px;
  align-items: start;
  margin: 0 !important;
}

body.in-kosik.ordering-process .cart-row:before,
body.in-kosik.ordering-process .cart-row:after {
  content: none !important;
  display: none !important;
}

body.in-kosik.ordering-process .cart-row > .col-md-8,
body.in-kosik.ordering-process .cart-row > .col-md-4,
body.in-kosik.ordering-process .cart-row > [class*="col-"] {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
}

body.in-kosik.ordering-process .cart-header {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 28px !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 2px solid var(--cart-blue-line) !important;
  background: transparent !important;
  counter-reset: cart-step;
}

body.in-kosik.ordering-process .cart-header .step {
  position: relative;
  min-height: 58px;
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  padding: 0 10px 16px 2px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--cart-muted);
  font-family: "Exo 2", var(--template-headings-font), "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  counter-increment: cart-step;
}

body.in-kosik.ordering-process .cart-header .step:before {
  content: counter(cart-step);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  border: 2px solid #8d96a7;
  border-radius: 10px;
  color: #6d7482;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
}

body.in-kosik.ordering-process .cart-header .step.active {
  color: var(--cart-blue);
}

body.in-kosik.ordering-process .cart-header .step.active:before {
  border-color: #087ed0;
  color: #087ed0;
  box-shadow: 0 0 0 4px rgba(8, 126, 208, .08);
}

body.in-kosik.ordering-process .cart-header .step.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 16px;
  bottom: -2px;
  height: 3px;
  background: #087ed0;
  border-radius: 3px 3px 0 0;
}

body.in-kosik.ordering-process .cart-header .step a,
body.in-kosik.ordering-process .cart-header .step strong {
  color: inherit !important;
  font: inherit !important;
  text-decoration: none !important;
}

body.in-kosik.ordering-process .cart-row > .col-md-8 > .cart-content {
  padding: 28px 24px 22px !important;
  border: 1px solid var(--cart-blue-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 45, 115, .08);
}

body.in-kosik.ordering-process .cart-table {
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.in-kosik.ordering-process .cart-table tbody {
  width: 100%;
  display: block !important;
}

body.in-kosik.ordering-process .cart-table tbody:before {
  content: "PRODUKT              DOSTUPNOSŤ          MNOŽSTVO          CENA ZA MJ          CENA SPOLU";
  min-height: 28px;
  display: block;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--cart-blue-line);
  color: var(--cart-muted);
  font-family: "Exo 2", var(--template-headings-font), "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: pre;
  word-spacing: 0;
}

body.in-kosik.ordering-process .cart-table tr.removeable {
  position: relative;
  min-height: 118px;
  display: grid !important;
  grid-template-columns: 88px minmax(150px, 1fr) 110px 148px 86px 104px;
  grid-template-areas: "image name availability quantity unit total";
  gap: 10px;
  align-items: center;
  padding: 22px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--cart-blue-line) !important;
  background: transparent !important;
}

body.in-kosik.ordering-process .cart-table tr.removeable:last-child {
  border-bottom: 0 !important;
}

body.in-kosik.ordering-process .cart-table td {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-align: left !important;
  vertical-align: middle !important;
}

body.in-kosik.ordering-process .cart-p-image {
  grid-area: image;
}

body.in-kosik.ordering-process .cart-p-image a,
body.in-kosik.ordering-process .cart-p-image img {
  display: block;
  width: 80px !important;
  height: 80px !important;
}

body.in-kosik.ordering-process .cart-p-image img {
  object-fit: cover;
  border: 1px solid var(--cart-blue-line);
  border-radius: 8px;
  background: #f7fbff;
}

body.in-kosik.ordering-process .p-name {
  grid-area: name;
}

body.in-kosik.ordering-process .p-name .main-link {
  display: block;
  color: var(--cart-blue) !important;
  font-family: "Exo 2", var(--template-headings-font), "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: color .18s ease;
}

body.in-kosik.ordering-process .p-name .main-link:hover,
body.in-kosik.ordering-process .p-name .main-link:focus-visible {
  color: var(--cart-red) !important;
}

body.in-kosik.ordering-process .p-availability {
  grid-area: availability;
  color: var(--cart-muted);
  font-size: 14px;
  line-height: 1.35;
}

body.in-kosik.ordering-process .p-availability .availability-label {
  display: block;
  color: var(--cart-green);
  font-size: 15px;
  font-weight: 900;
}

body.in-kosik.ordering-process .p-availability .availability-amount {
  display: block;
  margin-top: 3px;
  color: var(--cart-muted);
  font-size: 13px;
  font-weight: 600;
}

body.in-kosik.ordering-process .p-quantity {
  grid-area: quantity;
}

body.in-kosik.ordering-process .quantity-form {
  margin: 0 !important;
}

body.in-kosik.ordering-process .quantity {
  width: 144px;
  height: 50px;
  display: grid !important;
  grid-template-columns: 46px 52px 46px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d8e2f1;
  border-radius: 10px;
  background: #fff;
}

body.in-kosik.ordering-process .quantity .increase-tooltip,
body.in-kosik.ordering-process .quantity .decrease-tooltip,
body.in-kosik.ordering-process .cart-table .p-label {
  display: none !important;
}

body.in-kosik.ordering-process .quantity label {
  order: 2;
  margin: 0 !important;
  position: relative;
  z-index: 2;
}

body.in-kosik.ordering-process .quantity .amount {
  width: 52px !important;
  height: 48px !important;
  padding: 0 !important;
  border: 0 !important;
  border-left: 1px solid #d8e2f1 !important;
  border-right: 1px solid #d8e2f1 !important;
  background: #fff !important;
  color: var(--cart-blue);
  font-size: 17px;
  font-weight: 900;
  line-height: 48px;
  text-align: center;
  -moz-appearance: textfield;
}

body.in-kosik.ordering-process .quantity .amount::-webkit-inner-spin-button,
body.in-kosik.ordering-process .quantity .amount::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

body.in-kosik.ordering-process .quantity .decrease {
  order: 1;
}

body.in-kosik.ordering-process .quantity .increase {
  order: 3;
}

body.in-kosik.ordering-process .quantity .increase,
body.in-kosik.ordering-process .quantity .decrease {
  position: relative !important;
  width: 46px !important;
  height: 48px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: 0 !important;
  background: #fff !important;
  color: var(--cart-blue) !important;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition: background-color .18s ease, color .18s ease;
}

body.in-kosik.ordering-process .quantity .increase:hover,
body.in-kosik.ordering-process .quantity .increase:focus-visible,
body.in-kosik.ordering-process .quantity .decrease:hover,
body.in-kosik.ordering-process .quantity .decrease:focus-visible {
  background: var(--cart-blue-soft) !important;
  color: var(--cart-blue) !important;
}

body.in-kosik.ordering-process .quantity .increase__sign,
body.in-kosik.ordering-process .quantity .decrease__sign {
  display: none !important;
}

body.in-kosik.ordering-process .quantity .increase:before,
body.in-kosik.ordering-process .quantity .decrease:before {
  display: block !important;
  color: inherit !important;
  font-family: Arial, sans-serif !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body.in-kosik.ordering-process .quantity .increase:before {
  content: "+" !important;
}

body.in-kosik.ordering-process .quantity .decrease:before {
  content: "-" !important;
}

body.in-kosik.ordering-process .p-price {
  grid-area: unit;
  color: var(--cart-text);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

body.in-kosik.ordering-process .p-price .price-final {
  color: var(--cart-text);
  font-size: 16px;
  font-weight: 900;
}

body.in-kosik.ordering-process .p-price .unit-value {
  margin-left: 3px;
  color: var(--cart-muted);
  font-weight: 700;
}

body.in-kosik.ordering-process .p-total {
  grid-area: total;
  min-height: 42px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.in-kosik.ordering-process .p-total .price-final {
  color: var(--cart-blue);
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

body.in-kosik.ordering-process .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

body.in-kosik.ordering-process .p-total form,
body.in-kosik.ordering-process .p-total .inline {
  margin: 0 !important;
}

body.in-kosik.ordering-process .remove-item {
  width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 8px;
  background: transparent !important;
  color: #7c8494 !important;
  transition: background-color .18s ease, color .18s ease;
}

body.in-kosik.ordering-process .remove-item:before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6h18M8 6V4h8v2M10 11v6M14 11v6M6 6l1 15h10l1-15' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6h18M8 6V4h8v2M10 11v6M14 11v6M6 6l1 15h10l1-15' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.in-kosik.ordering-process .remove-item:hover,
body.in-kosik.ordering-process .remove-item:focus-visible {
  background: rgba(237, 28, 36, .08) !important;
  color: var(--cart-red) !important;
}

body.in-kosik.ordering-process .cart-summary {
  margin: 18px 0 0 !important;
  padding: 24px 0 0 !important;
  border-top: 1px solid var(--cart-blue-line);
  background: transparent !important;
}

body.in-kosik.ordering-process .cart-summary h2.h4 {
  margin: 0 0 18px !important;
  color: var(--cart-blue) !important;
  font-family: "Exo 2", var(--template-headings-font), "Source Sans 3", sans-serif;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1.2;
  text-transform: uppercase;
}

body.in-kosik.ordering-process .extras-wrapper,
body.in-kosik.ordering-process .extras-col,
body.in-kosik.ordering-process .extras-wrap,
body.in-kosik.ordering-process .extra {
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.in-kosik.ordering-process .extra.delivery span {
  position: relative;
  min-height: 98px;
  display: block;
  padding: 26px 28px 22px 112px;
  border: 1px solid rgba(18, 147, 49, .12);
  border-radius: 10px;
  background: linear-gradient(135deg, #f2fff5 0%, #fbfffc 100%);
  color: #4c5a70;
  font-size: 16px;
  line-height: 1.45;
}

body.in-kosik.ordering-process .extra.delivery span:before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: rgba(18, 147, 49, .1);
  transform: translateY(-50%);
}

body.in-kosik.ordering-process .extra.delivery span:after {
  content: "";
  position: absolute;
  left: 44px;
  top: 50%;
  width: 28px;
  height: 28px;
  background: var(--cart-green);
  transform: translateY(-50%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 17h4V5H2v12h3M14 8h4l4 4v5h-3M7 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM17 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 17h4V5H2v12h3M14 8h4l4 4v5h-3M7 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM17 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.in-kosik.ordering-process .extra.delivery strong {
  color: var(--cart-green);
  font-weight: 900;
}

body.in-kosik.ordering-process .price-range {
  width: min(520px, 100%);
  height: 10px !important;
  margin: 18px 0 0 !important;
  overflow: hidden;
  border-radius: 10px;
  background: #dfe5ea !important;
}

body.in-kosik.ordering-process .price-range > div {
  height: 100% !important;
  border-radius: inherit;
  background: linear-gradient(90deg, #259b32, #65c36b) !important;
}

body.in-kosik.ordering-process .sidebar-in-cart {
  position: sticky;
  top: 20px;
}

body.in-kosik.ordering-process .sidebar-in-cart .cart-content,
body.in-kosik.ordering-process .sidebar-in-cart .box {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.in-kosik.ordering-process .sidebar-in-cart {
  padding: 28px 24px !important;
  border: 1px solid var(--cart-blue-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 45, 115, .08);
}

body.in-kosik.ordering-process .sidebar-in-cart h2.h4 {
  margin: 0 0 18px !important;
  color: var(--cart-blue) !important;
  font-family: "Exo 2", var(--template-headings-font), "Source Sans 3", sans-serif;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.18;
  text-transform: uppercase;
}

body.in-kosik.ordering-process .contact-box strong {
  display: block;
  margin-bottom: 15px;
  color: var(--cart-text);
  font-size: 16px;
  font-weight: 900;
}

body.in-kosik.ordering-process .contact-box ul {
  margin: 0 !important;
  padding: 0 0 22px !important;
  border-bottom: 1px solid var(--cart-blue-line);
  list-style: none !important;
}

body.in-kosik.ordering-process .contact-box li {
  position: relative;
  margin: 0 0 13px !important;
  padding: 0 0 0 34px !important;
  color: var(--cart-muted);
  font-size: 15px;
  line-height: 1.35;
}

body.in-kosik.ordering-process .contact-box li:last-child {
  margin-bottom: 0 !important;
}

body.in-kosik.ordering-process .contact-box li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: #087ed0;
}

body.in-kosik.ordering-process .contact-box li:has(.mail):before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Z' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='m22 7-10 6L2 7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Z' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='m22 7-10 6L2 7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.in-kosik.ordering-process .contact-box li:has(.tel):before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2.1Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2.1Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.in-kosik.ordering-process .contact-box li:has(.cellphone):before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='7' y='2' width='10' height='20' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M11 18h2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='7' y='2' width='10' height='20' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M11 18h2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.in-kosik.ordering-process .contact-box li:has(.facebook):before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8h3V4h-3c-3 0-5 2-5 5v3H6v4h3v6h4v-6h3l1-4h-4V9c0-.6.4-1 1-1Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8h3V4h-3c-3 0-5 2-5 5v3H6v4h3v6h4v-6h3l1-4h-4V9c0-.6.4-1 1-1Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.in-kosik.ordering-process .contact-box a {
  color: #087ed0 !important;
  font-weight: 750;
  text-decoration: none !important;
  overflow-wrap: anywhere;
}

body.in-kosik.ordering-process .contact-box a:hover,
body.in-kosik.ordering-process .contact-box a:focus-visible {
  color: var(--cart-blue) !important;
}

body.in-kosik.ordering-process .summary-wrapper {
  margin-top: 24px !important;
}

body.in-kosik.ordering-process .price-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 10px 18px;
  margin: 0 !important;
  padding: 0 0 22px !important;
}

body.in-kosik.ordering-process .price-label {
  margin: 0 !important;
}

body.in-kosik.ordering-process .price-label.price-primary {
  color: var(--cart-text) !important;
  font-size: 16px;
  font-weight: 900;
}

body.in-kosik.ordering-process .price.price-primary {
  color: var(--cart-text) !important;
  font-family: "Exo 2", var(--template-headings-font), "Source Sans 3", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

body.in-kosik.ordering-process .price-label.price-secondary {
  color: var(--cart-muted) !important;
  font-size: 14px;
  font-weight: 600;
}

body.in-kosik.ordering-process .price.price-secondary {
  color: var(--cart-muted) !important;
  font-size: 14px;
  font-weight: 800;
}

body.in-kosik.ordering-process .next-step {
  display: flex !important;
  flex-direction: column-reverse;
  gap: 14px;
  margin: 0 !important;
  padding: 0 !important;
}

body.in-kosik.ordering-process .next-step .btn {
  width: 100%;
  min-height: 58px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 8px !important;
  font-family: "Exo 2", var(--template-headings-font), "Source Sans 3", sans-serif;
  text-decoration: none !important;
}

body.in-kosik.ordering-process .next-step-forward {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(18, 161, 80, .24), 0 3px 0 rgba(6, 104, 50, .28) !important;
  transform: translateZ(0) scale(1);
  transition: transform .16s ease, box-shadow .16s ease !important;
}

body.in-kosik.ordering-process .next-step-forward:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: -38%;
  width: 176%;
  pointer-events: none;
  background-image: linear-gradient(105deg, var(--cart-green-dark) 0%, var(--cart-green-cta) 34%, #27cf72 50%, var(--cart-green-cta) 66%, var(--cart-green-dark) 100%) !important;
  transform: translate3d(-8%, 0, 0);
  animation: luana-cart-green-flow 4.2s ease-in-out infinite alternate;
}

body.in-kosik.ordering-process .next-step-forward:after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.in-kosik.ordering-process .next-step-forward:hover,
body.in-kosik.ordering-process .next-step-forward:focus-visible {
  color: #fff !important;
  box-shadow: 0 9px 18px rgba(7, 114, 57, .28), 0 1px 0 rgba(4, 79, 38, .34) !important;
  transform: translateY(1px) scale(.975);
}

body.in-kosik.ordering-process .next-step-forward:hover:before,
body.in-kosik.ordering-process .next-step-forward:focus-visible:before {
  filter: brightness(.86) saturate(1.08);
}

body.in-kosik.ordering-process .next-step-back {
  min-height: 38px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--cart-muted) !important;
  font-size: 14px;
  font-weight: 750;
  box-shadow: none !important;
  text-transform: none;
}

body.in-kosik.ordering-process .next-step-back:hover,
body.in-kosik.ordering-process .next-step-back:focus-visible {
  color: var(--cart-blue) !important;
}

body.in-kosik.ordering-process #cart-wrapper:after {
  content: "Doprava zdarma pri splneni limitu     Rychlo pomozeme s vyberom     90 dni zaruka spokojnosti";
  width: min(1180px, 100%);
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 26px 0 0;
  padding: 18px 28px;
  border: 1px solid var(--cart-blue-line);
  border-radius: 10px;
  background: linear-gradient(135deg, #f7fbff 0%, #fff 100%);
  color: var(--cart-blue);
  font-family: "Exo 2", var(--template-headings-font), "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.35;
  white-space: pre-wrap;
}

body.in-kosik.ordering-process .cart-empty {
  padding: 0 !important;
}

body.in-kosik.ordering-process .cart-empty .cart-heading {
  margin: 0 0 24px !important;
  color: var(--cart-blue) !important;
  font-family: "Exo 2", var(--template-headings-font), "Source Sans 3", sans-serif;
  font-size: clamp(28px, 3vw, 38px) !important;
  font-weight: 900 !important;
  line-height: 1.12;
}

body.in-kosik.ordering-process .cart-empty .cart-content {
  padding: 26px 24px !important;
  border: 1px solid var(--cart-blue-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 45, 115, .08);
}

body.in-kosik.ordering-process .empty-cart-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 !important;
}

body.in-kosik.ordering-process .empty-cart-boxes > [class*="col-"] {
  width: auto !important;
  padding: 0 !important;
}

body.in-kosik.ordering-process .empty-cart-boxes h3 {
  margin: 0 0 14px !important;
  color: var(--cart-blue);
  font-family: "Exo 2", var(--template-headings-font), "Source Sans 3", sans-serif;
  font-size: 19px;
  font-weight: 900;
}

body.in-kosik.ordering-process .empty-cart-boxes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.in-kosik.ordering-process .empty-cart-boxes li {
  margin: 0 !important;
}

body.in-kosik.ordering-process .empty-cart-boxes a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--cart-blue-line);
  border-radius: 8px;
  color: var(--cart-blue) !important;
  font-weight: 850;
  text-decoration: none !important;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

body.in-kosik.ordering-process .empty-cart-boxes a:hover,
body.in-kosik.ordering-process .empty-cart-boxes a:focus-visible {
  border-color: #bad3ef;
  background: var(--cart-blue-soft);
  transform: translateY(-1px);
}

body.in-kosik.ordering-process .empty-cart-boxes .search-form fieldset {
  display: flex;
  border: 1px solid #cfd9ea;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

body.in-kosik.ordering-process .empty-cart-boxes .search-input {
  height: 46px;
  border: 0 !important;
  padding: 0 14px !important;
  color: var(--cart-text);
}

body.in-kosik.ordering-process .empty-cart-boxes .btn {
  height: 46px;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--cart-blue) !important;
  color: #fff !important;
  font-family: "Exo 2", var(--template-headings-font), "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

@keyframes luana-cart-green-flow {
  0% {
    transform: translate3d(-8%, 0, 0);
  }
  100% {
    transform: translate3d(8%, 0, 0);
  }
}

@media (max-width: 1199px) {
  body.in-kosik.ordering-process .cart-row {
    grid-template-columns: 1fr;
  }

  body.in-kosik.ordering-process .sidebar-in-cart {
    position: static;
  }

  body.in-kosik.ordering-process .cart-table tbody:before,
  body.in-kosik.ordering-process .cart-table tr.removeable {
    grid-template-columns: 84px minmax(170px, 1fr) 110px 140px 100px 120px;
  }
}

@media (max-width: 767px) {
  body.in-kosik.ordering-process .content-inner {
    padding-top: 18px;
  }

  body.in-kosik.ordering-process .cart-header {
    grid-template-columns: 1fr;
    gap: 8px;
    border-bottom: 0 !important;
  }

  body.in-kosik.ordering-process .cart-header .step {
    min-height: 44px;
    padding: 0 0 8px !important;
  }

  body.in-kosik.ordering-process .cart-header .step.active:after {
    right: 0;
  }

  body.in-kosik.ordering-process .cart-row > .col-md-8 > .cart-content,
  body.in-kosik.ordering-process .sidebar-in-cart,
  body.in-kosik.ordering-process .cart-empty .cart-content {
    padding: 18px 16px !important;
  }

  body.in-kosik.ordering-process .cart-table tbody:before {
    display: none;
  }

  body.in-kosik.ordering-process .cart-table tr.removeable {
    grid-template-columns: 78px minmax(0, 1fr) 34px;
    grid-template-areas:
      "image name total"
      "image availability total"
      "image quantity total"
      "image unit total";
    gap: 8px 12px;
    align-items: start;
    min-height: 116px;
    padding: 18px 0 !important;
  }

  body.in-kosik.ordering-process .cart-p-image a,
  body.in-kosik.ordering-process .cart-p-image img {
    width: 70px !important;
    height: 70px !important;
  }

  body.in-kosik.ordering-process .p-name .main-link {
    font-size: 14px;
  }

  body.in-kosik.ordering-process .p-total {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  body.in-kosik.ordering-process .p-total .price-final {
    font-size: 15px;
  }

  body.in-kosik.ordering-process .quantity {
    width: 126px;
    height: 42px;
    grid-template-columns: 40px 46px 40px;
  }

  body.in-kosik.ordering-process .quantity .amount,
  body.in-kosik.ordering-process .quantity .increase,
  body.in-kosik.ordering-process .quantity .decrease {
    height: 40px !important;
  }

  body.in-kosik.ordering-process .quantity .amount {
    width: 46px !important;
    line-height: 40px;
  }

  body.in-kosik.ordering-process .quantity .increase,
  body.in-kosik.ordering-process .quantity .decrease {
    width: 40px !important;
  }

  body.in-kosik.ordering-process .extra.delivery span {
    min-height: 0;
    padding: 20px 18px 20px 78px;
    font-size: 14px;
  }

  body.in-kosik.ordering-process .extra.delivery span:before {
    left: 18px;
    width: 46px;
    height: 46px;
  }

  body.in-kosik.ordering-process .extra.delivery span:after {
    left: 31px;
    width: 22px;
    height: 22px;
  }

  body.in-kosik.ordering-process .price-wrapper {
    grid-template-columns: 1fr;
  }

  body.in-kosik.ordering-process .price.price-primary {
    font-size: 30px;
  }

  body.in-kosik.ordering-process #cart-wrapper:after {
    justify-content: flex-start;
    font-size: 14px;
    white-space: normal;
  }

  body.in-kosik.ordering-process .empty-cart-boxes,
  body.in-kosik.ordering-process .empty-cart-boxes ul {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.in-kosik.ordering-process .next-step-forward:before {
    animation: none !important;
  }

  body.in-kosik.ordering-process .next-step-forward,
  body.in-kosik.ordering-process .empty-cart-boxes a {
    transition: none !important;
  }
}

/* Final cart page refinements */
body.in-kosik.ordering-process .cart-header {
  gap: 18px;
  border-bottom-width: 1px !important;
  list-style: none !important;
}

body.in-kosik.ordering-process .cart-header .step {
  min-height: 54px;
  overflow: visible !important;
  padding: 0 42px 14px 0 !important;
  border-bottom: 3px solid transparent !important;
  list-style: none !important;
}

body.in-kosik.ordering-process .cart-header .step::marker {
  content: "" !important;
  display: none !important;
}

body.in-kosik.ordering-process .cart-header .step:before {
  font-family: "Exo 2", var(--template-headings-font), Arial, sans-serif !important;
}

body.in-kosik.ordering-process .cart-header .step-1:before {
  content: "1" !important;
}

body.in-kosik.ordering-process .cart-header .step-2:before {
  content: "2" !important;
}

body.in-kosik.ordering-process .cart-header .step-3:before {
  content: "3" !important;
}

body.in-kosik.ordering-process .cart-header .step.active {
  border-bottom-color: #087ed0 !important;
}

body.in-kosik.ordering-process .cart-header .step.active:after {
  content: none !important;
  display: none !important;
}

body.in-kosik.ordering-process .cart-header .step:not(:last-child):after {
  content: none !important;
  display: none !important;
}

body.in-kosik.ordering-process .cart-header .step:not(:first-child):after {
  content: "" !important;
  position: absolute;
  top: 15px;
  left: -28px;
  width: 10px;
  height: 10px;
  display: block !important;
  border-top: 2px solid #8d96a7;
  border-right: 2px solid #8d96a7;
  background: transparent !important;
  border-radius: 0;
  transform: rotate(45deg);
}

body.in-kosik.ordering-process .cart-header .step a:before,
body.in-kosik.ordering-process .cart-header .step strong:before,
body.in-kosik.ordering-process .cart-header .step a:after,
body.in-kosik.ordering-process .cart-header .step strong:after {
  content: none !important;
  display: none !important;
}

body.in-kosik.ordering-process .cart-table tbody:before {
  content: "" !important;
  height: 38px;
  min-height: 38px;
  padding: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg width='1000' height='38' viewBox='0 0 1000 38' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2365738c' font-family='Arial,sans-serif' font-size='12' font-weight='900'%3E%3Ctext x='0' y='22'%3EPRODUKT%3C/text%3E%3Ctext x='475' y='22'%3EDOSTUPNOST%3C/text%3E%3Ctext x='610' y='22'%3EMNOZSTVO%3C/text%3E%3Ctext x='755' y='22'%3ECENA ZA MJ%3C/text%3E%3Ctext x='890' y='22'%3ECENA SPOLU%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% 38px;
}

body.in-kosik.ordering-process .cart-table tr.removeable {
  grid-template-columns: 88px minmax(220px, 1.45fr) minmax(104px, .55fr) 150px minmax(92px, .45fr) minmax(86px, .42fr);
  gap: 12px;
}

body.in-kosik.ordering-process .quantity {
  height: 52px !important;
  align-items: stretch !important;
}

body.in-kosik.ordering-process .quantity label,
body.in-kosik.ordering-process .quantity .amount,
body.in-kosik.ordering-process .quantity .increase,
body.in-kosik.ordering-process .quantity .decrease {
  height: 50px !important;
  min-height: 50px !important;
}

body.in-kosik.ordering-process .quantity label {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

body.in-kosik.ordering-process .quantity .amount {
  line-height: 50px !important;
}

body.in-kosik.ordering-process .quantity .increase,
body.in-kosik.ordering-process .quantity .decrease {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.in-kosik.ordering-process .quantity .increase:before,
body.in-kosik.ordering-process .quantity .decrease:before {
  height: 100%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  transform: translateY(-1px);
}

body.in-kosik.ordering-process .extras-wrapper,
body.in-kosik.ordering-process .extras-col,
body.in-kosik.ordering-process .extras-wrap,
body.in-kosik.ordering-process .extra.delivery,
body.in-kosik.ordering-process .extra.delivery span {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}

body.in-kosik.ordering-process .price-range {
  width: 100% !important;
  max-width: 620px;
}

body.in-kosik.ordering-process .sidebar-in-cart {
  padding: 34px 32px !important;
}

body.in-kosik.ordering-process .contact-box li > span.mail,
body.in-kosik.ordering-process .contact-box li > span.tel,
body.in-kosik.ordering-process .contact-box li > span.cellphone,
body.in-kosik.ordering-process .contact-box li > span.facebook,
body.in-kosik.ordering-process .contact-box li > i.mail,
body.in-kosik.ordering-process .contact-box li > i.tel,
body.in-kosik.ordering-process .contact-box li > i.cellphone,
body.in-kosik.ordering-process .contact-box li > i.facebook,
body.in-kosik.ordering-process .contact-box a.mail:before,
body.in-kosik.ordering-process .contact-box a.tel:before,
body.in-kosik.ordering-process .contact-box a.cellphone:before,
body.in-kosik.ordering-process .contact-box a.facebook:before {
  content: none !important;
  display: none !important;
}

body.in-kosik.ordering-process .contact-box li > span.mail,
body.in-kosik.ordering-process .contact-box li > span.tel,
body.in-kosik.ordering-process .contact-box li > span.cellphone,
body.in-kosik.ordering-process .contact-box li > span.facebook {
  display: inline !important;
}

body.in-kosik.ordering-process .contact-box li > span.mail:before,
body.in-kosik.ordering-process .contact-box li > span.tel:before,
body.in-kosik.ordering-process .contact-box li > span.cellphone:before,
body.in-kosik.ordering-process .contact-box li > span.facebook:before {
  content: none !important;
  display: none !important;
}

body.in-kosik.ordering-process .next-step-forward {
  isolation: auto;
  overflow: visible;
  background: var(--cart-green-cta) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background-color .16s ease, color .16s ease !important;
}

body.in-kosik.ordering-process .next-step-forward:before {
  content: none !important;
  display: none !important;
  animation: none !important;
}

body.in-kosik.ordering-process .next-step-forward:hover,
body.in-kosik.ordering-process .next-step-forward:focus-visible {
  background: var(--cart-green-dark) !important;
  box-shadow: none !important;
  transform: none !important;
}

body.in-kosik.ordering-process .next-step-forward:hover:before,
body.in-kosik.ordering-process .next-step-forward:focus-visible:before {
  content: none !important;
  display: none !important;
}

body.in-kosik.ordering-process #cart-wrapper:after {
  content: none !important;
  display: none !important;
}

@media (max-width: 1199px) {
  body.in-kosik.ordering-process .cart-table tbody:before {
    background-image: none;
    content: "PRODUKT     DOSTUPNOST     MNOZSTVO     CENA ZA MJ     CENA SPOLU" !important;
    display: block;
    height: auto;
    min-height: 28px;
    white-space: pre;
  }
}

@media (max-width: 767px) {
  body.in-kosik.ordering-process .cart-header .step {
    padding: 0 34px 10px 0 !important;
  }

  body.in-kosik.ordering-process .cart-header .step:not(:last-child):after {
    content: none !important;
    display: none !important;
  }

  body.in-kosik.ordering-process .cart-header .step:not(:first-child):after {
    top: 12px;
    left: 10px;
  }

  body.in-kosik.ordering-process .quantity {
    height: 42px !important;
  }

  body.in-kosik.ordering-process .quantity label,
  body.in-kosik.ordering-process .quantity .amount,
  body.in-kosik.ordering-process .quantity .increase,
  body.in-kosik.ordering-process .quantity .decrease {
    height: 40px !important;
    min-height: 40px !important;
  }

  body.in-kosik.ordering-process .quantity .amount {
    line-height: 40px !important;
  }
}

/* Cart cleanup v2 - airy layout and single step numbering */
body.in-kosik.ordering-process .cart-row {
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 36px;
}

body.in-kosik.ordering-process .cart-row > .col-md-8 > .cart-content {
  padding: 38px 32px 34px !important;
  box-shadow: 0 18px 44px rgba(16, 45, 115, .06);
}

body.in-kosik.ordering-process .cart-header {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0 0 36px !important;
  padding: 0 0 0 !important;
  border-bottom: 1px solid var(--cart-blue-line) !important;
  counter-reset: none !important;
}

body.in-kosik.ordering-process .cart-header .step {
  min-height: 72px;
  display: flex !important;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 0 44px 18px 0 !important;
  border-bottom: 3px solid transparent !important;
  counter-increment: none !important;
}

body.in-kosik.ordering-process .cart-header .step:before {
  content: none !important;
  display: none !important;
}

body.in-kosik.ordering-process .cart-header .step > a,
body.in-kosik.ordering-process .cart-header .step > strong {
  min-height: 54px;
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  color: inherit !important;
  font: inherit !important;
  text-decoration: none !important;
}

body.in-kosik.ordering-process .cart-header .step > a:before,
body.in-kosik.ordering-process .cart-header .step > strong:before {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 2px solid #8d96a7 !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #687385 !important;
  font-family: "Exo 2", var(--template-headings-font), Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-indent: 0 !important;
  box-shadow: none !important;
}

body.in-kosik.ordering-process .cart-header .step-1 > a:before,
body.in-kosik.ordering-process .cart-header .step-1 > strong:before {
  content: "1" !important;
}

body.in-kosik.ordering-process .cart-header .step-2 > a:before,
body.in-kosik.ordering-process .cart-header .step-2 > strong:before {
  content: "2" !important;
}

body.in-kosik.ordering-process .cart-header .step-3 > a:before,
body.in-kosik.ordering-process .cart-header .step-3 > strong:before {
  content: "3" !important;
}

body.in-kosik.ordering-process .cart-header .step.active > a:before,
body.in-kosik.ordering-process .cart-header .step.active > strong:before {
  border-color: #087ed0 !important;
  color: #087ed0 !important;
  box-shadow: 0 0 0 4px rgba(8, 126, 208, .08) !important;
}

body.in-kosik.ordering-process .cart-header .step:not(:first-child):after {
  top: 21px;
  left: -22px;
}

body.in-kosik.ordering-process .cart-header .step span:before,
body.in-kosik.ordering-process .cart-header .step span:after {
  content: none !important;
  display: none !important;
}

body.in-kosik.ordering-process .cart-table tbody:before {
  margin-top: 4px;
  margin-bottom: 8px;
}

body.in-kosik.ordering-process .cart-table tr.removeable {
  min-height: 136px;
  grid-template-columns: 92px minmax(240px, 1.5fr) minmax(118px, .6fr) 154px minmax(92px, .45fr) minmax(90px, .42fr);
  gap: 16px;
  padding: 30px 0 !important;
}

body.in-kosik.ordering-process .cart-p-image a,
body.in-kosik.ordering-process .cart-p-image img {
  width: 84px !important;
  height: 84px !important;
}

body.in-kosik.ordering-process .quantity {
  width: 154px !important;
  height: 54px !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: flex-start;
  grid-template-columns: none !important;
  box-sizing: border-box;
}

body.in-kosik.ordering-process .quantity label {
  position: static !important;
  order: 2;
  width: 58px !important;
  min-width: 58px !important;
  height: 52px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #d8e2f1 !important;
  border-right: 1px solid #d8e2f1 !important;
}

body.in-kosik.ordering-process .quantity .amount {
  width: 58px !important;
  height: 52px !important;
  display: block !important;
  border: 0 !important;
  line-height: 52px !important;
}

body.in-kosik.ordering-process .quantity .increase,
body.in-kosik.ordering-process .quantity .decrease {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: 48px !important;
  min-width: 48px !important;
  height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 48px !important;
}

body.in-kosik.ordering-process .quantity .increase:before,
body.in-kosik.ordering-process .quantity .decrease:before {
  position: static !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: currentColor !important;
  font-family: Arial, sans-serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  -webkit-mask: none !important;
  mask: none !important;
  transform: none !important;
}

body.in-kosik.ordering-process .quantity .decrease:before {
  content: "-" !important;
}

body.in-kosik.ordering-process .quantity .increase:before {
  content: "+" !important;
}

body.in-kosik.ordering-process .cart-summary {
  margin-top: 30px !important;
  padding-top: 30px !important;
}

body.in-kosik.ordering-process .extra.delivery span {
  min-height: 112px;
  padding: 30px 32px 28px 116px;
}

body.in-kosik.ordering-process .sidebar-in-cart {
  padding: 42px 38px !important;
  box-shadow: 0 18px 44px rgba(16, 45, 115, .06);
}

body.in-kosik.ordering-process .sidebar-in-cart h2.h4 {
  margin-bottom: 22px !important;
  font-size: 18px !important;
  line-height: 1.25;
}

body.in-kosik.ordering-process .contact-box strong {
  margin-bottom: 18px;
  font-size: 15px;
}

body.in-kosik.ordering-process .contact-box ul {
  padding-bottom: 28px !important;
}

body.in-kosik.ordering-process .contact-box li {
  min-height: 28px;
  display: flex;
  align-items: center;
  margin-bottom: 16px !important;
  padding-left: 34px !important;
  font-size: 14px;
}

body.in-kosik.ordering-process .contact-box li:before {
  top: 4px;
  width: 18px;
  height: 18px;
}

body.in-kosik.ordering-process .summary-wrapper {
  margin-top: 32px !important;
}

body.in-kosik.ordering-process .price-wrapper {
  gap: 14px 20px;
  padding-bottom: 30px !important;
}

body.in-kosik.ordering-process .price.price-primary {
  font-size: 32px;
}

body.in-kosik.ordering-process .next-step {
  gap: 18px;
}

body.in-kosik.ordering-process .next-step .btn {
  min-height: 64px;
}

/* Cart cleanup v3 - tighter columns, cleaner sidebar */
body.in-kosik.ordering-process .cart-row {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 380px) !important;
  gap: 30px !important;
}

body.in-kosik.ordering-process .cart-row > .col-md-8,
body.in-kosik.ordering-process .cart-row > .col-md-4,
body.in-kosik.ordering-process .cart-row > [class*="col-"] {
  min-width: 0 !important;
}

body.in-kosik.ordering-process .cart-row > .col-md-8 > .cart-content {
  padding: 36px 30px 34px !important;
  overflow: hidden;
}

body.in-kosik.ordering-process .cart-header {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-bottom: 38px !important;
}

body.in-kosik.ordering-process .cart-header .step {
  min-width: 0;
  min-height: 64px;
  padding-right: 0 !important;
}

body.in-kosik.ordering-process .cart-header .step > a,
body.in-kosik.ordering-process .cart-header .step > strong {
  gap: 13px;
  max-width: 100%;
}

body.in-kosik.ordering-process .cart-header .step span {
  display: block;
  max-width: 112px;
}

body.in-kosik.ordering-process .cart-table tbody:before {
  min-height: 34px;
  padding-bottom: 16px;
  overflow: hidden;
  color: #66748a;
  white-space: nowrap;
}

body.in-kosik.ordering-process .cart-table tr.removeable {
  grid-template-columns: 76px minmax(145px, 1fr) 96px 148px 68px 78px !important;
  gap: 12px !important;
  min-height: 138px;
  padding: 28px 0 !important;
}

body.in-kosik.ordering-process .cart-p-image a,
body.in-kosik.ordering-process .cart-p-image img {
  width: 74px !important;
  height: 74px !important;
}

body.in-kosik.ordering-process .p-name .main-link {
  max-width: 100%;
  overflow-wrap: anywhere;
}

body.in-kosik.ordering-process .p-availability,
body.in-kosik.ordering-process .p-price,
body.in-kosik.ordering-process .p-total {
  min-width: 0 !important;
}

body.in-kosik.ordering-process .p-price {
  display: flex !important;
  align-items: baseline;
  justify-content: flex-start;
  gap: 5px;
  white-space: nowrap;
}

body.in-kosik.ordering-process .p-price .price-final,
body.in-kosik.ordering-process .p-total .price-final {
  font-size: 18px !important;
}

body.in-kosik.ordering-process .p-total {
  text-align: right !important;
}

body.in-kosik.ordering-process .quantity {
  width: 148px !important;
  height: 54px !important;
  overflow: hidden;
}

body.in-kosik.ordering-process .quantity label,
body.in-kosik.ordering-process .quantity .amount {
  width: 58px !important;
  min-width: 58px !important;
  height: 52px !important;
  line-height: 52px !important;
}

body.in-kosik.ordering-process .quantity .increase,
body.in-kosik.ordering-process .quantity .decrease {
  width: 44px !important;
  min-width: 44px !important;
  flex-basis: 44px !important;
  height: 52px !important;
  padding: 0 !important;
}

body.in-kosik.ordering-process .quantity .increase:before,
body.in-kosik.ordering-process .quantity .decrease:before {
  height: 22px !important;
  line-height: 22px !important;
}

body.in-kosik.ordering-process .cart-summary {
  margin-top: 34px !important;
  padding-top: 32px !important;
}

body.in-kosik.ordering-process .extra.delivery span {
  padding: 30px 34px 28px 112px !important;
}

body.in-kosik.ordering-process .sidebar-in-cart {
  padding: 44px 36px 34px !important;
  background: #fff !important;
}

body.in-kosik.ordering-process .sidebar-in-cart h2.h4 {
  margin-bottom: 24px !important;
  font-size: 18px !important;
}

body.in-kosik.ordering-process .contact-box strong {
  margin-bottom: 20px !important;
}

body.in-kosik.ordering-process .contact-box ul {
  padding-bottom: 30px !important;
}

body.in-kosik.ordering-process .contact-box li {
  min-height: 30px;
  margin-bottom: 18px !important;
  padding-left: 36px !important;
}

body.in-kosik.ordering-process .contact-box li:before {
  top: 5px !important;
  width: 18px !important;
  height: 18px !important;
}

body.in-kosik.ordering-process .contact-box a[href*="facebook"] {
  font-size: 13px;
  line-height: 1.35;
}

body.in-kosik.ordering-process .summary-wrapper {
  margin-top: 34px !important;
}

body.in-kosik.ordering-process .price-wrapper {
  gap: 16px 22px !important;
  padding-bottom: 32px !important;
}

body.in-kosik.ordering-process .price.price-primary {
  font-size: 32px !important;
}

@media (max-width: 1180px) {
  body.in-kosik.ordering-process .cart-row {
    grid-template-columns: 1fr !important;
  }

  body.in-kosik.ordering-process .sidebar-in-cart {
    position: static;
  }
}

/* Cart cleanup v4 - restore sidebar padding and wider product name column */
body.in-kosik.ordering-process .cart-row {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 350px) !important;
  gap: 26px !important;
}

body.in-kosik.ordering-process .cart-row > .sidebar-in-cart {
  padding: 44px 36px 34px !important;
  box-sizing: border-box;
}

body.in-kosik.ordering-process .cart-table tr.removeable {
  grid-template-columns: 74px minmax(185px, 1fr) 94px 148px 64px 72px !important;
  gap: 10px !important;
}

body.in-kosik.ordering-process .p-total .remove-item {
  right: 0;
}

body.in-kosik.ordering-process .sidebar-in-cart h2.h4 {
  margin-top: 0 !important;
  font-size: 17px !important;
  letter-spacing: 0;
}

@media (max-width: 1180px) {
  body.in-kosik.ordering-process .cart-row {
    grid-template-columns: 1fr !important;
  }
}
