:root {
  --bs-border-radius: 3px;
  --bs-border-radius-sm: 3px;
  --bs-border-radius-lg: 3px;
  --bs-border-radius-xl: 3px;
  --bs-border-radius-xxl: 3px;
  --bs-border-radius-pill: 3px;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #a8c3cf #f1f5f5;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f5f5;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb {
  background: #a8c3cf;
  border: 2px solid #f1f5f5;
  border-radius: 999px;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: #2f6887;
}
body {
  background: #f6f8f8;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  color: #53666e;
  letter-spacing: 0.01em;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 2rem;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  color: #102d3a;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: none;
  line-height: 1;
}
div,
li,
p,
a,
span {
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  color: #53666e;
}
a {
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}
a:hover {
  color: #2f6887;
  text-decoration: underline;
}
p {
  margin-bottom: 1rem;
}
button,
input,
select,
textarea {
  font-family: 'Manrope', 'Avenir Next', sans-serif;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #2f6887;
  outline-offset: 3px;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.675rem;
}
.container.narrow {
  max-width: 600px;
}
.container h1 {
  margin-bottom: 2rem;
}
.main-content > *:last-child {
  margin-bottom: 0;
}
.products-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}
.products-wrapper .product-card {
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 1rem;
  margin: 0;
  color: #102d3a;
  overflow: hidden;
  transition: border-color 0.2s ease;
  position: relative;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.products-wrapper .product-card:hover {
  border-color: #c5d1d4;
}
.products-wrapper .product-card .product-card-link {
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}
.products-wrapper .product-card .product-card-link:hover {
  text-decoration: none;
  color: inherit;
}
.products-wrapper .product-card .thumb {
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1.1rem;
  cursor: pointer;
  border-radius: 3px;
  background: #ffffff;
  border: 0;
  position: relative;
  padding: 2rem 0.5rem 0.5rem;
}
.products-wrapper .product-card .thumb img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.18s ease;
}
.products-wrapper .product-card .thumb:hover img {
  transform: scale(1.025);
}
.products-wrapper .product-card .info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  margin-bottom: 1.15rem;
}
.products-wrapper .product-card .info .product-meta-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.products-wrapper .product-card .info .product-meta-top .brand {
  color: #2f6887;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.products-wrapper .product-card .info .product-meta-top .brand:after {
  content: "/";
  margin-left: 0.6rem;
  color: #c5d1d4;
}
.products-wrapper .product-card .info .name {
  color: #102d3a;
  overflow-wrap: anywhere;
  flex: 1 1 auto;
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.products-wrapper .product-card .info .code {
  color: #53666e;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.products-wrapper .product-card .info .availability {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-left: 0.8rem;
  position: relative;
  font-size: 0.75rem;
  font-weight: 500;
}
.products-wrapper .product-card .info .availability:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.products-wrapper .product-card .info .availability.in-stock {
  color: #2c7a62;
}
.products-wrapper .product-card .info .availability.in-stock:before {
  background: #2c7a62;
}
.products-wrapper .product-card .info .availability.out-of-stock {
  color: #53666e;
}
.products-wrapper .product-card .info .availability.out-of-stock:before {
  background: #c65f50;
}
.products-wrapper .product-card .info .availability.lead-time {
  color: #53666e;
}
.products-wrapper .product-card .info .availability.lead-time:before {
  background: #2f6887;
}
.products-wrapper .product-card .pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.2rem;
  margin-top: auto;
  min-height: 80px;
  padding-top: 0.9rem;
  padding-right: 52px;
  font-variant-numeric: tabular-nums;
  border-top: 1px solid #d8e1e3;
}
.products-wrapper .product-card .pricing .old-price {
  color: #7a8b91;
  text-decoration: line-through;
  width: fit-content;
  margin-right: 0.2rem;
  font-size: 0.82rem;
}
.products-wrapper .product-card .pricing .price {
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.55rem);
  line-height: 1.25;
  font-weight: 700;
  color: #102d3a;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  letter-spacing: -0.025em;
}
.products-wrapper .product-card .cart-actions {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
}
.products-wrapper .product-card .cart-actions .catalog-add-to-cart {
  padding: 0;
  color: #2f6887;
  font-size: 1.25rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  box-shadow: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.products-wrapper .product-card .cart-actions .catalog-add-to-cart:focus-visible {
  outline: 2px solid #2f6887;
  outline-offset: 3px;
}
.products-wrapper .product-card .cart-actions .catalog-add-to-cart:hover:not(:disabled) {
  background: #102d3a;
  color: #ffffff;
}
.products-wrapper .product-card .cart-actions .catalog-add-to-cart.added {
  color: #2c7a62;
  cursor: default;
  background: #eef6f2;
  border-color: rgba(44, 122, 98, 0.35);
  opacity: 1;
}
.products-wrapper .product-card .cart-actions .catalog-add-to-cart.unavailable {
  color: #c65f50;
  cursor: not-allowed;
  background: rgba(198, 95, 80, 0.08);
  border-color: rgba(198, 95, 80, 0.35);
  opacity: 1;
}
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 1rem;
  background-color: #3b7c9f;
  background-image: none;
  border: 0;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 3px;
  opacity: 1;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: none;
}
.btn-custom [class*=fa-] {
  flex: 0 0 auto;
  margin: 0;
}
.btn-custom:not(.disabled) {
  cursor: pointer;
  transition: transform 0.25s ease-in-out, background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
}
.btn-custom:not(.disabled):hover {
  background-color: #306581;
  color: #fff;
  transform: none;
  box-shadow: none;
}
.btn-custom.disabled {
  transition: none;
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.btn-custom.no-margin {
  margin: 0;
}
.thumb {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.breadcrumbs {
  padding: 0.25rem 0;
  background: transparent;
  border: 0;
  font-size: 0.82rem;
  line-height: 2;
  overflow-wrap: anywhere;
  box-shadow: none;
}
.breadcrumbs .fas {
  display: inline-block;
  margin: 0 0.65rem;
  color: #7a8b91;
  font-size: 0.78rem;
}
.breadcrumbs .fas:first-child {
  display: none;
}
.breadcrumbs .breadcrumb {
  display: inline-block;
  padding: 0;
  background-color: transparent;
  position: relative;
  color: #102d3a;
  margin-bottom: 0;
}
.breadcrumbs .breadcrumb:hover {
  text-decoration: underline;
}
.breadcrumbs .breadcrumb:before {
  display: none;
}
.product-flags {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  right: 0.6rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  pointer-events: none;
}
.product-flag {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  color: #2f6887;
}
.product-flag + .product-flag::before {
  content: "\00b7";
  margin-right: 0.45rem;
  color: #7a8b91;
}
.new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.78rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 14px 24px -18px rgba(17, 41, 64, 0.55);
}
.product-flag-promo {
  color: #c65f50;
}
.new {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  background: #d2232a;
  color: #fff;
}
.footer-links .footer-lead {
  color: rgba(255, 255, 255, 0.72);
}
.footer-links ul {
  padding: 0;
  margin: 1.5rem 0 0;
}
.footer-links ul li {
  list-style-type: none;
  margin-bottom: 0.7rem;
}
.footer-links ul li .fas {
  display: inline-block;
  width: 1rem;
  margin-right: 0.7rem;
  color: #4b8eb3;
}
.footer-links ul li a {
  color: rgba(255, 255, 255, 0.72);
}
.footer-links ul li a:hover {
  color: #fff;
}
.footer-links .social {
  margin-top: 1.5rem;
}
.footer-links .social .fab {
  font-size: 2.25rem;
  display: inline-block;
  margin-right: 0.75rem;
}
.footer-links .social a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s ease-in-out;
}
.footer-links .social a:hover {
  color: #4b8eb3;
}
.footer-links a {
  transition: color 0.25s ease-in-out;
}
.footer-links a:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}
.contact-data .footer-lead {
  color: rgba(255, 255, 255, 0.72);
}
.contact-data .contact-card {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}
.contact-data .contact-card strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
}
.contact-data .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.contact-data .contact-item .fas {
  display: inline-block;
  width: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: #4b8eb3;
}
.contact-data .contact-item span {
  color: rgba(255, 255, 255, 0.68);
}
.contact-data .contact-item span a {
  color: rgba(255, 255, 255, 0.88);
}
.contact-data a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}
.contact-data a:hover {
  color: #fff;
}
.catalog-shell {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 3px;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  color: #2f6887;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.catalog-intro {
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid #d8e1e3;
}
.catalog-intro .section-kicker {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}
.catalog-intro-copy h1 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 2.7vw, 2.65rem);
  line-height: 1.15;
}
.catalog-intro-copy p {
  max-width: 62ch;
  margin: 0;
  line-height: 1.8;
}
.catalog-intro-aside {
  display: grid;
  gap: 0.9rem;
}
.catalog-parent-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  margin-bottom: 1.25rem;
  color: #102d3a;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.catalog-parent-link i {
  color: #2f6887;
  flex-shrink: 0;
}
.catalog-parent-link .catalog-parent-label {
  color: #53666e;
  font-weight: 400;
}
.catalog-parent-link:hover {
  color: #2f6887;
  text-decoration: none;
}
.catalog-parent-link:hover > span {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.catalog-parent-link:focus-visible {
  outline: 2px solid #2f6887;
  outline-offset: 5px;
  border-radius: 3px;
}
.catalog-subcategories {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #d8e1e3;
}
.catalog-subcategories h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
.catalog-subcategory-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.catalog-subcategory-list li {
  min-width: 0;
}
.catalog-subcategory-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  background: #fff;
  color: #102d3a;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.catalog-subcategory-list a:hover {
  background: #f1f5f5;
  border-color: #c5d1d4;
  color: #102d3a;
}
.catalog-subcategory-list a:focus-visible {
  outline: 2px solid #2f6887;
  outline-offset: 3px;
}
.catalog-subcategory-list a i {
  color: #2f6887;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.catalog-subcategory-list .catalog-subcategory-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.catalog-subcategory-list .catalog-subcategory-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.catalog-subcategory-list .catalog-subcategory-count {
  color: #53666e;
  font-size: 0.8rem;
  line-height: 1.4;
}
.catalog-products-heading {
  margin-top: 0 !important;
}
.root-category-card {
  min-width: 0;
}
.root-category-card a {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
  min-height: 220px;
  padding: 1.5rem;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  background: #ffffff;
  color: #102d3a;
  text-decoration: none;
  transition: background-color 0.15s, border-color 0.15s;
}
.root-category-card a:hover {
  background: #f1f5f5;
  border-color: #c5d1d4;
}
.root-category-card a:focus-visible {
  outline: 2px solid #2f6887;
  outline-offset: 3px;
}
.root-category-card h2 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.4;
  margin: 0;
  overflow-wrap: anywhere;
}
.root-category-card .category-count {
  color: #53666e;
  font-size: 0.8rem;
}
.root-category-card .category-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  color: #2f6887;
  font-size: 0.85rem;
  font-weight: 700;
}
.catalog-empty {
  grid-column: 1 / -1;
  padding: 2rem 0;
}
.catalog-empty h2 {
  font-size: 1.5rem;
}
.featured-intro {
  margin-bottom: 2.5rem;
}
.catalog-hub {
  padding: clamp(2rem, 4vw, 4.5rem) 0 clamp(4rem, 7vw, 7rem);
}
.catalog-hub-intro {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(480px, 1.35fr);
  grid-template-areas: "kicker ." "title lead";
  align-items: end;
  gap: 0.35rem 4rem;
  padding: 0 0 clamp(1.75rem, 3vw, 2.5rem);
}
.catalog-hub-intro .section-kicker {
  grid-area: kicker;
  align-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}
.catalog-hub-intro h1 {
  grid-area: title;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
}
.catalog-hub-intro p {
  grid-area: lead;
  align-self: start;
  justify-self: end;
  max-width: 34rem;
  margin: 0.25rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
  text-align: right;
}
.catalog-featured {
  display: grid;
  grid-template-columns: minmax(0, 43fr) minmax(360px, 57fr);
  background: #102d3a;
  border: 1px solid #c5d1d4;
  border-radius: 0;
  overflow: hidden;
}
.catalog-featured-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.75rem);
}
.catalog-featured-copy .catalog-featured-label {
  margin-bottom: 1.25rem;
  color: #a8c3cf;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.catalog-featured-copy h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 19ch;
  margin-bottom: 1.35rem;
  color: #fff;
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.catalog-featured-copy .catalog-featured-title-main {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}
.catalog-featured-copy .catalog-featured-title-brand {
  margin-top: 0.55rem;
  color: #a8c3cf;
  font-size: clamp(0.85rem, 1.25vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.catalog-featured-copy .catalog-featured-title-support {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.catalog-featured-copy .catalog-featured-description {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  max-width: 46ch;
  margin: 0 0 1.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}
.catalog-featured-copy .catalog-featured-description span {
  color: inherit;
}
.catalog-featured-copy .catalog-featured-description span + span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  letter-spacing: 0.035em;
}
.catalog-featured-copy .btn-custom span,
.catalog-featured-copy .btn-custom i {
  color: #fff;
}
.catalog-featured-copy .btn-custom {
  padding: 0.72rem 1.4rem;
  font-size: 0.78rem;
}
.catalog-featured-visual {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 420px;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: #f1f5f5;
  overflow: hidden;
}
.catalog-featured-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.catalog-featured-visual:hover img {
  transform: scale(1.012);
}
.catalog-featured-visual:focus-visible {
  outline: 3px solid #3b7c9f;
  outline-offset: -5px;
}
.catalog-library {
  padding-top: clamp(3.5rem, 6vw, 6rem);
}
.catalog-library-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #d8e1e3;
}
.catalog-library-heading .section-kicker {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}
.catalog-library-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.catalog-library-title {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 1rem;
}
.catalog-library-title > span {
  color: #7a8b91;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.catalog-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 340px));
  gap: clamp(2rem, 3vw, 3rem);
  justify-content: start;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 0.75rem;
  background: transparent;
  border: 0;
  border-top: 1px solid #d8e1e3;
  border-radius: 0;
  transition: border-color 0.18s ease;
}
.catalog-card:hover {
  border-color: #a8c3cf;
}
.catalog-card-image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 1.15rem;
  background: #f1f5f5;
  overflow: hidden;
}
.catalog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.catalog-card:hover .catalog-card-image img {
  transform: scale(1.015);
}
.catalog-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem 0 0;
}
.catalog-card-copy .catalog-card-index {
  margin-bottom: 0.8rem;
  color: #2f6887;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.catalog-card-copy h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.catalog-card-copy p {
  display: -webkit-box;
  margin: 0 0 1.4rem;
  overflow: hidden;
  color: #53666e;
  font-size: 0.9rem;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.catalog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  color: #2f6887;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.catalog-card-link span,
.catalog-card-link i {
  color: inherit;
}
.catalog-card-link i {
  font-size: 0.72rem;
  transition: transform 0.18s ease;
}
.catalog-card-link:hover {
  color: #102d3a;
}
.catalog-card-link:hover i {
  transform: translate(2px, -2px);
}
.catalog-card-link:focus-visible {
  outline: 2px solid #2f6887;
  outline-offset: 4px;
}
.catalog-hub-empty {
  padding: clamp(2rem, 5vw, 4rem);
  background: #ffffff;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
}
.catalog-hub-empty h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}
.catalog-hub-empty p {
  margin-bottom: 1.5rem;
}
.products-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0 1.5rem;
}
.products-section-heading h2 {
  margin-bottom: 0;
  font-size: 2rem;
}
.products-section-heading p {
  max-width: 34ch;
  margin: 0;
  text-align: right;
  line-height: 1.7;
}
.contact-form .form-group {
  display: block;
}
.contact-form .form-group label {
  display: block;
  width: auto;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.contact-form .form-group .form-control {
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  padding: 0.85rem 1rem;
  background: #fff;
  font-size: 1rem;
  box-shadow: none;
}
.contact-form .form-group .form-control:focus {
  border-color: #2f6887;
  outline: 2px solid #2f6887;
  outline-offset: 2px;
}
.contact-form #email-status {
  display: none;
}
.contact-form .footer-lead {
  color: rgba(255, 255, 255, 0.72);
}
.contact-form fieldset {
  margin-top: 1.5rem;
}
.login-form .button-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.login-form .button-wrapper .login-submit {
  margin-left: 1rem;
}
.login-form .login-status {
  display: none;
  margin-top: 1rem;
}
.login-form .separator {
  margin: 2rem 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
.order-buttons {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}
.order-buttons > *:last-child {
  margin-left: auto;
}
.order-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.15rem;
  padding: 0.85rem 1.45rem;
  border-radius: 3px;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}
.order-buttons .btn-secondary {
  min-width: 230px;
}
.order-buttons .btn-primary {
  min-width: 150px;
}
.business-customer-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
  color: #53666e;
  font-size: 0.88rem;
  line-height: 1.55;
}
.business-customer-notice > i {
  flex: 0 0 auto;
  margin-top: 0.18rem;
  color: #2f6887;
}
.business-customer-notice div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.45rem;
  min-width: 0;
}
.business-customer-notice strong {
  color: #102d3a;
}
.business-customer-notice span {
  color: #53666e;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.newsletter-form .notice {
  width: 100%;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.15rem;
  text-align: left;
}
.newsletter-form-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
}
.newsletter-form .email {
  height: 48px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  width: 100%;
  min-width: 0;
  padding: 0 1rem;
  background-color: rgba(255, 255, 255, 0.92);
}
.newsletter-form .newsletter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 3px;
  white-space: nowrap;
}
.newsletter-form .newsletter-btn .fas {
  margin-left: 0;
}
[class*=fa-] {
  display: inline-block;
}
[class*=fa-].left {
  margin-right: 0.5rem;
}
[class*=fa-].right {
  margin-left: 0.5rem;
}
.hidden {
  display: none;
}
.title-mark {
  position: relative;
}
.title-mark:after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #a8c3cf 0%, #4b8eb3 100%);
  width: 42px;
  height: 3px;
  bottom: -8px;
  left: 0;
  border-radius: 3px;
}
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.form-group label {
  width: 125px;
  padding-right: 1rem;
  margin: 0;
  font-weight: 600;
  color: #102d3a;
}
.form-group input[type=text],
.form-group select,
.form-group textarea {
  flex: 1;
  border: 1px solid rgba(127, 165, 196, 0.26);
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 0.75rem 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.form-group.user-checkbox label {
  margin-left: 0.25rem;
  width: 100%;
}
#user-form .fixed-country[readonly] {
  background: #f1f5f5;
  color: #102d3a;
  cursor: default;
}
#user-form .form-control.empty,
#user-form select.empty,
#user-form textarea.empty {
  border-color: rgba(210, 35, 42, 0.42);
  background-color: rgba(255, 250, 250, 0.98);
  box-shadow: 0 0 0 4px rgba(210, 35, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}
#user-form .form-control.empty:focus,
#user-form select.empty:focus,
#user-form textarea.empty:focus {
  border-color: rgba(210, 35, 42, 0.56);
  box-shadow: 0 0 0 5px rgba(210, 35, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
#user-form .form-group:not(.user-checkbox) {
  position: relative;
}
#user-form .form-group:not(.user-checkbox):after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-size: 17px;
  color: #000;
  font-weight: 900;
  position: absolute;
  top: 6px;
  right: 17px;
  opacity: 0;
}
#user-form .form-group:not(.user-checkbox).saving:after {
  content: "\f110";
  opacity: 0.4;
  animation: fa-spin 1s linear infinite;
}
#user-form .form-group:not(.user-checkbox).saved:after {
  content: "\f058";
  opacity: 0.4;
}
#user-form .alert {
  margin-bottom: 1.25rem;
  border-radius: 3px;
}
#cookie {
  right: 1rem;
  bottom: 1rem;
  background: #102d3a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 1.5rem;
  position: fixed;
  width: 440px;
  max-width: calc(100% - 2rem);
  border-radius: 3px;
  z-index: 1100;
  box-shadow: 0 14px 34px rgba(16, 45, 58, 0.08);
}
#cookie[hidden] {
  display: none;
}
#cookie p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}
#cookie #cookie_header {
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
#cookie .cookie-status {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.68);
}
#cookie #cookie_btn_wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.85rem;
}
#cookie #cookie_btn_wrapper a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.2;
}
#cookie .cookie-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  width: 100%;
}
#cookie .cookie-reject {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  color: #ffffff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
#cookie .cookie-reject:hover,
#cookie .cookie-reject:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}
#cookie #cookie_accept {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.8rem;
  white-space: normal;
}
#cookie #cookie_accept:hover,
#cookie #cookie_accept:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}
.footer-links .cookie-settings-link {
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}
.footer-links .cookie-settings-link:hover,
.footer-links .cookie-settings-link:focus-visible {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 575px) {
  #cookie {
    left: 1rem;
    right: 1rem;
    width: auto;
    padding: 1.25rem;
  }
}
.note {
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
}
.danger {
  color: #bd0101;
  font-weight: 700;
}
.toast-bar {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 350px;
  height: auto;
  z-index: 16;
}
.toast-bar .toast-card {
  padding-top: 0.5rem;
  width: 100%;
  border-radius: 3px;
  max-height: 300px;
  overflow: hidden;
  box-shadow: 0 15px 15px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
}
.toast-bar .toast-card.hidden {
  max-height: 0;
}
.toast-bar .toast-card .header {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  background-color: #2f6887;
  padding: 0.5rem 1rem;
  color: #fff;
}
.toast-bar .toast-card .header.success {
  background-color: rgba(59, 141, 39, 0.7);
}
.toast-bar .toast-card .header.info {
  background-color: rgba(26, 169, 203, 0.7);
}
.toast-bar .toast-card .header.warning {
  background-color: #d97417;
}
.toast-bar .toast-card .header.error {
  background-color: #c81c1c;
}
.toast-bar .toast-card .body {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border: 1px solid rgba(127, 165, 196, 0.18);
  border-top: 0;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(16, 45, 58, 0.06);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.35rem;
  border-radius: 3px;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-width: 1px;
  box-shadow: none;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn [class*=fa-] {
  flex: 0 0 auto;
  margin: 0;
}
.btn:hover {
  transform: none;
  box-shadow: none;
  text-decoration: none;
}
.btn-dark,
.btn-primary,
.btn-custom {
  background-color: #3b7c9f;
  --bs-btn-disabled-bg: #3b7c9f;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-disabled-color: #fff;
  background-image: none;
  border: 0;
  color: #fff;
}
.btn-dark:hover,
.btn-primary:hover,
.btn-custom:hover,
.btn-dark:focus,
.btn-primary:focus,
.btn-custom:focus {
  background-color: #306581;
  border-color: transparent;
  color: #fff;
  text-decoration: none;
}
.btn-secondary {
  background: #ffffff;
  border-color: #d8e1e3;
  color: #102d3a;
}
.btn-light,
.btn-info,
.btn-outline-dark {
  background: #ffffff;
  border-color: #d8e1e3;
  color: #102d3a;
  box-shadow: none;
}
.btn-light:hover,
.btn-info:hover,
.btn-outline-dark:hover,
.btn-light:focus,
.btn-info:focus,
.btn-outline-dark:focus {
  color: #102d3a;
  text-decoration: none;
  background: #f1f5f5;
  border-color: #c5d1d4;
}
.btn-secondary:hover,
.btn-secondary:focus {
  color: #102d3a;
  background: #f1f5f5;
  border-color: #c5d1d4;
  text-decoration: none;
}
.alert {
  border-radius: 3px;
  border: 1px solid rgba(127, 165, 196, 0.18);
  box-shadow: 0 8px 24px rgba(16, 45, 58, 0.06);
}
.alt-price {
  font-size: 1.25rem;
  color: #7a8b91;
}
:focus {
  outline-width: 0 !important;
}
.cities-list {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  padding: 1rem;
  margin: 0;
  border: 1px solid rgba(127, 165, 196, 0.18);
  border-radius: 3px;
  box-shadow: 0 14px 34px rgba(16, 45, 58, 0.08);
  max-height: 250px;
  overflow: auto;
}
.cities-list li {
  padding: 0.125rem 0;
  cursor: pointer;
  list-style-type: none;
}
.cities-list li span {
  background-color: #ffdd6c;
}
.cities-list li:hover {
  background-color: #f2f2f2;
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.menu {
  position: sticky;
  top: 0;
  z-index: 16;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #d8e1e3;
  box-shadow: 0 8px 24px rgba(16, 45, 58, 0.05);
  transition: transform 0.32s ease, opacity 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}
.menu > * {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.menu.is-hidden {
  transform: translateY(calc(-100% - 1.5rem));
  opacity: 0;
  pointer-events: none;
}
.menu.is-floating {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(16, 45, 58, 0.08);
}
.menu .mobile-menu {
  display: none;
}
.menu a {
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.menu ul {
  margin: 0;
  padding: 0;
}
.menu ul li {
  list-style-type: none;
}
.menu ul li.show-all {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.menu .menu-utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 0.5rem;
  font-size: 0.86rem;
}
.menu .menu-utility-copy,
.menu .menu-utility-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}
.menu .menu-utility-copy {
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
}
.menu .menu-utility-contact {
  flex: 0 0 auto;
  flex-wrap: nowrap;
}
.menu .menu-utility .utility-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0;
  color: #53666e;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.menu .menu-utility .utility-text {
  color: #53666e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu .menu-utility a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #53666e;
  font-weight: 600;
  min-height: 32px;
  text-decoration: none;
}
.menu .menu-utility a:hover {
  color: #2f6887;
}
.menu .menu-utility a:hover span {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.menu .menu-utility a:focus-visible {
  outline: 2px solid #2f6887;
  outline-offset: 3px;
}
.menu .menu-utility a i {
  color: #4b8eb3;
}
.menu .menu-top {
  display: none;
}
.menu .menu-main {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #d8e1e3;
  padding: 0.5rem 0 0;
}
.menu .logo {
  flex: 0 0 auto;
}
.menu .logo a {
  display: inline-flex;
  align-items: center;
}
.menu .logo img {
  display: block;
  max-height: 40px;
  width: auto;
}
.menu .pages {
  display: flex;
  align-items: center;
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}
.menu .pages > .level-0 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}
.menu .pages > .level-0 > li {
  position: relative;
}
.menu .pages > .level-0 > li.dropdown:after {
  content: '';
  position: absolute;
  top: 100%;
  left: -1rem;
  width: calc(100% + 2rem);
  height: 14px;
}
.menu .pages > .level-0 > li > a,
.menu .pages > .level-0 > li > .menu-item-row > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.6rem 1rem;
  border-radius: 3px;
  font-size: 0.91rem;
  font-weight: 600;
  color: #102d3a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.menu .pages > .level-0 > li > a:hover,
.menu .pages > .level-0 > li > .menu-item-row > a:hover {
  background: #f1f5f5;
  color: #2f6887;
}
.menu .menu-item-row {
  display: block;
}
.menu .menu-dropdown-toggle {
  display: none;
}
.menu .level-1,
.menu .user-actions .level-1 {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 2;
  padding: 0.6rem;
  width: 320px;
  max-height: min(70vh, 640px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: 0 14px 34px rgba(16, 45, 58, 0.08);
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  transform: translateY(8px);
}
.menu .level-1 li > a,
.menu .user-actions .level-1 li > a,
.menu .level-1 li > .menu-item-row > a,
.menu .user-actions .level-1 li > .menu-item-row > a {
  display: block;
  padding: 0.52rem 0.7rem;
  color: #53666e;
  transition: all 0.25s ease-in-out;
  text-align: left;
  border-radius: 3px;
}
.menu .level-1 li > a:hover,
.menu .user-actions .level-1 li > a:hover,
.menu .level-1 li > .menu-item-row > a:hover,
.menu .user-actions .level-1 li > .menu-item-row > a:hover {
  color: #102d3a;
  background: #f1f5f5;
}
.menu .level-1 li > a .pc,
.menu .user-actions .level-1 li > a .pc,
.menu .level-1 li > .menu-item-row > a .pc,
.menu .user-actions .level-1 li > .menu-item-row > a .pc {
  display: none;
}
.menu .level-1 li > a .fas,
.menu .user-actions .level-1 li > a .fas,
.menu .level-1 li > .menu-item-row > a .fas,
.menu .user-actions .level-1 li > .menu-item-row > a .fas {
  display: inline-block;
  margin-right: 0.25rem;
}
.menu .level-1.display,
.menu .user-actions .level-1.display {
  display: block;
}
.menu .level-1.opacity,
.menu .user-actions .level-1.opacity {
  opacity: 1;
  transform: translateY(0);
}
.menu ul.level-2 {
  padding-left: 0.85rem;
  margin-top: 0.35rem;
  border-left: 1px solid rgba(127, 165, 196, 0.16);
}
.menu .pages {
  position: static;
}
.menu .pages > .level-0 > .catalog-menu {
  position: static;
}
.menu .pages > .level-0 > .catalog-menu:after {
  display: none;
}
.menu .pages > .level-0 > .catalog-menu > .menu-item-row {
  position: relative;
}
.menu .pages > .level-0 > .catalog-menu > .menu-item-row:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 {
  --mega-menu-left-column: 30%;
  --mega-menu-editorial-column: 24%;
  left: 50%;
  top: calc(100% + 10px);
  box-sizing: border-box;
  width: min(1180px, calc(100vw - 2rem));
  height: min(810px, calc(100vh - 100px));
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  align-content: start;
  gap: 0.08rem;
  padding: 4.75rem 1rem 2rem;
  overflow: hidden;
  transform: translate(-50%, 8px);
}
.menu .pages > .level-0 > .catalog-menu > .level-1:before {
  content: '';
  position: absolute;
  top: 4.1rem;
  bottom: 1rem;
  left: var(--mega-menu-left-column);
  width: 1px;
  background: #d8e1e3;
}
.menu .pages > .level-0 > .catalog-menu > .level-1.display {
  display: grid;
}
.menu .pages > .level-0 > .catalog-menu > .level-1.opacity {
  transform: translate(-50%, 0);
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll {
  width: calc(var(--mega-menu-left-column) - 1rem);
  height: 100%;
  min-height: 0;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.35rem;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-level-header {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0.8rem;
  border-bottom: 1px solid #d8e1e3;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li {
  position: static;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  border-bottom: 1px solid rgba(216, 225, 227, 0.65);
  border-radius: 3px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > a,
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .menu-item-row > a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.42rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  white-space: normal;
  text-transform: uppercase;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > a:hover,
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .menu-item-row > a:hover {
  background: transparent;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .menu-item-row {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 0.2rem;
  width: 100%;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .menu-item-row > .menu-dropdown-toggle {
  width: 30px;
  height: 30px;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .level-2,
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .mega-category-preview {
  position: absolute;
  top: 4.65rem;
  right: calc(var(--mega-menu-editorial-column) + 1rem);
  bottom: 1rem;
  left: calc(var(--mega-menu-left-column) + 1rem);
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .level-2 {
  grid-template-columns: minmax(0, 1fr);
  display: none;
  align-content: start;
  gap: 0.45rem;
  margin: 0;
  padding: 0.75rem 0 0.75rem 1.25rem;
  overflow-y: auto;
  overflow-x: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  opacity: 1;
  transform: none;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .level-2 > .menu-level-header {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #d8e1e3;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .level-2 > li:not(.menu-level-header) {
  min-width: 0;
  padding: 0.18rem 0;
  border: 0;
  border-bottom: 1px solid #d8e1e3;
  border-radius: 0;
  background: transparent;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .level-2 > li:not(.menu-level-header) > a,
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .level-2 > li:not(.menu-level-header) > .menu-item-row > a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.72rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  color: #102d3a;
  background: transparent;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .level-2 > li:not(.menu-level-header) > a,
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .level-2 > li:not(.menu-level-header) > .menu-item-row {
  border-radius: 3px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .level-2 > li:not(.menu-level-header) > .menu-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .level-2 > li:not(.menu-level-header) > .menu-item-row > .menu-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #2f6887;
  pointer-events: none;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li.mega-active > .level-2 {
  display: grid;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .mega-category-preview {
  display: none;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem 0 2.25rem 1.25rem;
  border: 0;
  border-radius: 0;
  background: #fff;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .mega-category-preview .menu-level-title {
  font-size: 1.15rem;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .mega-category-preview p {
  max-width: 31rem;
  margin: 0.8rem 0 1.5rem;
  color: #7a8b91;
}
.menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li.mega-active > .mega-category-preview {
  display: flex;
}
.menu .mobile-menu-back {
  display: none;
}
.menu .menu-editorial {
  display: none;
}
.menu .menu-view-all {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem !important;
  color: #2f6887 !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu .menu-view-all i {
  font-size: 0.7rem;
}
.menu .menu-level-title {
  color: #102d3a;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.menu .catalog-menu .level-2 .level-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.65rem 0 0;
  padding: 0.6rem 0.85rem 0.42rem;
  border-top: 1px solid #d8e1e3;
  border-left: 0;
}
.menu .catalog-menu .level-2 .level-3 .menu-level-header {
  display: none;
}
.menu .catalog-menu .level-2 .level-3 li > a,
.menu .catalog-menu .level-2 .level-3 li > .menu-item-row > a {
  padding: 0.35rem 0.55rem;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  background: #fff;
  font-size: 0.76rem;
  line-height: 1.35;
  color: #53666e;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.menu .user-actions {
  margin-left: auto;
}
.menu .user-actions .level-0 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.menu .user-actions .level-0 > li {
  position: relative;
}
.menu .user-actions .level-0 > li.dropdown:after {
  content: '';
  position: absolute;
  top: 100%;
  right: -1rem;
  width: 240px;
  height: 14px;
}
.menu .user-actions .level-0 > li > a,
.menu .user-actions .level-0 > li > .header-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 3px;
  border: 1px solid #d8e1e3;
  background: #ffffff;
  color: #102d3a;
  box-shadow: 0 18px 28px -24px rgba(17, 41, 64, 0.5);
  cursor: pointer;
}
.menu .user-actions .level-0 > li > a:hover,
.menu .user-actions .level-0 > li > .header-search-toggle:hover {
  background: #2f6887;
  color: #fff;
  border-color: #2f6887;
}
.menu .user-actions .label {
  display: none;
}
.menu .user-actions .fas {
  margin: 0;
  font-size: 1rem;
}
.menu .user-actions .mobile-nav-toggle {
  display: none;
}
.menu .user-actions .mobile-nav-toggle .mobile-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 3px;
  border: 1px solid #d8e1e3;
  background: #fff;
  color: #102d3a;
  box-shadow: 0 18px 28px -24px rgba(17, 41, 64, 0.5);
}
.menu .user-actions .mobile-nav-toggle .mobile-menu:hover {
  background: #2f6887;
  color: #fff;
  border-color: #2f6887;
}
.menu .user-actions .level-1 {
  width: 220px;
  right: 0;
  left: unset;
}
.menu .user-actions #cart-btn #items-in-cart {
  background: linear-gradient(135deg, #4b8eb3 0%, #76a9c5 100%);
  color: #fff;
  border-radius: 50%;
  min-width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-size: 0.675rem;
  font-weight: 700;
  position: absolute;
  top: 1px;
  right: -2px;
  padding: 0 0.2rem;
}
.root-banner {
  margin-bottom: 1.5rem;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16, 45, 58, 0.08);
}
.root-banner img {
  max-width: 100%;
}
.banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.banners .banner {
  display: block;
  position: relative;
  min-height: 220px;
  border-radius: 3px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8e1e3;
  box-shadow: 0 8px 24px rgba(16, 45, 58, 0.06);
}
.banners .banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all linear 0.125s;
}
.banners .banner:hover img {
  scale: 1.05;
}
.main-body {
  margin: 4rem 0;
}
.main-body .product > .container > .breadcrumbs {
  margin-bottom: 1.25rem;
}
.main-body .product .main {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0 2rem;
}
.main-body .product .main .gallery {
  position: relative;
  width: 40%;
}
.main-body .product .main .gallery .main-image {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  cursor: default;
  background: #fff;
  border: 1px solid #d8e1e3;
  box-shadow: none;
  border-radius: 3px;
}
.main-body .product .main .gallery .slideshow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  position: relative;
}
.main-body .product .main .gallery .slideshow .thumb {
  padding: 0.25rem;
  width: 100%;
  aspect-ratio: 1/1;
  transition: box-shadow 0.125s linear;
  background: #fff;
  border: 1px solid #d8e1e3;
  cursor: pointer;
  border-radius: 3px;
}
.main-body .product .main .gallery .slideshow .thumb.selected {
  box-shadow: 0 18px 26px -20px rgba(17, 41, 64, 0.75);
  border-color: rgba(93, 159, 202, 0.55);
}
.main-body .product .main .info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1.25rem;
  padding-left: 2rem;
  height: fit-content;
}
.main-body .product .main .info .product-heading {
  display: flex;
  flex-direction: column;
}
.main-body .product .main .info .product-heading .section-kicker {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.main-body .product .main .info .product-heading .product-brand-label {
  margin: 0.65rem 0 0.35rem;
  color: #2f6887;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.main-body .product .main .info h1 {
  color: #102d3a;
  font-weight: 700;
  width: 100%;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.main-body .product .main .info .purchase-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid #d8e1e3;
  box-shadow: none;
}
.main-body .product .main .info .purchase-panel-head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.main-body .product .main .info .purchase-panel-head.is-available {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "price" "cart";
  align-items: center;
  column-gap: 1.25rem;
  row-gap: 0.85rem;
}
.main-body .product .main .info .price {
  grid-area: price;
  margin-bottom: 0;
}
.main-body .product .main .info .price .old-price {
  font-size: 1.25rem;
  color: #7a8b91;
  text-decoration: line-through;
  margin-right: 1rem;
}
.main-body .product .main .info .price .regular-price {
  font-size: 2.2rem;
  color: #102d3a;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-weight: 700;
  margin-right: 1rem;
  letter-spacing: 0.04em;
}
.main-body .product .main .info .price .savings {
  padding: 0.5rem 0.5rem;
  border-radius: 3px;
  position: relative;
  top: -6px;
  background: #c65f50;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.main-body .product .main .info .price .alt-price {
  display: block;
  margin-top: 0.65rem;
  color: #7a8b91;
  font-size: 0.95rem;
}
.main-body .product .main .info .cart-actions {
  grid-area: cart;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
  width: 100%;
}
.main-body .product .main .info .cart-actions input {
  display: none;
}
.main-body .product .main .info .cart-actions .btn {
  margin-left: 0;
  min-width: 220px;
  text-align: center;
  justify-content: center;
}
.main-body .product .main .info .unavailable-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
  width: 100%;
}
.main-body .product .main .info .unavailable-actions .soldout {
  color: #c65f50;
  font-weight: 700;
  width: 100%;
  margin-bottom: 1rem;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.main-body .product .main .info .unavailable-actions .email {
  margin: 0;
  max-width: 100%;
  border: 1px solid rgba(127, 165, 196, 0.16);
  border-radius: 3px;
  width: 250px;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
}
.main-body .product .main .info .product-meta-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.main-body .product .main .info .meta-item {
  padding: 0.5rem 0;
  overflow-wrap: anywhere;
}
.main-body .product .main .info .meta-item .product-status.in-stock {
  color: #2c7a62;
}
.main-body .product .main .info .meta-item .product-status.lead-time {
  color: #2f6887;
}
.main-body .product .main .info .meta-item .label {
  display: block;
  margin-bottom: 0.35rem;
  color: #7a8b91;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.main-body .product .main .info .meta-item strong {
  display: block;
  color: #102d3a;
  font-size: 0.98rem;
  line-height: 1.5;
}
.main-body .product .extra {
  padding: 2.5rem 0;
  border-top: 1px solid #d8e1e3;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.main-body .product .extra .extra-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}
.main-body .product .extra .description {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 2rem;
}
.main-body .product .extra .description h2 {
  margin-bottom: 1rem;
  padding-top: 0;
}
.main-body .product .extra .description .product-rich-text {
  min-width: 0;
  max-width: 70ch;
  line-height: 1.85;
  overflow-wrap: anywhere;
  overflow-x: auto;
}
.main-body .product .extra .description .product-rich-text p,
.main-body .product .extra .description .product-rich-text ul,
.main-body .product .extra .description .product-rich-text ol,
.main-body .product .extra .description .product-rich-text table {
  margin: 0 0 1.25rem;
}
.main-body .product .extra .description .product-rich-text ul,
.main-body .product .extra .description .product-rich-text ol {
  padding-left: 1.4rem;
}
.main-body .product .extra .description .product-rich-text li + li {
  margin-top: 0.45rem;
}
.main-body .product .extra .description .product-rich-text h2,
.main-body .product .extra .description .product-rich-text h3,
.main-body .product .extra .description .product-rich-text h4 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.3rem;
  line-height: 1.4;
}
.main-body .product .extra .description .product-rich-text table {
  width: 100%;
  border-collapse: collapse;
}
.main-body .product .extra .description .product-rich-text th,
.main-body .product .extra .description .product-rich-text td {
  padding: 0.65rem;
  border-bottom: 1px solid #d8e1e3;
}
.main-body .product .extra .description .product-rich-text img,
.main-body .product .extra .description .product-rich-text video,
.main-body .product .extra .description .product-rich-text iframe {
  max-width: 100%;
}
.main-body .product .extra .description .product-rich-text img {
  height: auto;
}
.main-body .product .extra .description .product-rich-text a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.main-body .product .suggested-products {
  padding: 4rem 0;
  margin-bottom: -4rem;
  background: #f1f5f5;
}
.main-body .product .suggested-products .products-wrapper {
  margin-left: 0;
  margin-right: 0;
}
.main-body .checkout-cart-rendered {
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.main-body .checkout-cart-rendered .items,
.main-body .checkout-cart-rendered .item .details,
.main-body .checkout-cart-rendered .item .cart-actions {
  min-width: 0;
}
.main-body .checkout-cart-rendered .items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}
.main-body .checkout-cart-rendered .items .empty {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
  color: #7a8b91;
  text-align: center;
}
.main-body .checkout-cart-rendered .items .item {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(200px, 1.35fr) minmax(120px, 0.72fr) minmax(146px, 0.78fr) minmax(124px, 0.72fr);
  align-items: center;
  column-gap: 1rem;
  padding: 1rem 1rem 1rem 1rem;
  background: #ffffff;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.main-body .checkout-cart-rendered .items .item .thumb {
  width: 88px;
  height: 88px;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(127, 165, 196, 0.14);
  box-shadow: 0 8px 24px rgba(16, 45, 58, 0.06);
}
.main-body .checkout-cart-rendered .items .item .details {
  display: contents;
}
.main-body .checkout-cart-rendered .items .item .details .name {
  padding-right: 1.75rem;
}
.main-body .checkout-cart-rendered .items .item .details .name a {
  color: #102d3a;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}
.main-body .checkout-cart-rendered .items .item .details .name a:hover {
  color: #102d3a;
  text-decoration: underline;
}
.main-body .checkout-cart-rendered .items .item .details .cart-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  justify-self: center;
  padding: 0.2rem;
  border-radius: 3px;
  background: rgba(244, 248, 251, 0.96);
  border: 1px solid rgba(127, 165, 196, 0.14);
}
.main-body .checkout-cart-rendered .items .item .details .cart-actions .no-items {
  width: 48px;
  height: 34px;
  border: 0;
  border-radius: 3px;
  margin: 0;
  text-align: center;
  background: transparent;
  color: #102d3a;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.2rem;
}
.main-body .checkout-cart-rendered .items .item .details .cart-actions .fas {
  cursor: pointer;
  color: #2f6887;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #d8e1e3;
  box-shadow: none;
  font-size: 0.72rem;
  transition: all 0.2s ease;
}
.main-body .checkout-cart-rendered .items .item .details .cart-actions .fas:hover {
  background: #f1f5f5;
  border-color: #c5d1d4;
}
.main-body .checkout-cart-rendered .items .item .details .item-price,
.main-body .checkout-cart-rendered .items .item .details .item-sum {
  text-align: right;
  color: #102d3a;
  white-space: nowrap;
}
.main-body .checkout-cart-rendered .items .item .details .item-price {
  padding-right: 0.25rem;
}
.main-body .checkout-cart-rendered .items .item .details .item-price .old-price {
  display: block;
  margin-bottom: 0.15rem;
  color: #7a8b91;
  text-decoration: line-through;
  font-size: 0.92rem;
}
.main-body .checkout-cart-rendered .items .item .details .item-price .promo {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  margin-right: 0.5rem;
  border-radius: 3px;
  background: rgba(210, 35, 42, 0.1);
  color: #c65f50;
  font-size: 0.82rem;
  font-weight: 700;
}
.main-body .checkout-cart-rendered .items .item .details .item-price .price {
  font-weight: 700;
}
.main-body .checkout-cart-rendered .items .item .details .item-sum {
  font-size: 1.02rem;
  font-weight: 700;
}
.main-body .checkout-cart-rendered .items .item .details .item-sum .alt-price {
  white-space: nowrap;
}
.main-body .checkout-cart-rendered .items .item .remove-item {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0;
  border: 0;
  background: rgba(35, 64, 143, 0.06);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: #7a8b91;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 12px 20px -18px rgba(16, 35, 55, 0.26);
}
.main-body .checkout-cart-rendered .items .item .remove-item:hover {
  background: rgba(190, 93, 78, 0.12);
  color: #c65f50;
}
.main-body .checkout-cart-rendered .promo-code {
  margin-bottom: 0.9rem;
}
.main-body .checkout-cart-rendered .promo-code .promo-code-remove {
  padding: 0;
  border: 0;
  background: transparent;
}
.main-body .checkout-cart-rendered .promo-code.active,
.main-body .checkout-cart-rendered .promo-code.inactive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: #ffffff;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.main-body .checkout-cart-rendered .promo-code.active {
  color: #102d3a;
}
.main-body .checkout-cart-rendered .promo-code.active .promo-code-remove {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: rgba(35, 64, 143, 0.06);
  color: #7a8b91;
  transition: all 0.2s ease;
}
.main-body .checkout-cart-rendered .promo-code.active .promo-code-remove:hover {
  background: rgba(190, 93, 78, 0.12);
  color: #c65f50;
}
.main-body .checkout-cart-rendered .promo-code.active .name {
  margin-right: auto;
  font-weight: 700;
}
.main-body .checkout-cart-rendered .promo-code.active .value {
  font-weight: 700;
  white-space: nowrap;
}
.main-body .checkout-cart-rendered .promo-code.inactive input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0.65rem 0.85rem;
  border-radius: 3px;
  border: 1px solid rgba(127, 165, 196, 0.16);
  background: rgba(255, 255, 255, 0.92);
}
.main-body .checkout-cart-rendered .promo-code.inactive button {
  height: 46px;
  padding: 0.65rem 1rem;
  border-radius: 3px;
  background: #2f6887;
  border-color: transparent;
  color: #fff;
  white-space: nowrap;
}
.main-body .checkout-cart-rendered .promo-code.inactive button:hover,
.main-body .checkout-cart-rendered .promo-code.inactive button:focus {
  color: #fff;
}
.main-body .checkout-cart-rendered .subtotal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.main-body .checkout-cart-rendered .subtotal span {
  display: inline-block;
  color: #102d3a;
}
.main-body .checkout-cart-rendered .subtotal .lbl {
  font-weight: 700;
}
.main-body .checkout-cart-rendered .subtotal .val {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}
.main-body .checkout-cart-rendered .subtotal .val .alt-price {
  font-size: 0.875rem;
  color: #7a8b91;
  white-space: nowrap;
}
.main-body .checkout-cart-rendered .free-delivery {
  margin-top: 0.85rem;
  padding: 0 0.15rem;
  text-align: right;
  color: #2f6887;
  font-size: 0.95rem;
}
.main-body .checkout-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.25rem;
  padding: 2rem 2.15rem;
  margin-bottom: 2rem;
  background: #ffffff;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.main-body .checkout-hero-copy h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.98;
}
.main-body .checkout-hero-copy p {
  max-width: 62ch;
  margin: 0;
  line-height: 1.8;
}
.main-body .checkout-hero-aside {
  display: grid;
  gap: 0.9rem;
}
.main-body .checkout-hero-card {
  padding: 1.15rem 1.2rem;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.main-body .checkout-hero-card .label {
  display: block;
  margin-bottom: 0.4rem;
  color: #7a8b91;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.main-body .checkout-hero-card strong {
  display: block;
  color: #102d3a;
  font-size: 1.05rem;
  line-height: 1.55;
}
.main-body .blagajna .guest {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.main-body .blagajna .guest .section {
  height: 100%;
}
.main-body .blagajna .checkout-section {
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
}
.main-body .blagajna .section-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.main-body .blagajna .section-heading h1,
.main-body .blagajna .section-heading h2 {
  margin-bottom: 0.35rem;
}
.main-body .blagajna .section-heading p {
  margin-bottom: 0;
  color: rgba(20, 39, 57, 0.75);
}
.main-body .blagajna .section-step {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  color: #fff;
  background-color: #4b8eb3;
  flex-shrink: 0;
  box-shadow: none;
}
.main-body .blagajna .checkout-cart-render-target .checkout-cart-rendered {
  background: #f1f5f5;
  border-color: #d8e1e3;
  box-shadow: none;
}
.main-body .blagajna .checkout-cart-render-target .checkout-cart-rendered .items .item,
.main-body .blagajna .checkout-cart-render-target .checkout-cart-rendered .promo-code.active,
.main-body .blagajna .checkout-cart-render-target .checkout-cart-rendered .promo-code.inactive,
.main-body .blagajna .checkout-cart-render-target .checkout-cart-rendered .subtotal {
  background: #fff;
  border-color: #d8e1e3;
  box-shadow: none;
}
.main-body .blagajna .checkout-cart-render-target .checkout-cart-rendered .items .item .thumb,
.main-body .blagajna .checkout-cart-render-target .checkout-cart-rendered .items .item .cart-actions,
.main-body .blagajna .checkout-cart-render-target .checkout-cart-rendered .items .item .cart-actions .fas {
  box-shadow: none;
}
.main-body .blagajna .checkout-cart-render-target .free-delivery {
  margin-bottom: 0;
}
.main-body .blagajna .shop-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 0;
}
.main-body .blagajna .shop-options .choice {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  padding: 1.35rem;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #d8e1e3;
  box-shadow: none;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.main-body .blagajna .shop-options .choice.active {
  background: #f5f9fa;
  border-color: rgba(47, 104, 135, 0.34);
  box-shadow: inset 3px 0 0 #2f6887;
}
.main-body .blagajna .shop-options .choice:hover {
  transform: translateY(-2px);
  border-color: #c5d1d4;
  box-shadow: 0 10px 22px rgba(16, 45, 58, 0.06);
}
.main-body .blagajna .shop-options .choice .choice-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}
.main-body .blagajna .shop-options .choice .choice-icon,
.main-body .blagajna .shop-options .choice .choice-indicator {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  flex-shrink: 0;
}
.main-body .blagajna .shop-options .choice .choice-icon {
  background: #f1f5f5;
  color: #2f6887;
  box-shadow: none;
}
.main-body .blagajna .shop-options .choice .choice-indicator {
  background: #fff;
  border: 1px solid #d8e1e3;
  color: #7a8b91;
}
.main-body .blagajna .shop-options .choice .choice-indicator .far {
  font-size: 1.1rem;
}
.main-body .blagajna .shop-options .choice .choice-copy {
  min-width: 0;
}
.main-body .blagajna .shop-options .choice .choice-label {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: #7a8b91;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.main-body .blagajna .shop-options .choice h3 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.2;
}
.main-body .blagajna .shop-options .choice p {
  margin-bottom: 0;
  color: rgba(20, 39, 57, 0.8);
  line-height: 1.7;
}
.main-body .blagajna .shop-options .choice .choice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}
.main-body .blagajna .shop-options .choice .meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 3px;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  color: #2f6887;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}
.main-body .blagajna .shop-options .choice.active .choice-indicator {
  background: #fff;
  border-color: #c5d1d4;
  color: #2f6887;
}
.main-body .blagajna .shop-options .choice.active .meta-chip {
  background: rgba(255, 255, 255, 0.92);
}
.main-body .blagajna .payment-note {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
}
.main-body .blagajna .payment-note-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}
.main-body .blagajna .payment-note-icon {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #f1f5f5;
  color: #2f6887;
  box-shadow: none;
}
.main-body .blagajna .payment-note-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 3px;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  color: #2f6887;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}
.main-body .blagajna .payment-note .choice-label {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: #7a8b91;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.main-body .blagajna .payment-note h3 {
  font-weight: 700;
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
}
.main-body .blagajna .payment-note p {
  margin-bottom: 0;
  color: rgba(20, 39, 57, 0.8);
  line-height: 1.7;
}
.main-body .blagajna .payment-note .choice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}
.main-body .blagajna .payment-note .meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 3px;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  color: #2f6887;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}
.main-body .blagajna .payment-note.active {
  background: #f5f9fa;
  border-color: rgba(47, 104, 135, 0.34);
  box-shadow: inset 3px 0 0 #2f6887;
}
.main-body .blagajna .payment-note.active .payment-note-icon,
.main-body .blagajna .payment-note.active .payment-note-badge {
  background: #fff;
  border-color: #c5d1d4;
  color: #2f6887;
}
.main-body .blagajna .payment-note.active .meta-chip {
  background: rgba(255, 255, 255, 0.92);
}
.main-body .blagajna .user,
.main-body .blagajna .guest {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.main-body .blagajna .user input[type=checkbox],
.main-body .blagajna .guest input[type=checkbox] {
  margin-right: 0.5rem;
}
.main-body .blagajna .user .section,
.main-body .blagajna .guest .section {
  width: 100%;
  padding: 1.35rem;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #d8e1e3;
  box-shadow: none;
}
.main-body .blagajna .user .section h3,
.main-body .blagajna .guest .section h3 {
  margin-bottom: 1rem;
}
.main-body .blagajna .guest {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.main-body .blagajna .guest .section {
  width: 100%;
}
.main-body .blagajna .user {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.main-body .blagajna .user .order-note-group {
  display: block;
}
.main-body .blagajna .user .order-note-group .control-label {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.main-body .blagajna .user .order-note-group .control-label:after {
  content: ":";
}
.main-body .blagajna .main-block {
  margin-bottom: 3rem;
}
.main-body .blagajna .alt-block .subblock {
  margin-bottom: 3rem;
}
.main-body .blagajna .order-buttons.user {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}
.main-body .blagajna .order-buttons.user > * {
  margin-left: 0;
}
.main-body .blagajna .order-buttons.user > *:first-child {
  justify-self: start;
}
.main-body .blagajna .order-buttons.user > *:nth-child(2) {
  justify-self: center;
}
.main-body .blagajna .order-buttons.user > *:last-child {
  justify-self: end;
}
.main-body .narudzba .bid-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.main-body .narudzba .bid-panel {
  padding: 1.6rem;
  background: #ffffff;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
  color: #53666e;
  line-height: 1.65;
}
.main-body .narudzba .bid-panel > h2 {
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #d8e1e3;
  font-size: 1.35rem;
}
.main-body .narudzba .bid-panel .label,
.main-body .narudzba .bid-panel strong {
  color: #102d3a;
}
.main-body .narudzba .bid-panel h2:not(:first-child) {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}
.main-body .narudzba .bid-panel .user-data-incomplete {
  color: #c65f50;
  font-weight: 700;
}
.main-body .narudzba .bid-cart-panel {
  padding: 1.6rem;
  margin-bottom: 2rem;
  background: #ffffff;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
  overflow: hidden;
}
.main-body .narudzba .cart-title {
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #d8e1e3;
  color: #102d3a;
  font-size: 1.45rem;
}
.main-body .narudzba ul li {
  list-style-type: none;
  padding: 0.5rem;
}
.main-body .narudzba ul.cart-item {
  padding-left: 0;
  display: grid;
  grid-template-columns: minmax(120px, 0.75fr) minmax(240px, 1.7fr) 110px 75px 110px 90px 120px;
  align-items: center;
  margin-bottom: 0;
  border-bottom: 1px solid #d8e1e3;
  background: #fff;
}
.main-body .narudzba ul.cart-item.header {
  background: #f1f5f5;
  font-weight: 700;
  border-radius: 3px;
  border: 1px solid #d8e1e3;
  border-bottom-color: #c5d1d4;
}
.main-body .narudzba ul.cart-item li {
  color: #102d3a;
  min-width: 0;
}
.main-body .narudzba ul.cart-item li.code,
.main-body .narudzba ul.cart-item li.product {
  overflow-wrap: anywhere;
}
.main-body .narudzba ul.cart-item li.vpc,
.main-body .narudzba ul.cart-item li.vat-rate,
.main-body .narudzba ul.cart-item li.price,
.main-body .narudzba ul.cart-item li.no-items,
.main-body .narudzba ul.cart-item li.subtotal {
  text-align: right;
}
.main-body .narudzba ul.cart-footer {
  padding-left: 0;
  max-width: 330px;
  margin-left: auto;
  margin-top: 1.25rem;
  padding: 1.15rem;
  border-radius: 3px;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
}
.main-body .narudzba ul.cart-footer li {
  padding: 0.25rem 0;
  display: flex;
  gap: 1rem;
  color: #53666e;
}
.main-body .narudzba ul.cart-footer li .label {
  font-weight: 700;
  color: #102d3a;
}
.main-body .narudzba ul.cart-footer li .value {
  flex: 1;
  text-align: right;
  color: #102d3a;
}
.main-body .narudzba ul.cart-footer li .value .alt-price {
  font-size: 0.875rem;
}
.main-body .narudzba ul.cart-footer li.tax-breakdown {
  display: block;
  margin-top: 0.65rem;
  padding-top: 0.8rem;
  border-top: 1px solid #d8e1e3;
}
.main-body .narudzba ul.cart-footer li.tax-breakdown .tax-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  color: #102d3a;
}
.main-body .narudzba ul.cart-footer li.tax-breakdown .tax-breakdown-table th,
.main-body .narudzba ul.cart-footer li.tax-breakdown .tax-breakdown-table td {
  padding: 0.45rem 0 0 0.6rem;
  text-align: right;
  white-space: nowrap;
}
.main-body .narudzba ul.cart-footer li.tax-breakdown .tax-breakdown-table th:first-child {
  width: 44px;
  padding-left: 0;
  text-align: left;
}
.main-body .narudzba ul.cart-footer li.tax-breakdown .tax-breakdown-table thead th {
  padding-top: 0;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #d8e1e3;
  color: #7a8b91;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.main-body .narudzba ul.cart-footer li.total {
  margin-top: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid #c5d1d4;
}
.main-body .narudzba ul.cart-footer li.total .label,
.main-body .narudzba ul.cart-footer li.total .value,
.main-body .narudzba ul.cart-footer li.total .value strong {
  color: #2f6887;
}
.main-body .narudzba > .container > .order-buttons {
  display: block;
  margin-top: 2rem;
}
.main-body .narudzba > .container > .order-buttons .order-confirm-form {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin-left: 0;
}
.main-body .narudzba > .container > .order-buttons .order-buttons-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.main-body .narudzba > .container > .order-buttons .business-order-confirmation-wrap {
  display: grid;
  gap: 0.4rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  background: rgba(241, 245, 245, 0.64);
}
.main-body .narudzba > .container > .order-buttons .business-order-confirmation {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
  margin: 0;
  color: #7a8b91;
  font-size: 0.82rem;
  line-height: 1.5;
  cursor: pointer;
}
.main-body .narudzba > .container > .order-buttons .business-order-confirmation input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.1rem;
  accent-color: #2f6887;
}
.main-body .narudzba > .container > .order-buttons .business-order-confirmation input.is-invalid {
  outline: 2px solid rgba(198, 95, 80, 0.32);
  outline-offset: 2px;
}
.main-body .narudzba > .container > .order-buttons .business-order-confirmation-error {
  padding-left: 1.85rem;
  color: #c65f50;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
}
.main-body .narudzba .newsletter-wrapper {
  margin-top: 3rem;
}
.main-body .korisnik #user-form .main-block,
.main-body .korisnik #user-form .alt-block .subblock {
  padding: 1.35rem;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.main-body .korisnik .main-block {
  margin-bottom: 2rem;
}
.main-body .korisnik .alt-block input[type=checkbox] {
  margin-right: 0.5rem;
}
.main-body .korisnik .alt-block .subblock {
  margin-bottom: 2rem;
}
.main-body .registracija .registration-form .form-check {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  margin-bottom: 0.9rem;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.main-body .registracija .registration-form .form-check .form-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.08rem 0 0;
  border: 1px solid rgba(93, 159, 202, 0.52);
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}
.main-body .registracija .registration-form .form-check .form-check-input:hover {
  border-color: rgba(35, 64, 143, 0.55);
  box-shadow: 0 10px 18px -12px rgba(16, 35, 55, 0.28);
}
.main-body .registracija .registration-form .form-check .form-check-input:checked {
  border-color: #2f6887;
  background: #2f6887;
}
.main-body .registracija .registration-form .form-check .form-check-input:checked:before {
  content: "";
  position: absolute;
  top: 0.17rem;
  left: 0.42rem;
  width: 0.28rem;
  height: 0.58rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.main-body .registracija .registration-form .form-check .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(93, 159, 202, 0.18);
}
.main-body .registracija .registration-form .form-check .form-check-label {
  flex: unset;
  width: auto;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #53666e;
  cursor: pointer;
}
.main-body .registracija .registration-form .form-check .form-check-label a {
  color: #2f6887;
  font-weight: 700;
}
.main-body .registracija .form-group label {
  width: 200px;
}
.main-body .registracija .form-group.form-check .form-check-input {
  margin-top: 0.08rem;
}
.main-body .registracija .form-group.form-check label {
  flex: 1;
}
.main-body .page-shell {
  padding: 2rem 2.15rem;
  background: #ffffff;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.main-body .page-shell-copy {
  margin-bottom: 1.5rem;
}
.main-body .page-shell-copy h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}
.main-body .page-shell-copy p {
  margin: 0 0 1rem;
  line-height: 1.8;
}
.main-body .page-shell-copy p:last-child {
  margin-bottom: 0;
}
.main-body .error-404 .page-shell-actions,
.main-body .potvrda .page-shell-actions,
.main-body .error-404 .confirmation-actions,
.main-body .potvrda .confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.main-body .checkout-cart-rendered .cart-header {
  display: grid;
  grid-template-columns: 88px minmax(200px, 1.35fr) minmax(120px, 0.72fr) minmax(146px, 0.78fr) minmax(124px, 0.72fr);
  align-items: center;
  column-gap: 1rem;
  padding: 0 0.95rem 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(127, 165, 196, 0.14);
}
.main-body .checkout-cart-rendered .cart-header li {
  padding: 0;
  list-style-type: none;
  color: #7a8b91;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.main-body .checkout-cart-rendered .cart-header li.image {
  width: auto;
}
.main-body .checkout-cart-rendered .cart-header li.name {
  width: auto;
}
.main-body .checkout-cart-rendered .cart-header li.price {
  text-align: right;
}
.main-body .checkout-cart-rendered .cart-header li.num {
  text-align: center;
}
.main-body .checkout-cart-rendered .cart-header li.sub {
  text-align: right;
}
.main-body .zaboravljena-lozinka .form-group {
  display: block;
}
.main-body .zaboravljena-lozinka .form-group label {
  width: auto;
  margin-bottom: 0.5rem;
}
.main-body .zaboravljena-lozinka #lost-status {
  margin-top: 1rem;
  display: none;
}
.main-body .zaboravljena-lozinka #lost-status .alert {
  margin: 0;
}
.main-body .newsletter-odjava .form-group {
  display: block;
}
.main-body .newsletter-odjava .form-group label {
  width: auto;
  margin-bottom: 0.5rem;
}
.main-body .newsletter-odjava #unsubscribe-status {
  margin-top: 1rem;
  display: none;
}
.main-body .newsletter-odjava #unsubscribe-status .alert {
  margin: 0;
}
.main-body .newsletter-prijava .form-group {
  display: block;
}
.main-body .newsletter-prijava .form-group label {
  width: auto;
  margin-bottom: 0.5rem;
}
.main-body .newsletter-prijava #subscribe-status {
  margin-top: 1rem;
  display: none;
}
.main-body .newsletter-prijava #subscribe-status .alert {
  margin: 0;
}
.main-body .promjena-lozinke .form-group label {
  width: 190px;
}
.main-body .promjena-lozinke #change-status {
  margin-top: 1rem;
  display: none;
}
.main-body .promjena-lozinke #change-status .alert {
  margin: 0;
}
.main-body .kontakt .section-kicker {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}
.main-body .kontakt .contact-intro {
  margin: 1rem 0 3rem;
}
.main-body .kontakt .contact-intro h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.main-body .kontakt .contact-intro p {
  max-width: 60ch;
  font-size: 1.1rem;
  line-height: 1.8;
}
.main-body .kontakt .contact-layout,
.main-body .kontakt .contact-message {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
}
.main-body .kontakt .contact-method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid #d8e1e3;
  color: #102d3a;
  text-decoration: none;
}
.main-body .kontakt .contact-method span {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: #53666e;
}
.main-body .kontakt .contact-method strong {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.main-body .kontakt .contact-method i {
  align-self: center;
  color: #2f6887;
}
.main-body .kontakt .contact-method:hover strong {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.main-body .kontakt .contact-business {
  padding: 1.5rem 0;
  border-top: 1px solid #d8e1e3;
}
.main-body .kontakt .contact-business h2 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}
.main-body .kontakt .contact-business dl {
  margin: 0;
}
.main-body .kontakt .contact-business dl > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.4fr) minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.main-body .kontakt .contact-business dt {
  font-size: 0.85rem;
  font-weight: 500;
}
.main-body .kontakt .contact-business dd {
  margin: 0;
  color: #102d3a;
  overflow-wrap: anywhere;
}
.main-body .kontakt .contact-social {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}
.main-body .kontakt .contact-message {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #c5d1d4;
}
.main-body .kontakt .contact-message h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
}
.main-body .kontakt .contact-message p {
  max-width: 48ch;
  line-height: 1.8;
}
.main-body .kontakt .contact-message .footer-lead {
  color: #53666e;
}
.main-body .kontakt .contact-message form.contact-form {
  margin: 0;
}
.main-body .o-nama .section-kicker {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.main-body .o-nama .about-hero,
.main-body .o-nama .about-values,
.main-body .o-nama .about-journey,
.main-body .o-nama .about-partners,
.main-body .o-nama .about-cta {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.main-body .o-nama .about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
}
.main-body .o-nama .about-hero-copy {
  padding: 1rem 0;
}
.main-body .o-nama .about-hero-copy h1 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.12;
}
.main-body .o-nama .about-hero-copy p {
  max-width: 64ch;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.main-body .o-nama .about-hero-copy .lead {
  font-size: 1.1rem;
  color: #102d3a;
}
.main-body .o-nama .about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.main-body .o-nama .about-hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0 2rem 2.5rem;
  overflow: hidden;
  border-left: 1px solid #d8e1e3;
  color: #102d3a;
}
.main-body .o-nama .about-hero-panel p {
  max-width: 22ch;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #53666e;
}
.main-body .o-nama .about-panel-label {
  margin-bottom: 2.5rem;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #53666e;
}
.main-body .o-nama .about-panel-number {
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: clamp(5.8rem, 10vw, 8.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.06em;
}
.main-body .o-nama .about-panel-number span {
  margin-left: 0.12em;
  font-size: 0.4em;
  color: #a8c3cf;
}
.main-body .o-nama .about-panel-divider {
  width: 100%;
  height: 1px;
  margin: 1.75rem 0 1.25rem;
  background: #d8e1e3;
}
.main-body .o-nama .about-panel-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.main-body .o-nama .about-panel-facts strong,
.main-body .o-nama .about-panel-facts span {
  display: block;
}
.main-body .o-nama .about-panel-facts strong {
  margin-bottom: 0.3rem;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: #102d3a;
}
.main-body .o-nama .about-panel-facts span {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #53666e;
}
.main-body .o-nama .about-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.main-body .o-nama .about-section-heading h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}
.main-body .o-nama .about-section-heading p {
  margin: 0;
  line-height: 1.8;
}
.main-body .o-nama .about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.main-body .o-nama .about-value-card {
  padding: 1.5rem 0;
  border-top: 1px solid #c5d1d4;
}
.main-body .o-nama .about-value-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}
.main-body .o-nama .about-value-card p {
  margin: 0;
  line-height: 1.7;
}
.main-body .o-nama .about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.15rem;
  font-size: 1.4rem;
  color: #2f6887;
}
.main-body .o-nama .about-journey {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid #d8e1e3;
}
.main-body .o-nama .about-journey h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}
.main-body .o-nama .about-journey p {
  margin: 0;
  line-height: 1.75;
}
.main-body .o-nama .about-timeline {
  border-left: 1px solid #c5d1d4;
}
.main-body .o-nama .about-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  padding: 0 0 2.5rem 1.75rem;
}
.main-body .o-nama .about-timeline-item:before {
  content: '';
  position: absolute;
  top: 0.3rem;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2f6887;
  box-shadow: 0 0 0 5px #f1f5f5;
}
.main-body .o-nama .about-timeline-item:last-child {
  padding-bottom: 0;
}
.main-body .o-nama .about-timeline-item h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}
.main-body .o-nama .about-timeline-year {
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2f6887;
}
.main-body .o-nama .about-partners {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background: #f1f5f5;
}
.main-body .o-nama .about-partners .section-kicker {
  margin-bottom: 1.35rem;
  color: #2f6887;
}
.main-body .o-nama .about-partners h2 {
  max-width: 13ch;
  margin: 0 0 1.25rem;
  color: #102d3a;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
}
.main-body .o-nama .about-partners p {
  max-width: 46ch;
  margin: 0;
  color: #53666e;
  line-height: 1.75;
}
.main-body .o-nama .about-brand-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  counter-reset: partner;
}
.main-body .o-nama .about-brand-list a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 68px;
  padding: 0.9rem 0.65rem;
  border-top: 1px solid #c5d1d4;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #102d3a;
  text-decoration: none;
  counter-increment: partner;
  background: rgba(47, 104, 135, 0);
  transition: background-color 180ms ease, color 180ms ease;
}
.main-body .o-nama .about-brand-list a::before {
  content: counter(partner, decimal-leading-zero);
  color: #2f6887;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.main-body .o-nama .about-brand-list a i {
  color: #7a8b91;
  font-size: 0.6em;
  opacity: 0.8;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}
.main-body .o-nama .about-brand-list a:hover,
.main-body .o-nama .about-brand-list a:focus-visible {
  background: rgba(47, 104, 135, 0.06);
  color: #2f6887;
}
.main-body .o-nama .about-brand-list a:hover i,
.main-body .o-nama .about-brand-list a:focus-visible i {
  color: #2f6887;
  opacity: 1;
  transform: translateX(2px);
}
.main-body .o-nama .about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.25rem 2.5rem;
  border-radius: 3px;
  background: #102d3a;
  box-shadow: none;
}
.main-body .o-nama .about-cta .section-kicker {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}
.main-body .o-nama .about-cta h2 {
  margin-bottom: 0.6rem;
  color: #fff;
}
.main-body .o-nama .about-cta p {
  max-width: 68ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}
.main-body .o-nama .about-cta .btn-custom {
  flex: 0 0 auto;
  background: #fff;
  color: #102d3a;
}
.main-body .o-nama .about-cta .btn-custom:hover {
  background: #f1f5f5;
  color: #102d3a;
}
.main-body .uvjeti-poslovanja .legal-shell,
.main-body .uvjeti-placanja .legal-shell,
.main-body .uvjeti-dostave .legal-shell,
.main-body .kolacici .legal-shell {
  padding: 2rem 2.15rem;
  background: #ffffff;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.main-body .uvjeti-poslovanja .legal-content,
.main-body .uvjeti-placanja .legal-content,
.main-body .uvjeti-dostave .legal-content,
.main-body .kolacici .legal-content {
  line-height: 1.85;
}
.main-body .uvjeti-poslovanja .legal-content h2,
.main-body .uvjeti-placanja .legal-content h2,
.main-body .uvjeti-dostave .legal-content h2,
.main-body .kolacici .legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.main-body .uvjeti-poslovanja .legal-content ul,
.main-body .uvjeti-placanja .legal-content ul,
.main-body .uvjeti-dostave .legal-content ul,
.main-body .kolacici .legal-content ul {
  padding-left: 1.25rem;
}
.main-body .uvjeti-poslovanja .legal-note,
.main-body .uvjeti-placanja .legal-note,
.main-body .uvjeti-dostave .legal-note,
.main-body .kolacici .legal-note {
  margin-top: 2rem;
  padding: 1.35rem;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.main-body .uvjeti-poslovanja h2,
.main-body .uvjeti-placanja h2,
.main-body .uvjeti-dostave h2,
.main-body .kolacici h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.main-body .uvjeti-poslovanja .cookie-table-wrapper,
.main-body .uvjeti-placanja .cookie-table-wrapper,
.main-body .uvjeti-dostave .cookie-table-wrapper,
.main-body .kolacici .cookie-table-wrapper {
  margin: 1rem 0 1.5rem;
  overflow-x: auto;
}
.main-body .uvjeti-poslovanja .cookie-table,
.main-body .uvjeti-placanja .cookie-table,
.main-body .uvjeti-dostave .cookie-table,
.main-body .kolacici .cookie-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.main-body .uvjeti-poslovanja .cookie-table caption,
.main-body .uvjeti-placanja .cookie-table caption,
.main-body .uvjeti-dostave .cookie-table caption,
.main-body .kolacici .cookie-table caption {
  padding-bottom: 0.65rem;
  color: #102d3a;
  font-weight: 700;
  text-align: left;
}
.main-body .uvjeti-poslovanja .cookie-table th,
.main-body .uvjeti-placanja .cookie-table th,
.main-body .uvjeti-dostave .cookie-table th,
.main-body .kolacici .cookie-table th,
.main-body .uvjeti-poslovanja .cookie-table td,
.main-body .uvjeti-placanja .cookie-table td,
.main-body .uvjeti-dostave .cookie-table td,
.main-body .kolacici .cookie-table td {
  padding: 0.8rem;
  border: 1px solid #d8e1e3;
  vertical-align: top;
  text-align: left;
}
.main-body .uvjeti-poslovanja .cookie-table th,
.main-body .uvjeti-placanja .cookie-table th,
.main-body .uvjeti-dostave .cookie-table th,
.main-body .kolacici .cookie-table th {
  background: #f1f5f5;
  color: #102d3a;
}
.main-body .uvjeti-poslovanja .cookie-table code,
.main-body .uvjeti-placanja .cookie-table code,
.main-body .uvjeti-dostave .cookie-table code,
.main-body .kolacici .cookie-table code {
  color: #3b7c9f;
  font-size: 0.85em;
}
.main-body .uvjeti-poslovanja .legal-cookie-settings,
.main-body .uvjeti-placanja .legal-cookie-settings,
.main-body .uvjeti-dostave .legal-cookie-settings,
.main-body .kolacici .legal-cookie-settings {
  margin-top: 0.15rem;
  padding: 0.7rem 1rem;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  color: #102d3a;
  font: inherit;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.main-body .uvjeti-poslovanja .legal-cookie-settings:hover,
.main-body .uvjeti-placanja .legal-cookie-settings:hover,
.main-body .uvjeti-dostave .legal-cookie-settings:hover,
.main-body .kolacici .legal-cookie-settings:hover,
.main-body .uvjeti-poslovanja .legal-cookie-settings:focus-visible,
.main-body .uvjeti-placanja .legal-cookie-settings:focus-visible,
.main-body .uvjeti-dostave .legal-cookie-settings:focus-visible,
.main-body .kolacici .legal-cookie-settings:focus-visible {
  background: #ffffff;
  border-color: #3b7c9f;
}
.footer {
  position: relative;
  background: #102d3a;
  color: rgba(255, 255, 255, 0.64);
  padding: 4rem 0 2.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer .contact-form .form-group label {
  color: rgba(255, 255, 255, 0.85);
}
.footer .footer-legal-note {
  display: block;
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.6;
}
.footer .footer-legal-note a {
  color: inherit;
  text-decoration-color: currentColor;
  text-underline-offset: 0.16em;
}
.footer .footer-legal-note a:hover,
.footer .footer-legal-note a:focus-visible {
  color: #fff;
  text-decoration-color: currentColor;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer .container .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.footer .container .footer-grid.footer-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.footer .container .footer-col {
  width: 100%;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.footer .container .footer-col h3 {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
.footer .container .newsletter-form {
  justify-content: unset;
}
.footer .container .newsletter-form .notice {
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
.credentials {
  background-color: #0e1c28;
  color: rgba(255, 255, 255, 0.82);
  padding: 1rem 0;
  line-height: 1.6;
}
.credentials .container {
  display: flex;
  flex-wrap: wrap;
}
.credentials .container div {
  width: 50%;
}
.credentials .container div:last-child {
  text-align: right;
}
.credentials .container div a {
  color: inherit;
  transition: color 0.2s ease-in-out;
}
.credentials .container div a:hover {
  color: #fff;
}
.overlay {
  display: none;
  opacity: 0;
  position: fixed;
  z-index: 16;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(227, 236, 243, 0.56);
  backdrop-filter: blur(5px);
  transition: opacity 0.125s ease-out;
}
.overlay.display {
  display: block;
}
.overlay.opacity {
  opacity: 1;
}
.overlay.dark {
  background-color: rgba(0, 0, 0, 0.8);
}
.cart-aside,
.login-aside {
  --bs-offcanvas-width: min(460px, 94vw);
  background: #ffffff;
  color: #53666e;
  border-left: 1px solid #d8e1e3;
  box-shadow: -20px 0 50px -34px rgba(16, 35, 55, 0.24);
  display: flex;
  flex-direction: column;
}
.cart-aside .offcanvas-header,
.login-aside .offcanvas-header {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(127, 165, 196, 0.14);
}
.cart-aside .offcanvas-header h2,
.login-aside .offcanvas-header h2 {
  margin: 0;
  color: #102d3a;
  font-size: 1.7rem;
}
.cart-aside .offcanvas-body,
.login-aside .offcanvas-body {
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex: 1 1 auto;
}
.cart-aside .btn-close,
.login-aside .btn-close {
  opacity: 0.75;
  filter: none;
  box-shadow: none;
}
.cart-aside .cart-panel-empty,
.login-aside .cart-panel-empty {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  color: #7a8b91;
}
.cart-aside .cart-panel-empty .fas,
.login-aside .cart-panel-empty .fas {
  font-size: 2rem;
  color: #2f6887;
}
.cart-aside .cart-drawer-render-target,
.login-aside .cart-drawer-render-target,
.cart-aside .cart-panel-content,
.login-aside .cart-panel-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
}
.cart-aside .cart-panel-items,
.login-aside .cart-panel-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cart-aside .cart-panel-item,
.login-aside .cart-panel-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.cart-aside .cart-panel-item .thumb,
.login-aside .cart-panel-item .thumb {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(127, 165, 196, 0.14);
  box-shadow: 0 8px 24px rgba(16, 45, 58, 0.06);
}
.cart-aside .cart-panel-item .details,
.login-aside .cart-panel-item .details {
  flex: 1;
  min-width: 0;
  padding-right: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-aside .cart-panel-item .name,
.login-aside .cart-panel-item .name {
  margin-bottom: 0.7rem;
  padding-right: 0;
}
.cart-aside .cart-panel-item .name a,
.login-aside .cart-panel-item .name a {
  color: #102d3a;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}
.cart-aside .cart-panel-item .meta-row,
.login-aside .cart-panel-item .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}
.cart-aside .cart-panel-item .qty,
.login-aside .cart-panel-item .qty {
  display: flex;
  align-items: center;
}
.cart-aside .cart-panel-item .sum,
.login-aside .cart-panel-item .sum {
  flex: 0 0 auto;
  text-align: right;
  color: #102d3a;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  white-space: nowrap;
}
.cart-aside .cart-panel-item .sum .alt-price,
.login-aside .cart-panel-item .sum .alt-price {
  white-space: nowrap;
}
.cart-aside .cart-actions,
.login-aside .cart-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem;
  border-radius: 3px;
  background: rgba(244, 248, 251, 0.96);
  border: 1px solid rgba(127, 165, 196, 0.14);
}
.cart-aside .cart-actions .no-items,
.login-aside .cart-actions .no-items {
  width: 48px;
  height: 34px;
  border: 0;
  text-align: center;
  color: #102d3a;
  background-color: transparent;
  border-radius: 3px;
  margin: 0;
  padding: 0.2rem;
  font-weight: 700;
  font-size: 0.92rem;
}
.cart-aside .cart-actions .fas,
.login-aside .cart-actions .fas {
  cursor: pointer;
  color: #2f6887;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #d8e1e3;
  box-shadow: none;
  font-size: 0.72rem;
  transition: all 0.2s ease;
}
.cart-aside .cart-actions .fas:hover,
.login-aside .cart-actions .fas:hover {
  background: #f1f5f5;
  border-color: #c5d1d4;
}
.cart-aside .remove-item,
.login-aside .remove-item {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 3px;
  background: rgba(35, 64, 143, 0.06);
  color: #7a8b91;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 12px 20px -18px rgba(16, 35, 55, 0.26);
}
.cart-aside .remove-item:hover,
.login-aside .remove-item:hover {
  background: rgba(190, 93, 78, 0.12);
  color: #c65f50;
}
.cart-aside .cart-panel-summary,
.login-aside .cart-panel-summary {
  margin-top: auto;
  padding: 1rem 1.1rem;
  background: #f1f5f5;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  box-shadow: none;
}
.cart-aside .summary-row,
.login-aside .summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.cart-aside .summary-row span,
.login-aside .summary-row span,
.cart-aside .summary-row strong,
.login-aside .summary-row strong {
  color: #102d3a;
}
.cart-aside .summary-row strong,
.login-aside .summary-row strong {
  text-align: right;
}
.cart-aside .summary-row .alt-price,
.login-aside .summary-row .alt-price {
  font-size: 0.875rem;
  color: #7a8b91;
}
.cart-aside .free-delivery,
.login-aside .free-delivery {
  margin-top: 0.8rem;
  color: #2f6887;
  font-size: 0.92rem;
}
.cart-aside-footer,
.login-aside-footer {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid #d8e1e3;
  background: #fff;
}
.cart-aside-checkout,
.login-aside-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 0;
}
.item-availability {
  display: block;
  margin-top: 0.3rem;
  color: #7a8b91;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
}
.item-availability.is-immediate {
  color: #2c7a62;
}
.login-aside .offcanvas-body {
  padding: 1.35rem 1.25rem 1.5rem;
}
.login-aside .login-form .button-wrapper {
  gap: 0.85rem;
  flex-wrap: wrap;
}
.login-aside .login-form .login-submit {
  margin-left: 0;
}
.login-aside .login-form h2:first-child {
  display: none;
}
@media screen and (min-width: 992px) {
  .menu .menu-editorial {
    position: absolute;
    top: 4rem;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 23%;
    padding: 1.4rem;
    background: #f1f5f5;
    border-top: 2px solid #2f6887;
    white-space: normal;
  }
  .menu .menu-editorial .menu-editorial-label {
    color: #2f6887;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .menu .menu-editorial strong {
    color: #102d3a;
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.04em;
  }
  .menu .menu-editorial p {
    margin: 0;
    color: #53666e;
    font-size: 0.82rem;
    line-height: 1.7;
  }
  .menu .menu-editorial a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 0;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: normal;
  }
  .menu .menu-editorial a:hover {
    background: transparent;
  }
  .menu .menu-editorial a:hover span {
    text-decoration: underline;
    text-underline-offset: 0.3em;
  }
  .menu .pages > .level-0 > li.menu-current > a,
  .menu .pages > .level-0 > li.menu-current > .menu-item-row > a,
  .menu .pages > .level-0 > li.menu-current-ancestor > a,
  .menu .pages > .level-0 > li.menu-current-ancestor > .menu-item-row > a {
    background: #f1f5f5;
    box-shadow: inset 0 0 0 1px #c5d1d4;
    color: #2f6887;
  }
  .menu .pages > .level-0 > .catalog-menu > .level-1 {
    --mega-menu-left-column: 34%;
  }
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li {
    width: 100%;
  }
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > a,
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li > .menu-item-row > a {
    padding: 0.55rem 0.85rem;
  }
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li:hover {
    background: #f1f5f5;
    box-shadow: inset 4px 0 0 rgba(47, 104, 135, 0.58);
  }
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li.mega-active,
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li.menu-current,
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li.menu-current-ancestor {
    background: #f1f5f5;
    box-shadow: inset 4px 0 0 #2f6887;
  }
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li.mega-active > .menu-item-row,
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li.mega-active > a,
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li.menu-current > .menu-item-row,
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li.menu-current > a,
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li.menu-current-ancestor > .menu-item-row,
  .menu .pages > .level-0 > .catalog-menu > .level-1 > .menu-category-scroll > ul > li.menu-current-ancestor > a {
    background: transparent;
    border-radius: 0;
    color: #2f6887;
  }
  .menu .catalog-menu .level-2 > li:not(.menu-level-header) > a:hover,
  .menu .catalog-menu .level-2 > li:not(.menu-level-header) > .menu-item-row:hover {
    background: #f1f5f5;
    box-shadow: inset 4px 0 0 rgba(47, 104, 135, 0.55);
    transform: translateX(3px);
  }
  .menu .catalog-menu .level-2 > li:not(.menu-level-header) > .menu-item-row > a:hover {
    background: transparent;
  }
  .menu .catalog-menu .level-2 > li:not(.menu-level-header).menu-current > a,
  .menu .catalog-menu .level-2 > li:not(.menu-level-header).menu-current > .menu-item-row,
  .menu .catalog-menu .level-2 > li:not(.menu-level-header).menu-current-ancestor > a,
  .menu .catalog-menu .level-2 > li:not(.menu-level-header).menu-current-ancestor > .menu-item-row {
    background: #f1f5f5;
    box-shadow: inset 4px 0 0 #2f6887;
  }
  .menu .catalog-menu .level-2 .level-3 li > a:hover,
  .menu .catalog-menu .level-2 .level-3 li > .menu-item-row > a:hover {
    background: #f1f5f5;
    border-color: #c5d1d4;
    box-shadow: 0 6px 14px rgba(16, 45, 58, 0.08);
    color: #102d3a;
    transform: none;
  }
  .menu .catalog-menu .level-2 .level-3 li.menu-current > a,
  .menu .catalog-menu .level-2 .level-3 li.menu-current > .menu-item-row > a {
    background: #f1f5f5;
    border-color: #c5d1d4;
    color: #102d3a;
  }
}
.header-product-search {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  padding: 0 2.25rem 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #d8e1e3;
  box-shadow: 0 22px 42px rgba(16, 45, 58, 0.11);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.header-product-search[hidden] {
  display: none;
}
.header-product-search.is-open {
  opacity: 1;
  transform: translateY(0);
}
.header-search-shell {
  max-width: 980px;
  margin: 0 auto;
  padding-top: 1.35rem;
  border-top: 1px solid #d8e1e3;
}
.header-search-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.header-search-heading span {
  color: #102d3a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.header-search-heading p {
  margin: 0.2rem 0 0;
  color: #7a8b91;
  font-size: 0.9rem;
}
.header-search-close {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  background: #fff;
  color: #102d3a;
}
.header-search-close:hover {
  border-color: #2f6887;
  color: #2f6887;
}
.header-search-form {
  position: relative;
}
.header-search-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid #c5d1d4;
  background: #fff;
}
.header-search-control > i {
  margin-left: 1rem;
  color: #2f6887;
}
.header-search-control input {
  min-width: 0;
  height: 58px;
  padding: 0 1rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: #102d3a;
  font-size: 1.05rem;
}
.header-search-control input::placeholder {
  color: #7a8b91;
}
.header-search-control button {
  height: 42px;
  margin-right: 0.5rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 3px;
  background: #2f6887;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.header-search-control button i {
  margin-left: 0.45rem;
  transition: transform 0.18s ease;
}
.header-search-control button:hover i {
  transform: translateX(3px);
}
.header-search-results {
  max-height: min(52vh, 430px);
  overflow-y: auto;
  border: 1px solid #d8e1e3;
  border-top: 0;
  background: #fff;
}
.header-search-results[hidden] {
  display: none;
}
.header-search-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #d8e1e3;
  color: #102d3a;
  text-decoration: none;
}
.header-search-results a:last-child {
  border-bottom: 0;
}
.header-search-results a:hover,
.header-search-results a.is-active {
  background: #f1f5f5;
  color: #2f6887;
}
.header-search-results a > i {
  flex: 0 0 auto;
  font-size: 0.75rem;
  transition: transform 0.18s ease;
}
.header-search-results a:hover > i,
.header-search-results a.is-active > i {
  transform: translateX(3px);
}
.header-search-results mark {
  padding: 0;
  background: transparent;
  color: #2f6887;
  font-weight: 800;
}
.header-search-result-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}
.header-search-result-name {
  font-weight: 650;
  line-height: 1.35;
}
.header-search-result-code {
  color: #7a8b91;
  font-size: 0.76rem;
  letter-spacing: 0.035em;
}
.header-search-status {
  min-height: 1.25rem;
  margin: 0.55rem 0 0;
  color: #7a8b91;
  font-size: 0.78rem;
}
.search-page-intro {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(480px, 1.35fr);
  grid-template-areas: "kicker ." "title lead";
  gap: 0.35rem 4rem;
  align-items: end;
  padding: 1.5rem 0 3rem;
  border-bottom: 1px solid #d8e1e3;
}
.search-page-intro .section-kicker {
  grid-area: kicker;
  align-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}
.search-page-intro h1 {
  grid-area: title;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.search-page-intro p {
  grid-area: lead;
  align-self: start;
  justify-self: end;
  max-width: 34rem;
  margin: 0.25rem 0 0;
  color: #53666e;
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: right;
}
.search-results-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 2.4rem 0 1.4rem;
}
.search-results-heading p {
  margin: 0;
  color: #53666e;
  font-size: 1.05rem;
}
.search-results-heading span {
  color: #7a8b91;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.search-page-message,
.search-empty {
  margin-top: 2rem;
}
.search-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #d8e1e3;
}
.search-pagination a {
  color: #2f6887;
  font-weight: 700;
  text-decoration: none;
}
.search-pagination span {
  color: #7a8b91;
  font-size: 0.85rem;
}
@media screen and (max-width: 991px) {
  .catalog-featured {
    grid-template-columns: minmax(0, 44fr) minmax(320px, 56fr);
  }
  .catalog-featured-copy {
    padding: 2.25rem;
  }
  .catalog-featured-visual {
    min-height: 380px;
    padding: 1.75rem;
  }
  .catalog-featured-visual img {
    max-height: 400px;
  }
  .header-product-search {
    padding: 0 1.25rem 1rem;
  }
  .header-search-shell {
    padding-top: 1rem;
  }
  .header-search-heading {
    margin-bottom: 0.75rem;
  }
  .header-search-control button {
    width: 44px;
    padding: 0;
    font-size: 0;
  }
  .header-search-control button i {
    margin: 0;
    font-size: 0.8rem;
  }
  .search-page-intro,
  .catalog-hub-intro {
    grid-template-columns: 1fr;
    grid-template-areas: "kicker" "title" "lead";
    gap: 0.65rem;
  }
  .search-page-intro h1,
  .catalog-hub-intro h1 {
    margin-bottom: 0.75rem;
  }
  .search-page-intro p,
  .catalog-hub-intro p {
    justify-self: start;
    max-width: 38rem;
    margin-top: 0;
    text-align: left;
  }
  .menu {
    padding: 0.5rem;
  }
  .menu > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .menu .menu-utility {
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 0.15rem;
  }
  .menu .menu-utility-copy {
    display: none;
  }
  .menu .menu-utility-contact {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 0.9rem;
  }
  .menu .menu-top {
    display: none;
  }
  .menu .menu-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    border-top: 0;
    padding-top: 0.875rem;
  }
  .menu .pages {
    position: relative;
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
  }
  .menu .pages ul li {
    width: 100%;
  }
  .menu .pages ul li a {
    display: block;
    height: auto;
    line-height: 1.4;
    color: #102d3a;
  }
  .menu .pages .level-0 {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    width: min(400px, calc(100vw - 1rem));
    background: #fff;
    border: 1px solid #d8e1e3;
    padding: 1rem;
    border-radius: 3px;
    height: calc(100dvh - 150px);
    max-height: calc(100dvh - 150px);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 28px 60px -30px rgba(16, 45, 58, 0.38);
  }
  .menu .pages .level-0 > li > a,
  .menu .pages .level-0 > li > .menu-item-row > a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 3px;
    font-weight: 600;
  }
  .menu .pages .level-0 li.menu-current > a,
  .menu .pages .level-0 li.menu-current > .menu-item-row {
    position: relative;
    z-index: 0;
    isolation: isolate;
    background: transparent;
    box-shadow: none;
    color: #2f6887;
  }
  .menu .pages .level-0 li.menu-current > a:before,
  .menu .pages .level-0 li.menu-current > .menu-item-row:before {
    content: '';
    position: absolute;
    inset: 1px 0;
    z-index: -1;
    border-radius: 3px;
    background: rgba(168, 195, 207, 0.24);
    box-shadow: inset 3px 0 0 #2f6887;
    pointer-events: none;
  }
  .menu .pages .level-0 li.menu-current-ancestor > a,
  .menu .pages .level-0 li.menu-current-ancestor > .menu-item-row {
    background: transparent;
    box-shadow: none;
    color: #2f6887;
  }
  .menu .pages .level-0 li.menu-current-ancestor > .menu-item-row > a,
  .menu .pages .level-0 li.menu-current-ancestor > .menu-item-row .menu-dropdown-toggle {
    color: #2f6887;
  }
  .menu .pages .level-0.visible {
    display: block;
  }
  .menu .pages .level-0 .menu-item-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    gap: 0;
    min-height: 52px;
  }
  .menu .pages .level-0 .menu-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 34px;
    border: 0;
    border-left: 1px solid #d8e1e3;
    border-radius: 0;
    background: transparent;
    color: #102d3a;
    transition: color 0.2s ease, background-color 0.2s ease;
  }
  .menu .pages .level-0 .level-1 {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    background: none;
    box-shadow: none;
    border: 0;
    opacity: 1;
    display: none;
    transform: none;
    padding: 0.25rem 0 0;
    padding-left: 1rem;
    max-height: none;
    overflow: visible;
  }
  .menu .pages .level-0 .level-1 .level-2 {
    padding-left: 1rem;
    display: none;
  }
  .menu .pages .level-0 li.dropdown.mobile-open > .level-1,
  .menu .pages .level-0 li.dropdown.mobile-open > .level-2 {
    display: block;
  }
  .menu .pages .level-0 li.dropdown.mobile-open > .menu-item-row .menu-dropdown-toggle {
    background: #f1f5f5;
    color: #2f6887;
  }
  .menu .pages .level-0.mobile-drilldown > li:not(.mobile-current) {
    display: none !important;
  }
  .menu .pages .level-0.mobile-drilldown {
    padding-top: 0;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    box-sizing: border-box;
    display: none !important;
    grid-template-columns: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level]:before {
    display: none;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level].mobile-drilldown > li:not(.mobile-current) {
    display: none !important;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li {
    padding: 0;
    border: 0;
    background: transparent;
  }
  .menu .pages .level-0 .mega-category-preview {
    display: none !important;
  }
  .menu .pages .level-0 li.mobile-current > a,
  .menu .pages .level-0 li.mobile-current > .menu-item-row {
    display: none;
  }
  .menu .pages .level-0 li.mobile-current > [data-menu-level] {
    display: block !important;
  }
  .menu .pages .level-0 .menu-level-header {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "back" "title" "all";
    align-items: start;
    gap: 0.7rem;
    margin-bottom: 0.35rem;
    padding: 0.1rem 0.1rem 1rem;
    border-bottom: 1px solid #d8e1e3;
  }
  .menu .pages .level-0 .menu-level-header .menu-level-title {
    grid-area: title;
    padding: 0.15rem 0.7rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #102d3a;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] > .menu-level-header {
    position: sticky !important;
    top: 0;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 3;
    display: grid !important;
    padding-top: 1rem;
    background: #fff;
  }
  .menu .pages .level-0 .mobile-menu-back,
  .menu .pages .level-0 .menu-view-all {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.65rem 0.8rem !important;
    border: 1px solid #d8e1e3;
    border-radius: 3px;
    background: #fff;
    color: #102d3a !important;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .menu .pages .level-0 .mobile-menu-back {
    grid-area: back;
    justify-content: flex-start;
    width: fit-content;
  }
  .menu .pages .level-0 .menu-view-all {
    grid-area: all;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0.78rem 0.7rem !important;
    background: #f1f5f5;
    border: 0;
    box-shadow: none;
    color: #2f6887 !important;
    font-size: 0.86rem;
    text-align: left;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li:not(.menu-level-header) {
    box-sizing: border-box;
    width: 100% !important;
    min-width: 0;
    border-radius: 0;
    border-bottom: 1px solid #d8e1e3;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li:not(.menu-level-header):last-child {
    border-bottom: 0;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li:not(.menu-level-header) > a,
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li:not(.menu-level-header) > .menu-item-row {
    box-sizing: border-box;
    width: 100%;
    min-height: 52px;
    border-radius: 3px;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li:not(.menu-level-header) > a {
    display: flex;
    align-items: center;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li:not(.menu-level-header) > .menu-item-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px !important;
    align-items: center;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li:not(.menu-level-header) > .menu-item-row > .menu-dropdown-toggle {
    justify-self: end;
    width: 44px !important;
    height: 44px;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li:not(.menu-level-header) > a,
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li:not(.menu-level-header) > .menu-item-row > a {
    box-sizing: border-box;
    min-height: 52px;
    padding: 0.78rem 0.7rem !important;
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.35;
    white-space: normal;
    text-transform: none;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li:not(.menu-level-header) > .menu-item-row > a {
    display: flex;
    align-items: center;
  }
  .menu .pages .level-0 .catalog-menu [data-menu-level] > li.mobile-current > .menu-item-row {
    display: none !important;
  }
  .menu .logo {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }
  .menu .logo img {
    max-height: 32px;
  }
  .menu .user-actions {
    order: 2;
    flex: 0 0 auto;
  }
  .menu .user-actions .mobile-nav-toggle {
    display: block;
  }
  .potvrda .confirmation-shell {
    padding: 2.6rem 2.5rem;
    text-align: center;
  }
  .potvrda .confirmation-shell.success {
    border-top: 4px solid #4b8a76;
  }
  .potvrda .confirmation-shell.error {
    border-top: 4px solid #c65f50;
  }
  .potvrda .confirmation-mark {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 3px;
    background: #c65f50;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 22px 36px -26px rgba(16, 35, 55, 0.55);
  }
  .potvrda h1 {
    margin-bottom: 1rem;
  }
  .potvrda p {
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
  }
  .potvrda .confirmation-payment-notice {
    max-width: 68ch;
    padding: 1rem 1.15rem;
    border: 1px solid #c5d1d4;
    border-radius: 3px;
    background: #f1f5f5;
    color: #102d3a;
    line-height: 1.65;
  }
  .potvrda .confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-top: 2rem;
  }
  .main-body {
    margin: 2rem 0;
  }
  .main-body .o-nama .about-hero,
  .main-body .o-nama .about-section-heading,
  .main-body .o-nama .about-journey {
    grid-template-columns: 1fr;
  }
  .main-body .o-nama .about-hero-copy,
  .main-body .o-nama .about-journey {
    padding: 1.5rem 0;
  }
  .main-body .o-nama .about-partners {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .main-body .o-nama .about-brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .main-body .o-nama .about-hero-copy h1,
  .main-body .o-nama .about-section-heading h2 {
    max-width: unset;
  }
  .main-body .o-nama .about-hero-panel {
    padding: 2rem 0;
    border-left: 0;
    border-top: 1px solid #d8e1e3;
  }
  .main-body .o-nama .about-values-grid {
    grid-template-columns: 1fr;
  }
  .main-body .o-nama .about-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.5rem;
  }
  .main-body .checkout-hero {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .main-body .page-shell {
    padding: 1.5rem;
  }
  .main-body .uvjeti-poslovanja .legal-shell,
  .main-body .uvjeti-placanja .legal-shell,
  .main-body .uvjeti-dostave .legal-shell,
  .main-body .kolacici .legal-shell {
    padding: 1.5rem;
  }
  .main-body .product .main {
    padding: 1rem 0;
    flex-direction: column;
  }
  .main-body .product .main .gallery {
    width: 100%;
    margin-bottom: 1rem;
  }
  .main-body .product .main .gallery .main-image {
    border-width: 1px;
  }
  .main-body .product .main .info {
    padding-left: 0;
    width: 100%;
  }
  .main-body .product .main .info .cart-actions {
    margin-bottom: 1.2rem;
  }
  .main-body .product .main .info .cart-actions .add-to-cart {
    margin-right: 0;
  }
  .main-body .product .extra {
    padding: 2rem 0;
  }
  .main-body .product .extra .description {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .main-body .product .extra .extra-grid {
    grid-template-columns: 1fr;
  }
  .main-body .checkout-cart-rendered .cart-header {
    display: none;
  }
  .main-body .checkout-cart-rendered .items {
    margin-bottom: 0.5rem;
  }
  .main-body .checkout-cart-rendered .items .item {
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: start;
    row-gap: 0.9rem;
    padding-top: 0.9rem;
    margin-bottom: 0;
  }
  .main-body .checkout-cart-rendered .items .item .thumb {
    width: 78px;
    height: 78px;
  }
  .main-body .checkout-cart-rendered .items .item .details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas: "name name name" "price qty sum";
    gap: 0.8rem;
  }
  .main-body .checkout-cart-rendered .items .item .details .name {
    grid-area: name;
    margin-right: 0;
    padding-right: 1.5rem;
  }
  .main-body .checkout-cart-rendered .items .item .details .item-price,
  .main-body .checkout-cart-rendered .items .item .details .item-sum,
  .main-body .checkout-cart-rendered .items .item .details .cart-actions {
    width: auto;
    padding: 0;
  }
  .main-body .checkout-cart-rendered .items .item .details .item-price {
    grid-area: price;
    text-align: left;
  }
  .main-body .checkout-cart-rendered .items .item .details .cart-actions {
    grid-area: qty;
    justify-self: center;
  }
  .main-body .checkout-cart-rendered .items .item .details .item-sum {
    grid-area: sum;
  }
  .main-body .checkout-cart-rendered .items .item .remove-item {
    top: 0.7rem;
  }
  .main-body .blagajna h2 {
    margin-bottom: 1rem;
  }
  .main-body .blagajna .shop-options {
    grid-template-columns: 1fr;
  }
  .main-body .blagajna .user .section,
  .main-body .blagajna .guest .section {
    width: 100%;
    padding: 1.1rem;
  }
  .main-body .blagajna .user {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .main-body .blagajna .guest {
    gap: 1rem;
  }
  .main-body .narudzba .bid-specs-grid {
    grid-template-columns: 1fr;
  }
  .main-body .narudzba ul.cart-item {
    display: flex;
    flex-wrap: wrap;
  }
  .main-body .narudzba ul.cart-item li {
    padding: 0.25rem 0.5rem;
  }
  .main-body .narudzba ul.cart-item li.code {
    width: 75px;
  }
  .main-body .narudzba ul.cart-item li.product {
    flex: unset;
    width: calc(100% - 75px);
    font-weight: 700;
  }
  .main-body .narudzba ul.cart-item li.vpc,
  .main-body .narudzba ul.cart-item li.vat-rate,
  .main-body .narudzba ul.cart-item li.price,
  .main-body .narudzba ul.cart-item li.no-items,
  .main-body .narudzba ul.cart-item li.subtotal {
    width: 20%;
  }
  .main-body .narudzba ul.cart-item li.price {
    text-align: left;
  }
  .main-body .narudzba ul.cart-item li.no-items {
    text-align: center;
  }
  .main-body .narudzba ul.cart-footer {
    max-width: unset;
  }
  .main-body .kontakt .contact-layout,
  .main-body .kontakt .contact-message {
    grid-template-columns: 1fr;
  }
  .products-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .cart-aside {
    --bs-offcanvas-width: min(420px, 100vw);
    max-width: 100%;
  }
  .order-buttons {
    margin-top: 3rem;
  }
  .login-form h2 {
    margin-bottom: 1rem;
  }
  .footer .container .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer .container .footer-grid.footer-grid-compact {
    grid-template-columns: 1fr;
  }
  .footer .container .footer-col {
    padding: 1.5rem 0;
  }
  .credentials .container > div {
    width: 100%;
    text-align: left !important;
  }
}
@media screen and (max-width: 767px) {
  .header-search-heading p {
    display: none;
  }
  .header-search-control input {
    height: 52px;
    font-size: 0.95rem;
  }
  .search-page-intro {
    padding-top: 0.5rem;
  }
  .search-results-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .search-pagination {
    flex-wrap: wrap;
  }
  .catalog-hub {
    padding-top: 1.5rem;
  }
  .catalog-hub-intro h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }
  .catalog-featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .catalog-featured-copy {
    padding: 2rem 1.5rem;
  }
  .catalog-featured-copy h2 {
    max-width: none;
  }
  .catalog-featured-visual {
    min-height: 0;
    height: clamp(280px, 85vw, 360px);
    padding: 1.5rem;
    aspect-ratio: auto;
  }
  .catalog-featured-visual img {
    max-height: 310px;
  }
  .catalog-library-heading {
    display: block;
  }
  .catalog-library-heading .section-kicker {
    margin-bottom: 0.75rem;
  }
  .catalog-library-title {
    align-items: flex-end;
    justify-content: space-between;
  }
  .catalog-card-grid {
    grid-template-columns: 1fr;
  }
  .checkout-cart-rendered {
    padding: 1rem;
  }
  .checkout-cart-rendered .items .item {
    grid-template-columns: 1fr;
  }
  .checkout-cart-rendered .items .item .thumb {
    width: 88px;
    height: 88px;
  }
  .checkout-cart-rendered .items .item .details {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "name" "price" "qty" "sum";
  }
  .checkout-cart-rendered .items .item .details .name {
    padding-right: 1.75rem;
  }
  .checkout-cart-rendered .items .item .details .cart-actions {
    justify-self: flex-start;
  }
  .checkout-cart-rendered .items .item .details .item-price,
  .checkout-cart-rendered .items .item .details .item-sum {
    text-align: left;
  }
  .checkout-cart-rendered .promo-code.active,
  .checkout-cart-rendered .promo-code.inactive {
    flex-wrap: wrap;
  }
  .checkout-cart-rendered .promo-code.inactive input,
  .checkout-cart-rendered .promo-code.inactive button {
    width: 100%;
  }
  .checkout-cart-rendered .subtotal {
    flex-direction: column;
  }
  .checkout-cart-rendered .subtotal .val {
    text-align: left;
  }
  .checkout-cart-rendered .free-delivery {
    text-align: left;
  }
  .cart-aside,
  .login-aside {
    --bs-offcanvas-width: min(100vw, 380px);
  }
  .banners {
    grid-template-columns: 1fr;
  }
  .banners .banner {
    margin: 0;
  }
  .products-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .main-body .o-nama .about-hero-copy,
  .main-body .o-nama .about-hero-panel,
  .main-body .o-nama .about-journey {
    padding: 1.5rem 0;
  }
  .main-body .o-nama .about-partners {
    padding: 1.5rem;
  }
  .main-body .o-nama .about-brand-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .main-body .o-nama .about-timeline-item {
    grid-template-columns: 1fr;
  }
  .main-body .o-nama .about-timeline-item {
    gap: 0.35rem;
  }
  .main-body .product .main .info .purchase-panel {
    padding: 1.25rem 0;
  }
  .main-body .product .main .info .cart-actions {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: stretch;
  }
  .main-body .product .main .info .cart-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-width: 0;
  }
  .main-body .product .main .info .unavailable-actions .email {
    margin-bottom: 1rem;
    margin-right: 0;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    width: 100%;
  }
  .main-body .product .main .info .product-meta-panel {
    grid-template-columns: 1fr;
  }
  .main-body .order-buttons > * {
    width: 100%;
    margin-bottom: 0;
  }
  .main-body .order-buttons .btn {
    width: 100%;
    min-width: 0;
    max-width: none;
    white-space: normal;
    text-align: center;
  }
  .main-body .blagajna .guest {
    grid-template-columns: 1fr;
  }
  .main-body .blagajna .order-buttons.user {
    grid-template-columns: 1fr;
  }
  .main-body .blagajna .order-buttons.user > * {
    justify-self: stretch;
    margin-left: 0;
  }
  .main-body .blagajna .order-buttons.guest > *:last-child {
    margin-left: 0;
  }
  .main-body .narudzba > .container > .order-buttons {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .main-body .narudzba .bid-panel,
  .main-body .narudzba .bid-cart-panel {
    padding: 1.15rem;
    border-radius: 3px;
  }
  .main-body .narudzba ul.cart-item.header {
    display: none;
  }
  .main-body .narudzba ul.cart-item:not(.header) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    padding: 0.95rem 0;
  }
  .main-body .narudzba ul.cart-item:not(.header) li {
    width: auto;
    padding: 0;
    text-align: left;
  }
  .main-body .narudzba ul.cart-item:not(.header) li:before {
    display: block;
    margin-bottom: 0.25rem;
    color: #7a8b91;
    font-family: 'Manrope', 'Avenir Next', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .main-body .narudzba ul.cart-item:not(.header) li.code,
  .main-body .narudzba ul.cart-item:not(.header) li.product {
    grid-column: 1 / -1;
  }
  .main-body .narudzba ul.cart-item:not(.header) li.code:before {
    content: "Šifra";
  }
  .main-body .narudzba ul.cart-item:not(.header) li.product:before {
    content: "Proizvod";
  }
  .main-body .narudzba ul.cart-item:not(.header) li.price:before {
    content: "Jed. MPC";
  }
  .main-body .narudzba ul.cart-item:not(.header) li.vpc:before {
    content: "Jed. VPC";
  }
  .main-body .narudzba ul.cart-item:not(.header) li.vat-rate:before {
    content: "PDV";
  }
  .main-body .narudzba ul.cart-item:not(.header) li.no-items:before {
    content: "Količina";
  }
  .main-body .narudzba ul.cart-item:not(.header) li.subtotal:before {
    content: "Ukupno MPC";
  }
  .main-body .narudzba .order-confirm-form {
    display: grid;
    width: 100%;
    margin-left: 0;
  }
  .main-body .narudzba .order-buttons-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .main-body .narudzba .order-buttons-row .btn {
    width: 100%;
  }
  .main-body .checkout-hero {
    padding: 1.25rem;
  }
  .main-body .page-shell {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 420px) {
  .main-body .error-404 .page-shell-actions,
  .main-body .potvrda .page-shell-actions,
  .main-body .error-404 .confirmation-actions,
  .main-body .potvrda .confirmation-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .main-body .error-404 .page-shell-actions .btn,
  .main-body .potvrda .page-shell-actions .btn,
  .main-body .error-404 .confirmation-actions .btn,
  .main-body .potvrda .confirmation-actions .btn {
    width: 100%;
  }
  .main-body .checkout-hero,
  .main-body .potvrda .confirmation-shell,
  .main-body .page-shell,
  .main-body .uvjeti-poslovanja .legal-shell,
  .main-body .uvjeti-placanja .legal-shell,
  .main-body .uvjeti-dostave .legal-shell,
  .main-body .kolacici .legal-shell {
    padding: 1.15rem;
    border-radius: 3px;
  }
  .main-body .product .main,
  .main-body .product .extra {
    padding: 1.25rem 0;
  }
  .products-wrapper {
    grid-template-columns: 1fr;
  }
  .products-wrapper .product-card .thumb {
    margin-bottom: 0.85rem;
  }
  .products-wrapper .product-card .info {
    margin-bottom: 0.85rem;
  }
  .products-wrapper .product-card .info .name {
    font-size: 1.05rem;
  }
  .products-wrapper .product-card .pricing {
    min-height: 76px;
  }
  .products-wrapper .product-card .pricing .price {
    font-size: 1.55rem;
  }
}
@-moz-document url-prefix() {
  .old-price {
    text-decoration: none !important;
    background: linear-gradient(#333, #333) no-repeat center 0.75rem / 100% 1px;
  }
}
.showcase-kicker {
  display: block;
  margin-bottom: 1.25rem;
  color: #2f6887;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  color: #102d3a;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.showcase-link i {
  flex-shrink: 0;
  color: #2f6887;
  transition: transform 0.2s ease;
}
.showcase-link span {
  text-decoration: underline;
  text-decoration-color: #c5d1d4;
  text-underline-offset: 0.35em;
  transition: text-decoration-color 0.2s ease;
}
.showcase-link:hover {
  color: #2f6887;
  text-decoration: none;
}
.showcase-link:hover span {
  text-decoration-color: #2f6887;
}
.showcase-link:hover i {
  transform: translateX(3px);
}
.showcase-link:focus-visible {
  outline: 2px solid #2f6887;
  outline-offset: 5px;
}
.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
}
.showcase-actions a {
  max-width: 100%;
}
.showcase-actions a span {
  color: inherit;
  overflow-wrap: anywhere;
}
.showcase-actions .showcase-catalog-link {
  background: #ffffff;
  color: #102d3a;
  box-shadow: inset 0 0 0 1px #c5d1d4;
}
.showcase-actions .showcase-catalog-link:hover,
.showcase-actions .showcase-catalog-link:focus {
  background: #f1f5f5;
  color: #102d3a;
  box-shadow: inset 0 0 0 1px #c5d1d4;
}
.showcase-hero {
  padding-top: 1.5rem;
}
.showcase-hero-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #c5d1d4;
  color: #53666e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.showcase-hero-stage {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
}
.showcase-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.showcase-hero-copy .showcase-hero-title {
  margin: 0 0 1.6rem;
  font-size: clamp(3.25rem, 5.2vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.065em;
  overflow-wrap: anywhere;
}
.showcase-hero-copy .showcase-hero-title em {
  font-style: normal;
  color: #2f6887;
}
.showcase-hero-copy p {
  max-width: 33rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
}
.showcase-hero-copy .btn-custom {
  gap: 1rem;
}
.showcase-hero-stage--center .showcase-hero-copy {
  text-align: center;
}
.showcase-hero-stage--center .showcase-hero-copy p {
  margin-left: auto;
  margin-right: auto;
}
.showcase-hero-stage--center .showcase-hero-copy .showcase-actions {
  justify-content: center;
}
.showcase-hero--compact {
  margin-top: 3rem;
  padding-top: 0;
}
.showcase-hero--compact .showcase-hero-stage {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}
.showcase-hero--compact .showcase-hero-title {
  font-size: clamp(1.4rem, 2.3vw, 2.2rem);
  line-height: 1.2;
}
.showcase-hero--compact .showcase-hero-copy p {
  font-size: 0.9rem;
}
.showcase-hero--compact .showcase-hero-visual {
  aspect-ratio: 4 / 3;
}
.showcase-hero-visual {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1 / 1;
  margin: 0;
  background: transparent;
  overflow: hidden;
}
.showcase-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.showcase-hero-visual figcaption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  text-align: right;
  font-size: 0.72rem;
  line-height: 1.7;
  color: #f2f3f1;
}
.showcase-hero-visual figcaption span {
  color: inherit;
}
.showcase-visual-index {
  position: absolute;
  z-index: 1;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #d4d7d4;
}
.showcase-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #c5d1d4;
  border-bottom: 1px solid #c5d1d4;
}
.showcase-facts p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 1.5rem;
}
.showcase-facts p:first-child {
  padding-left: 0;
}
.showcase-facts p + p {
  border-left: 1px solid #d8e1e3;
}
.showcase-facts strong {
  color: #102d3a;
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.showcase-facts span {
  max-width: 12rem;
  font-size: 0.75rem;
  line-height: 1.6;
}
.view-pocetna .main-body {
  margin: 0;
}
.showcase-home .showcase-section {
  padding: 5rem 0;
  border-bottom: 1px solid #d8e1e3;
}
.showcase-home h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
}
.showcase-home h3 {
  line-height: 1.35;
}
.showcase-home .showcase-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
.showcase-home .showcase-heading h2 {
  margin: 0;
}
.showcase-home .showcase-heading > p {
  max-width: 26rem;
  margin: 0;
  font-size: 0.95rem;
}
.showcase-home .showcase-heading > .showcase-link {
  flex-shrink: 0;
}
.showcase-home .products-section-heading {
  margin-top: 0;
}
.showcase-home .products-section-heading h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}
.showcase-home .products-wrapper {
  margin-bottom: 3rem;
}
.showcase-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}
.showcase-category-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid #d8e1e3;
  border-radius: 3px;
  background: #fff;
  color: #102d3a;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.showcase-category-grid a:hover {
  background: #f1f5f5;
  border-color: #2f6887;
}
.showcase-category-grid a:focus-visible {
  outline: 2px solid #2f6887;
  outline-offset: 3px;
}
.showcase-category-grid span {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}
.showcase-category-grid i {
  font-size: 0.8rem;
  color: #2f6887;
}
.showcase-instrument {
  position: relative;
  margin: 0;
}
.showcase-instrument img {
  display: block;
  width: 100%;
  height: clamp(280px, 36vw, 480px);
  object-fit: cover;
  object-position: center;
}
.showcase-instrument figcaption {
  padding-top: 0.75rem;
  text-align: right;
  font-size: 0.75rem;
}
.showcase-instrument-label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}
.showcase-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
}
.showcase-principles article {
  border-top: 2px solid #c5d1d4;
  padding-top: 1rem;
}
.showcase-principles article.is-revealed {
  border-top-color: #2f6887;
}
.showcase-principles span {
  color: #2f6887;
  font-size: 0.75rem;
}
.showcase-principles h3 {
  margin: 0.7rem 0;
  font-size: 1.5rem;
}
.showcase-principles p {
  font-size: 0.9rem;
  margin: 0;
}
.showcase-catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #f1f5f5;
}
.showcase-catalog-cta p {
  color: #102d3a;
  font-weight: 700;
  margin: 0;
}
.showcase-catalog-cta p span {
  display: block;
  margin-top: 0.25rem;
  color: #53666e;
  font-size: 0.8rem;
  font-weight: 400;
}
.showcase-brands {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.showcase-brand-meta {
  display: block;
  margin-top: 0.75rem;
  color: #2f6887;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.showcase-brand-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 2rem;
  list-style: none;
  padding: 1rem 0 0;
  margin: 0;
  counter-reset: home-partner;
}
.showcase-brand-list li {
  display: flex;
  align-items: center;
  min-height: 5rem;
  padding: 0;
  color: #102d3a;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}
.showcase-brand-list li:not(.showcase-brand-note) {
  counter-increment: home-partner;
}
.showcase-brand-list li > a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 5rem;
  padding: 0.75rem 0.65rem;
  border-top: 1px solid rgba(216, 225, 227, 0.72);
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}
.showcase-brand-list li > a::before {
  content: counter(home-partner, decimal-leading-zero);
  color: #2f6887;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.showcase-brand-list li > a i {
  flex: 0 0 auto;
  color: #7a8b91;
  font-size: 0.58rem;
  opacity: 0.68;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}
.showcase-brand-list li > a:hover,
.showcase-brand-list li > a:focus-visible {
  background: rgba(47, 104, 135, 0.045);
  color: #2f6887;
}
.showcase-brand-list li > a:hover i,
.showcase-brand-list li > a:focus-visible i {
  color: inherit;
  opacity: 1;
  transform: translateX(2px);
}
.showcase-brand-list .showcase-brand-watermark {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -0.12em;
  width: max-content;
  max-width: none;
  color: #2f6887;
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.showcase-brand-list li:not(.showcase-brand-note):hover .showcase-brand-watermark,
.showcase-brand-list li:not(.showcase-brand-note):focus-within .showcase-brand-watermark {
  opacity: 0.035;
  transform: translate(-50%, 0);
}
.showcase-brand-list .showcase-brand-note {
  padding: 0.75rem 0;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #53666e;
}
.showcase-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.showcase-timeline li {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid #c5d1d4;
}
.showcase-timeline li:before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #2f6887;
  border-radius: 50%;
}
.showcase-timeline .showcase-year {
  display: block;
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.065em;
  color: #2f6887;
}
.showcase-timeline h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.showcase-timeline p {
  font-size: 0.9rem;
  margin: 0;
  max-width: 30ch;
}
.showcase-archive-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 2rem;
}
.showcase-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.showcase-people-mark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  min-height: 26rem;
  padding: 2rem;
  background: #102d3a;
  color: #c8d6d9;
}
.showcase-people-mark > span:last-child {
  font-size: 0.75rem;
}
.showcase-people-mark .showcase-kicker {
  color: #c8d6d9;
}
.showcase-people-mark img {
  width: 100%;
  height: auto;
}
.showcase-people-word {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: #fff;
}
.showcase-people-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
}
.showcase-people-copy p {
  font-size: 0.95rem;
}
.showcase-order-steps {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d8e1e3;
  font-size: 0.75rem;
}
.showcase-final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0;
}
.showcase-final-cta h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  margin-bottom: 1.2rem;
}
.showcase-final-cta p {
  margin: 0;
}
.showcase-final-cta .btn-custom {
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  .showcase-hero-stage {
    gap: 1.5rem;
  }
  .showcase-hero:not(.showcase-hero--compact) .showcase-hero-title {
    font-size: clamp(2.5rem, 5.7vw, 4rem);
  }
  .showcase-facts p {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .showcase-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .showcase-home .showcase-heading {
    align-items: flex-start;
  }
  .showcase-home .showcase-heading > p {
    max-width: 40%;
  }
  .showcase-people {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .showcase-hero {
    padding-top: 0.5rem;
  }
  .showcase-hero-top {
    font-size: 0.58rem;
    padding-bottom: 1rem;
  }
  .showcase-hero-top span:last-child {
    display: none;
  }
  .showcase-hero .showcase-hero-stage {
    grid-template-columns: 1fr;
    padding: 2rem 0 1.5rem;
  }
  .showcase-hero:not(.showcase-hero--compact) .showcase-hero-title {
    font-size: clamp(2.7rem, 9vw, 4.5rem);
  }
  .showcase-hero-copy p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  .showcase-hero-visual {
    aspect-ratio: 1;
  }
  .showcase-hero-visual figcaption {
    font-size: 0.65rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
  .showcase-facts p {
    padding: 1rem 0.75rem;
  }
  .showcase-facts strong {
    font-size: 1.4rem;
  }
  .showcase-facts span {
    font-size: 0.65rem;
  }
  .showcase-home .showcase-section {
    padding: 3rem 0;
  }
  .showcase-home .showcase-heading {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .showcase-home .showcase-heading > p {
    max-width: 100%;
  }
  .showcase-kicker {
    font-size: 0.65rem;
    margin-bottom: 1rem;
  }
  .showcase-category-grid {
    gap: 0.6rem;
  }
  .showcase-category-grid a {
    padding: 0.9rem;
    gap: 0.5rem;
  }
  .showcase-category-grid span {
    font-size: 0.8rem;
  }
  .showcase-instrument img {
    height: auto;
    aspect-ratio: 1;
  }
  .showcase-instrument figcaption {
    text-align: left;
    font-size: 0.7rem;
  }
  .showcase-principles {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 1.25rem;
  }
  .showcase-principles h3 {
    display: inline-block;
    margin: 0 0 0.6rem 0.75rem;
    font-size: 1.2rem;
  }
  .showcase-principles p {
    font-size: 0.85rem;
  }
  .showcase-home .products-section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .showcase-home .products-section-heading p {
    text-align: left;
    max-width: none;
  }
  .showcase-catalog-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .showcase-brand-list {
    grid-template-columns: 1fr;
  }
  .showcase-brand-list li {
    min-height: 4.25rem;
    padding: 0;
    font-size: 1.25rem;
  }
  .showcase-brand-list li > a {
    min-height: 4.25rem;
    padding: 0.65rem 0.75rem;
  }
  .showcase-brand-list .showcase-brand-watermark {
    display: none;
  }
  .showcase-brand-list .showcase-brand-note {
    padding: 0.65rem 0;
  }
  .showcase-brand-list .showcase-brand-note {
    font-size: 0.7rem;
  }
  .showcase-hero--compact {
    margin-top: 2rem;
  }
  .showcase-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .showcase-timeline li {
    padding: 0 0 2rem 1.5rem;
    border-top: none;
    border-left: 1px solid #c5d1d4;
  }
  .showcase-timeline li:before {
    top: 0.6rem;
    left: -4px;
  }
  .showcase-timeline li:last-child {
    padding-bottom: 0;
  }
  .showcase-timeline .showcase-year {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
  }
  .showcase-timeline p {
    max-width: none;
  }
  .showcase-people {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .showcase-people-mark {
    min-height: 20rem;
    padding: 1.5rem;
  }
  .showcase-people-word {
    font-size: 3rem;
  }
  .showcase-final-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .showcase-principles .is-revealed {
    animation: showcase-reveal 0.5s ease both;
  }
  @keyframes showcase-reveal {
    from {
      transform: translateY(10px);
    }
    to {
      transform: translateY(0);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .showcase-link i {
    transition: none;
  }
  .showcase-link:hover i {
    transform: none;
  }
  .menu,
  .menu a,
  .menu ul,
  .products-wrapper .product-card,
  .products-wrapper .product-card img,
  .btn-custom {
    transition: none;
  }
  .products-wrapper .product-card:hover,
  .products-wrapper .product-card .thumb:hover img,
  .btn-custom:hover {
    transform: none;
  }
}
.scroll-to-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 15;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #c5d1d4;
  border-radius: 3px;
  background: #ffffff;
  color: #2f6887;
  box-shadow: 0 8px 24px rgba(16, 45, 58, 0.06);
  cursor: pointer;
}
.scroll-to-top[hidden] {
  display: none;
}
.scroll-to-top:hover {
  background: #f1f5f5;
  color: #102d3a;
}
.scroll-to-top:focus-visible {
  outline: 2px solid #2f6887;
  outline-offset: 3px;
}
/*# sourceMappingURL=main.css.map */