.text-muted{
    font-size: 0.8rem;
}
select.city-select-placeholder { color: rgb(33 37 41 / 51%) !important; }
select.city-select-placeholder option { color: #212529 !important; }
.sidebar-actions {
  margin-top: 1rem;
}
.frontend-prefooter-actions {
  margin-top: 1rem;
}
.frontend-prefooter-actions .sidebar-actions {
  margin-top: 0;
}
.frontend-prefooter-actions .sidebar-actions__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sidebar-actions__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.875rem;
}
.sidebar-action-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "text text";
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0.5rem;
  min-height: 100%;
  padding: 1rem 0.9rem 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.sidebar-action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d10000 0%, #ff3b3b 100%);
}
.sidebar-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(209, 0, 0, 0.18);
}
.sidebar-action-card__icon-wrap {
  grid-area: icon;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
}
.sidebar-action-card__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.sidebar-action-card__title {
  grid-area: title;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sidebar-action-card__text {
  grid-area: text;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #5b5b5b;
}
.sidebar-action-card__cta {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: .1rem;
}
.sidebar-action-card--partner .sidebar-action-card__text {
  margin-bottom: .15rem;
}
@media (max-width: 991.98px) {
  .frontend-prefooter-actions .sidebar-actions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sidebar-actions__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }
  .sidebar-action-card {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 0.65rem;
    row-gap: 0.45rem;
    padding: 0.9rem 0.8rem 0.85rem;
    border-radius: 16px;
  }
  .sidebar-action-card__icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }
  .sidebar-action-card__icon {
    width: 24px;
    height: 24px;
  }
  .sidebar-action-card__title {
    font-size: 0.82rem;
  }
  .sidebar-action-card__text {
    font-size: 0.78rem;
    line-height: 1.4;
  }
}
@media (max-width: 575.98px) {
  .frontend-prefooter-actions .sidebar-actions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sidebar-actions__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.625rem;
  }
  .sidebar-action-card {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 0.6rem;
    row-gap: 0.4rem;
    padding: 0.8rem 0.72rem;
    border-radius: 14px;
  }
  .sidebar-action-card__icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .sidebar-action-card__icon {
    width: 20px;
    height: 20px;
  }
  .sidebar-action-card__title {
    font-size: 0.75rem;
  }
  .sidebar-action-card__text {
    font-size: 1.0rem;
    line-height: 1.35;
  }
}
.frontend-manufacturer-strip {
  border-top: 0px solid rgba(255,255,255,.08);
  border-bottom: 0px solid rgba(255,255,255,.08);
  padding: .9rem 0;
  background-color: var(--g-white);
}
.frontend-manufacturer-strip + .site-footer {
  margin-top: 0;
}
.manufacturer-logo-carousel {
  --manufacturer-logo-gap: 1rem;
  --manufacturer-logo-per-view: 12;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.manufacturer-logo-carousel__viewport {
  overflow: hidden;
  width: 100%;
}
.manufacturer-logo-carousel__track {
  display: flex;
  align-items: center;
  gap: var(--manufacturer-logo-gap);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.manufacturer-logo-carousel__item {
  flex: 0 0 calc((100% - (var(--manufacturer-logo-per-view) - 1) * var(--manufacturer-logo-gap)) / var(--manufacturer-logo-per-view));
  min-width: 0;
}
.manufacturer-logo-carousel__media {
  --media-ratio: 38%;
  background: transparent;
  border-radius: .75rem;
}
.manufacturer-logo-carousel__media .goles-lazy-media__placeholder {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.manufacturer-logo-carousel__media .goles-lazy-media__text {
  display: none;
}
.manufacturer-logo-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .45rem .65rem;
  filter: grayscale(0%);
}
@media (max-width: 1199.98px) {
  .manufacturer-logo-carousel {
    --manufacturer-logo-per-view: 8;
  }
}
@media (max-width: 767.98px) {
  .manufacturer-logo-carousel {
    --manufacturer-logo-gap: .75rem;
    --manufacturer-logo-per-view: 4;
  }
  .frontend-manufacturer-strip {
    padding: .7rem 0;
  }
  .manufacturer-logo-carousel__img {
    padding: .35rem .45rem;
  }
}
.section-title-duotone {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 15px 0px 0px 0px;
} 
.section-title-duotone__muted {
  color: #7a7a7a;
}
.section-title-duotone__accent {
  color: #d40000;
}
.homepage-hero-image {
    object-fit: contain;   /* ili: fill / scale-down / none */
    object-position: center;
}
/*header*/
#frontendMainHeaderSlot {
    flex: 0 0 75%;
    max-width: 75%;
    min-width: 0;
    display: flex;
    justify-content: flex-start;
}
#frontendHeaderUserBox {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 0;
    justify-content: flex-end;
    white-space: nowrap;
    flex-wrap: nowrap;
    gap: .35rem !important;
    row-gap: 0;
    column-gap: .35rem;
    align-content: center;
}
#frontendHeaderUserBox > * {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
}
.frontend-navbar .container-fluid {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}
.frontend-main-nav-collapse {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    padding-left: 0;
}
#frontendHeaderUserBox .btn,
#frontendHeaderUserBox .dropdown-toggle {
    white-space: nowrap;
    line-height: 1;
    padding: .28rem .45rem;
    font-size: .78rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
#frontendHeaderUserBox .btn,
#frontendHeaderUserBox .dropdown-toggle,
#frontendHeaderUserBox .dropdown-item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
#frontendHeaderUserBox .btn .icon,
#frontendHeaderUserBox .dropdown-toggle .icon,
#frontendHeaderUserBox .dropdown-item .icon {
    flex: 0 0 auto;
    margin-right: 0;
}
.frontend-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    flex: 0 0 auto;
}
.frontend-language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    min-height: 2rem;
    padding: 0.25rem 0.45rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.75);
}
.frontend-language-link:hover,
.frontend-language-link.is-active {
    color: #fff;
    background: var(--goles-primary, #d71920);
    border-color: var(--goles-primary, #d71920);
}
@media (max-width: 1199.98px) {
    .frontend-main-nav-collapse {
        width: 100%;
        flex: 0 0 100%;
    }
    #frontendMainHeaderSlot,
    #frontendHeaderUserBox {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    #frontendHeaderUserBox {
        margin-left: 0 !important;
        justify-content: flex-start !important;
        margin-top: .75rem;
        flex-wrap: wrap;
        align-content: stretch;
        margin-bottom: 25px;
    }
    #frontendMainHeaderSlot {
        margin-right: 0;
    }
}
.sidebar-box,
.featured-box {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 0px 0px rgba(18, 38, 63, 0.08);
}
@media (max-width: 767.98px) {
    .sidebar-box,
    .featured-box {
        padding: 0;
    }
}
.product-card img {
    object-fit: cover;
    height: 180px;
    width: 100%;
    border-radius: .8rem;
    background: #e9ecef;
}
.price-box {
    background: #fff;
    color: var(--g-black-3);
    border: 1px solid var(--g-border);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
}
.cart-page-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}
.cart-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 1rem;
    align-items: start;
}
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.cart-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1.6fr) minmax(105px, .7fr) minmax(145px, .8fr) minmax(120px, .65fr) auto;
    grid-template-areas: "image details unit qty line remove";
    gap: .7rem;
    align-items: center;
    padding: .85rem;
    border: 1px solid #e7edf3;
    border-radius: .95rem;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}
.cart-item.is-updating {
    opacity: .65;
}
.cart-item__image-link {
    grid-area: image;
    display: block;
    width: 92px;
    height: 92px;
    border-radius: .8rem;
    overflow: hidden;
    border: 1px solid #e7edf3;
    background: #f8fafc;
}
.cart-item__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.cart-item__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: #64748b;
}
.cart-item__details {
    grid-area: details;
    min-width: 0;
}
.cart-item__title {
    display: inline-block;
    color: #111827;
    text-decoration: none;
    font-size: .98rem;
    line-height: 1.3;
    font-weight: 700;
}
.cart-item__title:hover,
.cart-item__title:focus {
    color: var(--g-druga);
}
.cart-item__code {
    margin-top: .25rem;
    font-size: .8rem;
    color: #64748b;
}
.cart-item__unit,
.cart-item__qty,
.cart-item__line {
    display: flex;
    flex-direction: column;
    gap: .22rem;
}
.cart-item__unit {
    grid-area: unit;
}
.cart-item__qty {
    grid-area: qty;
}
.cart-item__line {
    grid-area: line;
}
.cart-item__remove {
    grid-area: remove;
    display: flex;
    justify-content: flex-end;
}
.cart-item__label {
    font-size: .74rem;
    font-weight: 600;
    color: #64748b;
}
.cart-item__value,
.cart-item__line-total {
    font-size: .9rem;
    color: #0f172a;
}
.cart-qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: .32rem;
    border: 1px solid #dbe4ee;
    border-radius: 999px;
    padding: .2rem;
    background: #fff;
}
.cart-qty-stepper__btn {
    width: 1.9rem;
    height: 1.9rem;
    border: 0;
    border-radius: 999px;
    background: #edf2f7;
    color: #1f2937;
    font-size: 1.05rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cart-qty-stepper__btn:hover,
.cart-qty-stepper__btn:focus {
    background: #e2e8f0;
}
.cart-qty-stepper__input {
    width: 3.1rem;
    min-height: 1.9rem;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: .88rem;
    font-weight: 700;
    color: #0f172a;
    padding: 0;
}
.cart-qty-stepper__input:focus {
    outline: none;
}
.cart-summary-box {
    position: sticky;
    top: 1rem;
    border: 1px solid #e7edf3;
    border-radius: 1rem;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}
.cart-summary-box__title {
    margin: 0 0 .85rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
}
.cart-summary-box__rows {
    display: flex;
    flex-direction: column;
    gap: .52rem;
}
.cart-summary-box__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .75rem;
    font-size: .88rem;
    color: #334155;
}
.cart-summary-box__row strong {
    color: #0f172a;
}
.cart-summary-box__row--total {
    margin-top: .25rem;
    padding-top: .6rem;
    border-top: 1px solid #e7edf3;
    font-size: 1rem;
    font-weight: 700;
}
@media (max-width: 991.98px) {
    .cart-page-layout {
        grid-template-columns: 1fr;
        gap: .85rem;
    }
    .cart-summary-box {
        position: static;
    }
    .cart-item {
        grid-template-columns: 84px minmax(0, 1fr);
        grid-template-areas:
            "image details"
            "unit unit"
            "qty qty"
            "line line"
            "remove remove";
        gap: .6rem;
        padding: .75rem;
    }
    .cart-item__image-link {
        width: 84px;
        height: 84px;
    }
    .cart-item__remove {
        justify-content: flex-start;
    }
}
.badge-soft {
    background: #e8f1ff;
    color: #0d6efd;
}
.frontend-shell {
    width: 100%;
    max-width: none;
}
.frontend-navbar .navbar-brand {
    flex-shrink: 0;
}
.site-footer .container-fluid,
.frontend-shell,
.frontend-navbar .container-fluid {
    max-width: none;
}
.frontend-layout {
    display: grid;
    grid-template-columns: clamp(220px, 18vw, 260px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.frontend-layout--no-sidebar {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}
.frontend-layout--no-sidebar .frontend-main {
    grid-column: 1 / -1;
    width: 100%;
}
.frontend-layout--with-sidebar {
    grid-template-columns: clamp(220px, 18vw, 260px) minmax(0, 1fr);
}
.frontend-main {
    min-width: 0;
    min-height: 600px;
    margin-top: 0px;
}
.frontend-main > .card {
    margin-top: 15px;
}
.frontend-sidebar {
    position: sticky;
    top: 90px;
    max-width: 260px;
}
.frontend-sidebar .list-group-item.active {
    background: #0d6efd;
    border-color: #0d6efd;
}
#customerOrdersAccordion {
    --bs-accordion-active-bg: #fde2e2;
    --bs-accordion-active-color: #842029;
    --bs-accordion-btn-focus-border-color: #f1aeb5;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .15);
}
#customerOrdersAccordion .accordion-button:not(.collapsed) {
    background-color: #fde2e2;
    color: #842029;
}
#customerOrdersAccordion .accordion-button:focus {
    border-color: #f1aeb5;
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .15);
}
@media (min-width: 1200.01px) {
    .frontend-layout--header-aligned {
        --frontend-layout-header-offset: 19px;
        --frontend-layout-search-offset: 24px;
        --frontend-layout-sticky-top: 87px;
    }
    .frontend-layout--header-aligned > .frontend-sidebar,
    .frontend-layout--header-aligned > .frontend-main {
        margin-top: var(--frontend-layout-header-offset);
    }
    .frontend-layout--header-aligned > .frontend-sidebar {
        top: var(--frontend-layout-sticky-top);
    }
    .frontend-layout--header-aligned > .frontend-main > .card:first-child {
        margin-top: 0;
    }
    .frontend-layout--header-aligned > .frontend-main > .searchtop:first-child {
        margin-top: calc(-1 * var(--frontend-layout-search-offset));
        margin-bottom: var(--frontend-layout-search-offset);
    }
}
@media (max-width: 1200px) {
    .frontend-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .frontend-layout--with-sidebar,
    .frontend-layout--no-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }
    .frontend-sidebar {
        position: static;
        max-width: none;
    }
}
.frontend-navbar .navbar-collapse {
    gap: 0rem;
} 
.header-search-form {
    min-width: 0;
}
.header-search-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}
.header-user-box {
    white-space: nowrap;
}
.homepage-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}
.homepage-layout .frontend-main {
    grid-column: 1 / -1;
}
.homepage-hero-block {
    margin-bottom: 1rem; 
}
.homepage-primary-stack { 
    display: block;
    padding: 20px 0px 0px 0px;
}
.homepage-hero {
    display: grid;
    grid-template-columns: minmax(0, 30%) minmax(0, 70%);
    gap: 1.5rem;
    align-items: stretch;
    padding: 0 0 16px 0;
}
.homepage-hero-slider {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0px 0px rgba(18, 38, 63, 0.08);
}
.homepage-hero-slides {
    position: relative;
}
.homepage-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
}
.homepage-hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.homepage-hero-image-link {
    display: block;
    text-decoration: none;
}
.homepage-hero-image-wrap {
    border-radius: 0;
    background: #f4f6f8;
    height: 300px;
    max-height: 300px;
}
.homepage-hero-image-wrap::before {
    padding-top: 0;
}
.homepage-hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    background: linear-gradient(180deg, rgba(14, 21, 35, 0.12) 0%, rgba(14, 21, 35, 0.86) 72%);
    color: #fff;
}
.homepage-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: .2rem .55rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.22);
}
.homepage-hero-badge.is-discount {
    background: #d61f26;
}
.homepage-hero-title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
    color: #fff;
}
.homepage-hero-price {
    font-size: .92rem;
    line-height: 1.3;
    align-self: flex-end;
    text-align: right;
}
.homepage-hero-button {
    align-self: flex-end;
}
.homepage-hero-controls {
    position: absolute;
    top: .6rem;
    right: .6rem;
    z-index: 3;
    display: flex;
    gap: .4rem;
}
.homepage-hero-control {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    font-size: 1.25rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.homepage-hero-control:hover,
.homepage-hero-control:focus {
    background: #fff;
}
.homepage-hero-dots {
    position: absolute;
    left: .75rem;
    bottom: .75rem;
    z-index: 3;
    display: flex;
    gap: .35rem;
}
.homepage-hero-dot {
    width: .58rem;
    height: .58rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
}
.homepage-hero-dot.is-active {
    background: #fff;
}
.homepage-hero-content-card {
    border-radius: 1rem;
    box-shadow: 0 8px 22px rgba(18, 38, 63, 0.06);
}
.homepage-hero-content-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .6rem;
}
.homepage-hero-content {
    min-width: 0;
}
.homepage-promo-banner {
    height: 100%;
    border: 1px solid #e6ebf1;
    border-radius: 1.4rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 36px rgba(18, 38, 63, 0.1);
    display: flex;
    flex-direction: column;
}
.homepage-promo-banner__main {
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    align-items: stretch;
}
.homepage-promo-banner__brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.1rem;
}
.homepage-promo-banner__logo {
    width: auto;
    max-width: 170px;
    max-height: 44px;
    display: block;
}
.homepage-promo-banner__copy {
    padding: 1.45rem 1.7rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}
.homepage-promo-banner__eyebrow {
    margin-bottom: .55rem;
    color: #d61f26;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .055em;
}
.homepage-promo-banner__title {
    margin: 0 0 .65rem;
    color: #0f172a;
    font-size: 1.36rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 700;
}
.homepage-promo-banner__title span {
    color: #d61f26;
}
.homepage-promo-banner__text {
    margin: 0;
    color: #374151;
    font-size: .88rem;
    line-height: 1.5;
    max-width: 36ch;
}
.homepage-promo-banner__actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.homepage-promo-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: .48rem .95rem;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.homepage-promo-banner__btn--primary {
    background: #d61f26;
    border-color: #d61f26;
    color: #fff;
}
.homepage-promo-banner__btn--primary:hover,
.homepage-promo-banner__btn--primary:focus {
    background: #bc1b21;
    border-color: #bc1b21;
    color: #fff;
    box-shadow: 0 8px 16px rgba(214, 31, 38, 0.22);
}
.homepage-promo-banner__btn--ghost {
    background: #fff;
    border-color: #d5dbe3;
    color: #111827;
}
.homepage-promo-banner__btn--ghost:hover,
.homepage-promo-banner__btn--ghost:focus {
    background: #f8f9fb;
    border-color: #bbc4d0;
    color: #111827;
}
.homepage-promo-banner__media {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    background: linear-gradient(150deg, #252a34 0%, #1a1e27 100%);
}
.homepage-promo-banner__media-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 88% 84%, rgba(12, 18, 32, 0.55), rgba(12, 18, 32, 0) 52%),
        linear-gradient(180deg, rgba(235, 238, 243, 0.23), rgba(43, 49, 62, 0.78)),
        url('../../images/homepage/goles-hero-m.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    filter: grayscale(0.26);
}
.homepage-promo-banner__media-accent {
    position: absolute;
    inset: auto -72px -72px auto;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(214, 31, 38, 0.95), rgba(166, 18, 24, 0.78));
    transform: rotate(-16deg);
    opacity: .9;
}
.homepage-promo-banner__part {
    position: absolute;
    margin: 0;
    z-index: 2;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.35));
    pointer-events: none;
}
.homepage-promo-banner__part img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.homepage-promo-banner__part--one {
    top: 8%;
    left: 6%;
    width: clamp(120px, 33%, 180px);
    transform: rotate(-6deg);
}
.homepage-promo-banner__part--two {
    top: 10%;
    right: 7%;
    width: clamp(120px, 34%, 188px);
    transform: rotate(5deg);
}
.homepage-promo-banner__part--three {
    bottom: 13%;
    left: 14%;
    width: clamp(132px, 36%, 198px);
    transform: rotate(-3deg);
}
.homepage-promo-banner__part--four {
    bottom: 11%;
    right: 6%;
    width: clamp(124px, 33%, 182px);
    transform: rotate(4deg);
}
.homepage-promo-banner__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #f8fafc;
    border-top: 1px solid #e6ebf1;
}
.homepage-promo-banner__feature {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    padding: .78rem .75rem;
    font-size: .76rem;
    line-height: 1.3;
    text-align: center;
    border-right: 1px solid #e6ebf1;
}
.homepage-promo-banner__feature:last-child {
    border-right: 0;
}
.homepage-promo-banner__bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: #1b2230;
    color: #f3f6fb;
}
.homepage-promo-banner__bottom-item {
    padding: .55rem .7rem;
    text-align: center;
    font-size: .74rem;
    line-height: 1.35;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.homepage-promo-banner__bottom-item:last-child {
    border-right: 0;
}
.homepage-product-carousel {
    --homepage-carousel-gap: 1rem;
    --homepage-carousel-per-view: 5;
    position: relative;
    display: block;
    width: 100%;
}
.homepage-carousel-viewport {
    position: relative;
    min-width: 0;
    overflow: hidden;
    width: 100%;
    padding: 0 3rem;
}
.homepage-carousel-track {
    display: flex;
    gap: var(--homepage-carousel-gap);
    transition: transform .32s ease;
    will-change: transform;
}
.homepage-carousel-item {
    min-width: 0;
    flex: 0 0 calc((100% - (var(--homepage-carousel-per-view) - 1) * var(--homepage-carousel-gap)) / var(--homepage-carousel-per-view));
}
.homepage-carousel-arrow {
    width: 3.4rem;
    height: 3.4rem;
    border: 0px solid #dbe1e8;
    border-radius: 999px;
    background: #fff;
    color: #545555;
    font-size: 2.35rem;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    padding-bottom: 7px;;
}
.homepage-carousel-viewport .js-homepage-carousel-prev {
    left: .35rem;
}
.homepage-carousel-viewport .js-homepage-carousel-next {
    right: .35rem;
}
.homepage-carousel-arrow:hover,
.homepage-carousel-arrow:focus {
    border-color: #c4ccd7;
    box-shadow: 0 6px 14px rgba(18, 38, 63, 0.12);
}
.homepage-carousel-arrow:disabled {
    opacity: .4;
    cursor: not-allowed;
    box-shadow: none;
}
.homepage-carousel-card {
    border-radius: 1rem;
}
.homepage-carousel-title {
    font-size: .88rem;
    line-height: 1.3;
    min-height: 2.25em;
    font-weight: 600;
}
.homepage-carousel-meta {
    font-size: .72rem;
    line-height: 1.25;
    color: #6c757d;
}
.homepage-carousel-price {
    font-weight: 700;
    color: #111827;
    font-size: .9rem;
    margin-bottom: .55rem;
}
@media (max-width: 1199.98px) {
    .homepage-product-carousel {
        --homepage-carousel-per-view: 3;
    }
}
@media (max-width: 991.98px) {
    .homepage-hero {
        grid-template-columns: 1fr;
    }
    .homepage-promo-banner__main {
        grid-template-columns: 1fr;
    }
    .homepage-promo-banner__copy {
        padding: 1.4rem 1.35rem 1.2rem;
    }
    .homepage-promo-banner__title {
        font-size: 1.28rem;
    }
    .homepage-promo-banner__media {
        min-height: 280px;
    }
    .homepage-promo-banner__part--one {
        top: 8%;
        left: 5%;
        width: clamp(112px, 31%, 168px);
    }
    .homepage-promo-banner__part--two {
        top: 11%;
        right: 5%;
        width: clamp(112px, 32%, 172px);
    }
    .homepage-promo-banner__part--three {
        bottom: 14%;
        left: 12%;
        width: clamp(120px, 36%, 184px);
    }
    .homepage-promo-banner__part--four {
        bottom: 12%;
        right: 5%;
        width: clamp(116px, 32%, 176px);
    }
    .homepage-promo-banner__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .homepage-promo-banner__feature {
        border-right: 0;
        border-bottom: 1px solid #e6ebf1;
    }
    .homepage-promo-banner__feature:nth-child(odd) {
        border-right: 1px solid #e6ebf1;
    }
    .homepage-promo-banner__feature:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
    .homepage-promo-banner__bottom {
        grid-template-columns: 1fr;
    }
    .homepage-promo-banner__bottom-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
    .homepage-promo-banner__bottom-item:last-child {
        border-bottom: 0;
    }
}
@media (max-width: 767.98px) {
    .homepage-primary-stack {
        display: flex;
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .homepage-hero-block {
        margin-bottom: 0;
    }
    .homepage-product-carousel {
        --homepage-carousel-gap: .75rem;
        --homepage-carousel-per-view: 1;
    }
    .homepage-carousel-arrow {
        width: 2.15rem;
        height: 2.15rem;
    }
    .homepage-carousel-viewport {
        padding: 0 2.5rem;
    }
    .homepage-hero-overlay {
        padding: .85rem;
    }
    .homepage-hero-title {
        font-size: .96rem;
    }
    .homepage-promo-banner__title {
        font-size: 1.07rem;
    }
    .homepage-promo-banner__copy {
        padding: 1.1rem .95rem 1rem;
    }
    .homepage-promo-banner__actions {
        flex-direction: column;
    }
    .homepage-promo-banner__btn {
        width: 100%;
    }
    .homepage-promo-banner__media {
        min-height: 228px;
    }
    .homepage-promo-banner__part--one {
        top: 10%;
        left: 5%;
        width: 36%;
    }
    .homepage-promo-banner__part--two {
        top: 13%;
        right: 6%;
        width: 35%;
    }
    .homepage-promo-banner__part--three {
        bottom: 15%;
        left: 10%;
        width: 39%;
    }
    .homepage-promo-banner__part--four {
        bottom: 12%;
        right: 5%;
        width: 34%;
    }
    .homepage-promo-banner__features {
        grid-template-columns: 1fr;
    }
    .homepage-promo-banner__feature {
        border-right: 0;
        border-bottom: 1px solid #e6ebf1;
        padding: .68rem .7rem;
    }
    .homepage-promo-banner__feature:last-child {
        border-bottom: 0;
    }
    .homepage-promo-banner__bottom-item {
        font-size: .72rem;
        padding: .62rem .7rem;
    }
}
.featured-grid-card {
    border: 0;
    box-shadow: 0 8px 22px rgba(18, 38, 63, 0.08);
    border-radius: 1rem;
}
.featured-grid-card .card-body {
    padding: .75rem;
}
.featured-grid-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: .8rem;
    background: #ffffff;
}
.product-grid-card-compact {
    overflow: hidden;
}
.product-grid-image-link {
    display: block;
}
.product-grid-image-wrap {
    --product-grid-media-ratio: 75%;
}
.product-grid-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .75rem;
    font-size: .7rem;
    line-height: 1.25;
    color: #6c757d;
}
.product-grid-meta-left,
.product-grid-meta-right {
    min-width: 0;
    flex: 1 1 50%;
}
.product-grid-meta-right {
    text-align: right;
}
.product-grid-vehicle {
    font-size: .85rem;
    line-height: 1.3;
    font-weight: 500;
    min-height: 2.2em;
}
.product-grid-description {
    font-size: .7rem;
    line-height: 1.3;
    font-weight: 700;
    min-height: 2.7em;
}
.product-grid-featured-order {
    font-size: .7rem;
    line-height: 1.25;
    color: #6c757d;
}
.product-grid-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .45rem;
}
.product-grid-production {
    width: 100%;
    font-size: .72rem;
    line-height: 1.3;
    color: #6c757d;
    text-align: left;
    font-weight: 700;
}
.product-grid-button {
    display: block;
    width: 100%;
    white-space: nowrap;
    font-size: 16px!important;
    padding: 3px 16px!important;
    text-transform: uppercase;
    background: var(--g-black-5);
    border-color: var(--g-black-5); 
    color: #fff;
    letter-spacing: 0.02em!important;
        min-height: 35px!important;
        line-height: 25px;
        padding: 1rem 1rem!important;     
}
.product-grid-button:hover,
.product-grid-button:focus {
    background: #5c636a;
    border-color: #565e64;
    color: #fff;
}
.product-lightbox-link {
    display: block;
    text-decoration: none;
}
.product-lightbox-link,
.product-lightbox-link img,
.lightbox-trigger-image {
    cursor: zoom-in;
}
.product-lightbox-link:hover,
.product-lightbox-link:focus,
.lightbox-trigger-image:hover,
.lightbox-trigger-image:focus {
    opacity: .96;
}
.product-detail-lightbox-image {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    background: #e9ecef;
}
.product-image-modal .modal-dialog {
    max-width: min(96vw, 1400px);
}
.product-image-modal .modal-content {
    background: #fff;
    border: 0;
}
.product-image-modal .modal-body {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem 1.5rem;
}
.product-image-modal .modal-header {
    align-items: start;
    justify-content: flex-end;
}
.product-image-modal .btn-close-white {
    filter: none;
}
.product-image-modal-image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 7rem);
    object-fit: contain;
}
@media (max-width: 1399px) {
    .frontend-navbar .navbar-collapse {
        align-items: stretch;
    }
    .header-user-box {
        white-space: normal;
    }
}
.product-image-placeholder {
    width: 100%;
    height: 150px;
    border-radius: .8rem;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 600;
}
.header-search-autocomplete {
    min-width: 0;
}
@media (max-width: 991px) {
    .header-search-grid {
        grid-template-columns: 1fr;
    }
}
.additional-models-front {
    border: 1px solid #e9eef5;
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    background: #f8fbff;
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}
.additional-models-front::-webkit-scrollbar {
    width: 8px;
}
.additional-models-front::-webkit-scrollbar-track {
    background: #eef3f8;
    border-radius: 999px;
}
.additional-models-front::-webkit-scrollbar-thumb {
    background: #c2ccd8;
    border-radius: 999px;
}
.additional-models-front::-webkit-scrollbar-thumb:hover {
    background: #9daabb;
}
.additional-model-badge {
    color: #0d6efd !important;
    border: 1px solid rgba(13, 110, 253, 0.16);
    padding: .55rem .85rem;
    font-size: .86rem;
}
.additional-model-badge:hover {
    background: #e8f1ff !important;
}
.model-card-title {
    color: #212529;
}
.ajax-cart-feedback {
    margin-top: .25rem;
    border-radius: .85rem;
}
.js-animated-alert {
    transition: opacity .2s ease, transform .2s ease;
    will-change: opacity, transform;
}
.js-animated-alert.is-alert-hidden,
.js-animated-alert.is-alert-entering,
.js-animated-alert.is-alert-leaving {
    opacity: 0;
    transform: translateY(-6px);
}
.js-animated-alert.is-alert-visible.show,
.js-animated-alert.is-alert-visible:not(.fade) {
    opacity: 1;
    transform: translateY(0);
}
.js-animated-alert.fade:not(.show) {
    transform: translateY(-6px);
}
@media (prefers-reduced-motion: reduce) {
    .js-animated-alert {
        transition: none;
        transform: none;
    }
    .js-animated-alert.is-alert-hidden,
    .js-animated-alert.is-alert-entering,
    .js-animated-alert.is-alert-visible,
    .js-animated-alert.is-alert-leaving {
        transform: none;
    }
}
.product-card:hover .model-card-title {
    color: #0d6efd;
}
.site-footer {
    margin-top: 1.25rem;
    background: #f8f9fb;
    border-top: 1px solid #e6ebf1;
    padding: 1.35rem 0 1.15rem;
    box-shadow: 0 -6px 20px rgba(18, 38, 63, 0.04);
}
.frontend-footer-main {
    padding-top: .25rem;
    padding-bottom: 1.1rem;
}
.frontend-footer-col {
    font-size: .9rem;
    color: #495057;
    min-width: 0;
}
.frontend-footer-title {
    margin: 0 0 .8rem;
    font-size: .84rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.frontend-footer-brand {
    margin-bottom: .65rem;
}
.frontend-footer-logo {
    display: block;
    width: auto;
    max-width: 155px;
    max-height: 42px;
}
.frontend-footer-brand-text {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}
.frontend-footer-brand-name {
    font-size: .95rem;
    font-weight: 700;
    color: #111827;
}
.frontend-footer-text {
    font-size: .84rem;
    line-height: 1.5;
    color: #4b5563;
    max-width: 38ch;
}
.frontend-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.frontend-footer-contact-item {
    line-height: 1.35;
}
.frontend-footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #374151;
    text-decoration: none;
    transition: color .16s ease;
}
.frontend-footer-contact-link:hover,
.frontend-footer-contact-link:focus {
    color: #111827;
    text-decoration: underline;
}
.frontend-footer-contact-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    color: #5f6b7a;
}
.frontend-footer-hours {
    display: grid;
    gap: .65rem;
}
.frontend-footer-hours-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .8rem;
    padding: .45rem .6rem;
    border: 1px solid #e4eaf1;
    border-radius: .7rem;
    background: #ffffff;
}
.frontend-footer-hours-day {
    font-size: .79rem;
    font-weight: 700;
    color: #374151;
    letter-spacing: .04em;
}
.frontend-footer-hours-time {
    font-size: .82rem;
    font-weight: 700;
    color: #111827;
}
.frontend-footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem .8rem;
}
.frontend-footer-nav-link {
    color: #4b5563;
    font-size: .84rem;
    line-height: 1.3;
    text-decoration: none;
    transition: color .16s ease, text-decoration-color .16s ease;
}
.frontend-footer-nav-link:hover,
.frontend-footer-nav-link:focus {
    color: #111827;
    text-decoration: underline;
}
.frontend-footer-subnav {
    border-top: 1px solid #e6ebf1;
    border-bottom: 1px solid #e6ebf1;
    padding: .75rem 0;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
    gap: .85rem 1.25rem;
}
.frontend-footer-subnav-group {
    min-width: 0;
}
.frontend-footer-subnav-group--end .frontend-footer-nav {
    justify-content: flex-end;
    text-align: right;
}
.frontend-footer-bottom {
    margin-top: .7rem;
    padding-top: .15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    font-size: .8rem;
    color: #6b7280;
}
.frontend-footer-credit {
    white-space: nowrap;
    color: #6b7280;
}
.frontend-footer-credit a {
    color: #374151;
    text-decoration: none;
}
.frontend-footer-credit a:hover,
.frontend-footer-credit a:focus {
    color: #111827;
    text-decoration: underline;
}
@media (max-width: 991.98px) {
    .frontend-footer-subnav {
        grid-template-columns: 1fr;
    }
    .frontend-footer-nav {
        gap: .35rem .7rem;
    }
    .frontend-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: .4rem;
    }
    .frontend-footer-credit {
        white-space: normal;
    }
}
@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 1.1rem;
    }
    .frontend-footer-main {
        padding-bottom: .95rem;
    } 
    .frontend-footer-subnav {
        padding: .7rem 0;
        grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
    }
    .frontend-footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: .42rem;
    }
    /* Stupac je okomit, pa desno poravnanje ide preko align-items. */
    .frontend-footer-subnav-group--end .frontend-footer-nav {
        align-items: flex-end;
    }
}
.product-stock-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
}
.product-stock-status-list {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}
.product-stock-status {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: .3rem .62rem;
    font-size: .76rem;
    font-weight: 600;
    line-height: 1.2;
}
.product-stock-status__icon {
    display: inline-flex;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
}
.product-stock-status__icon svg {
    width: 15px;
    height: 15px;
    display: block;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.product-stock-status--in-stock {
    color: #146c43;
    background: rgba(25, 135, 84, 0.1);
    border-color: rgba(25, 135, 84, 0.32);
}
.product-stock-status--low {
    color: #a15c00;
    background: rgba(255, 193, 7, 0.16);
    border-color: rgba(255, 193, 7, 0.36);
}
.product-stock-status--delivery {
    color: #0b5ed7;
    background: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
}
.product-stock-status--contact {
    color: #334155;
    background: rgba(100, 116, 139, 0.1);
    border-color: rgba(100, 116, 139, 0.3);
}
.product-stock-status--out {
    color: #b02a37;
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.32);
}
.product-stock-status-list--detail .product-stock-status {
    font-size: .82rem;
    padding: .36rem .72rem;
}
.product-stock-status-list--compact {
    margin-top: .1rem;
}
.product-stock-status-list--compact .product-stock-status {
    font-size: .72rem;
    padding: .26rem .56rem;
}
.frontend-navbar-light {
    background: #ffffff;
    border-bottom: 1px solid #ffffff; 
}
.frontend-navbar-light .navbar-brand,
.frontend-navbar-light .nav-link,
.frontend-navbar-light .navbar-toggler {
    color: #000;
}
.frontend-navbar-light .navbar-brand:hover,
.frontend-navbar-light .nav-link:hover {
    color: #000;
}
.frontend-navbar-light .navbar-toggler {
    border-color: rgb(255, 255, 255);
}
.frontend-navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.header-search-grid {
    grid-template-columns: repeat(2, minmax(0, 200px));
    justify-content: start;
}
@media (min-width: 992px) {
    .header-search-grid {
        grid-template-columns: repeat(4, minmax(0, 200px));
    }
}
.header-search-autocomplete,
.header-search-form .form-control {
    width: 100%;
    max-width: 200px;
}
@media (max-width: 767px) {
    .header-search-grid {
        grid-template-columns: 1fr;
    }
    .header-search-autocomplete,
    .header-search-form .form-control {
        max-width: none;
    }
}
@media (max-width: 991px) {
    .searchtop {
        position: static !important;
        top: auto !important;
    }
    .searchtop.container-fluid {
        --bs-gutter-x: 0;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .searchtop > .d-flex.align-items-center.justify-content-between.py-1 {
        align-items: stretch !important;
        flex-wrap: wrap;
        padding-left: 0;
        padding-right: 0;
    }
    .searchtop-left-panel {
        flex-wrap: wrap;
        flex: 0 0 100%;
        width: 100%;
        margin: 0;
    }
    .searchtop-right-panel.searchtop-right-panel--guest {
        display: none !important;
    }
    .searchtop-right-panel.searchtop-right-panel--logged {
        display: flex !important;
        flex: 0 0 100%;
        width: 100%;
        margin: .5rem 0 0;
        margin-left: 0;
        justify-content: flex-start;
    }
    .searchtop-userpanel--logged {
        justify-content: flex-start;
    }
    .searchtop-userpanel--logged .searchtop-userpanel__meta:last-of-type {
        justify-self: flex-start;
    }
    .searchtop-left-panel > .header-search-autocomplete.position-relative {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        margin: 0;
    } 
    .frontend-topbar-search .header-search-autocomplete {
        position: static !important;
    }
    .frontend-topbar-search .header-search-autocomplete .autocomplete-results {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: 100%;
        margin-top: .45rem;
        z-index: auto;
    }
}
.frontend-site-logo {
    max-height: 42px;
    width: auto;
    display: block;
}
.frontend-settings-dropdown {
    border-radius: .9rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 12rem;
}
.frontend-settings-dropdown .dropdown-item {
    padding: .55rem .9rem;
}
.frontend-settings-dropdown .dropdown-item:hover,
.frontend-settings-dropdown .dropdown-item:focus {
    background: #f8f9fa;
}
.page-title-with-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.page-title-with-logo > *:first-child {
    min-width: 0;
}
.manufacturer-page-logo,
.manufacturer-product-logo,
.manufacturer-card-logo {
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}
.manufacturer-page-logo {
    max-width: 72px;
    max-height: 42px;
}
.manufacturer-title-with-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.manufacturer-title-with-logo > *:first-child {
    min-width: 0;
    flex: 1 1 auto;
}
.manufacturer-page-logo--large {
    display: block;
    width: auto;
    max-width: 96px;
    max-height: 56px;
    object-fit: contain;
    flex: 0 0 auto;
}
.manufacturer-product-logo {
    max-width: 68px;
    max-height: 40px;
}
.manufacturer-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}
.manufacturer-card-logo {
    max-width: 54px;
    max-height: 30px;
}
.manufacturer-model-image-wrap {
    --manufacturer-model-media-ratio: 75%;
}
.manufacturer-model-image-wrap .goles-lazy-media__img {
    width: 100%;
    height: 100%;
}
.manufacturer-list-card-body {
    display: flex;
    align-items: stretch;
    height: 100%;
}
.manufacturer-list-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-width: 0;
}
.manufacturer-list-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex: 1 1 auto;
}
.manufacturer-list-card-text .h5 {
    margin-bottom: .35rem !important;
    line-height: 1.2;
}
.manufacturer-list-card-logo-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.manufacturer-list-card-logo {
    display: block;
    width: auto;
    max-width: 80px;
    max-height: 46px;
    object-fit: contain;
}
.product-title-side {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
    flex-wrap: wrap;
    margin-left: auto;
}
.product-title-side .product-share-links {
    margin-left: 0;
}
.product-title-main {
    flex: 1 1 auto;
    min-width: 0;
}
.product-title-vehicle {
    margin-top: .25rem;
    line-height: 1.35;
}
.product-title-share-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.product-title-share-row h1 {
    min-width: 0;
}
.product-share-links {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    flex-shrink: 0;
    margin-left: auto;
}
.product-share-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3c3e42;
    background: #ffffff;
    border: 0px solid rgba(13, 110, 253, 0.16);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.product-share-link:hover,
.product-share-link:focus { 
    color: #fff;
    background: #0d6efd;
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.22);
    transform: translateY(-1px);
}
.product-share-link svg {
    width: 1.1rem;
    height: 1.1rem;
}
.search-results-pagination__button-icon {
    display: none;
}
@media (max-width: 575px) {
    .product-grid-image-wrap {
        --product-grid-media-ratio: 92%;
    }
    .product-title-share-row {
        flex-direction: column;
        align-items: stretch;
    }
    .product-share-links {
        justify-content: flex-start;
        margin-left: 0;
    }
    .page-title-with-logo {
        align-items: flex-start;
        flex-direction: column;
    }
    .manufacturer-list-card-logo {
        max-width: 64px;
        max-height: 36px;
    }
    .manufacturer-title-with-logo {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: .75rem;
    }
    .manufacturer-page-logo--large {
        max-width: 72px;
        max-height: 40px;
    }
    .manufacturer-title-with-logo h1 {
        margin-bottom: .25rem !important;
        line-height: 1.2;
    }
    .manufacturer-model-image-wrap {
        --manufacturer-model-media-ratio: 92%;
    }
    .product-title-side {
        justify-content: flex-start;
        margin-left: 0;
    }
} 
.frontend-topbar .container-fluid {
    min-height: 20px;
}
.frontend-topbar-inner {
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0; 
}
.frontend-topbar-slot-search {
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
}
.frontend-topbar-slot-search.frontend-topbar-slot-left {
    flex: 0 0 70%;
    max-width: 70%;
}
.frontend-topbar-slot-search.frontend-topbar-slot-right {
    flex: 0 0 30%;
    max-width: 30%;
}
.frontend-topbar-feature-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    flex-wrap: nowrap;
    width: 100%;
}
.frontend-topbar-feature {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: 0rem 0rem;
    border: 0px solid #dee2e6;
    border-radius: .55rem;
    background: #ffffff00;
    font-size: .75rem;
    line-height: 1.2;
    white-space: nowrap;
}
.frontend-topbar-feature .icon {
    width: 20px;
    height: 20px;
    flex: 0 0 0 0;
} 
.searchtop-left-panel {
    flex: 1 1 auto;
    min-width: 0;
}
.searchtop-right-panel {
    margin-left: auto;
    justify-content: flex-end;
    min-width: 0;
}
.searchtop-userpanel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .18rem;
    min-height: 42px;
    padding: .38rem .7rem;
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: .65rem;
    background: var(--g-red);
}
.searchtop-userpanel__name {
    font-size: .84rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--g-white);
}
.searchtop-userpanel__meta {
    font-size: .74rem;
    line-height: 1.2;
    color: var(--g-white);
    white-space: nowrap;
}
.searchtop-userpanel--logged {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: end;
    align-items: center;
    column-gap: .5rem;
    row-gap: .18rem;
}
.searchtop-userpanel--logged .searchtop-userpanel__meta:last-of-type {
    grid-column: 1 / -1;
    justify-self: end;
}
.searchtop-userpanel--guest {
    border: 0;
    border-radius: 0;
    background: transparent;
    min-height: 0;
    padding: 0;
}
.searchtop-userpanel--guest .frontend-topbar-feature-list {
    justify-content: flex-end;
}
.searchtop-userpanel--guest .frontend-topbar-feature {
    color: inherit;
    text-decoration: none;
}
.searchtop-userpanel--guest .frontend-topbar-feature:hover,
.searchtop-userpanel--guest .frontend-topbar-feature:focus {
    color: var(--g-druga);
}
.frontend-topbar-slot-search .header-search-form {
    width: 100%;
    margin-bottom: 0;
}
/* =========================================
   Header Search UI - unified design system
   ========================================= */
:root {
    --header-search-height: 42px;
    --header-search-radius: 999px;
    --header-search-border: #d8dde3;
    --header-search-border-hover: #b8c2cf;
    --header-search-bg: #fff;
    --header-search-text: #212529;
    --header-search-placeholder: #8a94a6;
    --header-search-shadow: 0 0px 0px rgba(18, 38, 63, 0.06);
    --header-search-shadow-hover: 0 3px 9px rgba(18, 38, 63, 0.10);
    --header-search-font-size: .9rem;
    --header-search-padding-x: 1rem;
}
.header-search-ui-field {
    min-width: 0;
}
.header-search-ui-control {
    height: var(--header-search-height);
    min-height: var(--header-search-height);
    border: 1px solid var(--header-search-border);
    border-radius: var(--header-search-radius);
    background: var(--header-search-bg);
    box-shadow: var(--header-search-shadow);
    padding: .55rem var(--header-search-padding-x);
    font-size: var(--header-search-font-size);
    color: var(--header-search-text);
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.header-search-ui-control::placeholder {
    color: var(--header-search-placeholder);
}
.header-search-ui-control:hover,
.header-search-ui-control:focus {
    border-color: var(--header-search-border-hover);
    box-shadow: var(--header-search-shadow-hover);
    background: var(--header-search-bg);
    outline: 0;
}
.header-search-form .form-control.form-control-sm.js-product-autocomplete-input,
.header-search-form input[name="code"],
.header-search-form input[name="oem"] {
    height: var(--header-search-height);
    min-height: var(--header-search-height);
    border: 1px solid var(--header-search-border);
    border-radius: var(--header-search-radius);
    background: var(--header-search-bg);
    box-shadow: var(--header-search-shadow);
    padding: .55rem var(--header-search-padding-x);
    font-size: var(--header-search-font-size);
    color: var(--header-search-text);
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.header-search-form .form-control.form-control-sm.js-product-autocomplete-input::placeholder,
.header-search-form input[name="code"]::placeholder,
.header-search-form input[name="oem"]::placeholder {
    color: var(--header-search-placeholder);
}
.header-search-form .form-control.form-control-sm.js-product-autocomplete-input:hover,
.header-search-form .form-control.form-control-sm.js-product-autocomplete-input:focus,
.header-search-form input[name="code"]:hover,
.header-search-form input[name="code"]:focus,
.header-search-form input[name="oem"]:hover,
.header-search-form input[name="oem"]:focus {
    border-color: var(--header-search-border-hover);
    box-shadow: var(--header-search-shadow-hover);
    background: var(--header-search-bg);
    outline: 0;
}
#frontendCategorySelect {
    width: 100%;
    height: var(--header-search-height);
    min-height: var(--header-search-height);
    border: 1px solid var(--header-search-border);
    border-radius: var(--header-search-radius);
    background-color: var(--header-search-bg);
    box-shadow: var(--header-search-shadow);
    color: var(--header-search-text);
    font-size: var(--header-search-font-size);
    padding-left: var(--header-search-padding-x);
    padding-right: 2.4rem;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
#frontendCategorySelect:hover,
#frontendCategorySelect:focus {
    border-color: var(--header-search-border-hover);
    box-shadow: var(--header-search-shadow-hover);
    background-color: var(--header-search-bg);
    outline: 0;
}
#frontendCategorySelect,
#frontendCategorySelect option {
    color: var(--header-search-text);
}
#headerSelect2Search + .select2-container,
#headerModelSelect2 + .select2-container {
    width: 100% !important;
    min-width: 200px;
}
#headerSelect2Search + .select2-container .select2-selection--single,
#headerModelSelect2 + .select2-container .select2-selection--single {
    min-height: var(--header-search-height);
    height: var(--header-search-height);
    border: 1px solid var(--header-search-border);
    border-radius: var(--header-search-radius);
    background: var(--header-search-bg);
    box-shadow: var(--header-search-shadow);
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
#headerSelect2Search + .select2-container .select2-selection__rendered,
#headerModelSelect2 + .select2-container .select2-selection__rendered {
    line-height: calc(var(--header-search-height) - 2px);
    padding-left: var(--header-search-padding-x);
    padding-right: 2.4rem;
    font-size: var(--header-search-font-size);
    color: var(--header-search-text);
}
#headerSelect2Search + .select2-container .select2-selection__placeholder,
#headerModelSelect2 + .select2-container .select2-selection__placeholder {
    color: var(--header-search-placeholder);
}
#headerSelect2Search + .select2-container .select2-selection__arrow,
#headerModelSelect2 + .select2-container .select2-selection__arrow {
    height: calc(var(--header-search-height) - 2px);
    right: .7rem;
}
#headerSelect2Search + .select2-container .select2-selection--single:hover,
#headerSelect2Search + .select2-container.select2-container--open .select2-selection--single,
#headerSelect2Search + .select2-container.select2-container--focus .select2-selection--single,
#headerModelSelect2 + .select2-container .select2-selection--single:hover,
#headerModelSelect2 + .select2-container.select2-container--open .select2-selection--single,
#headerModelSelect2 + .select2-container.select2-container--focus .select2-selection--single {
    border-color: var(--header-search-border-hover);
    box-shadow: var(--header-search-shadow-hover);
    background: var(--header-search-bg);
}
.select2-dropdown {
    border: 1px solid #dfe5ec;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(18, 38, 63, 0.14);
    padding: .35rem;
    z-index: 999999;
}
.select2-search--dropdown {
    padding: .35rem;
}
.select2-search--dropdown .select2-search__field {
    height: 40px;
    border: 1px solid var(--header-search-border);
    border-radius: .85rem;
    padding: .55rem .8rem;
    outline: 0;
    box-shadow: none;
}
.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--header-search-border-hover);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
}
.select2-results__options {
    max-height: 280px;
    padding: .2rem;
    scrollbar-width: thin;
    scrollbar-color: #c3cad4 #f3f5f7;
}
.select2-results__option {
    border-radius: .7rem;
    padding: .65rem .8rem;
    font-size: .9rem;
    line-height: 1.3;
    margin-bottom: .15rem;
    transition: background-color .15s ease, color .15s ease;
}
.select2-results__option--highlighted.select2-results__option--selectable {
    background: #f3f6fb !important;
    color: #212529 !important;
}
.select2-results__option--selected {
    background: #e9f2ff !important;
    color: #0d6efd !important;
    font-weight: 600;
}
.select2-results__options::-webkit-scrollbar {
    width: 10px;
}
.select2-results__options::-webkit-scrollbar-track {
    background: #f3f5f7;
    border-radius: 999px;
}
.select2-results__options::-webkit-scrollbar-thumb {
    background: #c3cad4;
    border-radius: 999px;
    border: 2px solid #f3f5f7;
}
.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #aeb7c3;
}
.frontend-topbar-slot {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 0;
    line-height: 1.2;
}
.frontend-topbar-slot-right {
    justify-content: flex-end;
    text-align: right;
}
.frontend-topbar-links,
.frontend-main-links,
.frontend-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    align-items: center;
}
.frontend-topbar-link,
.frontend-main-link,
.frontend-footer-link {
    color: inherit;
    text-decoration: none;
}
.frontend-topbar-link:hover,
.frontend-main-link:hover,
.frontend-footer-link:hover {
    text-decoration: underline;
}
.frontend-topbar-blocks,
.frontend-main-blocks,
.frontend-footer-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}
.frontend-topbar-block a,
.frontend-main-block a,
.frontend-footer-block a {
    color: inherit;
}
.frontend-main-header-slot {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    margin-right: .25rem;
    font-size: .9rem;
}
.frontend-main-header-slot .frontend-main-blocks,
.frontend-main-header-slot .frontend-main-links {
    justify-content: flex-start;
}
.frontend-main-nav {
    position: relative;
    width: 100%;
}
.frontend-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: start;
    justify-content: flex-end;
    gap: 0;
    flex-wrap: wrap;
}
.frontend-nav-item {
    position: relative;
}
.frontend-nav-item:not(:last-of-type)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 35%;
    background: rgba(255, 255, 255, .55);
    transform: translateY(-50%);
}
.frontend-nav-item-custom {
    display: flex;
    align-items: center;
}
.frontend-nav-item-custom .frontend-main-links,
.frontend-nav-item-custom .frontend-main-blocks {
    gap: .35rem;
}
.frontend-nav-item-custom a {
    text-decoration: none;
}
.frontend-nav-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem .85rem;
    border-radius: .65rem;
    text-decoration: none;
    color: var(--g-white);
    font-weight: 400;
    font-size: 1rem;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
    text-transform: uppercase;
}
.frontend-nav-link:hover,
.frontend-nav-link:focus {
    color: var(--g-druga);
}
.frontend-nav-item.has-submenu > .frontend-nav-link::after,
.frontend-nav-item.has-mega > .frontend-nav-link::after {
    content: '▾';
    font-size: .7rem;
    opacity: .7;
}
.frontend-submenu{
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid rgba(13, 110, 253, 0.08);
    border-radius: .9rem;
    box-shadow: 0 18px 32px rgba(18, 38, 63, 0.16);
    padding: .6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 1050;
}
.frontend-mega-menu {
    position: absolute;
    top: 100%;
    left: -50%;
    min-width: 220px;
    background: #fff;
    border: 1px solid rgba(13, 110, 253, 0.08);
    border-radius: .9rem;
    box-shadow: 0 18px 32px rgba(18, 38, 63, 0.16);
    padding: .6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 1050;
}
.frontend-nav-item.has-submenu::after,
.frontend-nav-item.has-mega::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
    background: transparent;
}
.frontend-submenu-link {
    display: block;
    padding: .5rem .7rem;
    border-radius: .6rem;
    text-decoration: none;
    color: #212529;
    font-weight: 600;
    font-size: .88rem;
}
.frontend-submenu-link:hover,
.frontend-submenu-link:focus {
    background: #f3f6fb;
    color:  var(--g-druga);
}
.frontend-mega-menu {
    min-width: min(860px, 92vw);
    padding: 1rem;
}
.frontend-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 1rem;
}
.frontend-mega-col {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.frontend-mega-title {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6c757d;
    font-weight: 700;
    margin-bottom: .25rem;
}
.frontend-mega-link {
    text-decoration: none;
    color: #212529;
    font-weight: 600;
    font-size: .9rem;
}
.frontend-mega-link:hover,
.frontend-mega-link:focus {
   color:  var(--g-druga);
}
.frontend-mega-cta {
    background: #f8fbff;
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: .9rem;
    padding: .9rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.frontend-mega-text {
    font-size: .86rem;
    color: #6c757d;
    margin: 0;
}
.site-footer .frontend-footer-blocks,
.site-footer .frontend-footer-links {
    justify-content: flex-start;
}
.site-footer .text-md-end .frontend-footer-blocks,
.site-footer .text-md-end .frontend-footer-links {
    justify-content: flex-end;
}
.cms-content {
    line-height: 1.7;
}
.cms-content img {
    max-width: 100%;
    height: auto;
}
.cms-content table {
    max-width: 100%;
}
@media (max-width: 1199.98px) {
    .frontend-main-header-slot {
        width: 100%;
        justify-content: flex-start;
        order: 3;
        margin-right: 0;
    }
    .frontend-main-header-slot .frontend-main-blocks,
    .frontend-main-header-slot .frontend-main-links {
        justify-content: flex-start;
    }
    .frontend-nav-list {
        justify-content: flex-start;
    }
}
@media (min-width: 992px) {
    .frontend-nav-item:hover > .frontend-submenu,
    .frontend-nav-item:hover > .frontend-mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}
@media (max-width: 991px) {
    .frontend-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: .25rem;
    }
    .frontend-nav-item {
        width: 100%;
    }
    .frontend-nav-item::after {
        display: none;
    }
    .frontend-submenu,
    .frontend-mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border-radius: .75rem;
        margin-top: .35rem;
        display: none;
    }
    .frontend-nav-item.is-open > .frontend-submenu,
    .frontend-nav-item.is-open > .frontend-mega-menu {
        display: block;
    }
    .frontend-mega-grid {
        grid-template-columns: 1fr 1fr;
    }
    .frontend-mega-cta {
        grid-column: 1 / -1;
    }
}
@media (max-width: 767px) {
    .frontend-topbar {
        min-height: auto;
        padding: .3rem 0;
    }
    .frontend-topbar-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .frontend-topbar-slot-search {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }
    .frontend-topbar-slot-right {
        justify-content: flex-start;
        text-align: left;
    }
    .frontend-topbar-feature-list {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
@media (max-width: 1199.98px) {
    .searchtop-right-panel.searchtop-right-panel--guest {
        display: none !important;
    }
    .header-user-box .dropdown-menu-end.frontend-settings-dropdown,
    .header-user-box .dropdown-menu-end.frontend-settings-dropdown[data-bs-popper] {
        left: 0;
        right: auto;
        min-width: 12rem;
        max-width: min(92vw, 18rem);
    }
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    padding-top: 5px;
    color: #6c757d;
    cursor: pointer;
    float: right;
    font-weight: bold;
    height: 26px;
    margin-right: 30px;
    padding-right: 0px;
}
.goles-lazy-media {
    --media-ratio: 75%;
    position: relative;
    display: block;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
}
.goles-lazy-media::before {
    content: "";
    display: block;
    padding-top: var(--media-ratio);
}
.goles-lazy-media__placeholder,
.goles-lazy-media__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.goles-lazy-media__placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.08)),
        #efefef;
    z-index: 1;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.goles-lazy-media__shimmer {
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.45) 50%,
        rgba(255,255,255,0) 100%
    );
    animation: golesLazyShimmer 1.6s infinite;
}
.goles-lazy-media__text {
    position: relative;
    z-index: 2;
    font-size: 0.875rem;
    color: #666;
    background: rgba(255,255,255,0.78);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    backdrop-filter: blur(2px);
}
.goles-lazy-media__img {
    object-fit: contain;
    opacity: 1;
    transform: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}
html.has-goles-lazy-js .goles-lazy-media__placeholder {
    display: flex;
}
html.has-goles-lazy-js .goles-lazy-media__img {
    opacity: 0;
    transform: scale(1.02);
}
.goles-lazy-media.is-loaded .goles-lazy-media__img {
    opacity: 1;
    transform: scale(1);
}
.goles-lazy-media.is-loaded .goles-lazy-media__placeholder {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
@keyframes golesLazyShimmer {
    100% {
        transform: translateX(100%);
    }
}
.seo-content-block {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.seo-content-block :last-child {
    margin-bottom: 0;
}
.seo-content-block--auto {
    color: var(--bs-secondary-color, #6c757d);
}
.seo-content-block--auto p {
    margin-bottom: .75rem;
}
.seo-faq-block {
    margin-top: 2rem;
}
.contact-page-intro {
    color: #334155;
    margin: 0;
}
.contact-page-intro p:last-child {
    margin-bottom: 0;
}
.contact-page-grid {
    align-items: flex-start;
}
.contact-info-stack {
    display: grid;
    gap: 1rem;
}
.contact-info-card {
    border: 0;
}
.contact-info-card__inner {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.contact-info-card__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(215, 25, 32, 0.1);
    color: var(--goles-primary, #d71920);
    margin-bottom: .25rem;
}
.contact-info-card__icon svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: currentColor;
}
.contact-info-card__title {
    margin-bottom: .1rem;
}
.contact-info-card__text {
    margin: 0;
    color: #475569;
    font-size: .92rem;
    line-height: 1.45;
}
.contact-info-card__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: .35rem;
}
.contact-info-card__link {
    color: inherit;
    text-decoration: none;
}
.contact-info-card__link:hover {
    color: var(--goles-primary, #d71920);
}
.contact-form-card .form-check-label {
    color: #475569;
}
.contact-form-note {
    color: #64748b;
}
.about-page {
    display: grid;
    gap: 1rem;
}
.about-hero {
    border: 0;
}
.about-hero__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}
.about-hero .about-split {
    align-items: stretch;
}
.about-hero__top {
    flex: 0 0 auto;
}
.about-hero__middle {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-hero__bottom {
    flex: 0 0 auto;
    margin-top: 1rem;
}
.about-hero__bottom-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
.about-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .35rem .72rem;
    border-radius: 999px;
    background: rgba(215, 25, 32, 0.12);
    color: var(--goles-primary, #d71920);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: .8rem;
}
.about-hero__title {
    margin: 0 0 .8rem;
    color: #0f172a;
    font-size: clamp(1.6rem, 2.1vw, 2.2rem);
    line-height: 1.15;
}
.about-hero__lead {
    margin: 0;
    color: #334155;
    font-size: .99rem;
    line-height: 1.62;
}
.about-hero__lead--cms {
    color: #475569;
    font-size: .94rem;
}
.about-hero__media {
    height: 100%;
}
.about-hero__image-wrap {
    --media-ratio: 58%;
    border-radius: 16px;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.08);
}
.about-hero__image {
    object-fit: cover;
}
.about-stats-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-stat-card {
    border: 0;
}
.about-stat-card__value {
    color: #0f172a;
    font-weight: 800;
    font-size: clamp(1.15rem, 1.5vw, 1.48rem);
    line-height: 1.2;
    margin-bottom: .35rem;
}
.about-stat-card__label {
    color: #475569;
    font-size: .91rem;
    line-height: 1.45;
}
.about-section {
    border: 0;
}
.about-section--split .row {
    align-items: center;
}
.about-section__eyebrow {
    display: block;
    color: var(--goles-primary, #d71920);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: .78rem;
    margin-bottom: .45rem;
}
.about-section__title {
    margin: 0 0 .85rem;
    color: #0f172a;
    font-size: clamp(1.25rem, 1.65vw, 1.5rem);
    line-height: 1.25;
}
.about-section__text {
    margin: 0 0 .8rem;
    color: #334155;
    font-size: .96rem;
    line-height: 1.72;
}
.about-section__media {
    height: 100%;
}
.about-section-gallery-track {
    --media-ratio: 58%;
}
.about-slider-section {
    border: 0;
}
.about-split {
    align-items: center;
}
.about-gallery-carousel {
    position: relative;
}
.about-gallery-item {
    position: relative;
}
.about-gallery-track {
    --media-ratio: 46%;
    border-radius: 14px;
    background: #f8fafc;
}
.about-gallery-image {
    object-fit: cover;
}
.about-gallery-carousel .carousel-control-prev,
.about-gallery-carousel .carousel-control-next {
    width: 3.2rem;
    opacity: 1;
}
.about-gallery-carousel .carousel-control-prev-icon,
.about-gallery-carousel .carousel-control-next-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.55);
    background-size: 52% 52%;
}
.about-quote {
    border: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}
.about-quote__text {
    color: #0f172a;
    font-size: clamp(1.05rem, 1.45vw, 1.3rem);
    line-height: 1.55;
    font-weight: 600;
    border-left: 4px solid var(--goles-primary, #d71920);
    padding-left: .95rem;
}
@media (max-width: 1199.98px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 991.98px) {
    .about-hero__image-wrap {
        --media-ratio: 62%;
    }
    .about-gallery-track {
        --media-ratio: 56%;
    }
}
/* Product code search v2 */
.js-product-code-search-wrap {
    z-index: 1060;
}
.product-code-search-panel {
    position: fixed;
    left: 50%;
    top: var(--product-code-search-top, 112px);
    transform: translateX(-50%);
    width: 83.333vw;
    max-width: 1360px;
    max-height: min(90vh, var(--product-code-search-max-height, 720px));
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .12);
    border-radius: 1rem;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
    padding: 1rem;
    z-index: 1060;
}
.product-code-search-panel__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 1rem;
    align-items: start;
}
.product-code-search-panel.is-popular .product-code-search-panel__inner {
    grid-template-columns: minmax(0, 1fr);
}
.product-code-search-panel__main {
    min-width: 0;
}
.product-code-search-panel__status {
    font-weight: 700;
    color: #111827;
    margin-bottom: .75rem;
}
.product-code-search-panel.is-popular .product-code-search-panel__status {
    text-align: center;
}
.product-code-search-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
}
.product-code-search-panel.is-popular .product-code-search-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.product-code-search-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(17, 24, 39, .10);
    border-radius: .9rem;
    background: #fff;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.product-code-search-card:hover,
.product-code-search-card:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .12);
    border-color: rgba(220, 53, 69, .28);
    color: inherit;
    text-decoration: none;
}
.product-code-search-card__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 220px;
    max-height: 250px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
} 
.product-code-search-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .35rem;
}
.product-code-search-card__placeholder {
    color: #6b7280;
    font-weight: 700;
    font-size: .9rem;
}
.product-code-search-card__body {
    padding: .75rem .8rem .85rem;
}
.product-code-search-card__code {
    color: #dc3545;
    font-weight: 800;
    font-size: .95rem;
    line-height: 1.25;
    word-break: break-word;
}
.product-code-search-card__title {
    color: #111827;
    font-weight: 600;
    font-size: .92rem;
    line-height: 1.35;
    margin-top: .25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-code-search-panel__filters {
    position: sticky;
    top: 0;
    border-left: 1px solid rgba(17, 24, 39, .08);
    padding-left: 1rem;
    max-height: calc(min(90vh, var(--product-code-search-max-height, 720px)) - 2rem);
    overflow-y: auto;
}
.product-code-search-panel.is-popular .product-code-search-panel__filters {
    display: none;
}
.product-code-search-filter-title {
    font-weight: 800;
    color: #111827;
    margin-bottom: .65rem;
}
.product-code-search-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    width: 100%;
    border: 0;
    background: transparent;
    border-radius: .65rem;
    color: #374151;
    padding: .45rem .55rem;
    text-align: left;
    font-size: .9rem;
}
.product-code-search-category:hover,
.product-code-search-category.is-active {
    background: #fff1f2;
    color: #b02a37;
}
.product-code-search-category__count {
    color: #6b7280;
    font-size: .78rem;
    white-space: nowrap;
}
.product-code-search-empty {
    border: 1px dashed rgba(17, 24, 39, .15);
    border-radius: .85rem;
    color: #6b7280;
    padding: 8rem 0;
    text-align: center;
}
.product-code-search-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: max(260px, calc(var(--product-code-search-max-height, 720px) - 6rem));
    width: 100%;
}
.product-code-search-spinner.d-none {
    display: none !important;
}
.product-code-search-spinner__circle {
    width: 44px;
    height: 44px;
    border: 4px solid #e5e7eb;
    border-top-color: #dc3545;
    border-radius: 50%;
    animation: product-code-search-spin .75s linear infinite;
}
@keyframes product-code-search-spin {
    to {
        transform: rotate(360deg);
    }
}
.product-code-search-load-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding-top: 1rem;
}
.product-code-search-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    color: #6b7280;
    font-size: .88rem;
    font-weight: 600;
}
.product-code-search-progress__bar {
    width: 200px;
    height: 6px;
    border: 1px solid #9ca3af;
    background: transparent;
    border-radius: 999px;
    overflow: hidden;
}
.product-code-search-progress__indicator {
    display: block;
    width: 0;
    height: 100%;
    background: #9ca3af;
    border-radius: inherit;
    transition: width .2s ease;
}
.product-code-search-panel.is-loading .product-code-search-grid,
.product-code-search-panel.is-loading .product-code-search-load-wrap,
.product-code-search-panel.is-loading .product-code-search-categories {
    opacity: .55;
    pointer-events: none;
}
.product-code-search-panel.is-popular-loading .product-code-search-grid,
.product-code-search-panel.is-popular-loading .product-code-search-empty,
.product-code-search-panel.is-popular-loading .product-code-search-load-wrap {
    display: none !important;
}
@media (max-width: 1199px) {
    .product-code-search-panel {
        width: calc(100vw - 1.5rem);
    }
}
@media (max-width: 991px) {
    .product-code-search-panel__inner {
        grid-template-columns: 1fr;
    }
    .product-code-search-panel__filters {
        position: static;
        border-left: 0;
        border-top: 1px solid rgba(17, 24, 39, .08);
        padding-left: 0;
        padding-top: .85rem;
        max-height: none;
    }
    .product-code-search-grid,
    .product-code-search-panel.is-popular .product-code-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575px) {
    .product-code-search-panel {
        padding: .75rem;
    }
    .product-code-search-grid,
    .product-code-search-panel.is-popular .product-code-search-grid {
        grid-template-columns: 1fr;
    }
}
/* Dedicated Traži po šifri 2 results page */
.product-code-search-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .75rem;
}
.product-code-search-panel__header .product-code-search-panel__status {
    margin-bottom: 0;
}
.product-code-search-show-all {
    color: #dc3545;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    white-space: nowrap;
}
.product-code-search-show-all:hover,
.product-code-search-show-all:focus {
    color: #b02a37;
    text-decoration: underline;
}
.product-code-search-panel.is-popular .product-code-search-panel__header {
    justify-content: center;
}
.search-results-page-card {
    overflow: visible;
}
.search-results-sort-form {
    flex-wrap: nowrap;
    white-space: nowrap;
}
.search-results-sort-form label {
    flex: 0 0 auto;
    white-space: nowrap;
}
.search-results-sort-form .form-select {
    min-width: 160px;
    flex: 0 0 auto;
}
.search-results-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.search-results-category-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border: 1px solid rgba(17, 24, 39, .12);
    border-radius: 999px;
    background: #fff;
    color: #374151;
    padding: .45rem .8rem;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
}
.search-results-category-link span {
    color: #6b7280;
    font-weight: 600;
}
.search-results-category-link:hover,
.search-results-category-link:focus,
.search-results-category-link.is-active {
    background: #fff1f2;
    border-color: rgba(220, 53, 69, .28);
    color: #b02a37;
    text-decoration: none;
}
.search-results-product-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.search-results-product-row {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(17, 24, 39, .10);
    border-radius: .95rem;
    background: #fff;
    color: inherit;
    padding: .75rem;
    text-decoration: none;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.search-results-product-row:hover,
.search-results-product-row:focus {
    border-color: rgba(220, 53, 69, .28);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .10);
    color: inherit;
    text-decoration: none;
    transform: translateY(-1px);
}
.search-results-product-row__image-wrap {
    width: 190px;
    aspect-ratio: 1 / 1;
    border-radius: .75rem;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.search-results-product-row__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .35rem;
}
.search-results-product-row__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .22rem;
}
.search-results-product-row__code {
    color: #6b7280;
    font-weight: 700;
    font-size: .95rem;
    word-break: break-word;
}
.search-results-product-row__title {
    color: #111827;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.35;
}
.search-results-product-row__manufacturer-logo-wrap {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, .12);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: .15rem;
}
.search-results-product-row__manufacturer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .22rem;
}
.search-results-product-row__category {
    color: #6b7280;
    font-size: .9rem;
}
.search-results-product-row__delivery {
    color: #dc3545;
    font-size: .9rem;
    font-weight: 700;
}
.search-results-page-size__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    border: 1px solid rgba(17, 24, 39, .12);
    border-radius: 999px;
    color: #374151;
    padding: .35rem .7rem;
    margin: 0 .15rem;
    font-weight: 700;
    text-decoration: none;
}
.search-results-page-size__link:hover,
.search-results-page-size__link:focus,
.search-results-page-size__link.is-active {
    background: #fff1f2;
    border-color: rgba(220, 53, 69, .28);
    color: #b02a37;
    text-decoration: none;
}
.search-results-page-size__select {
    width: auto;
    min-width: 80px;
}
.search-results-custom-select__native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    overflow: hidden !important;
}
.search-results-custom-select {
    position: relative;
    min-width: 180px;
    flex: 0 0 auto;
}
.search-results-custom-select__button {
    width: 100%;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: .7rem;
    border: 1px solid rgba(17, 24, 39, .16);
    border-radius: .65rem;
    background: #fff;
    color: #374151;
    padding: .45rem .75rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
    cursor: pointer;
    transition: border-color .16s ease, box-shadow .16s ease;
}
.search-results-custom-select__button:hover,
.search-results-custom-select__button:focus,
.search-results-custom-select.is-open .search-results-custom-select__button {
    border-color: rgba(220, 53, 69, .35);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .10);
    outline: none;
}
.search-results-custom-select__button-icon {
    width: .55rem;
    height: .55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: .72;
    flex: 0 0 auto;
    transition: transform .16s ease;
}
.search-results-custom-select.is-open .search-results-custom-select__button-icon {
    transform: rotate(225deg) translate(-1px, -1px);
}
.search-results-custom-select__menu {
    position: absolute;
    top: calc(100% + .35rem);
    right: 0;
    z-index: 99999;
    min-width: 210px;
    border: 1px solid rgba(17, 24, 39, .12);
    border-radius: .65rem;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .18);
    overflow: hidden;
    display: none;
}
.search-results-page-size .search-results-custom-select {
    min-width: 80px;
}
.search-results-page-size .search-results-custom-select__button {
    min-width: 80px;
}
.search-results-page-size .search-results-custom-select__menu {
    top: auto;
    bottom: calc(100% + .35rem);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    min-width: 80px;
    z-index: 99999;
}
.search-results-custom-select.is-open {
    z-index: 99999;
}
.search-results-page-size,
.search-results-pagination,
.search-results-page-card,
.search-results-page-card .card-body {
    overflow: visible;
}
.search-results-custom-select.is-open .search-results-custom-select__menu {
    display: block;
}
.search-results-custom-select__subheader {
    padding: .75rem 1rem;
    color: #374151;
    font-size: .88rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid rgba(17, 24, 39, .08);
}
.search-results-custom-select__option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .8rem;
    border: 0;
    background: #fff;
    color: #374151;
    padding: .72rem 1rem;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
}
.search-results-custom-select__option:hover,
.search-results-custom-select__option:focus {
    background: #f9fafb;
    outline: none;
}
.search-results-custom-select__option-radio {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid #9ca3af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.search-results-custom-select__option.is-selected .search-results-custom-select__option-radio {
    border-color: #dc3545;
}
.search-results-custom-select__option.is-selected .search-results-custom-select__option-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #dc3545;
}
.search-results-custom-select__option.is-selected {
    color: #111827;
}
.search-results-pagination__pages {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    flex-wrap: wrap;
}
.search-results-pagination__page,
.search-results-pagination__ellipsis {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1;
}
.search-results-pagination__page {
    color: #374151;
    text-decoration: none;
    border: 1px solid rgba(17, 24, 39, .12);
    background: #fff;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.search-results-pagination__page:hover,
.search-results-pagination__page:focus {
    color: #111827;
    border-color: rgba(17, 24, 39, .24);
    background: #f9fafb;
}
.search-results-pagination__page.is-active {
    color: #fff;
    border-color: #dc3545;
    background: #dc3545;
}
.search-results-pagination__ellipsis {
    color: #6b7280;
}
@media (max-width: 575px) {
    .product-code-search-panel__header,
    .search-results-page-header {
        flex-direction: column;
        align-items: stretch !important;
    }
    .search-results-pagination {
        flex-direction: row !important;
        flex-wrap: nowrap;
        align-items: center !important;
        justify-content: space-between !important;
        gap: .5rem !important;
    }
    .search-results-pagination > div {
        flex: 0 0 auto;
    }
    .search-results-pagination__pages {
        flex: 1 1 auto;
        min-width: 0;
        flex-wrap: nowrap;
        overflow: hidden;
        gap: .2rem;
    }
    .search-results-pagination__page,
    .search-results-pagination__ellipsis {
        min-width: 28px;
        height: 30px;
        font-size: .86rem;
        border-radius: .4rem;
    }
    .search-results-sort-form label {
        display: none;
    }
    .search-results-pagination__button {
        min-width: 44px;
        width: 44px;
        height: 38px;
        padding-left: 0;
        padding-right: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        font-size: 1.15rem;
        line-height: 1;
    }
    .search-results-pagination__button-text {
        display: none;
    }
    .search-results-pagination__button-icon {
        display: inline-block;
    }
    .product-code-search-show-all {
        align-self: flex-start;
    }
    .search-results-product-row {
        grid-template-columns: 146px minmax(0, 1fr);
        gap: .75rem;
    }
    .search-results-product-row__image-wrap {
        width: 146px;
    }
}

/* Shop top search - product code / name */
.shop-code-search-wrap {
    flex: 0 1 480px;
    min-width: 450px;
    max-width: 720px;
}

.shop-code-search-box {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.shop-code-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    color: #6b7280;
}

.shop-code-search-input.header-search-ui-control {
    flex: 1 1 auto;
    min-width: 0;
    height: 42px;
    min-height: 42px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 .75rem 0 0;
    font-size: .95rem;
    color: #111827;
}

.shop-code-search-input.header-search-ui-control:hover,
.shop-code-search-input.header-search-ui-control:focus {
    border: 0;
    box-shadow: none !important;
    background: transparent;
    outline: 0;
}

.shop-code-search-input::placeholder {
    color: #6b7280;
}

.shop-code-search-submit {
    align-self: stretch;
    flex: 0 0 auto;
    min-width: 112px;
    border: 0;
    border-radius: 0 14px 14px 0;
    background: #b9000b;
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    padding: 0 1.5rem;
    transition: background-color .18s ease, color .18s ease;
}

.shop-code-search-submit:hover,
.shop-code-search-submit:focus {
    background: #9f0009;
    color: #fff;
    outline: 0;
}

.shop-code-search-wrap .product-code-search-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .shop-code-search-wrap {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .shop-code-search-box {
        min-height: 50px;
        border-radius: 25px;
    }

    .shop-code-search-input.header-search-ui-control {
        height: 50px;
        min-height: 50px;
        font-size: .9rem;
    }

    .shop-code-search-icon {
        flex-basis: 46px;
    }

    .shop-code-search-submit {
        min-width: 92px;
        padding: 0 1rem;
        border-radius: 0 12px 12px 0;
    }
}

@media (max-width: 575px) {
    .shop-code-search-submit {
        min-width: 82px;
        padding: 0 .85rem;
        font-size: .82rem;
    }
}

/* Add to cart modal */
.add-to-cart-modal__content {
    border: 0;
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
    overflow: hidden;
}

.add-to-cart-modal__body {
    position: relative;
    padding: 2.25rem 2rem 2rem;
    text-align: center;
    background: #fff;
}

.add-to-cart-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.add-to-cart-modal__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eaf7ef;
    color: #198754;
}

.add-to-cart-modal__title {
    margin: 0 0 .6rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #151515;
}

.add-to-cart-modal__text {
    margin: 0 auto 1.5rem;
    max-width: 420px;
    color: #5f6368;
    font-size: .98rem;
}

.add-to-cart-modal__actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.add-to-cart-modal__actions .btn {
    min-width: 160px;
    border-radius: 999px;
    font-weight: 700;
    padding: .75rem 1.25rem;
}

@media (max-width: 575px) {
    .add-to-cart-modal .modal-dialog {
        margin: .75rem;
    }

    .add-to-cart-modal__body {
        padding: 2rem 1.25rem 1.5rem;
    }

    .add-to-cart-modal__actions {
        flex-direction: column;
    }

    .add-to-cart-modal__actions .btn {
        width: 100%;
    }
}
