.z-9999 {
    z-index: 9999;
}

/* ==========================================================================
   SLAZH corporate website
   ========================================================================== */
@font-face {
    font-family: "Noto Sans Arabic";
    src: url("./fonts/NotoSansArabic-Variable.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

.slz-corporate-public {
    --slz-navy-950: #070d25;
    --slz-navy-900: #0d1435;
    --slz-navy-800: #151c42;
    --slz-navy-700: #222952;
    --slz-yellow: #f2cb05;
    --slz-yellow-hover: #ffde34;

    /* Same hue as --slz-yellow, darkened to clear 4.5:1 on white and --slz-surface.
       Brand yellow is only legible on the navy backgrounds. */
    --slz-yellow-on-light: #806a00;
    --slz-ink: #171a27;
    --slz-muted: #656979;
    --slz-surface: #f4f5f8;
    --slz-border: #dfe2e9;
    --slz-white: #fff;

    /* Corner-radius rhythm, largest surface to smallest control. Overridden per
       installation from Admin > Corporate Site Content > Corner Radius. */
    --slz-radius-lg: 24px;
    --slz-radius-md: 16px;
    --slz-radius-sm: 12px;
    min-height: 100vh;
    background: var(--slz-white);
    color: var(--slz-ink);
    font-family: mulish, "Helvetica Neue", Arial, sans-serif;
}

html[dir="rtl"] .slz-corporate-public {
    font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

.slz-corporate-public a,
.slz-corporate-public button,
.slz-corporate-public input,
.slz-corporate-public select,
.slz-corporate-public textarea {
    font-family: inherit;
}

.slz-corporate-public .container {
    width: min(100% - 40px, 1240px);
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 0;
}

.slz-corporate-public .back-to-top {
    right: 24px;
    bottom: 24px;
    z-index: 40;
    border: 0;
    background: var(--slz-yellow);
    color: var(--slz-navy-950);
}

html[dir="rtl"] .slz-corporate-public .back-to-top {
    right: auto;
    left: 24px;
}

.slz-corporate-header {
    position: relative;
    z-index: 100;
    color: var(--slz-white);
    background: var(--slz-navy-900);
}

.slz-corporate-utility {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    background: var(--slz-navy-950);
    font-size: 12px;
    letter-spacing: .02em;
}

.slz-corporate-utility .container,
.slz-corporate-utility__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.slz-corporate-utility .container {
    min-height: 38px;
}

.slz-corporate-utility a {
    color: rgb(255 255 255 / 76%);
    transition: color .2s ease;
}

.slz-corporate-utility a:hover,
.slz-corporate-utility a:focus-visible {
    color: var(--slz-yellow);
}

.slz-corporate-utility i {
    margin-inline-end: 7px;
    color: var(--slz-yellow);
}

.slz-corporate-nav-shell {
    background: linear-gradient(90deg, var(--slz-navy-900), #292243);
    box-shadow: 0 12px 30px rgb(3 7 22 / 16%);
}

.slz-corporate-nav-shell > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 30px;
}

.slz-corporate-logo {
    display: inline-flex;
    align-items: center;
    width: 150px;
    min-width: 150px;
}

.slz-corporate-logo img {
    width: 100%;
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
}

html[dir="rtl"] .slz-corporate-logo img {
    object-position: right center;
}

.slz-corporate-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.35vw, 34px);
}

.slz-corporate-menu > a,
.slz-corporate-dropdown > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 84px;
    color: rgb(255 255 255 / 88%);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: color .2s ease;
}

.slz-corporate-menu > a::after,
.slz-corporate-dropdown > a::after {
    position: absolute;
    right: 50%;
    bottom: 0;
    left: 50%;
    height: 3px;
    background: var(--slz-yellow);
    content: "";
    transition: right .2s ease, left .2s ease;
}

.slz-corporate-menu > a:hover,
.slz-corporate-menu > a:focus-visible,
.slz-corporate-menu > a.active,
.slz-corporate-dropdown > a:hover,
.slz-corporate-dropdown > a:focus-visible,
.slz-corporate-dropdown > a.active {
    color: var(--slz-yellow);
}

.slz-corporate-menu > a:hover::after,
.slz-corporate-menu > a:focus-visible::after,
.slz-corporate-menu > a.active::after,
.slz-corporate-dropdown > a:hover::after,
.slz-corporate-dropdown > a:focus-visible::after,
.slz-corporate-dropdown > a.active::after {
    right: 0;
    left: 0;
}

.slz-corporate-dropdown {
    position: relative;
}

.slz-corporate-submenu {
    position: absolute;
    top: calc(100% - 8px);
    left: -20px;
    display: grid;
    width: max-content;
    min-width: 280px;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgb(255 255 255 / 10%);
    background: var(--slz-navy-800);
    box-shadow: 0 18px 42px rgb(2 7 25 / 28%);
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

html[dir="rtl"] .slz-corporate-submenu {
    right: -20px;
    left: auto;
}

/* Hover reveal is desktop-only; below 900px the panel is an accordion driven by
   .is-open, and a stray :focus-within from tapping the parent link would fight it. */
@media (min-width: 901px) {
    .slz-corporate-dropdown:hover .slz-corporate-submenu,
    .slz-corporate-dropdown:focus-within .slz-corporate-submenu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

.slz-corporate-submenu-toggle {
    display: none;
}

.slz-corporate-submenu a {
    padding: 12px 14px;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    color: rgb(255 255 255 / 82%);
    font-size: 14px;
    font-weight: 650;
}

.slz-corporate-submenu a:last-child {
    border-bottom: 0;
}

.slz-corporate-submenu a:hover,
.slz-corporate-submenu a:focus-visible {
    background: rgb(255 255 255 / 6%);
    color: var(--slz-yellow);
}

.slz-corporate-menu .slz-corporate-contact-link {
    color: var(--slz-yellow);
}

.slz-corporate-menu .slz-corporate-language {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgb(255 255 255 / 23%);
    border-radius: var(--slz-radius-sm);
}

.slz-corporate-menu .slz-corporate-language::after {
    display: none;
}

.slz-corporate-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgb(255 255 255 / 25%);
    border-radius: var(--slz-radius-sm);
    background: transparent;
}

.slz-corporate-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--slz-white);
    transition: transform .2s ease, opacity .2s ease;
}

.slz-corporate-site {
    overflow: clip;
    background: var(--slz-white);
}

.slz-corp-hero {
    --active-hero-image: var(--hero-image);
    position: relative;
    display: grid;
    min-height: 680px;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgb(7 13 37 / 94%) 0%, rgb(7 13 37 / 75%) 46%, rgb(7 13 37 / 16%) 78%),
        var(--active-hero-image);
    background-position: center;
    background-size: cover;
    color: var(--slz-white);
}

html[dir="rtl"] .slz-corp-hero {
    background-image:
        linear-gradient(270deg, rgb(7 13 37 / 94%) 0%, rgb(7 13 37 / 75%) 46%, rgb(7 13 37 / 16%) 78%),
        var(--active-hero-image);
}

.slz-corp-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--slz-yellow) 0 31%, transparent 31%);
    content: "";
}

html[dir="rtl"] .slz-corp-hero::after {
    background: linear-gradient(270deg, var(--slz-yellow) 0 31%, transparent 31%);
}

.slz-corp-hero__content {
    position: relative;
    z-index: 1;
    width: min(720px, 70%);
    padding-block: 90px;
}

.slz-corp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--slz-navy-900);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.slz-corp-hero .slz-corp-kicker,
.slz-corp-page-hero .slz-corp-kicker,
.slz-corp-solution-hero .slz-corp-kicker,
.slz-corp-spmt-hero .slz-corp-kicker,
.slz-corp-contact-hero .slz-corp-kicker,
.slz-corp-section--dark .slz-corp-kicker {
    color: var(--slz-yellow);
}

.slz-corp-kicker::before {
    width: 38px;
    height: 2px;
    background: currentColor;
    content: "";
}

html[dir="rtl"] .slz-corp-kicker {
    letter-spacing: 0;
}

.slz-corp-hero h1,
.slz-corp-page-hero h1,
.slz-corp-solution-hero h1,
.slz-corp-spmt-hero h1,
.slz-corp-contact-hero h1 {
    margin: 0;
    color: inherit;
    font-family: var(--slz-display-font-family);
    font-size: clamp(44px, 5.2vw, 76px);
    font-weight: var(--slz-display-font-weight);
    letter-spacing: -.035em;
    line-height: .99;
}

html[dir="rtl"] .slz-corp-hero h1,
html[dir="rtl"] .slz-corp-page-hero h1,
html[dir="rtl"] .slz-corp-solution-hero h1,
html[dir="rtl"] .slz-corp-spmt-hero h1,
html[dir="rtl"] .slz-corp-contact-hero h1 {
    font-family: "Noto Sans Arabic", Tahoma, sans-serif;
    letter-spacing: 0;
    line-height: 1.24;
}

.slz-corp-hero__content > p,
.slz-corp-page-hero .container > p,
.slz-corp-solution-hero .container > p,
.slz-corp-spmt-hero .container > p,
.slz-corp-contact-hero .container > p {
    max-width: 720px;
    margin: 26px 0 0;
    color: rgb(255 255 255 / 78%);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.75;
}

.slz-corp-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
}

.slz-corp-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 2px solid var(--slz-yellow);
    border-radius: var(--slz-radius-sm);
    background: var(--slz-yellow);
    color: var(--slz-navy-950);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .035em;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.slz-corp-button:hover,
.slz-corp-button:focus-visible {
    border-color: var(--slz-yellow-hover);
    background: var(--slz-yellow-hover);
    color: var(--slz-navy-950);
    transform: translateY(-2px);
}

.slz-corp-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    font-size: 14px;
    font-weight: 800;
}

.slz-corp-text-link:hover,
.slz-corp-text-link:focus-visible {
    color: var(--slz-yellow-on-light);
}

.slz-corp-hero .slz-corp-text-link:hover,
.slz-corp-hero .slz-corp-text-link:focus-visible,
.slz-corp-section--dark .slz-corp-text-link:hover,
.slz-corp-section--dark .slz-corp-text-link:focus-visible {
    color: var(--slz-yellow);
}

.slz-corp-section {
    padding-block: clamp(74px, 8vw, 118px);
}

.slz-corp-section--dark {
    background: var(--slz-navy-900);
    color: var(--slz-white);
}

.slz-corp-section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.slz-corp-section-heading h2,
.slz-corp-copy h2,
.slz-corp-cta h2,
.slz-corp-form-card h2 {
    margin: 0;
    color: inherit;
    font-family: var(--slz-display-font-family);
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: var(--slz-display-font-weight);
    letter-spacing: -.03em;
    line-height: 1.08;
}

html[dir="rtl"] .slz-corp-section-heading h2,
html[dir="rtl"] .slz-corp-copy h2,
html[dir="rtl"] .slz-corp-cta h2,
html[dir="rtl"] .slz-corp-form-card h2 {
    font-family: "Noto Sans Arabic", Tahoma, sans-serif;
    letter-spacing: 0;
    line-height: 1.3;
}

.slz-corp-section-heading > p,
.slz-corp-copy > p {
    margin: 24px 0 0;
    color: var(--slz-muted);
    font-size: 17px;
    line-height: 1.85;
}

.slz-corp-section--dark .slz-corp-section-heading > p,
.slz-corp-section--dark .slz-corp-copy > p {
    color: rgb(255 255 255 / 70%);
}

.slz-corp-split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.slz-corp-editorial-image {
    position: relative;
    min-height: 450px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--slz-radius-lg);
}

.slz-corp-editorial-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slz-corp-editorial-image--portrait {
    min-height: 560px;
}

/* A transparent cutout has no background of its own, so cover-cropping it like a
   photograph clipped the machine. Contained on a tinted panel with breathing room. */
.slz-corp-editorial-image--cutout {
    min-height: 470px;
    background: linear-gradient(155deg, #f7f8fb 0%, #e9ecf3 100%);
}

.slz-corp-editorial-image--cutout img {
    padding: clamp(22px, 3.4vw, 46px);
    object-fit: contain;
}

.slz-corp-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.slz-corp-service-card {
    position: relative;
    display: flex;
    min-height: 340px;
    flex-direction: column;
    padding: 36px 30px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: var(--slz-radius-md);
    color: var(--slz-white);
    transition: background .22s ease, transform .22s ease;
}

.slz-corp-service-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--slz-yellow);
    content: "";
    transition: width .25s ease;
}

html[dir="rtl"] .slz-corp-service-card::after {
    right: auto;
    left: 0;
}

.slz-corp-service-card:hover,
.slz-corp-service-card:focus-visible {
    background: rgb(255 255 255 / 7%);
    color: var(--slz-white);
    transform: translateY(-4px);
}

.slz-corp-service-card:hover::after,
.slz-corp-service-card:focus-visible::after {
    width: 100%;
}

.slz-corp-service-card > span {
    color: var(--slz-yellow);
    font-size: 13px;
    font-weight: 800;
}

.slz-corp-service-card h3 {
    margin: 56px 0 16px;
    color: inherit;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.28;
}

.slz-corp-service-card p {
    margin: 0 0 28px;
    color: rgb(255 255 255 / 65%);
    font-size: 14px;
    line-height: 1.75;
}

.slz-corp-service-card strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--slz-yellow);
    font-size: 13px;
}

.slz-corp-service-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.slz-corp-service-grid--compact .slz-corp-service-card {
    min-height: 250px;
}

.slz-corp-industry-grid,
.slz-corp-process-grid,
.slz-corp-solution-grid,
.slz-corp-spmt-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.slz-corp-industry-grid article,
.slz-corp-process-grid article,
.slz-corp-solution-grid article,
.slz-corp-solution-grid a,
.slz-corp-spmt-grid article {
    display: block;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--slz-border);
    border-radius: var(--slz-radius-md);
    background: var(--slz-white);
    color: inherit;
}

.slz-corp-industry-grid article > span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 50%;
    background: var(--slz-yellow);
    color: var(--slz-navy-950);
    font-size: 12px;
    font-weight: 900;
}

.slz-corp-industry-grid h3,
.slz-corp-process-grid h3,
.slz-corp-solution-grid h3,
.slz-corp-spmt-grid h3 {
    margin: 0 0 13px;
    color: var(--slz-navy-900);
    font-size: 20px;
    font-weight: 800;
}

.slz-corp-industry-grid p,
.slz-corp-process-grid p,
.slz-corp-solution-grid p,
.slz-corp-spmt-grid p {
    margin: 0;
    color: var(--slz-muted);
    font-size: 14px;
    line-height: 1.75;
}

.slz-corp-process {
    background: var(--slz-surface);
}

.slz-corp-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    counter-reset: process;
}

.slz-corp-process-grid article {
    position: relative;
    padding: 30px 28px;
    box-shadow: 0 1px 2px rgb(7 13 37 / 4%);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.slz-corp-process-grid article:hover {
    border-color: #c9cedd;
    box-shadow: 0 16px 36px rgb(7 13 37 / 8%);
    transform: translateY(-3px);
}

/* The step number carries the sequence on its own, so the icon tile above it was
   saying the same thing twice. Photographs uploaded per step still render. */
.slz-corp-process-grid article > .slz-corp-card-media--icon {
    display: none;
}

/* The numeral sits on a rule that spans the card, with a short accent segment
   riding it: structure and brand colour without putting the number in a box. */
.slz-corp-process-grid article > span {
    display: block;
    position: relative;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--slz-border);
    margin-bottom: 22px;
    color: var(--slz-navy-900);
    font-family: var(--slz-display-font-family);
    font-size: 34px;
    font-variant-numeric: tabular-nums;
    font-weight: var(--slz-display-font-weight);
    letter-spacing: -.02em;
    line-height: 1;
}

.slz-corp-process-grid article > span::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 42px;
    height: 3px;
    background: var(--slz-yellow);
    content: "";
}

html[dir="rtl"] .slz-corp-process-grid article > span::after {
    right: 0;
    left: auto;
}

.slz-corp-process-grid h3 {
    font-size: 18px;
    letter-spacing: -.01em;
    line-height: 1.35;
    text-wrap: balance;
}

.slz-corp-process-grid p {
    font-size: 14.5px;
    line-height: 1.75;
}

.slz-corp-page-hero,
.slz-corp-solution-hero,
.slz-corp-spmt-hero,
.slz-corp-contact-hero {
    --active-page-image: var(--page-image);
    position: relative;
    display: grid;
    min-height: 480px;
    align-items: end;
    padding-block: 90px;
    background:
        linear-gradient(90deg, rgb(7 13 37 / 94%), rgb(7 13 37 / 57%)),
        var(--active-page-image, none);
    background-position: center;
    background-size: cover;
    color: var(--slz-white);
}

html[dir="rtl"] .slz-corp-page-hero,
html[dir="rtl"] .slz-corp-solution-hero,
html[dir="rtl"] .slz-corp-spmt-hero,
html[dir="rtl"] .slz-corp-contact-hero {
    background:
        linear-gradient(270deg, rgb(7 13 37 / 94%), rgb(7 13 37 / 57%)),
        var(--active-page-image, none);
}

.slz-corp-page-hero .container,
.slz-corp-solution-hero .container,
.slz-corp-spmt-hero .container,
.slz-corp-contact-hero .container {
    position: relative;
    z-index: 1;
}

.slz-corp-page-hero--services {
    --page-image: var(--services-image);
}

.slz-corp-solution-hero {
    --page-image: var(--solution-image);
}

/* Height only: a `background` shorthand here would replace the gradient + photo
   stack that the shared rule above builds from --active-page-image. */
.slz-corp-spmt-hero {
    min-height: 520px;
}

.slz-corp-spmt-mark {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 9px 12px;
    border: 1px solid rgb(255 255 255 / 25%);
    border-radius: var(--slz-radius-sm);
    color: var(--slz-yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.slz-corp-contact-hero {
    min-height: 400px;
}

.slz-corp-service-list {
    border-top: 1px solid var(--slz-border);
}

.slz-corp-service-list article {
    display: grid;
    grid-template-columns: 90px minmax(0, 1.25fr) auto;
    align-items: center;
    gap: clamp(24px, 4vw, 60px);
    padding-block: 44px;
    border-bottom: 1px solid var(--slz-border);
}

.slz-corp-service-list__number {
    color: var(--slz-navy-900);
    font-size: 18px;
    font-weight: 900;
}

.slz-corp-service-list h2 {
    margin: 0;
    color: var(--slz-navy-900);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 850;
    line-height: 1.2;
}

.slz-corp-service-list p {
    margin: 0;
    color: var(--slz-muted);
    font-size: 15px;
    line-height: 1.8;
}

.slz-corp-editorial-band {
    background: var(--slz-surface);
}

.slz-corp-editorial-band .container {
    display: grid;
    gap: 56px;
}

.slz-corp-editorial-band article {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    align-items: center;
    gap: clamp(36px, 7vw, 90px);
}

.slz-corp-editorial-band article:nth-child(even) figure {
    order: 2;
}

.slz-corp-editorial-band figure {
    height: 420px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--slz-radius-lg);
    background: var(--slz-white);
}

.slz-corp-editorial-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slz-corp-editorial-band article:nth-child(even) img {
    object-fit: contain;
}

.slz-corp-editorial-band h2 {
    margin: 0;
    color: var(--slz-navy-900);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 850;
    line-height: 1.16;
}

.slz-corp-editorial-band p {
    margin: 20px 0 0;
    color: var(--slz-muted);
    line-height: 1.8;
}

.slz-corp-solution-grid article,
.slz-corp-solution-grid a,
.slz-corp-spmt-grid article {
    border-top: 4px solid var(--slz-yellow);
}

.slz-corp-solution-grid a {
    position: relative;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.slz-corp-solution-grid a > span,
.slz-corp-spmt-grid article > span {
    display: inline-block;
    margin-bottom: 28px;
    color: var(--slz-navy-900);
    font-size: 12px;
    font-weight: 900;
}

.slz-corp-solution-grid a > i {
    display: inline-block;
    margin-top: 24px;
    color: var(--slz-navy-900);
}

.slz-corp-solution-grid a:hover,
.slz-corp-solution-grid a:focus-visible {
    border-color: #c8a800;
    box-shadow: 0 16px 36px rgb(7 13 37 / 10%);
    color: inherit;
    transform: translateY(-4px);
}

/* ==========================================================================
   SPMT page and solutions card refinements
   ========================================================================== */
.slz-corp-spmt-hero {
    min-height: 600px;
    overflow: hidden;
    isolation: isolate;
}

.slz-corp-spmt-hero::after {
    position: absolute;
    z-index: -1;
    right: -10%;
    bottom: -55%;
    width: 680px;
    height: 680px;
    border: 1px solid rgb(255 212 0 / 22%);
    border-radius: 50%;
    box-shadow:
        0 0 0 72px rgb(255 212 0 / 5%),
        0 0 0 144px rgb(255 212 0 / 3%);
    content: "";
}

html[dir="rtl"] .slz-corp-spmt-hero::after {
    right: auto;
    left: -10%;
}

.slz-corp-spmt-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(48px, 8vw, 120px);
}

.slz-corp-spmt-hero__content {
    max-width: 820px;
}

.slz-corp-spmt-hero__content > p {
    max-width: 720px;
    margin: 26px 0 0;
    color: rgb(255 255 255 / 78%);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.75;
}

.slz-corp-spmt-mark {
    display: grid;
    width: clamp(210px, 18vw, 270px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: var(--slz-radius-lg);
    background: rgb(7 13 37 / 48%);
    box-shadow: 0 28px 70px rgb(0 0 0 / 24%);
    color: var(--slz-yellow);
    direction: ltr;
    font-size: clamp(36px, 4vw, 58px);
    letter-spacing: 0;
    backdrop-filter: blur(10px);
}

.slz-corp-spmt-mark span {
    display: grid;
    aspect-ratio: 1;
    border-right: 1px solid rgb(255 255 255 / 16%);
    border-bottom: 1px solid rgb(255 255 255 / 16%);
    place-items: center;
}

.slz-corp-spmt-mark span:nth-child(even) {
    border-right: 0;
}

.slz-corp-spmt-mark span:nth-child(n + 3) {
    border-bottom: 0;
}

.slz-corp-spmt-features {
    background:
        linear-gradient(180deg, var(--slz-surface) 0%, var(--slz-white) 72%);
}

.slz-corp-spmt-features .slz-corp-section-heading {
    display: flex;
    max-width: none;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--slz-border);
}

.slz-corp-spmt-features__count {
    color: var(--slz-navy-900);
    font-family: var(--slz-display-font-family);
    font-size: clamp(42px, 5vw, 68px);
    font-variant-numeric: tabular-nums;
    font-weight: var(--slz-display-font-weight);
    letter-spacing: -.04em;
    line-height: .82;
}

.slz-corp-spmt-grid article {
    position: relative;
    min-height: 100%;
    padding: 28px;
    box-shadow: 0 8px 26px rgb(7 13 37 / 6%);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.slz-corp-spmt-grid article:hover {
    border-color: #c8a800;
    box-shadow: 0 22px 48px rgb(7 13 37 / 13%);
    transform: translateY(-6px);
}

.slz-corp-spmt-grid article > .slz-corp-card-media {
    margin: -28px -28px 0;
}

.slz-corp-spmt-grid article > span {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 25px 0 20px;
    color: var(--slz-navy-900);
    font-family: var(--slz-display-font-family);
    font-size: 38px;
    font-variant-numeric: tabular-nums;
    font-weight: var(--slz-display-font-weight);
    letter-spacing: -.03em;
    line-height: 1;
}

.slz-corp-spmt-grid article > span::after {
    width: 44px;
    height: 3px;
    background: var(--slz-yellow);
    content: "";
}

.slz-corp-spmt-grid h3 {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.3;
}

.slz-corp-spmt-grid p {
    font-size: 15px;
    line-height: 1.8;
}

.slz-corp-solution-grid a {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 36px;
    box-shadow: 0 8px 24px rgb(7 13 37 / 5%);
}

.slz-corp-solution-grid a > .slz-corp-card-media {
    margin: -36px -36px 30px;
}

.slz-corp-solution-grid a > span {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 26px;
    color: var(--slz-navy-900);
    font-family: var(--slz-display-font-family);
    font-size: clamp(38px, 3.3vw, 52px);
    font-variant-numeric: tabular-nums;
    font-weight: var(--slz-display-font-weight);
    letter-spacing: -.04em;
    line-height: 1;
}

.slz-corp-solution-grid a > span::after {
    width: 52px;
    height: 3px;
    background: var(--slz-yellow);
    content: "";
}

.slz-corp-solution-grid h3 {
    font-size: clamp(22px, 2vw, 27px);
}

.slz-corp-solution-grid p {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
}

.slz-corp-solution-grid a > i {
    display: grid;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    margin-top: auto;
    border: 1px solid rgb(7 13 37 / 14%);
    border-radius: 50%;
    background: var(--slz-yellow);
    box-shadow: 0 8px 20px rgb(7 13 37 / 10%);
    color: var(--slz-navy-950);
    font-size: 24px;
    place-items: center;
    transition: background .2s ease, transform .2s ease;
}

.slz-corp-solution-grid a:hover > i,
.slz-corp-solution-grid a:focus-visible > i {
    background: var(--slz-yellow-hover);
    transform: translateX(6px);
}

html[dir="rtl"] .slz-corp-solution-grid a:hover > i,
html[dir="rtl"] .slz-corp-solution-grid a:focus-visible > i {
    transform: translateX(-6px);
}

@media (max-width: 900px) {
    .slz-corp-spmt-hero {
        min-height: 540px;
    }

    .slz-corp-spmt-hero .container {
        grid-template-columns: minmax(0, 1fr) 180px;
        gap: 34px;
    }

    .slz-corp-spmt-mark {
        width: 180px;
        font-size: 34px;
    }
}

@media (max-width: 620px) {
    .slz-corp-spmt-hero .container {
        display: block;
    }

    .slz-corp-spmt-mark {
        width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 36px;
        border-radius: var(--slz-radius-md);
    }

    .slz-corp-spmt-mark span {
        border-right: 1px solid rgb(255 255 255 / 16%);
        border-bottom: 0;
    }

    .slz-corp-spmt-mark span:last-child {
        border-right: 0;
    }

    .slz-corp-spmt-features .slz-corp-section-heading {
        align-items: flex-start;
    }

    .slz-corp-spmt-grid article,
    .slz-corp-solution-grid a {
        padding: 26px;
    }

    .slz-corp-spmt-grid article > .slz-corp-card-media,
    .slz-corp-solution-grid a > .slz-corp-card-media {
        margin: -26px -26px 26px;
    }

    .slz-corp-spmt-grid article > .slz-corp-card-media {
        margin-bottom: 0;
    }

    .slz-corp-solution-grid a > i {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 22px;
    }
}

.slz-corp-cta {
    padding-block: clamp(64px, 7vw, 96px);
    background: var(--slz-yellow);
    color: var(--slz-navy-950);
}

.slz-corp-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.slz-corp-cta p {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgb(7 13 37 / 72%);
    font-size: 16px;
    line-height: 1.75;
}

.slz-corp-cta .slz-corp-button {
    min-width: 180px;
    border-color: var(--slz-navy-950);
    background: var(--slz-navy-950);
    color: var(--slz-white);
}

.slz-corp-contact-section > .container {
    display: grid;
    grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(34px, 6vw, 80px);
}

.slz-corp-contact-details {
    display: grid;
    position: sticky;
    top: 30px;
    gap: 1px;
    overflow: hidden;
    border-radius: var(--slz-radius-md);
    background: var(--slz-border);
}

.slz-corp-contact-details a,
.slz-corp-contact-details div {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: start;
    padding: 24px;
    background: var(--slz-surface);
    color: var(--slz-ink);
    font-style: normal;
    line-height: 1.7;
}

.slz-corp-contact-details i {
    color: var(--slz-navy-900);
}

.slz-corp-form-card {
    padding: clamp(30px, 5vw, 64px);
    border: 1px solid var(--slz-border);
    border-radius: var(--slz-radius-lg);
    background: var(--slz-white);
    color: var(--slz-ink);
    box-shadow: 0 22px 60px rgb(7 13 37 / 8%);
}

.slz-corporate-public .slz-corp-form-card > h2 {
    color: var(--slz-navy-900) !important;
}

.slz-corp-form-card > p {
    margin: 18px 0 36px;
    color: var(--slz-muted);
}

.slz-corp-form-card .alert strong,
.slz-corp-form-card .alert span {
    display: block;
}

.slz-corp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.slz-corp-form-grid label {
    display: grid;
    gap: 9px;
    margin: 0;
    color: var(--slz-navy-900);
    font-size: 13px;
    font-weight: 800;
}

.slz-corporate-public .slz-corp-form-card .slz-corp-form-grid > label,
.slz-corporate-public .slz-corp-form-card .slz-corp-form-grid label > span {
    color: var(--slz-navy-900) !important;
}

.slz-corporate-public .slz-corp-form-grid input::placeholder,
.slz-corporate-public .slz-corp-form-grid textarea::placeholder {
    color: #777c8b !important;
    opacity: 1 !important;
}

.slz-corp-form-grid__full {
    grid-column: 1 / -1;
}

.slz-corp-form-grid input,
.slz-corp-form-grid select,
.slz-corp-form-grid textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #cfd3dc;
    border-radius: var(--slz-radius-sm);
    outline: 0;
    background: var(--slz-white);
    color: var(--slz-ink);
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.slz-corp-form-grid textarea {
    min-height: 150px;
    resize: vertical;
}

.slz-corp-form-grid input:focus,
.slz-corp-form-grid select:focus,
.slz-corp-form-grid textarea:focus {
    border-color: #b99700;
    box-shadow: 0 0 0 3px rgb(242 203 5 / 18%);
}

.slz-corp-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 24px 0;
    color: var(--slz-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
}

.slz-corporate-public .slz-corp-form-card .slz-corp-consent {
    color: var(--slz-muted) !important;
}

.slz-corporate-public .slz-corp-form-card .iti__selected-dial-code,
.slz-corporate-public .slz-corp-form-card .iti__arrow {
    color: var(--slz-ink) !important;
}

.slz-corp-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--slz-navy-900);
}

.slz-honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

html[dir="rtl"] .slz-honeypot {
    right: -99999px !important;
    left: auto !important;
}

.slz-corporate-footer {
    padding-top: 72px;
    background: var(--slz-navy-950);
    color: rgb(255 255 255 / 68%);
}

.slz-corporate-footer__main {
    display: grid;
    grid-template-columns: 1.15fr .65fr .8fr;
    gap: clamp(40px, 7vw, 90px);
    padding-bottom: 56px;
}

.slz-corporate-footer__logo {
    width: 160px;
    max-height: 62px;
    margin-bottom: 22px;
    object-fit: contain;
    object-position: left center;
}

html[dir="rtl"] .slz-corporate-footer__logo {
    object-position: right center;
}

.slz-corporate-footer p {
    max-width: 440px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.slz-corporate-footer__links,
.slz-corporate-footer address {
    display: grid;
    align-content: start;
    gap: 13px;
    margin: 0;
    font-style: normal;
}

.slz-corporate-footer a {
    color: rgb(255 255 255 / 72%);
}

.slz-corporate-footer a:hover,
.slz-corporate-footer a:focus-visible {
    color: var(--slz-yellow);
}

.slz-corporate-footer__bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgb(255 255 255 / 12%);
    font-size: 12px;
}

.slz-corporate-public :focus-visible {
    outline: 3px solid var(--slz-yellow);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .slz-corporate-menu {
        gap: 16px;
    }

    .slz-corporate-menu > a,
    .slz-corporate-dropdown > a {
        font-size: 13px;
    }

    .slz-corp-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slz-corp-industry-grid,
    .slz-corp-solution-grid,
    .slz-corp-spmt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .slz-corp-hero {
        --active-hero-image: var(--hero-image-tablet, var(--hero-image));
    }

    .slz-corp-page-hero,
    .slz-corp-solution-hero,
    .slz-corp-spmt-hero,
    .slz-corp-contact-hero {
        --active-page-image: var(--page-image-tablet, var(--page-image));
    }

    .slz-corporate-nav-shell > .container {
        min-height: 74px;
    }

    .slz-corporate-logo {
        width: 132px;
        min-width: 132px;
    }

    .slz-corporate-menu-toggle {
        display: block;
    }

    .slz-corporate-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 112px);
        align-items: stretch;
        padding: 12px 20px 24px;
        overflow-y: auto;
        background: var(--slz-navy-900);
        box-shadow: 0 20px 35px rgb(3 7 22 / 22%);
    }

    .slz-corporate-header.menu-open .slz-corporate-menu {
        display: grid;
        gap: 0;
        /* The desktop rule ends the flex row; as a grid that would shrink-wrap the
           column and leave every row short of the drawer edge. */
        justify-content: stretch;
        grid-template-columns: minmax(0, 1fr);
    }

    .slz-corporate-menu > a,
    .slz-corporate-dropdown > a {
        justify-content: flex-start;
    }

    .slz-corporate-header.menu-open .slz-corporate-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .slz-corporate-header.menu-open .slz-corporate-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .slz-corporate-header.menu-open .slz-corporate-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .slz-corporate-menu > a,
    .slz-corporate-dropdown > a {
        min-height: 52px;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
        font-size: 14px;
    }

    .slz-corporate-menu > a::after,
    .slz-corporate-dropdown > a::after {
        display: none;
    }

    .slz-corporate-dropdown {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .slz-corporate-dropdown > a > .bi-chevron-down {
        display: none;
    }

    .slz-corporate-submenu-toggle {
        display: grid;
        width: 52px;
        min-height: 52px;
        border: 0;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
        background: transparent;
        color: rgb(255 255 255 / 88%);
        place-items: center;
    }

    .slz-corporate-submenu-toggle i {
        font-size: 14px;
        transition: transform .22s ease;
    }

    .slz-corporate-dropdown.is-open .slz-corporate-submenu-toggle i {
        transform: rotate(180deg);
    }

    .slz-corporate-submenu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        grid-column: 1 / -1;
        padding: 0 0 8px 14px;
        visibility: visible;
        opacity: 1;
        border: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .slz-corporate-dropdown.is-open > .slz-corporate-submenu {
        display: grid;
    }

    html[dir="rtl"] .slz-corporate-submenu {
        padding: 0 14px 8px 0;
    }

    .slz-corporate-submenu a {
        padding: 10px 12px;
    }

    /* Must out-specify `.slz-corporate-utility__contact a { display: flex }`. */
    .slz-corporate-utility__contact a.slz-corporate-utility__email--sales {
        display: none;
    }

    .slz-corporate-menu .slz-corporate-language {
        width: max-content;
        margin-top: 16px;
        border: 1px solid rgb(255 255 255 / 23%);
    }

    .slz-corp-hero {
        min-height: 590px;
    }

    .slz-corp-hero__content {
        width: min(760px, 88%);
    }

    .slz-corp-split {
        grid-template-columns: 1fr;
    }

    .slz-corp-editorial-image,
    .slz-corp-editorial-image--portrait {
        min-height: min(62vw, 520px);
    }

    .slz-corp-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slz-corp-service-list article {
        grid-template-columns: 55px 1fr;
    }

    .slz-corp-service-list article > p,
    .slz-corp-service-list article > a {
        grid-column: 2;
    }

    .slz-corp-contact-section > .container {
        grid-template-columns: 1fr;
    }

    .slz-corp-editorial-band article {
        grid-template-columns: 1fr;
    }

    .slz-corp-editorial-band article:nth-child(even) figure {
        order: 0;
    }

    .slz-corp-contact-details {
        position: static;
    }

    .slz-corporate-footer__main {
        grid-template-columns: 1fr 1fr;
    }

    .slz-corporate-footer__main > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .slz-corp-hero {
        --active-hero-image: var(--hero-image-mobile, var(--hero-image));
    }

    .slz-corp-page-hero,
    .slz-corp-solution-hero,
    .slz-corp-spmt-hero,
    .slz-corp-contact-hero {
        --active-page-image: var(--page-image-mobile, var(--page-image));
    }

    .slz-corporate-public .container {
        width: min(100% - 28px, 1240px);
    }

    .slz-corporate-utility .container {
        justify-content: flex-end;
    }

    /* On a phone the tap-to-call number is the useful link; the addresses live on
       the contact page and in the footer. */
    .slz-corporate-utility .container > a,
    .slz-corporate-utility__contact a.slz-corporate-utility__email {
        display: none;
    }

    .slz-corporate-nav-shell > .container {
        min-height: 68px;
    }

    /* Frames the machine rather than the empty ground on a narrow viewport. */
    .slz-corp-hero {
        --slz-hero-x: 62%;
        min-height: 560px;
    }

    html[dir="rtl"] .slz-corp-hero {
        --slz-hero-x: 38%;
    }

    .slz-corp-hero__content {
        width: 100%;
        padding-block: 70px;
    }

    .slz-corp-hero h1,
    .slz-corp-page-hero h1,
    .slz-corp-solution-hero h1,
    .slz-corp-spmt-hero h1,
    .slz-corp-contact-hero h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .slz-corp-section {
        padding-block: 68px;
    }

    .slz-corp-service-grid,
    .slz-corp-service-grid--compact,
    .slz-corp-industry-grid,
    .slz-corp-process-grid,
    .slz-corp-solution-grid,
    .slz-corp-spmt-grid,
    .slz-corp-form-grid {
        grid-template-columns: 1fr;
    }

    .slz-corp-service-card {
        min-height: 270px;
    }

    .slz-corp-page-hero,
    .slz-corp-solution-hero,
    .slz-corp-spmt-hero,
    .slz-corp-contact-hero {
        min-height: 400px;
        padding-block: 60px;
    }

    .slz-corp-service-list article {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        padding-block: 34px;
    }

    .slz-corp-cta .container {
        display: grid;
    }

    .slz-corp-cta .slz-corp-button {
        width: max-content;
    }

    .slz-corp-form-card {
        padding: 28px 20px;
    }

    .slz-corporate-footer__main {
        grid-template-columns: 1fr;
    }

    .slz-corporate-footer__main > div:first-child {
        grid-column: auto;
    }

    .slz-corporate-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slz-corporate-public *,
    .slz-corporate-public *::before,
    .slz-corporate-public *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* SLAZH company, equipment navigation, and solutions expansion. */
@media (min-width: 1200px) {
    .slz-marketplace-mode:not(.slz-auction-mode) .main-menu li:focus-within > .sub-menu {
        --submenu-opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .main-menu .slz-equipment-menu {
        width: min(360px, 90vw);
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu .slz-menu-heading {
    padding: 12px 20px 7px;
    color: var(--slz-theme-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.slz-about-page .slz-about-section {
    padding-block: clamp(44px, 6vw, 84px);
}

.slz-about-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(28px, 4vw, 48px);
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(36, 49, 67, .18);
}

.slz-about-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 9px 17px;
    border: 1px solid rgba(36, 49, 67, .18);
    border-radius: 4px;
    background: #fff;
    color: var(--slz-theme-header-bg);
    font-weight: 800;
}

.slz-about-nav a:hover,
.slz-about-nav a:focus-visible,
.slz-about-nav a.active {
    border-color: var(--slz-theme-accent);
    background: var(--slz-theme-accent);
    color: var(--slz-theme-header-bg);
}

.slz-about-page .slz-about-copy {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: clamp(26px, 4vw, 54px);
    border-top: 5px solid var(--slz-theme-accent);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(16, 23, 34, .1);
    color: var(--slz-theme-header-bg);
}

.slz-marketplace-mode[data-page-type="business_page"] .slz-about-page .page-paragraph,
.slz-marketplace-mode[data-page-type="business_page"] .slz-about-page .page-paragraph * {
    color: inherit;
    font-size: clamp(15px, 1.1vw, 17px) !important;
    line-height: 1.7 !important;
}

.slz-about-page .slz-about-copy h2,
.slz-about-page .slz-about-copy h3 {
    color: var(--slz-theme-header-bg);
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-weight: var(--slz-display-font-weight, 700);
}

.slz-about-page .slz-about-copy h2 {
    margin: 12px 0 24px;
    font-size: clamp(34px, 4vw, 56px) !important;
    line-height: 1 !important;
}

.slz-about-page .slz-about-copy h3 {
    margin: 30px 0 10px;
    font-size: clamp(22px, 2vw, 30px) !important;
}

.slz-about-page .slz-about-copy ul {
    padding-inline-start: 22px;
}

.slz-marketplace-mode[data-page-type="solutions"] .slz-market-hero {
    padding: 50px 0 28px;
}

.slz-marketplace-mode[data-page-type="solutions"] .slz-market-hero h1 {
    max-width: 840px;
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: .96;
}

.slz-marketplace-mode[data-page-type="solutions"] .slz-market-hero p:not(.slz-kicker) {
    font-size: 16px;
}

.slz-marketplace-mode[data-page-type="solutions"] .slz-market-tile {
    min-height: 280px;
    padding: 20px;
}

.slz-marketplace-mode[data-page-type="solutions"] .slz-market-tile strong {
    font-size: clamp(22px, 2vw, 30px);
}

.slz-marketplace-mode[data-page-type="solutions"] .slz-market-tile small {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    color: #fff;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .slz-about-nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .slz-about-nav a {
        width: 100%;
    }

    .slz-about-page .slz-about-copy {
        padding: 24px 18px;
    }
}
.z-999 {
    z-index: 999;
}
.z-99 {
    z-index: 99;
}
.__opacity-half {
    --opacity: 0.5;
}
.opacity-half {
    opacity: 0.5;
}
.cursor-auto {
    cursor: auto;
}
.page-paragraph p {
    margin: 1rem 0 30px 0 !important;
}
.__h-14rem {
    height: 14rem;
}
.__h-30rem {
    height: 30rem;
}
.d--none {
    display: none;
}

.toggle-shipping-saved-addresses.arrow-up span {
    transform: rotate(180deg);
    display: inline-block;
}

/* Product Details Page CSS || Start */
.option-select-btn.custom_01_option label input:checked ~ * {
    --outline: 1px;
    border: 2px solid #fff;
    outline: var(--outline) solid var(--bs-primary);
}
.wishlist_icon_active {
    background-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}
.compare_list_icon_active {
    background-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}
.compare_list_icon_active svg {
    stroke: var(--bs-white) !important;
}
.color_variants {
    width: 28px;
    height: 28px;
    outline: none;
}
.color_variant_active {
    border: 3px solid #fff;
    outline: 2px solid var(--bs-primary);
}
/* Product Details Page CSS || End */

/* Product  */
.temporary-closed {
    --size: 100%;
    min-width: 100%;
    min-height: 100%;
    block-size: var(--size);
    inline-size: var(--size);
    display: grid;
    place-items: center;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

/* Seller Search Box || Start */
.custom_search {
    width: -webkit-fill-available;
}
.custom_search .select-wrap {
    width: -webkit-fill-available;
    border-start-start-radius: 0.25rem;
    border-end-start-radius: 0.25rem;
}

.custom_search input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.custom_search button {
    border-radius: 0.25rem;
    border-start-start-radius: 0rem;
    border-end-start-radius: 0rem;
}

.--mt-15 {
    margin-top: 15px;
}
/* Seller Search Box || End */

/* Product View Page || Start */

.products_aside_brands:-webkit-scrollbar,
.products_aside_categories::-webkit-scrollbar {
    inline-size: var(--size);
    background-color: var(--bs-light);
    border-radius: var(--size);
    visibility: hidden;
}

.products_aside_brands::-webkit-scrollbar-thumb,
.products_aside_categories::-webkit-scrollbar-thumb {
    border-radius: var(--size);
    -webkit-box-shadow: inset 0 0 var(--size) rgba(0, 0, 0, 0.3);
    background-color: var(--bg-badge);
    visibility: hidden;
}

.products_aside_brands:hover::-webkit-scrollbar-thumb,
.products_aside_categories:hover::-webkit-scrollbar,
.products_aside_categories:hover::-webkit-scrollbar-thumb,
.products_aside_brands:hover::-webkit-scrollbar {
    visibility: visible;
}

.products_aside_categories,
.products_aside_brands {
    max-height: 22.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: contain;
    scroll-behavior: smooth;
}

.custom_common_nav ul {
    padding-inline-start: 1rem;
    padding-inline-end: 0;
}

.custom_common_nav li.has-sub-item:after {
    content: "";
}

.custom_common_nav li.has-sub-item span {
    transition: all 300ms ease-in-out;
    padding: 0;
    cursor: pointer;
}

.common-nav .custom-checkbox label {
    margin: 0;
}

@media screen and (min-width: 992px) {
    .filter-toggle-aside {
        overflow-y: auto;
        max-height: calc(100vh - 120px);
        -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
        overscroll-behavior-y: contain;
        scroll-behavior: smooth;
    }
    .filter-toggle-aside::-webkit-scrollbar {
        --size: 0.25rem;
        inline-size: var(--size);
        background-color: var(--bs-light);
        border-radius: var(--size);
        visibility: hidden;
    }

    .filter-toggle-aside::-webkit-scrollbar-thumb {
        border-radius: var(--size);
        -webkit-box-shadow: inset 0 0 var(--size) rgba(0, 0, 0, 0.3);
        background-color: var(--bg-badge);
        /* visibility: hidden; */
    }

    .filter-toggle-aside:hover::-webkit-scrollbar-thumb,
    .filter-toggle-aside:hover::-webkit-scrollbar {
        visibility: visible;
    }
}
/* Product View Page || End */

.__vertical-middle {
    vertical-align: middle;
}

/* whatsapp chat css start */
.social-chat-icons {
    position: fixed;
    inset-inline-end: 2%;
    inset-block-end: 80px;
    z-index: 9;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-chat-icons.active {
    inset-block-end: 9.375rem;
}

.chat-image-shadow {
    filter: drop-shadow(0 0 0.35rem rgba(var(--bs-primary-rgb), 0.3));
}

.lightbox-image {
    max-height: 80vh;
    vertical-align: middle;
}

/* Site is locked to dark mode: hide the light/dark switchers (floating widget + header menu). */
.slz-marketplace-mode .settings-sidebar,
.slz-marketplace-mode .theme-bar {
    display: none !important;
}

/* Mobile slide-in menu tracks the admin-driven site background color. */
.slz-marketplace-mode .aside,
.slz-marketplace-mode .aside .search-bar {
    background: var(--slz-theme-bg);
}

/* Marketplace theme tokens: change these values to recolor the full heavy-equipment theme. */
/* --slz-theme-bg is the SINGLE site background. It is overridden live from the admin
   Background color setting (see layouts/app.blade.php). Every dark surface below derives
   from it, so changing this one value recolors the appbar, home, and all pages at once. */
.slz-marketplace-mode {
    --slz-display-font-weight: 700;
    --slz-display-font-family: mulish, "Helvetica Neue", Arial, sans-serif;
    --slz-theme-bg: #101722;
    --slz-theme-header-bg: var(--slz-theme-bg);
    --slz-theme-header-top: var(--slz-theme-bg);
    --slz-theme-surface: var(--slz-theme-bg);
    --slz-theme-surface-2: var(--slz-theme-bg);
    --slz-theme-border: rgba(217,222,226,.22);
    --slz-theme-text: #FFFFFF;
    --slz-theme-muted: rgba(255,255,255,.74);
    --slz-theme-accent: #FECE0C;
    --slz-theme-accent-hover: #ffdb45;
    --slz-theme-success: #178f57;
    --slz-technical-grid: rgba(255,255,255,.035);
    --slz-motion-ease: cubic-bezier(.22, 1, .36, 1);
}

/* Heavy equipment marketplace home */
body[data-page-type="home"] {
    background: var(--slz-theme-header-bg);
}

body[data-page-type="home"] .header a,
body[data-page-type="home"] .header button,
body[data-page-type="home"] .header .main-nav > li > a {
    color: #fff !important;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-weight: var(--slz-display-font-weight, 700);
    letter-spacing: .01em;
    text-transform: uppercase;
}

body[data-page-type="home"] .search-box .select-wrap,
body[data-page-type="home"] .search-box input {
    background: #fff;
    color: var(--slz-theme-header-bg);
}

body[data-page-type="home"] .header .btn-primary,
body[data-page-type="home"] .header-main .btn-primary {
    background: var(--slz-theme-accent);
    border-color: var(--slz-theme-accent);
    color: var(--slz-theme-header-bg) !important;
}

body[data-page-type="home"] .system-logo-element img {
    max-height: 58px;
    filter: brightness(0) invert(1);
}

.slz-marketplace-mode:not(.slz-auction-mode) {
    --slz-appbar-black: var(--slz-theme-header-bg);
    --slz-appbar-top: var(--slz-theme-header-top);
    --slz-appbar-yellow: var(--slz-theme-accent);
}

.slz-marketplace-mode:not(.slz-auction-mode) .header {
    background: var(--slz-appbar-black);
    border-right: 4px solid var(--slz-appbar-yellow);
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-top {
    display: block !important;
    min-height: 70px;
    padding: 0 !important;
    background: var(--slz-appbar-top) !important;
    color: #fff;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-top .container {
    max-width: none;
    height: 70px;
    padding-inline: clamp(18px, 3vw, 42px);
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-top .container > .d-flex {
    height: 100%;
    justify-content: flex-end !important;
    gap: clamp(18px, 2.2vw, 36px) !important;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-top a,
.slz-marketplace-mode:not(.slz-auction-mode) .header-top button,
.slz-marketplace-mode:not(.slz-auction-mode) .slz-utility-link {
    color: #fff !important;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(16px, 1.2vw, 22px);
    font-weight: var(--slz-display-font-weight, 700);
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-top .nav {
    gap: 18px !important;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-middle {
    display: none !important;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-main {
    min-height: 142px;
    padding: 0 !important;
    background: var(--slz-appbar-black) !important;
    border: 0 !important;
    box-shadow: none !important;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-main .container {
    max-width: none;
    min-height: 142px;
    padding-inline: clamp(18px, 2.2vw, 34px);
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-main .container > .d-flex {
    min-height: 142px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .nav-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: clamp(34px, 4vw, 82px);
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo {
    flex-shrink: 0;
    align-items: center;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo .system-logo-element {
    min-width: clamp(250px, 21vw, 430px);
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo img {
    display: block;
    width: clamp(250px, 21vw, 430px);
    max-width: 100%;
    max-height: 104px;
    object-fit: contain;
    filter: none;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-logo-word {
    min-height: 78px;
    display: none;
    align-items: center;
    gap: 9px;
    padding: 0 24px 0 18px;
    border: 4px solid #fff;
    border-radius: 999px;
    color: #fff;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(28px, 2.3vw, 43px);
    font-weight: var(--slz-display-font-weight, 700);
    letter-spacing: -.02em;
    line-height: 1;
    white-space: nowrap;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-logo-word > span {
    width: .6em;
    height: .6em;
    display: inline-block;
    border-radius: 999px;
    background: var(--slz-appbar-yellow);
    box-shadow: 0 0 0 6px #fff inset;
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu {
    width: auto;
    min-width: 0;
    flex: 0 1 auto;
    justify-content: flex-end;
    gap: clamp(18px, 1.5vw, 28px);
    margin-left: auto;
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .slz-marketplace-mode:not(.slz-auction-mode) .nav-wrapper {
        gap: 24px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo .system-logo-element,
    .slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo img {
        width: 250px;
        min-width: 250px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .main-menu {
        gap: 16px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .main-menu > li > a,
    .slz-marketplace-mode:not(.slz-auction-mode) .main-menu > li > span {
        gap: 6px;
        font-size: 17px;
    }
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu > li {
    position: relative;
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu > li > a,
.slz-marketplace-mode:not(.slz-auction-mode) .main-menu > li > span {
    min-height: 142px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff !important;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(19px, 1.45vw, 29px);
    font-weight: var(--slz-display-font-weight, 700);
    letter-spacing: .01em;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu > li.active > a,
.slz-marketplace-mode:not(.slz-auction-mode) .main-menu > li > a:hover {
    color: var(--slz-appbar-yellow) !important;
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu .bi-chevron-down {
    font-size: 15px;
    -webkit-text-stroke: 1px currentColor;
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu .has-sub-item::after,
.slz-marketplace-mode:not(.slz-auction-mode) .main-menu > li > a::after,
.slz-marketplace-mode:not(.slz-auction-mode) .main-menu > li > span::after {
    display: none !important;
    content: none !important;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-nav-spacer {
    flex: 1 1 auto;
    min-width: 20px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu .sub-menu {
    inset-inline-start: 0;
    inset-inline-end: auto;
    background: var(--slz-appbar-black);
    border: 1px solid rgba(255,255,255,.12);
    border-top: 4px solid var(--slz-appbar-yellow);
    box-shadow: 0 18px 40px rgba(0,0,0,.26);
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu .sub-menu a {
    display: block;
    color: #fff !important;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: 18px;
    font-weight: var(--slz-display-font-weight, 700);
    text-align: left;
    text-transform: none;
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu .sub-menu a:hover {
    color: var(--slz-appbar-yellow) !important;
}

@media (min-width: 1200px) {
    .slz-marketplace-mode:not(.slz-auction-mode) .header-main .list-separator {
        display: none !important;
    }
}

@media (max-width: 1199.98px) {
    .slz-marketplace-mode:not(.slz-auction-mode) .header-top {
        min-height: 48px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .header-top .container {
        height: 48px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .header-main,
    .slz-marketplace-mode:not(.slz-auction-mode) .header-main .container,
    .slz-marketplace-mode:not(.slz-auction-mode) .header-main .container > .d-flex {
        min-height: 82px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .nav-wrapper {
        width: auto;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo .system-logo-element,
    .slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo img {
        min-width: 150px;
        width: 210px;
        max-width: 210px;
        max-height: 66px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-logo-word {
        min-height: 54px;
        padding: 0 16px 0 12px;
        border-width: 3px;
        font-size: 24px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .menu-btn i {
        color: #fff !important;
    }
}

@media (max-width: 575.98px) {
    .slz-marketplace-mode:not(.slz-auction-mode) .header-top .container > .d-flex {
        justify-content: center !important;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-utility-link:first-child {
        display: none;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .header-top .nav {
        display: none;
    }
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode),
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode),
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode),
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) {
    background: var(--slz-theme-bg);
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .main-content,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .main-content,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .main-content,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .main-content {
    min-height: calc(100vh - 212px);
    padding-top: 28px !important;
    margin-bottom: 0 !important;
    background:
        radial-gradient(circle at 10% 0%, rgba(254,206,12,.08), transparent 28rem),
        linear-gradient(180deg, var(--slz-theme-surface-2) 0%, var(--slz-theme-bg) 34rem);
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .main-content > .container,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .main-content > .container,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .main-content > .container,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .main-content > .container {
    max-width: 1660px;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .breadcrumb,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .breadcrumb,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .breadcrumb,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .breadcrumb {
    position: relative;
    margin-bottom: clamp(24px, 3vw, 48px) !important;
    color: var(--slz-theme-muted);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .breadcrumb::before,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .breadcrumb::before,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .breadcrumb::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 18%;
    width: min(280px, 44vw);
    height: 5px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--slz-theme-accent) 70%, transparent);
}

.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .breadcrumb::before {
    display: none;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .breadcrumb a,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .breadcrumb a,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .breadcrumb a,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .breadcrumb a,
.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .breadcrumb-item.active,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .breadcrumb-item.active,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .breadcrumb-item.active,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .breadcrumb-item.active {
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-equipment-list-page h1,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page h1,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .slz-quote-page h1 {
    margin: 0;
    color: var(--slz-theme-text);
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(28px, 4vw, 46px) !important;
    font-weight: var(--slz-display-font-weight, 700);
    letter-spacing: .005em;
    line-height: 1;
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-equipment-list-page h1::before,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page h1::before,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .slz-quote-page h1::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: .82em;
    margin-right: 14px;
    background: var(--slz-theme-accent);
    vertical-align: -.08em;
}

.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page h1::before {
    width: 6px;
    margin-right: 10px;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .card,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .card,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .card,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .card {
    background: var(--slz-theme-surface);
    border: 1px solid var(--slz-theme-border);
    border-radius: 5px;
    box-shadow: none;
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .card-body,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .card-body,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .card-body,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .card-body {
    padding: clamp(22px, 2vw, 34px);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .card,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .card {
    position: sticky;
    top: 18px;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .card-body,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .card-body {
    padding: 20px !important;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-equipment-list-page h5,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page h5 {
    color: var(--slz-theme-text);
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: 24px;
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 h5,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 h5 {
    margin-bottom: 14px !important;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .form-group,
.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .row,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .form-group,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .row {
    margin-bottom: 12px !important;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 label,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 label {
    margin-bottom: 5px;
    font-size: 14px !important;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) label,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) label,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) label {
    color: var(--slz-theme-text);
    font-size: 15px !important;
    font-weight: 700;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .form-control,
.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .form-select,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .form-control,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .form-select,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .form-control,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .form-select {
    min-height: 54px;
    background-color: rgba(17,18,20,.28);
    border: 1px solid var(--slz-theme-border);
    border-radius: 5px;
    color: var(--slz-theme-text);
    box-shadow: none;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .form-control,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .form-control {
    min-height: 46px;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .form-control:focus,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .form-control:focus,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .form-control:focus {
    border-color: var(--slz-theme-accent);
    box-shadow: 0 0 0 .18rem rgba(254,206,12,.18);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .form-control::placeholder,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .form-control::placeholder,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .form-control::placeholder {
    color: color-mix(in srgb, var(--slz-theme-muted) 72%, transparent);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select {
    width: 100%;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select__button,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select__button {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    background: rgba(17,18,20,.28);
    border: 1px solid var(--slz-theme-border);
    border-radius: 5px;
    color: var(--slz-theme-text);
    font-size: 16px;
    line-height: 1.1;
    text-align: left;
    transition: border-color .16s ease, box-shadow .16s ease, color .16s ease;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select__button:hover,
.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select__button[aria-expanded="true"],
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select__button:hover,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select__button[aria-expanded="true"] {
    border-color: var(--slz-theme-accent);
    box-shadow: inset 0 0 0 1px var(--slz-theme-accent), 0 0 0 .18rem rgba(254,206,12,.14);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select__button::after,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select__button::after {
    display: none;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select__button .bi,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select__button .bi {
    flex: 0 0 auto;
    color: var(--slz-theme-accent);
    font-size: 15px;
    -webkit-text-stroke: 1px currentColor;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select__menu,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select__menu {
    width: 100%;
    max-height: 340px;
    overflow-y: auto;
    padding: 0;
    background: color-mix(in srgb, var(--slz-theme-header-bg) 88%, transparent);
    border: 1px solid var(--slz-theme-border);
    border-top: 5px solid var(--slz-theme-accent);
    border-radius: 4px;
    box-shadow: 0 22px 54px rgba(0,0,0,.42);
    backdrop-filter: blur(8px);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select__menu li:not(:last-child),
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select__menu li:not(:last-child) {
    border-bottom: 1px solid var(--slz-theme-border);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select__menu .dropdown-item,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select__menu .dropdown-item {
    min-height: 46px;
    padding: 11px 16px;
    color: var(--slz-theme-text);
    background: transparent;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: 16px;
    font-weight: var(--slz-display-font-weight, 700);
    letter-spacing: .005em;
    line-height: 1;
    text-align: left;
    text-transform: none;
    white-space: normal;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select__menu .dropdown-item:hover,
.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select__menu .dropdown-item:focus,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select__menu .dropdown-item:hover,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select__menu .dropdown-item:focus {
    background: rgba(254,206,12,.14);
    color: var(--slz-theme-accent);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select--sort,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select--sort {
    width: min(260px, 52vw);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-market-select--sort .slz-market-select__button,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-market-select--sort .slz-market-select__button {
    min-height: 66px;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .btn,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .btn,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .btn,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .btn {
    min-height: 46px;
    border-radius: 5px;
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .btn-primary,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .btn-primary,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .btn-primary,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .btn-primary {
    background: var(--slz-theme-accent) !important;
    border-color: var(--slz-theme-accent) !important;
    color: var(--slz-theme-header-bg) !important;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .btn-primary:hover,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .btn-primary:hover,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .btn-primary:hover,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .btn-primary:hover {
    background: var(--slz-theme-accent-hover) !important;
    border-color: var(--slz-theme-accent-hover) !important;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .btn-outline-primary,
.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .btn-outline-secondary,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .btn-outline-primary,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .btn-outline-secondary {
    border-color: var(--slz-theme-accent);
    color: var(--slz-theme-accent);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .text-muted,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .text-muted,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .text-muted,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .text-muted {
    color: var(--slz-theme-muted) !important;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .equipment-card,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .equipment-card,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .equipment-card {
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .equipment-card:hover,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .equipment-card:hover,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .equipment-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--slz-theme-accent) 62%, var(--slz-theme-border)) !important;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .equipment-card .card-img-top,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .equipment-card .card-img-top,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .equipment-card .card-img-top {
    min-height: 250px;
    background:
        linear-gradient(135deg, rgba(254,206,12,.1), transparent 45%),
        #242b31;
    object-fit: cover;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .equipment-card .badge.bg-primary,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .equipment-card .badge.bg-primary,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .equipment-card .badge.bg-primary {
    background: var(--slz-theme-accent) !important;
    color: var(--slz-theme-header-bg);
    border-radius: 7px;
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .equipment-card a.text-dark,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .equipment-card a.text-dark,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .equipment-card a.text-dark {
    color: var(--slz-theme-text) !important;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(22px, 1.7vw, 34px);
    font-weight: var(--slz-display-font-weight, 700) !important;
    line-height: .92;
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .equipment-card ul,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .equipment-card ul,
.slz-marketplace-mode[data-page-type="markets"]:not(.slz-auction-mode) .equipment-card ul {
    color: var(--slz-theme-muted) !important;
    font-size: 15px !important;
}

.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card--reference .card-img-top {
    aspect-ratio: 1.45 / 1;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-equipment-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-equipment-actions .btn {
    min-width: 0;
    padding-inline: 10px;
}

.slz-reset-link {
    color: var(--slz-theme-text);
    border-bottom: 1px solid currentColor;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: 22px;
    font-weight: var(--slz-display-font-weight, 700);
    line-height: 1;
    text-transform: uppercase;
}

.slz-reset-link:hover {
    color: var(--slz-theme-accent);
}

.slz-markets-page .slz-market-hero {
    padding: clamp(52px, 8vw, 120px) 0 clamp(36px, 5vw, 82px);
}

.slz-markets-page .slz-market-hero h1,
.slz-markets-page h2 {
    max-width: 960px;
    color: var(--slz-theme-text);
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(42px, 6vw, 104px);
    font-weight: var(--slz-display-font-weight, 700);
    line-height: .88;
    text-transform: uppercase;
}

.slz-markets-page h2 {
    font-size: clamp(32px, 3.2vw, 58px);
}

.slz-markets-page .slz-market-hero p:not(.slz-kicker) {
    max-width: 720px;
    color: var(--slz-theme-muted);
    font-size: clamp(18px, 1.4vw, 23px);
}

.slz-market-tile {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: var(--slz-theme-surface);
    border: 1px solid var(--slz-theme-border);
    border-radius: 5px;
    color: var(--slz-theme-text);
}

.slz-market-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .42;
    transition: transform .22s ease, opacity .22s ease;
}

.slz-market-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.84) 100%);
}

.slz-market-tile span,
.slz-market-tile strong {
    position: relative;
    z-index: 1;
}

.slz-market-tile span {
    color: var(--slz-theme-accent);
    font-weight: 800;
    text-transform: uppercase;
}

.slz-market-tile strong {
    max-width: 440px;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(26px, 2.5vw, 40px);
    font-weight: var(--slz-display-font-weight, 700);
    line-height: .92;
    text-transform: uppercase;
}

.slz-market-tile:hover {
    color: var(--slz-theme-text);
    border-color: var(--slz-theme-accent);
}

.slz-market-tile:hover img {
    opacity: .58;
    transform: scale(1.04);
}

.slz-help-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(28px, 4vw, 58px);
    background: var(--slz-theme-surface);
    border: 1px solid var(--slz-theme-border);
    border-radius: 5px;
}

.slz-help-panel p:not(.slz-kicker) {
    max-width: 760px;
    color: var(--slz-theme-muted);
}

.slz-category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.slz-category-strip a {
    padding: 13px 18px;
    background: var(--slz-theme-surface);
    border: 1px solid var(--slz-theme-border);
    border-radius: 5px;
    color: var(--slz-theme-text);
    font-weight: 800;
}

.slz-category-strip a:hover {
    border-color: var(--slz-theme-accent);
    color: var(--slz-theme-accent);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .pagination .page-link,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .pagination .page-link {
    background: var(--slz-theme-surface);
    border-color: var(--slz-theme-border);
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .pagination .active .page-link,
.slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .pagination .active .page-link {
    background: var(--slz-theme-accent);
    border-color: var(--slz-theme-accent);
    color: var(--slz-theme-header-bg);
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .slz-quote-page .card-body {
    padding: clamp(28px, 4vw, 64px) !important;
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .slz-quote-card {
    width: 60%;
    max-width: 1100px;
    margin-inline: auto;
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .slz-quote-card .row > [class*="col-"] {
    min-width: 0;
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .slz-quote-page p {
    color: var(--slz-theme-muted);
    font-size: clamp(18px, 1.5vw, 24px);
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .alert {
    background: rgba(17,18,20,.32);
    border-color: var(--slz-theme-border) !important;
    color: var(--slz-theme-text);
}

.slz-quote-page .slz-quote-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    object-fit: cover;
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .form-check-input {
    background-color: rgba(17,18,20,.32);
    border-color: var(--slz-theme-border);
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .form-check-input:checked {
    background-color: var(--slz-theme-accent);
    border-color: var(--slz-theme-accent);
}

@media (max-width: 991.98px) {
    .slz-marketplace-mode[data-page-type="buy"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .card,
    .slz-marketplace-mode[data-page-type="rental"]:not(.slz-auction-mode) .slz-equipment-list-page .col-lg-3 .card {
        position: static;
    }
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer {
    background: var(--slz-theme-header-bg);
    color: var(--slz-theme-text);
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer-bg-img {
    display: none;
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer-top {
    background: var(--slz-theme-header-bg);
    border-top: 5px solid var(--slz-theme-accent);
    border-bottom: 1px solid var(--slz-theme-border);
    padding-block: clamp(28px, 3vw, 48px);
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer-main,
.slz-marketplace-mode:not(.slz-auction-mode) .footer-bottom {
    background: var(--slz-theme-header-bg);
    color: var(--slz-theme-text);
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer-main {
    padding-block: clamp(36px, 5vw, 72px);
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer-bottom {
    border-top: 1px solid var(--slz-theme-border);
    padding-block: 18px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer img {
    filter: none;
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer .slz-footer-logo {
    max-width: min(320px, 78vw);
    max-height: 122px;
    object-fit: contain;
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer h4,
.slz-marketplace-mode:not(.slz-auction-mode) .footer h6,
.slz-marketplace-mode:not(.slz-auction-mode) .footer .widget__title,
.slz-marketplace-mode:not(.slz-auction-mode) .footer-heder {
    color: var(--slz-theme-text) !important;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase;
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer-main .widget__title,
.slz-marketplace-mode:not(.slz-auction-mode) .footer-main .footer-heder {
    font-size: 19px;
    line-height: 1.2;
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer-main p,
.slz-marketplace-mode:not(.slz-auction-mode) .footer-main a,
.slz-marketplace-mode:not(.slz-auction-mode) .footer-main button {
    font-size: 16px !important;
    line-height: 1.5;
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer .widget__title::before,
.slz-marketplace-mode:not(.slz-auction-mode) .footer-heder::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: .85em;
    margin-right: 8px;
    background: var(--slz-theme-accent);
    vertical-align: -.08em;
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer a,
.slz-marketplace-mode:not(.slz-auction-mode) .footer button,
.slz-marketplace-mode:not(.slz-auction-mode) .footer p,
.slz-marketplace-mode:not(.slz-auction-mode) .footer .absolute-white {
    color: var(--slz-theme-muted) !important;
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer a:hover,
.slz-marketplace-mode:not(.slz-auction-mode) .footer button:hover,
.slz-marketplace-mode:not(.slz-auction-mode) .footer .list-socials a:hover {
    color: var(--slz-theme-accent) !important;
}

.slz-marketplace-mode:not(.slz-auction-mode) .footer .list-socials a {
    color: var(--slz-theme-text) !important;
    font-size: 24px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .newsletter-form .position-relative {
    background: var(--slz-theme-surface);
    border: 1px solid var(--slz-theme-border);
    border-radius: 5px;
    overflow: hidden;
}

.slz-marketplace-mode:not(.slz-auction-mode) .newsletter-form .form-control {
    min-height: 58px;
    background: var(--slz-theme-surface);
    border: 0;
    color: var(--slz-theme-text);
    font-size: 16px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .newsletter-form .btn-primary {
    min-height: 50px;
    margin: 4px;
    border-radius: 4px;
    background: var(--slz-theme-accent) !important;
    border-color: var(--slz-theme-accent) !important;
    color: var(--slz-theme-header-bg) !important;
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode),
.slz-marketplace-mode[data-page-type="help"]:not(.slz-auction-mode),
.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode),
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode),
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) {
    background: var(--slz-theme-bg);
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .main-content,
.slz-marketplace-mode[data-page-type="help"]:not(.slz-auction-mode) .main-content,
.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .main-content,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .main-content,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .main-content {
    min-height: calc(100vh - 212px);
    margin-bottom: 0 !important;
    background:
        radial-gradient(circle at 10% 0%, rgba(254,206,12,.08), transparent 28rem),
        linear-gradient(180deg, var(--slz-theme-surface-2) 0%, var(--slz-theme-bg) 34rem);
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .slz-content-page > .container,
.slz-marketplace-mode[data-page-type="help"]:not(.slz-auction-mode) .slz-content-page > .container,
.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .slz-content-page > .container,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .slz-content-page > .container,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .slz-content-page > .container {
    max-width: 1420px;
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .page-title,
.slz-marketplace-mode[data-page-type="help"]:not(.slz-auction-mode) .page-title {
    min-height: clamp(240px, 25vw, 390px);
    display: flex;
    align-items: center;
    border-radius: 0 !important;
    border-left: 12px solid var(--slz-theme-accent);
    background-color: var(--slz-theme-surface) !important;
    box-shadow: inset 0 0 0 999px rgba(0,0,0,.36);
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .page-title h1,
.slz-marketplace-mode[data-page-type="help"]:not(.slz-auction-mode) .page-title h1,
.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .slz-content-page h2,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .slz-content-page h2 {
    color: var(--slz-theme-text) !important;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(44px, 6vw, 112px) !important;
    font-weight: var(--slz-display-font-weight, 700);
    line-height: .86;
    text-transform: uppercase !important;
}

.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .slz-content-page h2 .text-primary {
    color: var(--slz-theme-accent) !important;
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .card,
.slz-marketplace-mode[data-page-type="help"]:not(.slz-auction-mode) .accordion,
.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .card,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .card {
    background: var(--slz-theme-surface);
    border: 1px solid var(--slz-theme-border);
    border-radius: 5px;
    box-shadow: none;
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .page-paragraph,
.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .page-paragraph *,
.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .card,
.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .card a,
.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .card p,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .card,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .card p {
    color: var(--slz-theme-text) !important;
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .page-paragraph,
.slz-marketplace-mode[data-page-type="help"]:not(.slz-auction-mode) .accordion-body,
.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .card p,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .text-muted {
    color: var(--slz-theme-muted) !important;
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .slz-about-copy {
    width: 60%;
    max-width: 980px;
    margin-inline: auto;
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .slz-about-copy .page-paragraph {
    padding: clamp(28px, 3vw, 44px) !important;
    text-align: left;
}

@media (max-width: 991.98px) {
    .slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .slz-quote-card,
    .slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .slz-about-copy {
        width: 100%;
    }
}

.slz-marketplace-mode[data-page-type="help"]:not(.slz-auction-mode) .accordion-item {
    background: var(--slz-theme-surface);
    border: 1px solid var(--slz-theme-border);
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="help"]:not(.slz-auction-mode) .accordion-button {
    background: var(--slz-theme-surface) !important;
    color: var(--slz-theme-text) !important;
    font-weight: var(--slz-display-font-weight, 700) !important;
}

.slz-marketplace-mode[data-page-type="help"]:not(.slz-auction-mode) .accordion-button:not(.collapsed) {
    color: var(--slz-theme-accent) !important;
    box-shadow: inset 0 -1px 0 var(--slz-theme-border);
}

.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .bg-primary,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .bg-primary {
    background: var(--slz-theme-accent) !important;
    color: var(--slz-theme-header-bg) !important;
}

.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) label,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) label {
    color: var(--slz-theme-text);
    font-weight: 800;
}

.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .form-control,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .form-control,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .form-select {
    min-height: 54px;
    background-color: rgba(17,18,20,.28);
    border: 1px solid var(--slz-theme-border);
    border-radius: 5px;
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .form-control:focus,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .form-control:focus {
    border-color: var(--slz-theme-accent);
    box-shadow: 0 0 0 .18rem rgba(254,206,12,.18);
}

.slz-marketplace-mode[data-page-type="contact"]:not(.slz-auction-mode) .btn-primary,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .btn-primary {
    background: var(--slz-theme-accent) !important;
    border-color: var(--slz-theme-accent) !important;
    color: var(--slz-theme-header-bg) !important;
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .section-bg-cmn,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .section-bg-cmn2,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .bg-light,
.slz-marketplace-mode[data-page-type="track_order"]:not(.slz-auction-mode) .light-box {
    background: rgba(17,18,20,.28) !important;
    color: var(--slz-theme-text) !important;
}

.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .create-an-account,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .bg-white,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .card,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) section {
    background: var(--slz-theme-surface) !important;
    border-color: var(--slz-theme-border) !important;
    color: var(--slz-theme-text) !important;
}

.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .create-an-account {
    border: 1px solid var(--slz-theme-border);
    border-radius: 5px;
    overflow: hidden;
}

.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .create-an-account-bg-img {
    opacity: .08;
    filter: grayscale(1);
}

.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) h1,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) h2,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) h3,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) h4,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) h5,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) h6 {
    color: var(--slz-theme-text) !important;
}

.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .first-el h2,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .first-el h3,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .first-el h4 {
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) p,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) span,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) li,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) label {
    color: var(--slz-theme-muted);
}

.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .form-control,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .form-select {
    min-height: 54px;
    background-color: rgba(17,18,20,.28);
    border: 1px solid var(--slz-theme-border);
    border-radius: 5px;
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .form-control:focus,
.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .form-select:focus {
    border-color: var(--slz-theme-accent);
    box-shadow: 0 0 0 .18rem rgba(254,206,12,.18);
}

.slz-marketplace-mode[data-page-type="vendor_registration"]:not(.slz-auction-mode) .btn-primary {
    background: var(--slz-theme-accent) !important;
    border-color: var(--slz-theme-accent) !important;
    color: var(--slz-theme-header-bg) !important;
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) {
    background: var(--slz-theme-bg);
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .main-content {
    background:
        radial-gradient(circle at 10% 0%, rgba(254,206,12,.08), transparent 28rem),
        linear-gradient(180deg, var(--slz-theme-surface-2) 0%, var(--slz-theme-bg) 34rem);
    color: var(--slz-theme-text);
    padding-top: 28px !important;
    margin-bottom: 0 !important;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .slz-product-page > .container {
    max-width: 1840px;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .slz-product-page > .container > .row > .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .slz-product-page > .container > .row > .col-lg-4 {
    display: none !important;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .card {
    background: var(--slz-theme-surface);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 5px;
    box-shadow: none;
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .card-body {
    padding: clamp(22px, 2vw, 34px);
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .quickview-content .row {
    align-items: stretch;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .quickview-content > .row > .col-lg-5 {
    flex: 0 0 46%;
    max-width: 46%;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .quickview-content > .row > .col-lg-7 {
    flex: 0 0 54%;
    max-width: 54%;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .product-details-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .product-details-content form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .quickviewSlider2 {
    min-height: clamp(460px, 34vw, 660px);
    background: var(--slz-theme-surface);
    border: 1px solid rgba(255,255,255,.72) !important;
    border-radius: 6px !important;
    overflow: hidden;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .quickviewSlider2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--slz-theme-surface-2);
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .quickviewSliderThumb2 {
    display: none;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .swiper-quickview-button-prev,
.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .swiper-quickview-button-next {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--slz-theme-accent);
    color: var(--slz-theme-header-bg);
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .product_title {
    margin: 0;
    color: var(--slz-theme-text);
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(40px, 4vw, 86px);
    font-weight: var(--slz-display-font-weight, 700);
    letter-spacing: .005em;
    line-height: .9;
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .badge.bg-primary {
    background: var(--slz-theme-accent) !important;
    color: var(--slz-theme-header-bg);
    border-radius: 8px;
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-info {
    margin-top: 22px;
    padding: clamp(18px, 2vw, 28px) !important;
    background: rgba(17,18,20,.28);
    border: 1px solid var(--slz-theme-border) !important;
    border-radius: 6px !important;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-info .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-info__fact {
    min-height: 92px;
    padding: 14px 16px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 5px;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-info .fs-12 {
    color: var(--slz-theme-muted) !important;
    font-size: 15px !important;
    text-transform: capitalize;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-info .fw-semibold {
    color: var(--slz-theme-text);
    font-size: 18px;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-cta {
    gap: 10px !important;
    margin-top: 20px;
    display: grid !important;
    grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(140px, .8fr));
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-cta .btn {
    min-height: 56px;
    border-radius: 5px;
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-cta .btn-primary,
.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .nav--tabs--with--bg .active,
.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .see-more-details {
    background: var(--slz-theme-accent) !important;
    border-color: var(--slz-theme-accent) !important;
    color: var(--slz-theme-header-bg) !important;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-cta .btn-success {
    background: var(--slz-theme-success);
    border-color: var(--slz-theme-success);
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-cta .btn-outline-primary,
.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-cta .btn-outline-secondary {
    border-color: var(--slz-theme-accent);
    color: var(--slz-theme-accent);
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) #scroll-into-view-wrapper {
    margin-top: 22px;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .nav--tabs--with--bg {
    background: transparent;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .nav--tabs--with--bg h2 {
    min-width: 230px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--slz-theme-text);
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: 23px !important;
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase !important;
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .product-details-tab-content,
.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .rich-editor-html-content,
.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .table {
    color: var(--slz-theme-text);
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .table,
.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .table th,
.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .table td {
    background: transparent;
    border-color: var(--slz-theme-border);
}

.slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .text-muted {
    color: var(--slz-theme-muted) !important;
}

@media (max-width: 991.98px) {
    .slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .quickview-content > .row > .col-lg-5,
    .slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .quickview-content > .row > .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .quickviewSlider2 {
        min-height: 360px;
    }

    .slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-cta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .product_title {
        font-size: 34px;
    }

    .slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-cta .btn {
        width: 100%;
    }

    .slz-marketplace-mode[data-page-type="product-details"]:not(.slz-auction-mode) .equipment-cta {
        grid-template-columns: 1fr;
    }
}

.slz-marketplace {
    --slz-black: var(--slz-theme-header-bg);
    --slz-yellow: var(--slz-theme-accent);
    --slz-white: var(--slz-theme-text);
    --slz-muted: var(--slz-theme-muted);
    background: var(--slz-black);
    color: var(--slz-white);
    overflow: hidden;
}

.slz-marketplace h1,
.slz-marketplace h2,
.slz-marketplace h3,
.slz-marketplace .equipment-card a.text-dark {
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-weight: var(--slz-display-font-weight, 700) !important;
    letter-spacing: .005em;
    line-height: .86;
    text-transform: none;
}

.slz-hero {
    min-height: clamp(620px, 80vh, 860px);
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: stretch;
    background: var(--slz-theme-header-bg);
}

.slz-hero__media,
.slz-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.slz-hero__media {
    background:
        linear-gradient(90deg, rgba(23,23,21,.32), rgba(23,23,21,.08)),
        var(--hero-image, linear-gradient(135deg, #4c4c4c, #151515));
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.slz-hero__shade {
    z-index: -1;
    background: linear-gradient(90deg, rgba(23,23,21,.25) 0%, rgba(23,23,21,.08) 48%, rgba(23,23,21,.5) 100%);
}

.slz-hero__grid {
    min-height: clamp(620px, 80vh, 860px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 545px);
    align-items: center;
    gap: clamp(28px, 5vw, 84px);
    padding: clamp(36px, 6vw, 86px) 0;
}

.slz-hero__copy {
    align-self: end;
    padding-bottom: clamp(20px, 5vw, 78px);
}

.slz-lead {
    max-width: 590px;
    color: #fff;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: clamp(170px, 22vh, 310px);
    text-shadow: 0 2px 20px rgba(0,0,0,.55);
}

.slz-hero h1 {
    max-width: 970px;
    border-left: 16px solid var(--slz-yellow);
    padding-left: 18px;
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 8.6vw, 156px);
    text-transform: none;
    text-shadow: 0 3px 24px rgba(0,0,0,.38);
}

/* Keep the complete homepage hero visible within one desktop fold. */
@media (min-width: 1200px) {
    .slz-hero,
    .slz-hero__grid {
        min-height: max(500px, calc(100dvh - 212px));
        height: max(500px, calc(100dvh - 212px));
    }

    .slz-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
        gap: clamp(24px, 3vw, 52px);
        padding: clamp(20px, 3vh, 34px) 0;
    }

    .slz-hero__copy {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 8px 0;
    }

    .slz-lead {
        max-width: 560px;
        margin: 0;
        font-size: clamp(17px, 1.35vw, 22px);
        line-height: 1.3;
    }

    .slz-hero h1 {
        max-width: 780px;
        border-left-width: 10px;
        padding-left: 16px;
        font-size: clamp(48px, 5.2vw, 86px);
        line-height: .95;
    }

    .slz-marketplace .slz-finder {
        align-self: center;
        width: 100%;
        min-height: 0;
        padding: clamp(20px, 2.2vw, 32px);
    }

    .slz-marketplace .slz-finder h2 {
        margin-bottom: 14px;
        font-size: clamp(24px, 2vw, 32px);
        line-height: .95;
    }

    .slz-marketplace .slz-finder label {
        margin: 14px 0 8px;
        font-size: clamp(17px, 1.35vw, 21px);
    }

    .slz-marketplace .slz-finder .form-select {
        min-height: 56px;
        padding: 0 18px;
        font-size: 17px;
    }

    .slz-marketplace .slz-switch label {
        min-width: 72px;
        min-height: 48px;
        font-size: 16px;
    }

    .slz-marketplace .slz-finder .slz-btn--full {
        min-height: 56px;
        margin-top: 20px;
        font-size: 18px;
    }

    .slz-marketplace .slz-finder__call {
        margin-top: 10px;
        font-size: 15px;
    }
}

.slz-finder {
    background: var(--slz-black);
    padding: clamp(28px, 3.5vw, 52px);
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.slz-finder h2 {
    color: #fff;
    font-size: clamp(28px, 2.6vw, 44px);
    margin-bottom: 22px;
}

.slz-finder label {
    color: #fff;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(22px, 2vw, 31px);
    line-height: .92;
    text-transform: uppercase;
    margin: 28px 0 14px;
}

.slz-finder .form-select {
    min-height: 86px;
    border: 0;
    border-radius: 5px;
    padding: 0 28px;
    color: #747474;
    font-size: clamp(18px, 1.45vw, 26px);
    font-weight: 600;
}

.slz-switch {
    width: max-content;
    display: inline-flex;
    overflow: hidden;
    background: var(--slz-yellow);
    border-radius: 999px;
    padding: 0;
}

.slz-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.slz-switch label {
    margin: 0;
    min-width: 92px;
    min-height: 74px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--slz-theme-header-bg);
    cursor: pointer;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: none;
}

.slz-switch input:checked + label {
    background: #fff;
}

.slz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 76px;
    padding: 0 34px;
    border: 0;
    border-radius: 5px;
    background: var(--slz-yellow);
    color: var(--slz-theme-header-bg) !important;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(20px, 1.7vw, 28px);
    font-weight: var(--slz-display-font-weight, 700);
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .18s ease, background-color .18s ease;
}

.slz-btn:hover,
.slz-category-link:hover,
.slz-market-card:hover,
.slz-link:hover {
    transform: translateY(-2px);
}

.slz-btn--full {
    width: 100%;
    margin-top: 40px;
}

.slz-finder__call {
    display: inline-flex;
    justify-content: center;
    margin-top: 18px;
    color: var(--slz-white);
    font-size: 18px;
    font-weight: var(--slz-display-font-weight, 700);
    text-decoration: none;
}

.slz-finder__call:hover {
    color: var(--slz-yellow);
}

.slz-section {
    padding: clamp(68px, 8vw, 132px) 0;
}

.slz-section--dark {
    background: var(--slz-black);
    color: #fff;
}

.slz-section--light {
    background: #F0F0F0;
    color: var(--slz-theme-header-top);
}

.slz-kicker {
    display: inline-block;
    border-left: 10px solid var(--slz-yellow);
    padding-left: 12px;
    color: var(--slz-yellow);
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(19px, 1.5vw, 29px);
    font-weight: var(--slz-display-font-weight, 700);
    line-height: .9;
    text-transform: uppercase;
}

.slz-two-col {
    display: grid;
    grid-template-columns: minmax(280px, 560px) minmax(0, 1fr);
    gap: clamp(40px, 8vw, 150px);
    align-items: start;
}

.slz-two-col h2,
.slz-section-head h2,
.slz-industries h2,
.slz-help h2 {
    margin: 26px 0 28px;
    color: inherit;
    font-size: clamp(46px, 5.4vw, 104px);
}

.slz-two-col p,
.slz-industries p,
.slz-help p {
    max-width: 560px;
    color: var(--slz-muted);
    font-size: clamp(19px, 1.6vw, 29px);
    line-height: 1.42;
    font-weight: 700;
}

.slz-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
}

.slz-category-link {
    min-height: 108px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,.18);
    color: #fff;
    text-decoration: none;
    transition: transform .18s ease, color .18s ease;
}

.slz-category-link:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.slz-category-link span:not(.slz-category-link__icon) {
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(18px, 1.35vw, 24px);
    font-weight: var(--slz-display-font-weight, 700);
    line-height: 1.05;
    text-transform: none;
}

.slz-category-link__icon {
    color: #fff;
    font-size: 28px;
}

.slz-category-link > .bi-arrow-right {
    font-size: 14px;
}

/* Sentence-case typography throughout the homepage. */
.slz-marketplace .slz-kicker,
.slz-marketplace .slz-btn,
.slz-marketplace .slz-link,
.slz-marketplace .slz-market-card span,
.slz-marketplace .equipment-card .btn {
    text-transform: none !important;
}

@media (min-width: 1200px) {
    .slz-editorial-section {
        min-height: max(500px, calc(100dvh - 212px));
        display: flex;
        align-items: center;
        padding: clamp(28px, 4vh, 48px) 0;
    }

    .slz-editorial-section .slz-two-col {
        grid-template-columns: minmax(260px, 440px) minmax(0, 1fr);
        gap: clamp(36px, 5vw, 82px);
        align-items: center;
    }

    .slz-editorial-section .slz-kicker {
        border-left-width: 7px;
        padding-left: 9px;
        font-size: clamp(15px, 1.1vw, 19px);
    }

    .slz-editorial-section h2 {
        margin: 18px 0 20px;
        font-size: clamp(40px, 4vw, 64px);
        line-height: .95;
    }

    .slz-editorial-section .slz-two-col p {
        font-size: clamp(16px, 1.2vw, 20px);
        line-height: 1.4;
    }
}

.slz-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(28px, 4vw, 54px);
}

.slz-section-head h2 {
    margin-bottom: 0;
}

.slz-link {
    color: var(--slz-theme-header-top);
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: 24px;
    font-weight: var(--slz-display-font-weight, 700);
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .18s ease;
}

.slz-equipment-grid,
.slz-compact-grid {
    display: grid;
    gap: clamp(22px, 3vw, 40px);
}

.slz-equipment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.slz-compact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.slz-marketplace .equipment-card {
    border: 0 !important;
    border-radius: 7px;
    overflow: hidden;
    background: var(--slz-theme-header-bg);
    color: #fff;
    box-shadow: none;
}

.slz-marketplace .equipment-card .card-img-top {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    background: #e9e9e9;
}

.slz-marketplace .equipment-card .card-body {
    min-height: 255px;
    padding: 34px 38px !important;
    background: var(--slz-theme-header-bg);
}

.slz-marketplace .equipment-card a.text-dark {
    color: #fff !important;
    white-space: normal;
    font-size: clamp(26px, 2.4vw, 42px);
    line-height: .9;
}

.slz-marketplace .equipment-card ul {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.78) !important;
    font-weight: 800;
}

.slz-marketplace .equipment-card .btn {
    border-radius: 4px;
    font-weight: var(--slz-display-font-weight, 700);
    text-transform: uppercase;
}

.slz-marketplace .equipment-card .btn-primary {
    background: var(--slz-yellow);
    border-color: var(--slz-yellow);
    color: var(--slz-theme-header-bg);
}

.slz-marketplace .equipment-card .btn-outline-primary {
    border-color: rgba(255,255,255,.55);
    color: #fff;
}

.slz-marketplace .equipment-card .badge.bg-primary {
    background: var(--slz-yellow) !important;
    color: var(--slz-theme-header-bg);
}

.slz-industries__grid {
    display: grid;
    grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
    gap: clamp(38px, 6vw, 112px);
}

.slz-market-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 20px;
}

.slz-market-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
    text-decoration: none;
    transition: transform .18s ease;
}

.slz-market-card img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    margin-bottom: 18px;
}

.slz-market-card span {
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(27px, 2.2vw, 40px);
    font-weight: var(--slz-display-font-weight, 700);
    line-height: .9;
    text-transform: uppercase;
}

.slz-help {
    background: var(--slz-theme-header-bg);
    color: #fff;
    padding: clamp(70px, 8vw, 118px) 0;
}

.slz-help .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1199.98px) {
    .slz-hero__grid,
    .slz-two-col,
    .slz-industries__grid {
        grid-template-columns: 1fr;
    }

    .slz-hero__copy {
        align-self: center;
        padding-bottom: 0;
    }

    .slz-lead {
        margin-bottom: 90px;
    }

    .slz-finder {
        max-width: 680px;
    }

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

@media (max-width: 991.98px) {
    .slz-equipment-grid,
    .slz-market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slz-category-grid {
        grid-template-columns: 1fr;
    }

    .slz-category-link:nth-last-child(2) {
        border-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .slz-hero {
        min-height: auto;
    }

    .slz-hero__grid {
        min-height: auto;
        padding: 36px 0 48px;
    }

    .slz-lead {
        margin-bottom: 80px;
    }

    .slz-hero h1 {
        border-left-width: 9px;
    }

    .slz-finder {
        min-height: auto;
        padding: 24px;
    }

    .slz-finder .form-select {
        min-height: 62px;
    }

    .slz-switch label {
        min-height: 58px;
        min-width: 78px;
    }

    .slz-equipment-grid,
    .slz-compact-grid,
    .slz-market-grid {
        grid-template-columns: 1fr;
    }

    .slz-section-head,
    .slz-help .container-fluid {
        align-items: start;
        flex-direction: column;
    }

    .slz-category-link {
        min-height: 96px;
        grid-template-columns: 42px minmax(0, 1fr) 22px;
    }

    .slz-marketplace .equipment-card .card-body {
        min-height: auto;
        padding: 26px !important;
    }
}

.img-w-h-100 {
    max-height: 6.25rem;
    width: 6.25rem;
    height: 100%;
    max-width: 100%;
}
.img-w-h-80 {
    max-height: 5rem;
    width: 5rem;
    height: 100%;
    max-width: 100%;
}
/* whatsapp chat css end */

.shop-bg-card {
    --bg-color: 255, 255, 255;
}
[theme="dark"] .shop-bg-card {
    --bg-color: 20, 20, 20;
}

/* Product List Page Mobile CSS */
@media (max-width: 767px) {
    .mobile_two_items {
        --minWidth: 9rem !important;
        --maxWidth: 1fr !important;
    }
}
/* Product List Page Mobile CSS */

@media (max-width: 479px) {
    h1,
    .h1 {
        --h1_fs: 1.5rem;
    }
    h2,
    .h2 {
        font-size: 1.2rem;
    }
    h3,
    .h3 {
        font-size: 1rem;
    }
    h4,
    .h4 {
        font-size: 0.9rem;
    }
}

.product-details-content .option-select-btn.weight-style--two label > span {
    padding: 0.438rem 0.5rem;
    line-height: 1;
    border-radius: 5px;
    text-align: center;
}
.product-details-content .color_variants,
.product-details-sticky-top .color_variants  {
    --outline: 2px;
    border: var(--outline) solid rgba(27, 127, 237, 0.05) !important;
}

.products-comments-img a {
    display: block;
    width: 50px;
    height: 50px;
}

.products-comments-img a img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    aspect-ratio: 1;
}

/* refer and earn section css Start */

.refer_and_earn_section .primary-heading {
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.refer_and_earn_section .secondary-heading {
    color: #262d34;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    text-align: center;
}

.refer_and_earn_section .text-secondary-color {
    color: #9b9b9b;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}

.refer_and_earn_section .refer_code_box {
    border: 1px dashed #a1ceff;
    border-radius: 12px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
}

.refer_and_earn_section .refer_code_box .refer_code {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
}

.refer_and_earn_section .refer_code_box .refer_code_copy {
    cursor: pointer;
}

.refer_and_earn_section .share-icons-heading {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
}

.refer_and_earn_section .share-on-social {
    flex-wrap: wrap;
}

.refer_and_earn_section .share-on-social a {
    margin: 10px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.05);
    border-radius: 100%;
    overflow: hidden;
}

.refer_and_earn_section .share-on-social img {
    width: 40px;
    min-width: 40px;
    height: 40px;
    cursor: pointer;
}

.refer_and_earn_section .information-section {
    border-radius: 20px;
    padding: 25px;
    margin: 25px 0;
}

.refer_and_earn_section .information-section h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0em;
    margin-bottom: 15px;
}

.refer_and_earn_section .information-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.refer_and_earn_section .information-section li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    display: flex;
    margin-bottom: 10px;
}

.refer_and_earn_section .information-section li .item-custom-index {
    box-shadow: 0px 3px 6px 0px rgba(27, 127, 237, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin-right: 10px;
}

.refer_and_earn_section .information-section .custom-info-icon {
    font-size: 12px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(75, 86, 107, 1);
    color: rgba(75, 86, 107, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

/* refer and earn section css end */

/* Coupons Page CSS - Start */
.ticket-box {
    background-color: #f7f7f7;
    display: flex;
    border-radius: 0.25rem;
}

[theme="dark"] .ticket-box {
    background-color: #323232;
}

.ticket-box p {
    color: #999;
    font-size: 0.75rem;
}

.ticket-border {
    -webkit-border-start: 2px dashed #fff;
    border-inline-start: 2px dashed #fff;
    position: relative;
}

[theme="dark"] .ticket-border {
    -webkit-border-start: 2px dashed var(--bs-white);
    border-inline-start: 2px dashed var(--bs-white);
}

.ticket-border::after,
.ticket-border::before {
    --size: 1rem;
    inline-size: var(--size);
    block-size: var(--size);
    inset-inline-start: -1px;
    inset-block-start: calc(var(--size) / -2);
    transform: translateX(-50%);
    background-color: #fff;
    content: "";
    position: absolute;
    border-radius: var(--size);
}

[theme="dark"] .ticket-border::after,
[theme="dark"] .ticket-border::before {
    background-color: var(--bs-white);
}

.ticket-border::before {
    inset-block-start: auto;
    inset-block-end: calc(var(--size) / -2);
}

.ticket-amount {
    font-weight: 700;
    font-size: 1.3rem;
    white-space: nowrap;
    -webkit-margin-after: 0.3rem;
    margin-block-end: 0.3rem;
}

.ticket-start {
    padding: 1.5rem;
    text-align: center;
}

.ticket-start img {
    margin-bottom: 0.5rem;
}

.ticket-end {
    padding: 2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    gap: 0.5rem;
}

.ticket-end button {
    outline: 1px dashed var(--bs-primary);
    color: var(--bs-primary);
    border: none;
    font-weight: 700;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    -webkit-margin-after: 0.5rem;
    margin-block-end: 0.5rem;
}

.ticket-end button:focus {
    outline: 1px dashed var(--bs-primary) !important;
}

.ticket-end h6 {
    font-size: 0.85rem;
}

@media screen and (max-width: 767px) {
    .ticket-box .ticket-start {
        width: 180px;
    }
}
@media screen and (min-width: 1200px) {
    .ticket-box .ticket-start {
        width: 180px;
    }
}
@media screen and (max-width: 500px) {
    .ticket-box {
        flex-wrap: wrap;
    }
    .ticket-border,
    .ticket-end,
    .ticket-box .ticket-start {
        width: 100%;
    }
    .ticket-border {
        border-inline-start: none;
        border-bottom: 2px dashed var(--bs-white);
    }
    .ticket-border::before {
        inset-inline-start: auto;
        inset-inline-end: calc(var(--size) / -1);
    }
}

/* Coupons Page CSS - End */

/**
 * EasyZoom core styles
 */
.easyzoom {
    position: relative;
    display: block;
    direction: ltr !important;
}

.easyzoom * {
    direction: ltr !important;
}

.easyzoom img {
    vertical-align: bottom;
}

.easyzoom.is-loading img {
    cursor: progress;
}

.easyzoom.is-ready img {
    cursor: crosshair;
}

.easyzoom.is-error img {
    cursor: not-allowed;
}

.easyzoom-notice {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 150;
    width: 10em;
    margin: -1em 0 0 -5em;
    line-height: 2em;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px #888;
}

.easyzoom-flyout {
    position: absolute;
    z-index: 1000;
    overflow: hidden;
    background: #fff;
}

.easyzoom--overlay .easyzoom-flyout {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.easyzoom--overlay .easyzoom-flyout img {
    width: unset !important;
    max-width: unset !important;
    inline-size: unset !important;
    max-inline-size: unset !important;
    max-block-size: unset !important;
    block-size: unset !important;
    min-width: 120% !important;
    min-inline-size: 120% !important;
}

.pd-img-wrap .quickviewSlider2 .easyzoom{
    width: 100%;
    height: 100%;
}

.newsletter-form {
    width: 100%;
    max-width: 32.6428571429rem;
}

.newsletter-form .envelop-icon {
    position: absolute;
    inset-inline-start: 0.8571428571rem;
    top: 1rem;
}

.newsletter-form .form-control {
    height: 3.4285714286rem;
    padding-inline-start: 2.5rem;
    border: none;
    background: var(--bs-white) !important;
    color: var(--bs-dark);
}

.newsletter-form .btn {
    position: absolute;
    height: 2.5714285714rem;
    inset-inline-end: 0.4285714286rem;
    top: 0.4285714286rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
    padding-inline-start: 1.5rem;
    padding-inline-end: 1.5rem;
}

.blur-section {
    filter: blur(1px);
}

/*
*  Add fund to wallet modal start
*/
.form--check {
    position: relative;
    padding: 0;
    margin: 0;
}
.form--check .check-icon {
    border: 1px solid rgba(75, 86, 107, 1);
    display: inline-flex;
    position: absolute;
    inset-inline-start: 14px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 16px;
    aspect-ratio: 1;
    display: inline-flex;
}

.form--check .check-icon svg {
    display: none;
}
.form--check .form-check-input:checked {
    opacity: 0;
}
.form--check .form-check-input:checked ~ .check-icon {
    border: none;
}
.form--check .form-check-input:checked ~ .check-icon svg {
    display: flex;
}
.form--check input:checked ~ .form-check-label {
    background: var(--bs-light);
}

.form--check .form-check-label {
    border-radius: 8px;
    padding: 16px 16px 16px 48px;
    transition: all ease 0.3s;
    font-size: 16px;
}

[dir="rtl"] .form--check .form-check-label {
    padding: 16px 48px 16px 16px;
}
.text-24 {
    font-size: 24px;
    font-weight: 500;
}
.h-70 {
    height: 70px;
}

.gatways_list {
    max-height: 45vh;
    overflow-y: auto;
}

.gatways_list::-webkit-scrollbar {
    width: 5px;
}
.gatways_list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.gatways_list::-webkit-scrollbar-thumb {
    background: #b3b3b3;
}

.gatways_list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.add-fund-swiper .slider-card-bg-img {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: -1;
    opacity: 0.5;
    inline-size: 80px;
    block-size: auto;
}

.z-1 {
    z-index: 1;
}

.add-fund-swiper-card {
    background-color: rgba(var(--bs-primary-rgb), 0.03);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
/*
*  Add fund to wallet modal end
 */

.free-delivery-area {
    max-width: 400px;
    --bs-warning: #F88030;
    --bs-warning-rgb: 248, 128, 48;
    --bs-success: #00BE33;
    --bs-success-rgb: 0, 190, 51;

}
[theme="light"] .free-delivery-progress{
    background: #E4E4E4;
}
.free-delivery-progress {
    height: 4px;
    border-radius: 5px;
    overflow: hidden;
}
.free-delivery-progress .progress-bar {
    border-radius: 5px;
    background: var(--bs-warning);
}

.fs-16 {
    font-size: 16px;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--bs-primary);
}

.pulse-button {
    display: block;
    font-size: 1.2rem;
    cursor: pointer;
    -webkit-animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

.digital-payment-card {
    height: 50px;
    min-width: 186px;
}

.payment-list-area {
    margin-top: 20px;
    max-height: 45vh;
    overflow: auto;
    padding: 20px;
}

.payment-list-area::-webkit-scrollbar {
    width: 5px;
}
.payment-list-area::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.payment-list-area::-webkit-scrollbar-thumb {
    background: #b3b3b3;
}

.payment-list-area::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.background-custom-fit {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.product-table-wrap {
    max-height: 500px;
    overflow-y: auto;
}
.min-w-300 {
    min-width: 300px;
}
[dir="rtl"] .modal-header .btn-close {
    margin: calc(var(--bs-modal-header-padding-y) * -0.5) auto
        calc(var(--bs-modal-header-padding-y) * -0.5)
        calc(var(--bs-modal-header-padding-x) * -0.5);
}
.sticky-top-80 {
    position: sticky;
    top: 80px;
}

.height-100 {
    height: 100px;
}

.min-h-30px {
    min-height: 30px;
}

.aspect-1 {
    aspect-ratio: 1 !important;
}

.aspect--1 {
    aspect-ratio: 1;
}

.inline-size-100 {
    inline-size: 100%;
    block-size: -webkit-min-content;
}

.toast-bottom-left {
    top: 12px;
    right: 12px;
    left: auto;
}

.dropdown-left-auto {
    left: auto !important;
    right: 0 !important;
}

[dir="rtl"] .dropdown-left-auto {
    right: auto !important;
    left: 0 !important;
}

.mobile-logo-cs {
    height: 40px !important;
    width: auto !important;
}
.select2-container--default {
    width: 100% !important;
    border-radius: 0.375rem;
}
.width--5rem {
    --width: 5rem;
}
.width--7rem {
    --width: 7rem;
}

.width--18-75rem {
    --width: 18.75rem;
}
.width--27-5rem {
    --width: 27.5rem;
}
.width--20ch {
    --width: 20ch;
}
.width--10ch {
    --width: 10ch;
}
.width--60ch {
    --width: 60ch;
}
.max-width-500 {
    max-width: 500px;
}
.bs-dropdown-min-width--auto {
    --bs-dropdown-min-width: auto;
}
.bs-dropdown-min-width--8rem {
    --bs-dropdown-min-width: 8rem;
}
.bs-dropdown-min-width--10rem {
    --bs-dropdown-min-width: 10rem;
}
.bs-dropdown-min-width--22-5rem {
    --bs-dropdown-min-width: 22.5rem;
}
.bs-dropdown-min-width--max-content {
    --bs-dropdown-min-width: max-content;
}
.bs-dropdown-min-width--100 {
    --bs-dropdown-min-width: 100%;
}
.size-1-125rem {
    --size: 1.125rem;
}
.size-1-25rem {
    --size: 1.25rem;
}
.size-1-5rem {
    --size: 1.5rem;
}
.size-2-5rem {
    --size: 2.5rem;
}
.size-3-437rem {
    --size: 3.437rem;
}
.size-4-375rem {
    --size: 4.375rem;
}
.size-3-75rem {
    --size: 3.75rem;
}
.height-26-5-rem {
    --height: 26.5rem;
}
.height-12-5-rem {
    --height: 12.5rem;
}
.h--5rem {
    --h: 5rem;
}
.width--4rem {
    --width: 4rem;
}
.width--16ch {
    --width: 16ch;
}
.width--16rem {
    --width: 16rem;
}
.width--9rem {
    --width: 9rem;
}
.width--24rem {
    --width: 24rem;
}
.width--15-625 {
    --width: 15.625rem;
}
.width--15 {
    --width: 15rem;
}
.width--100 {
    --width: 100%;
}
.width--80 {
    --width: 80%;
}
.width-1fr {
    --width: 1fr;
}
.max-width--600 {
    max-width: 600px;
}
.height-45vh {
    --height: 45vh;
}
.height-480px {
    height: 480px;
}
.color-spanish-gray {
    color: #9b9b9b;
}
.minWidth-3-75rem {
    --minWidth: 3.75rem;
}
.minWidth-12rem {
    --minWidth: 12rem;
}
.max-width-5rem {
    --maxWidth: 5rem;
}
.height--5rem {
    height: 5rem;
}
.--bg-light-sky-blue {
    background: rgba(243, 250, 253, 1);
}
[theme="dark"] .--bg-light-sky-blue {
    background: rgba(243, 250, 253, 0.1);
}
.border--gray {
    --bs-border-color: #d6d6d6;
}
.font-weight--600 {
    font-weight: 600;
}
.visibility-hidden {
    visibility: hidden;
}

/*[dir=rtl] .swiper-wrapper.swiper-wrapper-rtl {*/
/*    justify-content: flex-end;*/
/*}*/

@media (min-width: 992px) {
    [dir="rtl"] .text-lg-start {
        text-align: right !important;
    }
}
.fs-1-5rem {
    font-size: 1.5rem !important;
}

[dir="rtl"] .float-end {
    float: left !important;
}

.bg--light {
    background-color: var(--bs-body-bg);
}
.bg-custom-soft-danger {
    background-color: rgba(var(--bs-danger-rgb), 10%);
}

.temporarily-closed-sticky-alert {
    position: absolute;
    top: 50px;
    width: 100%;
    padding: 15px;
}

.temporarily-closed-sticky-alert div.alert-box {
    background-color: rgba(254, 247, 209, 1);
    font-size: 12px;
    font-weight: 400;
    padding: 20px;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.temporarily-closed-sticky-alert div button {
    background-color: transparent;
    border: 0;
    font-size: 20px;
    font-weight: 800;
}

.rich-editor-html-content {
    overflow-wrap: anywhere !important;
}

.rich-editor-html-content > * {
    color: var(--title-color) !important;
}

.rich-editor-html-content table {
    color: var(--title-color);
    max-width: 100% !important;
}

.rich-editor-html-content table > :not(caption) > * {
    border-width: var(--bs-border-width) 0;
}

.rich-editor-html-content table > :not(caption) > * > * {
    border-width: 0 var(--bs-border-width);
}

.rich-editor-html-content table {
    --bs-table-color: var(--bs-body-color);
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-body-color);
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: var(--bs-body-color);
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: var(--bs-body-color);
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: var(--bs-table-color);
    vertical-align: top;
    border-color: var(--bs-table-border-color);
}

.rich-editor-html-content table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.rich-editor-html-content table > tbody {
    vertical-align: inherit;
}

.rich-editor-html-content table > thead {
    vertical-align: bottom;
}

.rich-editor-html-content table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rich-editor-html-content li[data-list="bullet"] {
    list-style-type: disc !important;
}

.rich-editor-html-content li[data-list="unchecked"] {
    list-style-type: square !important;
}

.rich-editor-html-content p:has(img) {
    margin-bottom: 0;
}
.rich-editor-html-content img{
    max-width: 100%;
    min-width: 100px;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid var(--bs-border-color);
    /* margin-inline-end: 1rem; */
}

.rich-editor-html-content iframe {
    width: 100% !important;
    max-width: 50% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    border-radius: 5px;
    border: 1px solid var(--bs-border-color);
}

@media (max-width: 991px) {
    .rich-editor-html-content iframe {
        max-width: 100% !important;
    }
}

@media (max-width: 575px) {
    .rich-editor-html-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .rich-editor-html-content img {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .rich-editor-html-content table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 991px) {
    .rich-editor-html-content table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1199px) {
    .rich-editor-html-content table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1399px) {
    .rich-editor-html-content table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.rich-editor-html-content table {
    table-layout: auto;
    width: 100%;
    border: 1px solid #e3e9ef;
}

.rich-editor-html-content table th, .rich-editor-html-content table td {
    border: 1px solid #e3e9ef;
}

.rich-editor-html-content table tbody tr td:first-child,
.rich-editor-html-content table tbody tr td:first-child strong {
    width: 1%;
    white-space: nowrap;
}

.badge-soft-danger {
    color: var(--bs-danger) !important;
    background: rgba(var(--bs-danger), 0.06) !important;
    border-radius: 8px;
}
.min-height-100px {
    min-height: 100px !important;
}
.max-height-200px {
    max-height: 200px;
    overflow: hidden;
}

.max-height-80px {
    max-height: 80px;
    overflow: hidden;
}

.max-height-60px {
    max-height: 60px;
    overflow: hidden;
}

.max-height-45px {
    max-height: 45px;
    overflow: hidden;
}

.custom-cart-opacity-50 {
    opacity: 50%;
}

.inbox-image-element {
    width: 80px;
    height: 80px;
    object-fit: contain;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f3f3f3;
}

.inbox-image-element img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.alert--message-2 {
    border-left: 3px solid var(--bs-primary);
    border-radius: 6px;
    position: fixed;
    right: 20px;
    top: 80px;
    z-index: 9999;
    background: #fff;
    width: 80vw;
    display: flex;
    max-width: 330px;
    align-items: center;
    gap: 12px;
    padding: 16px;
    font-size: 12px;
    transition: all ease 0.5s;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.075);
}

.alert--message-2 h6 {
    font-size: 16px;
}

.alert--message-2:not(.active) {
    transform: translateX(calc(100% + 40px));
}
.alert--container {
    position: fixed;
    right: 20px;
    top: 80px;
    z-index: 9999;
    width: 80vw;
    max-width: 330px;
}
.alert--container:not(.active) {
    opacity: 0;
    visibility: hidden;
}
.alert--container .alert {
    position: unset !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    margin-bottom: 10px;
    width: 100% !important;
}

.alert--container .alert:not(.active) {
    display: none;
}
.w--0 {
    width: 0;
    flex-grow: 1;
}

.direction-ltr {
    direction: ltr !important;
}

.shop-head-check[type="checkbox"],
.shop-item-check[type="checkbox"] {
    cursor: pointer;
}

.--size-8-75rem {
    --size: 8.75rem;
    block-size: var(--size);
    inline-size: var(--size);
    min-inline-size: var(--size);
    max-inline-size: 100%;
}

.color-bs-primary-force,
.color-bs-primary-force:focus {
    color: var(--bs-primary);
}
.resize-none {
    resize: none;
}

.bg-F1F7FF {
    background: #f1f7ff;
}
.rounded-r {
    border-radius: 0 0.25rem 0.25rem 0;
}
.overflow-x-auto {
    overflow-x: auto;
}

.picmo__popupContainer {
    z-index: 999;
}
.h-70px {
    height: 70px !important;
}
.overflow-x-auto {
    overflow-x: auto;
}
body *::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

body *::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.14);
}

body *::-webkit-scrollbar-thumb {
    background-color: darkgrey;
}

.uploaded-file-item {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 12px;
    color: #262d34;
    background: #f3f5f9;
    border-radius: 6px;
    padding: 5px 10px;
    white-space: nowrap;
    position: relative;
}
.upload-file-item-content {
    padding-inline-end: 20px;
}
.file-array .upload-file-item-content {
    padding-inline-end: 32px;
}

.uploaded-file-item small {
    font-size: 10px;
    color: #9eadc1;
}
.uploaded-file-item .remove-file {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    margin-bottom: auto;
    color: #9eadc1;
    position: absolute;
    inset-inline-end: 0;
    inset-block-start: 0;
}
.uploaded-file-item .remove-file i {
    min-width: 22px;
    display: inline-block;
}
.lb-nav a {
    opacity: 1 !important;
    position: absolute;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    background-position: center center !important;
    background-size: 20px !important;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #ffffff;
}
.lb-nav a.lb-prev {
    left: 0 !important;
}
.lb-nav a.lb-next {
    right: 0 !important;
}
@media screen and (min-width: 768px) {
    .lb-nav a.lb-prev {
        left: -50px !important;
    }
    .lb-nav a.lb-next {
        right: -50px !important;
    }
}
@media screen and (min-width: 1200px) {
    .lb-nav a.lb-prev {
        left: -160px !important;
    }
    .lb-nav a.lb-next {
        right: -160px !important;
    }
}

.extra-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    z-index: 9;
}
[data-lightbox].rounded {
    border-radius: 16px !important;
}

.bg-F1F7FF {
    background: #f1f7ff;
}
.radius-right-button {
    border-radius: 0 10px 10px 0;
}
.radius-left-button {
    border-radius: 10px 0 0 10px;
}

.send-btn {
    border-radius: inherit;
    transition: all ease 0.3s;
}
.send-btn:hover {
    background: var(--bs-primary) !important;
}
.send-btn:hover img {
    filter: brightness(32);
}

#svg circle {
    transition: stroke-dashoffset 1s linear;
    stroke: #666;
    stroke-width: 3px;
}
#svg #bar {
    stroke: var(--bs-primary);
}
.circle-progress {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.circle-progress .inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
    height: 100%;
    gap: 8px;
    padding-right: 115px;
}
.text-BFBFBF {
    color: #bfbfbf;
}
.max-w-200px {
    max-width: 200px;
}
.rounded-16px {
    border-radius: 16px;
}

.h-70px {
    height: 70px !important;
}
.img_remove_icon {
    border-radius: 100%;
    font-size: 8px;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    right: -8px;
    top: -8px;
    background-color: #d2d2d2;
    text-align: center;
    text-decoration: none;
    position: absolute;
}

.img_remove_icon:hover {
    background-color: var(--danger);
}

.filearray:not(:empty) {
    padding-block: 0.5rem;
}

.upload_img_box {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    /* border: 1px solid #ddd;
    border: 1px solid #f5f5f5; */
    border: none;
    margin-inline-start: 0.5rem;
    margin-block-start: 0.5rem;
}

.upload_img_box .img-clear {
    position: absolute;
    width: 16px;
    height: 16px;
    color: #fff;
    background-color: #ff3c3c;
    border-radius: 100%;
    inset-inline-end: -6px;
    inset-block-start: -6px;
    display: grid;
    place-items: center;
    line-height: 1;
    cursor: pointer;
    z-index: 9;
}

.upload_img_box .tio-clear {
    font-size: 14px;
}

.upload_img_box img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    object-fit: cover;
    border-radius: 4px;
}
.filearray:empty {
    display: none !important;
}
.outgoing_msg {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.outgoing_msg .message_text {
    margin: 0;
}
.w-0 {
    width: 0;
}

.review-reply {
    border: 1px solid #1455ac0d;
    color: #262d34cc;
}
.before-content-border {
    position: relative;
}
.before-content-border::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 20px;
    border-radius: 0 0 0 6px;
    border-left: 2px dashed #d0dbe9;
    border-bottom: 2px dashed #d0dbe9;
    left: 29px;
    top: 75px;
}
.bg-E9F3FF80 {
    background: #e9f3ff80;
}

.btn-star {
    background: transparent;
    color: #ff5c00;
    border: 1px solid #ff5c00;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 6px;
    transition: all ease 0.3s;
    font-size: 12px;
}

.btn-star:hover {
    background: #ff5c00;
    color: #fff;
}

.text-transform-none {
    text-transform: none !important;
}
.chatting-count-badge {
    width: 20px;
    height: 20px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
}

.review-exist-images {
    position: relative;
    width: 265px;
    min-width: 265px;
    height: 150px;
    overflow: hidden;
    border: 2px dashed #ddd;
    padding: 5px;
}

.review-exist-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-exist-images .img-remove-icon-2 {
    font-size: 20px;
    color: rgb(255, 7, 0);
    border-radius: 3px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    right: 10px;
    top: 10px;
    background-color: #d2d2d2;
    text-align: center;
    text-decoration: none;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.absolute-ltr {
    direction: ltr !important;
}
@media screen and (min-width: 1200px) {
    .profile-dropdown:hover .dropdown-menu {
        display: block;
    }
}
.p-2px {
    padding: 2px;
}
.product-details-tab-content .see-more-details-review,
.product-details-tab-content .see-more-details {
    display: none;
}
.object-contain {
    object-fit: contain;
}

.object-contain {
    object-fit: cover;
}

.aside::after {
    display: none;
}

.profile-menu-aside + .aside-overlay,
.aside + .aside-overlay {
    position: fixed;
    inline-size: 100vw;
    -webkit-transition: -webkit-transform 200ms ease;
    transition: -webkit-transform 200ms ease;
    -o-transition: transform 200ms ease;
    transition: transform 200ms ease;
    transition: transform 200ms ease, -webkit-transform 200ms ease;
    block-size: 100vh;
    z-index: 9999;
    background-color: var(--title-color);
    opacity: 0;
    visibility: hidden;
    inset-inline-start: var(--aside-width);
    inset-block-start: 0;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

.profile-menu-aside.active + .aside-overlay,
.aside.active + .aside-overlay {
    opacity: 0.5;
    visibility: visible;
    animation: fadeIn 0.3s;
    -webkit-animation: fadeIn 0.3s;
    -moz-animation: fadeIn 0.3s;
}
#pac-input {
    position: absolute;
    outline: none;
    box-shadow: none;
    border: 1px solid #e5e5e5;
    height: 35px;
    width: 192px;
    padding-inline: 16px;
}
@media screen and (max-width: 767px) {
    #pac-input {
        top: 60px !important;
        left: 10px !important;
    }
}

.line-limit-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.max-w-280px {
    max-width: 280px;
}

.text-break-word {
    word-break: break-word;
}
.embed-responsive {
    overflow: hidden;
}
.embed-responsive-16by9 {
    aspect-ratio: 16/9;
}

.embed-responsive-item {
    width: 100%;
}

.product-preview-modal-text {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 99;
    height: 76px;
    cursor: pointer;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 38%,
        rgba(255, 255, 255, 0.8) 69%,
        rgba(255, 255, 255, 0.9) 100%
    );
}

.product-preview-modal-text:hover span {
    transition: 0.5s ease-in-out all;
}

.product-preview-modal-text:hover span {
    scale: 1.05;
    font-weight: 700;
}

.filter-on-product-filter-change,
.product-list-filter-on-sort-by {
    cursor: pointer;
    padding: 0 !important;
}

.filter-on-product-filter-change input,
.product-list-filter-on-sort-by input {
    display: none;
}

.filter-on-product-filter-change label,
.product-list-filter-on-sort-by label {
    cursor: pointer;
    margin: 0;
    padding: 0.625rem 1.25rem;
    width: 100%;
}

.filter-on-product-filter-change:hover label,
.product-list-filter-on-sort-by:hover label {
    color: var(--bs-primary);
}

.digital-product-authors {
    display: flex;
    flex-wrap: wrap;
}

.digital-product-authors .digital-product-author-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #828697;
    padding-inline-end: 10px;
}

.digital-product-authors .item-list a {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    color: #1e1e1e !important;
    position: relative;
    padding-inline-end: 10px;
    margin-inline-end: 5px;
}

.digital-product-authors .item-list a:after {
    content: "";
    width: 0;
    display: flex;
    height: 14px;
    border: 1px solid #b0c7e5;
    font-weight: 400 !important;
    position: absolute;
    bottom: 0;
    right: 0;
}

.digital-product-authors .item-list a:last-child:after {
    content: unset;
}

.min-width-120 {
    min-width: 120px;
}

.social-media-login-btn {
    background-color: #0000000a;
    width: 100%;
    gap: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 12px 15px 12px 15px;
}

.social-media-login-btn img {
    height: 30px;
    width: auto;
}

.social-media-login-btn .text {
    font-weight: 600;
    color: #334257;
}

.social-media-user-modal .image-box {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-media-user-modal .image-box img {
    --size: 80px;
    width: var(--size);
    height: var(--size);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 100%;
    box-shadow: 0 2px 15px 0.1em #00000029;
}

[theme="dark"] .social-media-login-btn {
    background-color: #7c7c7c4a;
    color: #ffffff;
}

[theme="dark"] .social-media-login-btn .text {
    color: #ffffff;
}

.grecaptcha-badge {
    display: none !important;
}
.quickviewSliderThumb2 .swiper-slide img {
    aspect-ratio: 1;
    object-fit: cover;
}

.link-hover-base:hover {
    color: var(--bs-primary) !important;
}

.inset-inline-end-10px {
    inset-inline-end: 10px;
}

.header-dropdown li {
    padding: 0;
}

.header-dropdown li a {
    padding: 0.625rem 1.25rem;
    display: flex;
}

.d--flex {
    display: flex;
}

.custom-disabled {
    opacity: 0.65;
    box-shadow: none;
}

.theme-popup-banner {
    max-width: 480px;
    max-height: 480px;
}

@media (max-width: 370px) {
    .clearance-save-more {
        font-size: 0.85rem;
    }
}

.min-w-60px {
    display: inline-block;
    min-width: 60px;
}

.option-select-btn.d-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 575px) {
    .option-select-btn.d-grid {
        grid-template-columns: 1fr;
    }
}

.object-fit-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

.min-height-100vh-325px {
    min-height: calc(100vh - 325px);
}

.max-height-100vh-225px {
    max-height: calc(100vh - 225px);
}

.min-height-100vh-300px {
    min-height: calc(100vh - 300px);
}

.chatting-scrollbar {
    --size: 0.4rem;
    --height: 50dvh;
    max-block-size: var(--height);
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: contain;
    scroll-behavior: smooth;
}

/* Product page price range */
#price_range_slider {
    width: calc(100% - 16px);
    height: 3px;
    /* background: rgba(var(--bs-primary-rgb), 0.38); */
    position: relative;
}
[dir="rtl"] #price_range_slider {
    right: 16px;
}

#price_range_slider::after {
    content: "";
    inset-inline-start: 0;
    width: calc(100% + 15px);
    height: 100%;
    background: rgba(var(--bs-primary-rgb), 0.38);
    position: absolute;
}
[dir="rtl"] #price_range_slider::after {
    right: -15px;
}

#price_range_slider .slider-thumb {
    width: 1rem;
    height: 1rem;
    background: var(--bs-primary);
    border-radius: 50%;
    position: absolute;
    top: -5px;
    cursor: pointer;
}

#price_range_slider .slider-range {
    height: 3px;
    background: var(--bs-primary);
    position: absolute;
    top: 0;
}

.bg-black-09 {
    background-color: rgba(0, 0, 0, 0.09);
}

.pagination .page-item,
.pagination .page-item label {
    cursor: pointer;
}

.pagination .page-item input {
    display: none;
}

.w-fit-content {
    width: fit-content !important;
}

.line-clamp-1 {
    --clamp: 1;
    display: -webkit-box;
    -webkit-line-clamp: var(--clamp);
    line-clamp: var(--clamp);
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
}

.line-clamp-2 {
    --clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: var(--clamp);
    line-clamp: var(--clamp);
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
}

.gap-12 {
    gap: 0.75rem !important;
}

.mb-12px {
    margin-bottom: 0.75rem !important;
}

.form-loading-button {
    transition: 1s ease-in-out all;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-loading-button .spinner-grow-sm,
.form-loading-button .loading {
    display: none;
}

.form-loading-button.active-loading .default {
    display: none;
}

.form-loading-button.active-loading .spinner-grow-sm,
.form-loading-button.active-loading .loading {
    display: block;
}

.form-loading-button.bg-primary {
    color: var(--primary-light, #FFF);
}

.form-loading-button.bg-primary .spinner-grow {
    background-color: var(--primary-light, #FFF);
}
.blog-top-nav_next-btn,
.blog-top-nav_prev-btn {
    --justify-content: start;
    --background-color: #f7f8fa;
    position: absolute;
    inset-block-start: 0;
    inset-inline-end: 0;
    width: 50px;
    height: 45px;
    padding: 0;
    display: none;
    justify-content: var(--justify-content);
    align-items: center;
    color: #fff;
    background-color: var(--background-color);
    z-index: 100;
}

[theme="dark"] .blog-top-nav_next-btn,
[theme="dark"] .blog-top-nav_prev-btn {
    --background-color: var(--body-bg, #0b0f19);
}

.blog-top-nav_next-btn {
    --justify-content: end;
    padding-inline-start: 0.75rem;
}

.blog-top-nav_prev-btn {
    --justify-content: start;
}

.blog-top-nav_next-btn button,
.blog-top-nav_prev-btn button {
    width: 39px;
    height: 39px;
    aspect-ratio: 1;
    background-color: var(--bs-primary);
    max-width: 39px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-top-nav_prev-btn {
    inset-inline-end: unset;
    inset-inline-start: 0;
}

.blog-top-nav_next-btn:hover,
.blog-top-nav_prev-btn:hover,
.blog-top-nav_next-btn:focus,
.blog-top-nav_prev-btn:focus,
.blog-top-nav_next-btn:active,
.blog-top-nav_prev-btn:active {
    --background-color: #f7f8fa;
    color: #fff !important;
    background-color: var(--background-color) !important;
    border: none !important;
}

[theme="dark"] .blog-top-nav_next-btn:hover,
[theme="dark"] .blog-top-nav_prev-btn:hover,
[theme="dark"] .blog-top-nav_next-btn:focus,
[theme="dark"] .blog-top-nav_prev-btn:focus,
[theme="dark"] .blog-top-nav_next-btn:active,
[theme="dark"] .blog-top-nav_prev-btn:active {
    --background-color: var(--body-bg, #0b0f19);
}

.blog-top-nav_next-btn button:hover,
.blog-top-nav_prev-btn button:hover,
.blog-top-nav_next-btn button:focus,
.blog-top-nav_prev-btn button:focus,
.blog-top-nav_next-btn button:active,
.blog-top-nav_prev-btn button:active {
    color: #fff !important;
    background-color: var(--bs-primary) !important;
    border: none !important;
}

.blog-single-card-item {
    cursor: pointer;
}

.pe-3 {
    padding-inline-end: 1rem !important;
}

.pe-1 {
    padding-inline-end: 0.25rem !important;
}

@media (max-width: 991px) {
    .top-0-lg{
        top: 0 !important;
    }
}

.product-details-content .option-select-btn label > *{
    --size: 30px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 7px 8px;
    min-inline-size: var(--size);
    max-inline-size: 180px;
    block-size: var(--size);
    box-sizing: border-box;

}

[theme="dark"] .product-details-content .option-select-btn label > * {
    border-color: var(--bs-border-color) !important;
}

.product-details-content .option-select-btn.custom_01_option label input ~ * {
    --outline: 2px;
    border: var(--outline) solid #FFF !important;
    outline: var(--outline) solid rgba(0, 0, 0, 0.05) !important;
}

.product-details-content .option-select-btn.custom_01_option label input:checked ~ * {
    --outline: 2px;
    background-color: transparent;
    color: var(--bs-primary);
    border: var(--outline) solid #FFF !important;
    outline: var(--outline) solid var(--bs-primary) !important;
}

.product-details-content .option-select-btn label span {
    --clamp: 1;
    display: -webkit-box;
    -webkit-line-clamp: var(--clamp);
    line-clamp: var(--clamp);
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    white-space: nowrap;
}

.color_variants{
    --size: 30px;
    width: var(--size);
    height: var(--size);
    max-width: var(--size);
    border-radius: 5px !important;
}

.pd-img-wrap .auto-item-width .swiper-slide {
    --size: 50px;
    max-inline-size: var(--size);
    min-inline-size: var(--size);
}
.pd-img-wrap .swiper-slide img {
    border-radius: inherit !important;
    height: 100%;
    aspect-ratio: 1;
}
.pd-img-wrap .active-border .swiper-slide-thumb-active {
    border-color: var(--bs-primary) !important;
}

@media (max-width: 991px) {
    .max-w-300-tab {
        max-width: 300px;
        aspect-ratio: 1;
    }
}

.share_btn{
    color: var(--absolute-white) !important;
    background-color: var(--bs-primary) !important;
    border: 0 !important;
    margin: auto;
}
.share_btn.facebook{
 background-color: #1877F2 !important;
}
.share_btn.twitter{
     background-color: var(--absolute-dark) !important;
}
.share_btn.linkedin{
     background-color: #2867B2 !important;
}
.share_btn.whatsapp{
    background-color: #25D366 !important;
}

.wishlist-price .product-total-unit-price{
    font-size: 0.75rem !important;
}
.wishlist-price .discounted-unit-price{
    font-size: 0.875rem !important;
    color: var(--bs-dark) !important;
}

.border-primary-light {
    border-color: rgba(var(--bs-primary-rgb), 0.30) !important;
}

.rounded-thead-table{
    --radius: 5px;
    border-collapse: separate;
    border-spacing: 0;
}

.rounded-thead-table thead th:first-child {
    border-start-start-radius: var(--radius);
    border-end-start-radius: var(--radius);
}
.rounded-thead-table thead th:last-child {
    border-start-end-radius: var(--radius);
    border-end-end-radius: var(--radius);
}
.p-10px{
    padding: 10px !important;
}

.w-32px{
    width: 32px;
}
.w-130px{
    width: 130px;
}

.object-cover{
    object-fit: cover;
}

.mt-2px{
    margin-top: 2px;
}

.max-w-max-content{
    max-width: max-content !important;
}

.middle-align-info .product__summary{
    text-align: center !important;
    align-items: center !important;
}

.max-z-index-for-auth-modal {
    --bs-modal-zindex: 999999;
}

@media screen and (max-width: 575px) {
    .max-w-100-mobile {
        max-inline-size: 100% !important;
    }
}

.mb-20{
    margin-bottom: 20px;
}
.max-w-290{
    max-width: 290px;
}
.min-h-45{
    min-height: 45px;
}
.fs-14{
    font-size: 14px;
}

.modal--md{
    @media screen and (min-width: 576px){
        max-width: 600px !important;
        margin: 8px auto;
    }
}
.modal--lg{
    @media screen and (min-width: 576px){
        max-width: 1000px !important;
        margin: 8px auto;
    }
}

/*New Css */
.title-semidark{
    color: var(--title-semidark);
}

.max-w-400{
    max-width: 400px;
}
.border-dash-custom{
    border: 1px dashed #0461A580;
}

.section-bg-cmn{
    background-color: var(--section-bg-cmn);
}
.section-bg-cmn2{
    background-color: var(--section-bg-cmn2) !important;
}

.border-bottom-2-white{
    border-bottom: 2px solid var(--bs-white);
}



.border-success-1{
    border: 1px solid var(--bs-success);
}
.border-primary-1{
    border: 1px solid var(--bs-primary);
}
.border-danger-1{
    border: 1px solid var(--bs-danger);
}

.bg-opacity-10 {
  --bs-bg-opacity: calc(10 / 100);
}

.my_orderlist__table thead tr th:first-child{
    border-radius: 10px 0 0 0 !important;
}
.my_orderlist__table thead tr th:last-child{
    border-radius: 0 10px 0 0 !important;
}
.my_orderlist__table tbody tr td:first-child{
    border-radius: 10px 0 0 10px !important;
}

.my_orderlist__table tbody tr td:last-child{
    border-radius: 0 10px 10px 0 !important;
}

.pb-20{
    padding-bottom: 20px;
}
[theme="dark"] .svg-dark-support path {
   stroke: var(--absolute-white);
}
.close-custom-btn{
    background-color: var(--section-bg-cmn);
}
.close-custom-btn:hover{
    background-color: var(--section-bg-cmn);
    color: var(--icon-color);
}
.close-custom-btn span{
    color: var(--icon-color);
}
.top--02{
    position: relative;
    top: -2px;
}

.w-36{
    width: 36px;
    min-width: 36px;
}
.h-36{
    height: 36px;
}

.title-clr{
    color: var(--title-color);
}
.min-w-220{
    min-width: 220px;
}

.w-30{
    width: 30px;
    min-width: 30px;
}
.h-30{
    height: 30px;
}

.d-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-icon{
    background-color: var(--bg-icon);
}

.border-lines{
    width: 1px;
    height: 11px;
    background-color: var(--icon-color);
    display: block;
}
.min-w-120{
    min-width: 120px;
    @media screen and (max-width: 991px){
        min-width: 90px;
    }
}
.coba_refund .spartan_item_wrapper{
    margin-bottom: 0px !important;
    width: 70px !important;
    min-width: 70px !important;
}
.coba_refund .spartan_item_wrapper .spartan_remove_row{
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    font-size: 9px !important;
    background-color: var(--bs-white) !important;
}
.coba_refund .spartan_item_wrapper .file_upload{
    padding: 1px !important;
    border: 1px dashed var(--border-color2) !important;
}


.btn--reset{
    --bs-btn-color: var(--title-color);
    --bs-btn-bg: var(--section-bg-cmn);
}
.border-color3{
    border: 1px solid var(--border-color3);
}

.img-w-h-70 {
    max-height: 70px;
    width: 70px;
    height: 100%;
    max-width: 100%;
}

.w-40{
    width: 40px;
    min-width: 40px;
}
.h-40{
    height: 40px;
}

.mb-15{
    margin-bottom: 15px;
}

.w-240{
    min-width: 240px;
    width: 240px;
}

/*cutom trac slider*/
.traking-slide-nav {
    overflow-x: auto;
    scroll-behavior: smooth;
}
.traking-slide-nav::-webkit-scrollbar {
    display: none;
}
.traking-item{
    /* cursor: grab; */
    /* border: 1px dashed var(--secondary-body-color); */
}
.traking-item:not(:last-child)::before{
    content: "";
    position: absolute;
    top: 65px;
    inset-inline-start: 132px;
    width: 215px;
    height: 0;
    border-top: 1px dashed var(--secondary-body-color);
    pointer-events: none;
}
.traking-item .state-img i{
    color: var(--icon-color);
}
.traking-item .state-img svg path{
    fill: var(--icon-color);
}
.traking-item .badge-check i{
    color: var(--icon-color);
}

/*active*/
.traking-item.active .state-img i{
    color: var(--bs-primary) !important;
}
.traking-item.active .state-img svg path{
    fill: var(--bs-primary) !important;
}
.traking-item.active .badge-check i{
    color: var(--bs-success);
}
.traking-item.active::before{
    border-top: 1px solid var(--bs-success) !important;
}

.traking-slide-wrap .button-prev,
.traking-slide-wrap .button-next {
    display: none;
    align-items: center;
    position: absolute;
    z-index: 1;
}
.traking-slide-wrap .btn-click-prev,
.traking-slide-wrap .btn-click-next{
    width: 39px;
    height: 39px;
    min-width: 39px;
    line-height: 39px;
    text-align: center;
    background: var(--bs-primary);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
    border-radius: 45px;
    color: var(--absolute-white);
    @media screen and (max-width: 575px){
        width: 29px;
        height: 29px;
        min-width: 29px;
        line-height: 29px;
    }
}

.traking-slide-wrap .button-prev{
    top: 76px;
    inset-inline-start: 12px;
    width: 99px;
    height: 40px;
    background: linear-gradient(269.55deg, rgba(var(--bs-white-rgb), 255, 0) -6.18%, var(--bs-white) 96.76%);
    border-radius: 10px 0 0 10px;
}
.traking-slide-wrap .button-next{
    top: 76px;
    inset-inline-end: -12px;
    width: 99px;
    height: 40px;
    background: linear-gradient(89.55deg, rgba(var(--bs-white-rgb), 255, 0) -6.18%, var(--bs-white) 96.76%);
    border-radius: 0 10px 10px 0;
}

.text-secondary-body-color{
    color: var(--secondary-body-color);
}

.store-item.link-hover-base:hover h6,
.store-item.link-hover-base:hover p {
    color: var(--bs-primary) !important;
}

.system-logo-element {
    max-height: 60px;
    max-width: 200px;
    padding: 0 !important;
    margin-inline-start: 0;
    margin-inline-end: 0 !important;
}

.system-logo-element img {
    object-fit: contain;
    max-height: 60px;
    aspect-ratio: 4.5 / 2;
}

@media screen and (max-width: 575px) {
    .system-logo-element {
        margin-inline-start: 0;
        margin-inline-end: 0 !important;
    }
    .system-logo-element img {
        max-height: 40px;
    }
}

@media (max-width: 767px) {
    .navbar-light .navbar-brand,
    .system-logo-element {
        margin-inline-start: 0;
        margin-inline-end: 0 !important;
    }
    .system-logo-element img {
        max-height: 40px;
    }
}


[dir="rtl"] .transaction-filter_dropdown {
    left: 0 !important;
    right: auto !important;
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .transaction-filter_dropdown .d-flex {
    flex-direction: row-reverse !important;
}

[dir="rtl"] .transaction-filter_dropdown .position-relative .icon-absolute-on-right {
    right: auto !important;
    left: 0.75rem !important;
}

[dir="rtl"] .transaction-filter_dropdown .flex-wrap {
    flex-direction: row-reverse !important;
}

[dir="rtl"] .transaction-filter_dropdown .justify-content-between {
    justify-content: space-between !important;
}

.object-cover-center {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.slz-home-product-picker {
    max-height: 300px;
    overflow-y: auto;
}

/* SLAZH industrial editorial layer */
.slz-marketplace-mode:not(.slz-auction-mode) .slz-section,
.slz-marketplace-mode:not(.slz-auction-mode) .slz-help,
.slz-marketplace-mode:not(.slz-auction-mode) .main-content {
    position: relative;
    isolation: isolate;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-section::after,
.slz-marketplace-mode:not(.slz-auction-mode) .main-content::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(var(--slz-technical-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--slz-technical-grid) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    opacity: .72;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section {
    overflow: hidden;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section::before {
    position: absolute;
    top: clamp(28px, 4vw, 64px);
    right: clamp(20px, 4vw, 64px);
    z-index: 0;
    content: attr(data-section-number);
    color: transparent;
    font-family: var(--slz-display-font-family, mulish, "Helvetica Neue", Arial, sans-serif);
    font-size: clamp(76px, 10vw, 180px);
    font-weight: var(--slz-display-font-weight, 700);
    line-height: .8;
    -webkit-text-stroke: 1px rgba(254,206,12,.22);
    pointer-events: none;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section > .container-fluid::before {
    display: inline-flex;
    position: relative;
    z-index: 1;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--slz-theme-muted);
    content: "SLAZH / FIELD OPERATIONS";
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section[data-section-number="01"] > .container-fluid::before {
    content: "SLAZH / EQUIPMENT SOLUTIONS";
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section[data-section-number="02"] > .container-fluid::before {
    content: "SLAZH / AVAILABLE FLEET";
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section[data-section-number="03"] > .container-fluid::before {
    content: "SLAZH / PROJECT SECTORS";
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section[data-section-number="04"] > .container-fluid::before {
    content: "SLAZH / FLEET OVERVIEW";
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section > .container-fluid::after {
    display: block;
    position: absolute;
    top: clamp(24px, 3vw, 48px);
    left: clamp(16px, 3vw, 48px);
    width: clamp(44px, 5vw, 88px);
    height: 2px;
    content: "";
    background: var(--slz-theme-accent);
}

.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card {
    position: relative;
    overflow: hidden;
    transition: transform .32s var(--slz-motion-ease), border-color .32s ease, box-shadow .32s ease;
}

.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: "";
    background: var(--slz-theme-accent);
    transform: scaleX(.22);
    transform-origin: left;
    transition: transform .32s var(--slz-motion-ease);
}

.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card > a:first-child {
    overflow: hidden;
}

.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card .card-img-top {
    transition: transform .55s var(--slz-motion-ease), filter .4s ease;
}

.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card:hover,
.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card:focus-within {
    border-color: rgba(254,206,12,.58) !important;
    box-shadow: 0 22px 48px rgba(0,0,0,.24);
    transform: translateY(-5px);
}

.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card:hover::after,
.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card:focus-within::after {
    transform: scaleX(1);
}

.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card:hover .card-img-top,
.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card:focus-within .card-img-top {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.035);
}

.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card ul {
    padding-top: 12px;
    border-top: 1px solid var(--slz-theme-border);
}

.slz-marketplace-mode:not(.slz-auction-mode) .equipment-card ul i {
    color: var(--slz-theme-accent);
}

.slz-marketplace-mode.slz-motion-ready [data-slz-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .55s ease var(--slz-reveal-delay, 0ms),
        transform .65s var(--slz-motion-ease) var(--slz-reveal-delay, 0ms);
}

.slz-marketplace-mode.slz-motion-ready [data-slz-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 767px) {
    .slz-marketplace-mode:not(.slz-auction-mode) .slz-section::after,
    .slz-marketplace-mode:not(.slz-auction-mode) .main-content::after {
        background-size: 40px 40px;
        opacity: .45;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section::before {
        top: 28px;
        right: 16px;
        font-size: 76px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section > .container-fluid::before {
        margin-bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slz-marketplace-mode [data-slz-reveal],
    .slz-marketplace-mode .equipment-card,
    .slz-marketplace-mode .equipment-card::after,
    .slz-marketplace-mode .equipment-card .card-img-top {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* SLAZH compact responsive pass — 2026-07 */
.slz-marketplace-mode:not(.slz-auction-mode) {
    font-size: 15px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .container,
.slz-marketplace-mode:not(.slz-auction-mode) .container-fluid {
    max-width: 1320px;
    margin-inline: auto;
}

/* Compact header: utility information stays secondary to the main navigation. */
.slz-marketplace-mode:not(.slz-auction-mode) .header {
    border-right-width: 2px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-top,
.slz-marketplace-mode:not(.slz-auction-mode) .header-top .container {
    min-height: 34px;
    height: 34px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-top .container {
    padding-inline: 24px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-top .container > .d-flex {
    gap: 18px !important;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-top a,
.slz-marketplace-mode:not(.slz-auction-mode) .header-top button,
.slz-marketplace-mode:not(.slz-auction-mode) .slz-utility-link {
    font-size: 11px;
    letter-spacing: .035em;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-top .nav {
    gap: 12px !important;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-main,
.slz-marketplace-mode:not(.slz-auction-mode) .header-main .container,
.slz-marketplace-mode:not(.slz-auction-mode) .header-main .container > .d-flex {
    min-height: 78px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .header-main .container {
    padding-inline: 24px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .nav-wrapper {
    gap: 28px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo .system-logo-element,
.slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo img {
    width: 176px;
    min-width: 176px;
    min-height: 0;
    max-height: 56px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu {
    gap: clamp(14px, 1.3vw, 24px);
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu > li > a,
.slz-marketplace-mode:not(.slz-auction-mode) .main-menu > li > span {
    min-height: 78px;
    gap: 5px;
    font-size: clamp(13px, 1vw, 16px);
}

.slz-marketplace-mode:not(.slz-auction-mode) .main-menu .sub-menu a {
    padding-block: 10px;
    font-size: 14px;
}

/* Homepage hero and finder fit comfortably inside a common laptop viewport. */
@media (min-width: 1200px) {
    .slz-marketplace-mode .slz-hero,
    .slz-marketplace-mode .slz-hero__grid {
        height: clamp(440px, calc(100dvh - 112px), 650px);
        min-height: 440px;
    }

    .slz-marketplace-mode .slz-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 350px);
        gap: clamp(28px, 4vw, 64px);
        padding-block: 24px;
    }

    .slz-marketplace-mode .slz-hero h1 {
        max-width: 700px;
        padding-left: 14px;
        border-left-width: 7px;
        font-size: clamp(42px, 4.2vw, 68px);
        line-height: .96;
    }

    .slz-marketplace-mode .slz-lead {
        max-width: 520px;
        font-size: 15px;
    }

    .slz-marketplace-mode .slz-marketplace .slz-finder {
        max-width: 350px;
        padding: 20px;
    }

    .slz-marketplace-mode .slz-marketplace .slz-finder h2 {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .slz-marketplace-mode .slz-marketplace .slz-finder label {
        margin: 10px 0 5px;
        font-size: 12px;
    }

    .slz-marketplace-mode .slz-marketplace .slz-finder .form-select,
    .slz-marketplace-mode .slz-marketplace .slz-finder .slz-btn--full {
        min-height: 44px;
        height: 44px;
        font-size: 13px;
    }

    .slz-marketplace-mode .slz-marketplace .slz-finder .slz-btn--full {
        margin-top: 14px;
    }

    .slz-marketplace-mode .slz-marketplace .slz-finder__call {
        margin-top: 7px;
        font-size: 12px;
    }
}

.slz-marketplace .slz-switch {
    width: 100%;
    border: 1px solid var(--slz-theme-accent);
    border-radius: 4px;
}

.slz-marketplace .slz-switch label {
    flex: 1 1 50%;
    min-width: 0 !important;
    min-height: 42px !important;
    margin: 0 !important;
    border-radius: 3px;
    background: var(--slz-theme-accent);
    color: var(--slz-theme-header-bg);
    font-size: 13px !important;
}

.slz-marketplace .slz-switch input:checked + label {
    background: #fff;
    color: var(--slz-theme-header-bg);
}

/* Remove the stray decorative labels and lines called out in the review. */
.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section::before,
.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section > .container-fluid::before,
.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section > .container-fluid::after {
    display: none;
    content: none;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section {
    min-height: 0;
    padding-block: clamp(44px, 5vw, 72px);
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section h2,
.slz-marketplace-mode:not(.slz-auction-mode) .slz-help h2 {
    margin: 12px 0 16px;
    font-size: clamp(34px, 3.5vw, 52px);
    line-height: .98;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section .slz-two-col p,
.slz-marketplace-mode:not(.slz-auction-mode) .slz-industries p,
.slz-marketplace-mode:not(.slz-auction-mode) .slz-help p {
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.55;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-kicker {
    padding-left: 8px;
    border-left-width: 4px;
    font-size: 12px;
    line-height: 1.2;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-category-link {
    min-height: 68px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-category-link span:not(.slz-category-link__icon) {
    font-size: 15px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-market-grid {
    grid-auto-rows: 1fr;
    gap: 18px;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-market-card {
    min-height: 0;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-market-card img {
    height: clamp(130px, 12vw, 175px);
    aspect-ratio: auto;
    margin-bottom: 10px;
    object-fit: cover;
    object-position: center;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-market-card span {
    min-height: 2.2em;
    display: flex;
    align-items: flex-start;
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.08;
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-help {
    padding-block: clamp(42px, 5vw, 68px);
}

.slz-marketplace-mode:not(.slz-auction-mode) .slz-btn {
    min-height: 46px;
    padding-inline: 22px;
    font-size: 14px;
}

/* Internal page typography and cards use the same compact scale. */
.slz-marketplace-mode[data-page-type="markets"] .slz-market-hero {
    padding: 50px 0 28px;
}

.slz-marketplace-mode[data-page-type="markets"] .slz-market-hero h1 {
    max-width: 760px;
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: .96;
}

.slz-marketplace-mode[data-page-type="markets"] .slz-market-hero p:not(.slz-kicker) {
    font-size: 16px;
}

.slz-marketplace-mode[data-page-type="markets"] .slz-market-tile {
    min-height: 260px;
    padding: 20px;
}

.slz-marketplace-mode[data-page-type="markets"] .slz-market-tile strong {
    font-size: clamp(22px, 2vw, 30px);
}

.slz-marketplace-mode[data-page-type="business_page"] .slz-content-page {
    padding-block: 24px !important;
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .slz-business-hero {
    min-height: clamp(160px, 18vw, 235px);
    padding-block: 24px !important;
    border-left-width: 6px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
    box-shadow: none !important;
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .slz-business-hero h1 {
    font-size: clamp(34px, 4.5vw, 62px) !important;
    line-height: 1;
}

.slz-marketplace-mode[data-page-type="business_page"]:not(.slz-auction-mode) .slz-about-copy {
    width: 100%;
    max-width: 980px;
    margin: 18px auto 0 !important;
}

.slz-marketplace-mode[data-page-type="business_page"] .page-paragraph,
.slz-marketplace-mode[data-page-type="business_page"] .page-paragraph * {
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.slz-marketplace-mode[data-page-type="contact"] .slz-content-page h2 {
    font-size: clamp(34px, 4vw, 54px) !important;
    line-height: 1 !important;
}

.slz-marketplace-mode[data-page-type="contact"] .card-body {
    padding-block: 28px;
}

.slz-marketplace-mode[data-page-type="contact"] .mb-5 {
    margin-bottom: 2rem !important;
}

/* Quote form: wider, shorter, readable controls and a working country flag picker. */
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .slz-quote-card {
    width: 100%;
    max-width: 1040px;
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .slz-quote-page .card-body {
    padding: clamp(22px, 3vw, 36px) !important;
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .slz-quote-page p {
    margin-bottom: 20px !important;
    font-size: 14px;
}

.slz-marketplace-mode[data-page-type="request_quote"] .slz-quote-card .row {
    --bs-gutter-y: .85rem;
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) label {
    margin-bottom: 5px;
    font-size: 12px !important;
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .form-control,
.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .form-select {
    min-height: 44px;
    padding: 9px 12px;
    font-size: 14px;
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) textarea.form-control {
    min-height: 92px;
}

.slz-marketplace-mode[data-page-type="request_quote"] .iti {
    width: 100%;
}

.slz-marketplace-mode[data-page-type="request_quote"] .iti__dropdown-content,
.slz-marketplace-mode[data-page-type="request_quote"] .iti__country-list {
    background: #fff;
    color: #182130;
}

.slz-marketplace-mode[data-page-type="request_quote"] .iti__country {
    padding-block: 7px;
}

.slz-marketplace-mode[data-page-type="request_quote"] .slz-date-input {
    color-scheme: dark;
}

.slz-marketplace-mode[data-page-type="request_quote"] .slz-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1);
    opacity: .9;
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .slz-quote-page h1 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1;
}

.slz-marketplace-mode[data-page-type="request_quote"]:not(.slz-auction-mode) .breadcrumb::before {
    display: none;
    content: none;
}

/* Dedicated Terminal and SPMT pages. */
.slz-marketplace-mode[data-page-type="service"] {
    background: var(--slz-theme-bg);
    color: var(--slz-theme-text);
}

.slz-service-hero {
    padding: clamp(54px, 7vw, 90px) 0 clamp(42px, 5vw, 66px);
    background: linear-gradient(120deg, rgba(254,206,12,.08), transparent 55%);
}

.slz-service-hero h1 {
    max-width: 850px;
    margin: 14px 0 18px;
    color: var(--slz-theme-text);
    font-family: var(--slz-display-font-family, mulish, Arial, sans-serif);
    font-size: clamp(38px, 5vw, 68px);
    line-height: .98;
}

.slz-service-hero p {
    max-width: 720px;
    margin-bottom: 26px;
    color: var(--slz-theme-muted);
    font-size: 16px;
    line-height: 1.6;
}

.slz-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.slz-service-grid article {
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--slz-theme-border);
    background: rgba(255,255,255,.025);
}

.slz-service-grid article > span {
    color: var(--slz-theme-accent);
    font-size: 12px;
    font-weight: 800;
}

.slz-service-grid h2 {
    margin-top: 34px;
    color: var(--slz-theme-text);
    font-size: 19px;
    line-height: 1.2;
}

@media (max-width: 1199.98px) {
    .slz-marketplace-mode:not(.slz-auction-mode) .header-top,
    .slz-marketplace-mode:not(.slz-auction-mode) .header-top .container {
        min-height: 32px;
        height: 32px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .header-main,
    .slz-marketplace-mode:not(.slz-auction-mode) .header-main .container,
    .slz-marketplace-mode:not(.slz-auction-mode) .header-main .container > .d-flex {
        min-height: 64px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo .system-logo-element,
    .slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo img {
        width: 138px;
        min-width: 138px;
        max-height: 46px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-hero__grid {
        padding-block: 34px;
        gap: 30px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-lead {
        margin-bottom: 34px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-finder {
        width: 100%;
        max-width: 560px;
        min-height: 0;
        padding: 22px;
    }

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

@media (max-width: 575.98px) {
    .slz-marketplace-mode:not(.slz-auction-mode) .header-top .container {
        padding-inline: 12px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .header-top .container > .d-flex {
        justify-content: space-between !important;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-utility-link:first-child {
        display: inline-flex;
        max-width: 48%;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-utility-link {
        font-size: 8px;
        white-space: nowrap;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .header-main .container {
        padding-inline: 14px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo .system-logo-element,
    .slz-marketplace-mode:not(.slz-auction-mode) .slz-main-logo img {
        width: 118px;
        min-width: 118px;
        max-height: 40px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-hero h1 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-finder h2 {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-finder label {
        margin: 12px 0 6px;
        font-size: 13px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-finder .form-select {
        min-height: 48px;
        height: 48px;
        padding-inline: 14px;
        font-size: 14px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-finder .slz-btn--full {
        min-height: 48px;
        height: 48px;
        margin-top: 16px;
        font-size: 14px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-section,
    .slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section,
    .slz-marketplace-mode:not(.slz-auction-mode) .slz-help {
        padding-block: 38px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-editorial-section h2,
    .slz-marketplace-mode:not(.slz-auction-mode) .slz-help h2 {
        font-size: 32px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 10px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-market-card img {
        height: 120px;
    }

    .slz-marketplace-mode:not(.slz-auction-mode) .slz-market-card span {
        font-size: 14px;
    }

    .slz-service-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SLAZH corporate — card imagery
   ========================================================================== */
.slz-corp-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--slz-surface);
}

.slz-corp-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.slz-corp-card-media--icon {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--slz-navy-900), var(--slz-navy-700));
}

.slz-corp-card-media--icon i {
    color: var(--slz-yellow);
    font-size: clamp(30px, 3.4vw, 44px);
}

/* Light card grids: the media bleeds to the card edge above the number badge. */
.slz-corp-industry-grid article > .slz-corp-card-media,
.slz-corp-process-grid article > .slz-corp-card-media,
.slz-corp-spmt-grid article > .slz-corp-card-media,
.slz-corp-solution-grid a > .slz-corp-card-media,
.slz-corp-solution-grid article > .slz-corp-card-media {
    margin: -30px -30px 26px;
}

/* Dark service cards carry more vertical padding. */
.slz-corp-service-card > .slz-corp-card-media {
    margin: -36px -30px 26px;
}

.slz-corp-service-card .slz-corp-card-media--icon {
    background: linear-gradient(135deg, rgb(255 255 255 / 10%), rgb(255 255 255 / 2%));
}

/* The stock card reserved a tall gap under the number for a text-only layout. */
.slz-corp-service-card .slz-corp-card-media ~ h3 {
    margin-top: 20px;
}

.slz-corp-service-card:hover .slz-corp-card-media img,
.slz-corp-service-card:focus-visible .slz-corp-card-media img,
.slz-corp-solution-grid a:hover .slz-corp-card-media img,
.slz-corp-solution-grid a:focus-visible .slz-corp-card-media img {
    transform: scale(1.06);
}

/* The services page runs a horizontal row per service, so the media becomes a column. */
.slz-corp-service-list article {
    grid-template-columns: 140px 56px minmax(0, 1.25fr) auto;
}

.slz-corp-service-list article > .slz-corp-card-media {
    aspect-ratio: 4 / 3;
    border: 1px solid var(--slz-border);
    border-radius: var(--slz-radius-md);
}

/* ==========================================================================
   SLAZH corporate — targeted enquiry context
   ========================================================================== */
.slz-corp-context-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--slz-border);
    border-top: 4px solid var(--slz-yellow);
    border-radius: var(--slz-radius-md);
    margin-bottom: 30px;
    background: var(--slz-surface);
}

.slz-corp-context-card__media {
    display: block;
    width: 132px;
    height: 132px;
    border-radius: var(--slz-radius-sm);
    object-fit: cover;
}

.slz-corp-context-card__media--icon {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--slz-navy-900), var(--slz-navy-700));
}

.slz-corp-context-card__media--icon i {
    color: var(--slz-yellow);
    font-size: 40px;
}

.slz-corp-context-card__badge {
    display: block;
    margin-bottom: 8px;
    color: var(--slz-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.slz-corp-form-card .slz-corp-context-card h2 {
    margin: 0 0 8px;
    color: var(--slz-navy-900);
    font-size: clamp(22px, 2.4vw, 30px);
    letter-spacing: -.01em;
    line-height: 1.2;
}

.slz-corp-context-card__meta {
    margin: 0 0 10px !important;
    color: var(--slz-navy-700);
    font-size: 13px;
    font-weight: 700;
}

.slz-corp-context-card p {
    margin: 0;
    color: var(--slz-muted);
    font-size: 14px;
    line-height: 1.75;
}

.slz-corp-context-card__switch {
    display: inline-block;
    margin-top: 14px;
    color: var(--slz-navy-900);
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.slz-corp-context-card__switch:hover,
.slz-corp-context-card__switch:focus-visible {
    color: var(--slz-navy-700);
}

.slz-corp-service-locked {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid var(--slz-border);
    background: var(--slz-white);
}

.slz-corp-service-locked__label {
    color: var(--slz-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.slz-corp-service-locked__value {
    flex: 1;
    min-width: 0;
    color: var(--slz-navy-900);
    font-size: 15px;
}

.slz-corp-service-locked__change {
    padding: 0;
    border: 0;
    background: none;
    color: var(--slz-navy-900);
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.slz-corp-button.is-submitting {
    opacity: .6;
    cursor: progress;
}

@media (max-width: 900px) {
    .slz-corp-service-list article > .slz-corp-card-media {
        grid-column: 1 / -1;
        aspect-ratio: 21 / 9;
        margin-bottom: 4px;
    }

    .slz-corp-service-list article {
        grid-template-columns: 55px 1fr;
    }
}

@media (max-width: 620px) {
    .slz-corp-service-list article {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .slz-corp-context-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .slz-corp-context-card__media {
        width: 100%;
        height: 168px;
    }

    .slz-corp-service-locked {
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   SLAZH corporate — motion
   Reveal start/end states are NOT redefined here: the corporate site reuses the
   existing `.slz-marketplace-mode.slz-motion-ready [data-slz-reveal]` rules
   further up this file, so there is one motion vocabulary and one reduced-motion
   guard for the whole site.
   ========================================================================== */

/* Sticky, condensing corporate header. */
.slz-corporate-header {
    position: sticky;
    top: 0;
    transition: box-shadow .28s ease;
}

.slz-corporate-header.is-condensed {
    box-shadow: 0 14px 34px rgb(3 7 22 / 28%);
}

.slz-corporate-header .slz-corporate-utility {
    overflow: hidden;
    max-height: 60px;
    transition: max-height .28s ease, opacity .28s ease;
}

.slz-corporate-header.is-condensed .slz-corporate-utility {
    max-height: 0;
    opacity: 0;
}

.slz-corporate-header .slz-corporate-nav-shell > .container {
    transition: min-height .28s ease;
}

.slz-corporate-header.is-condensed .slz-corporate-nav-shell > .container {
    min-height: 66px;
}

/* Hero parallax: the 90deg gradient is unaffected by a vertical shift.
   --slz-hero-x lets narrow viewports reframe horizontally without fighting the
   source order of this rule. */
.slz-corp-hero {
    background-position: var(--slz-hero-x, center) calc(50% + var(--slz-hero-shift, 0px));
}

@media (prefers-reduced-motion: reduce) {
    .slz-corp-card-media img,
    .slz-corporate-header,
    .slz-corporate-utility,
    .slz-corporate-submenu-toggle i,
    .slz-corporate-nav-shell > .container {
        transition: none;
    }

    /* Drops the parallax offset but keeps the narrow-viewport horizontal framing. */
    .slz-corp-hero {
        background-position: var(--slz-hero-x, center) center;
    }
}

/*
 * Grid column counts matched to the actual card counts, so the last card is
 * never left orphaned on a row of its own: the process collection ships 5 steps
 * (was 5-in-4) and SPMT ships 4 features (was 4-in-3).
 */
@media (min-width: 1200px) {
    .slz-corp-process-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .slz-corp-spmt-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ==========================================================================
   SLAZH corporate — accessibility & touch ergonomics
   ========================================================================== */

/* Keyboard users can jump the header nav straight to the page content. */
.slz-skip-link {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    padding: 12px 20px;
    background: var(--slz-yellow);
    color: var(--slz-navy-950);
    font-size: 14px;
    font-weight: 800;
    transform: translateY(-120%);
    transition: transform .2s ease;
}

.slz-skip-link:focus {
    color: var(--slz-navy-950);
    transform: translateY(0);
}

html[dir="rtl"] .slz-skip-link {
    right: 0;
    left: auto;
}

/*
 * Touch ergonomics: the utility bar, mobile nav and footer links render at their
 * type size (17-21px tall), which is well under a comfortable thumb target. Pad
 * them out on touch-sized viewports without changing the desktop composition.
 */
@media (max-width: 900px) {
    .slz-corporate-utility a,
    .slz-corporate-utility__contact a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
    }

    .slz-corporate-menu > a,
    .slz-corporate-dropdown > a,
    .slz-corporate-submenu a {
        display: flex;
        min-height: 48px;
        align-items: center;
    }

    .slz-corporate-footer a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
    }

    .slz-corp-text-link {
        min-height: 44px;
        align-items: center;
    }
}

/* ==========================================================================
   SLAZH corporate — homepage depth sections
   Equipment carousel, key figures, fleet showcase, advantages/coverage band
   and the narrow-viewport action bar. Built from the existing .slz-corp-*
   vocabulary and the shared .slz-corp-card-media tile.
   ========================================================================== */

.slz-corp-section-heading--inline {
    display: flex;
    max-width: none;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.slz-corp-section-heading--inline > div:first-child {
    max-width: 760px;
}

/* --------------------------------------------------------------- carousel */

.slz-corp-fleet-carousel {
    padding-block: clamp(56px, 6vw, 86px);
    background: var(--slz-surface);
}

.slz-corp-carousel-nav {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.slz-corp-carousel-nav button {
    display: grid;
    width: 46px;
    height: 46px;
    border: 1px solid var(--slz-border);
    border-radius: var(--slz-radius-sm);
    background: var(--slz-white);
    color: var(--slz-navy-900);
    place-items: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.slz-corp-carousel-nav button:hover,
.slz-corp-carousel-nav button:focus-visible {
    border-color: var(--slz-yellow);
    background: var(--slz-yellow);
}

.slz-corp-carousel-nav button.swiper-button-disabled {
    opacity: .4;
}

.slz-corp-fleet-slide {
    display: block;
    overflow: hidden;
    border: 1px solid var(--slz-border);
    border-radius: var(--slz-radius-md);
    background: var(--slz-white);
    color: inherit;
}

.slz-corp-fleet-slide:hover .slz-corp-card-media img,
.slz-corp-fleet-card:hover .slz-corp-card-media img {
    transform: scale(1.05);
}

.slz-corp-fleet-slide h3 {
    margin: 0;
    padding: 20px 22px 0;
    color: var(--slz-navy-900);
    font-size: 18px;
    font-weight: 800;
}

.slz-corp-fleet-slide > span {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px 22px;
    color: var(--slz-navy-900);
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.slz-corp-fleet-slide:hover > span {
    color: var(--slz-navy-700);
}

/* ------------------------------------------------------------ key figures */

.slz-corp-stats {
    background: var(--slz-navy-900);
    color: var(--slz-white);
}

.slz-corp-stats .slz-corp-section-heading h2 {
    color: var(--slz-white);
}

.slz-corp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.slz-corp-stats-grid article {
    padding: 30px;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: var(--slz-radius-md);
    background: rgb(255 255 255 / 4%);
}

/* The shared card tile is photographic by default; every slot in this band is an
   icon, so it collapses to a compact yellow-on-navy mark. */
.slz-corp-stats-grid .slz-corp-card-media {
    width: 52px;
    margin-bottom: 22px;
    aspect-ratio: 1;
    border-radius: var(--slz-radius-sm);
    background: transparent;
}

.slz-corp-stats-grid .slz-corp-card-media--icon {
    background: rgb(242 203 5 / 12%);
}

.slz-corp-stat__value {
    display: block;
    color: var(--slz-yellow);
    font-family: var(--slz-display-font-family);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: var(--slz-display-font-weight);
    letter-spacing: -.03em;
    line-height: 1;
}

.slz-corp-stats-grid article > span {
    display: block;
    margin-top: 12px;
    color: rgb(255 255 255 / 74%);
    font-size: 15px;
    line-height: 1.6;
}

/* --------------------------------------------------------- fleet showcase */

.slz-corp-fleet {
    background: var(--slz-surface);
}

.slz-corp-filter-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 32px;
    gap: 10px;
}

.slz-corp-filter {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--slz-border);
    border-radius: var(--slz-radius-sm);
    background: var(--slz-white);
    color: var(--slz-navy-900);
    font-size: 14px;
    font-weight: 700;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.slz-corp-filter:hover,
.slz-corp-filter:focus-visible {
    border-color: var(--slz-navy-900);
}

.slz-corp-filter.is-active {
    border-color: var(--slz-navy-900);
    background: var(--slz-navy-900);
    color: var(--slz-white);
}

.slz-corp-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.slz-corp-fleet-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--slz-border);
    border-radius: var(--slz-radius-md);
    background: var(--slz-white);
}

.slz-corp-fleet-card[hidden] {
    display: none;
}

.slz-corp-fleet-card h3 {
    margin: 26px 26px 12px;
    color: var(--slz-navy-900);
    font-size: 20px;
    font-weight: 800;
}

.slz-corp-fleet-card p {
    margin: 0 26px;
    color: var(--slz-muted);
    font-size: 15px;
    line-height: 1.7;
}

.slz-corp-fleet-card a {
    display: inline-flex;
    align-items: center;
    padding: 18px 26px 26px;
    color: var(--slz-navy-900);
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.slz-corp-fleet-card a:hover {
    color: var(--slz-navy-700);
    text-decoration: underline;
}

/* -------------------------------------------------- advantages + coverage */

.slz-corp-advantage-band__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: clamp(36px, 5vw, 72px);
}

.slz-corp-advantage-list article {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    padding-block: 26px;
    border-top: 1px solid var(--slz-border);
    gap: 22px;
}

.slz-corp-advantage-list .slz-corp-card-media {
    aspect-ratio: 1;
    border-radius: var(--slz-radius-sm);
}

/* At 64px the filled tile crowded its glyph; the mark reads better unboxed, and
   navy keeps it legible on the light band. Photo slots keep the rounded tile. */
.slz-corp-advantage-list .slz-corp-card-media--icon {
    background: none;
}

.slz-corp-advantage-list .slz-corp-card-media--icon i {
    color: var(--slz-navy-900);
    font-size: 42px;
}

.slz-corp-advantage-list h3 {
    margin: 0 0 8px;
    color: var(--slz-navy-900);
    font-size: 19px;
    font-weight: 800;
}

.slz-corp-advantage-list p {
    margin: 0;
    color: var(--slz-muted);
    font-size: 15px;
    line-height: 1.7;
}

.slz-corp-coverage {
    align-self: start;
    padding: clamp(28px, 3vw, 40px);
    border-radius: var(--slz-radius-lg);
    background: var(--slz-navy-900);
    color: var(--slz-white);
}

.slz-corp-coverage h2 {
    margin: 0 0 14px;
    color: var(--slz-white);
    font-family: var(--slz-display-font-family);
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: var(--slz-display-font-weight);
    letter-spacing: -.02em;
    line-height: 1.1;
}

html[dir="rtl"] .slz-corp-coverage h2 {
    font-family: "Noto Sans Arabic", Tahoma, sans-serif;
    letter-spacing: 0;
    line-height: 1.35;
}

.slz-corp-coverage > p {
    margin: 0 0 26px;
    color: rgb(255 255 255 / 74%);
    font-size: 15px;
    line-height: 1.7;
}

.slz-corp-coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: var(--slz-radius-md);
    background: rgb(255 255 255 / 12%);
}

.slz-corp-coverage-grid > div {
    padding: 20px;
    background: var(--slz-navy-900);
}

.slz-corp-coverage__flag {
    display: block;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: var(--slz-radius-sm);
    object-fit: cover;
}

.slz-corp-coverage-grid i {
    display: block;
    margin-bottom: 8px;
    color: var(--slz-yellow);
    font-size: 16px;
}

.slz-corp-coverage-grid strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
}

.slz-corp-coverage-grid span {
    display: block;
    margin-top: 4px;
    color: rgb(255 255 255 / 62%);
    font-size: 12px;
    line-height: 1.5;
}

/* -------------------------------------------- narrow-viewport action bar */

.slz-corp-action-bar {
    display: none;
}

@media (max-width: 1100px) {
    .slz-corp-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .slz-corp-section-heading--inline {
        flex-direction: column;
        align-items: stretch;
    }

    .slz-corp-carousel-nav {
        display: none;
    }

    .slz-corp-fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slz-corp-advantage-band__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 620px) {
    .slz-corp-stats-grid,
    .slz-corp-fleet-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .slz-corp-filter-row {
        flex-wrap: nowrap;
        margin-inline: -14px;
        padding-inline: 14px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .slz-corp-filter {
        flex: 0 0 auto;
    }

    .slz-corp-action-bar {
        position: fixed;
        z-index: 45;
        bottom: 0;
        display: grid;
        border-top: 1px solid rgb(255 255 255 / 12%);
        background: var(--slz-navy-950);
        grid-auto-columns: minmax(0, 1fr);
        grid-auto-flow: column;
        inset-inline: 0;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .slz-corp-action-bar a {
        display: grid;
        min-height: 60px;
        padding: 8px 6px;
        color: var(--slz-white);
        font-size: 12px;
        font-weight: 700;
        gap: 4px;
        justify-items: center;
        line-height: 1.2;
        text-align: center;
    }

    .slz-corp-action-bar a i {
        font-size: 17px;
    }

    .slz-corp-action-bar__primary {
        background: var(--slz-yellow);
        color: var(--slz-navy-950);
    }

    /* Clears the fixed bar so the footer is never trapped underneath it. */
    .slz-corporate-public {
        padding-bottom: 60px;
    }

    .slz-corporate-public .back-to-top {
        bottom: 88px;
    }
}

/* Keep the page-specific card spacing after shared corporate media rules. */
.slz-corp-spmt-grid article > .slz-corp-card-media {
    margin: -28px -28px 0;
}

.slz-corp-solution-grid a > .slz-corp-card-media {
    margin: -36px -36px 30px;
}

@media (max-width: 620px) {
    .slz-corp-spmt-hero {
        min-height: 560px;
    }

    .slz-corp-spmt-grid article > .slz-corp-card-media {
        margin: -26px -26px 0;
    }

    .slz-corp-solution-grid a > .slz-corp-card-media {
        margin: -26px -26px 26px;
    }
}
