/*
 * OneRaptiX Industrial Mall
 * Figma source: OneRaptiX / 158:9198.
 * This stylesheet owns the page body only; the site header and footer stay global.
 */

.orx-im-mount {
    position: relative;
    left: auto;
    display: block;
    width: 100vw !important;
    max-width: none !important;
    margin-block: 0 !important;
    margin-inline: calc(50% - 50vw) !important;
    overflow-x: hidden;
    overflow-x: clip;
}

.orx-im {
    --orx-primary: #1f6369;
    --orx-primary-hover: #17545a;
    --orx-ink: #091e21;
    --orx-copy: #666;
    --orx-muted: #999;
    --orx-danger: #e43e3e;
    --orx-page: #f8f8f8;
    --orx-border: #dce2e1;
    --orx-white: #fff;
    --orx-radius: 16px;

    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 32px max(20px, calc((100vw - 1440px) / 2)) 100px;
    overflow-x: clip;
    background: var(--orx-page);
    color: var(--orx-ink);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
}

.orx-im,
.orx-im *,
.orx-im *::before,
.orx-im *::after {
    box-sizing: border-box;
}

.orx-im :where(h1, h2, h3, h4, p, figure) {
    margin: 0;
}

.orx-im a,
.orx-im button {
    color: inherit;
    font: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.orx-im button {
    appearance: none;
}

.orx-im img,
.orx-im svg {
    display: block;
}

.orx-im img {
    max-width: 100%;
}

.orx-im a,
.orx-im button {
    outline: 0;
}

.orx-im a:focus-visible,
.orx-im button:focus-visible {
    outline: 2px solid var(--orx-primary);
    outline-offset: 3px;
}

.orx-im__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.orx-im__panel {
    background: var(--orx-white);
    border-radius: var(--orx-radius);
}

.orx-im-icon {
    flex: none;
    pointer-events: none;
}

.orx-im-icon--menu {
    width: 20px;
    height: 20px;
}

.orx-im-icon--arrow {
    width: 9px;
    height: 8px;
}

.orx-im-icon--cart {
    width: 20px;
    height: 20px;
    color: var(--orx-primary);
}

/* Top categories and intentionally blank Figma hero. */

.orx-im__top {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 16px;
    height: 480px;
}

.orx-im__categories,
.orx-im__hero {
    height: 480px;
}

.orx-im__categories {
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.orx-im__hero {
    position: relative;
    overflow: hidden;
}

.orx-im__section-heading {
    display: flex;
    height: 29px;
    align-items: flex-start;
    gap: 14px;
}

.orx-im__section-heading .orx-im-icon--menu {
    margin-top: 5px;
}

.orx-im__section-heading h2 {
    color: var(--orx-primary);
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
}

.orx-im__category-list {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    overflow-y: auto;
    scrollbar-width: none;
}

.orx-im__category-list::-webkit-scrollbar {
    display: none;
}

.orx-im__category-link,
.orx-im__category-skeleton {
    width: 100%;
    height: 38px;
    flex: 0 0 38px;
}

.orx-im__category-skeleton {
    border-bottom: 1px dashed var(--orx-border);
}

.orx-im__category-link {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    justify-content: space-between;
    background-image: repeating-linear-gradient(to right, var(--orx-border) 0 4px, transparent 4px 8px);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 100% 1px;
    color: var(--orx-copy);
    font-size: 16px;
    line-height: 26px;
    transition: color 180ms ease;
}

.orx-im__category-link > span {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.orx-im__category-link .orx-im-icon {
    margin-top: 7.5px;
    margin-right: -1px;
}

.orx-im__category-link:hover,
.orx-im__category-link:focus-visible {
    color: var(--orx-primary);
}

.orx-im__category-all {
    align-self: center;
    margin-top: auto;
    color: var(--orx-ink);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.orx-im__category-all:hover,
.orx-im__category-all:focus-visible {
    color: var(--orx-primary);
}

/* Featured Products strip. */

.orx-im__featured-strip {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding: 16px 24px 16px 40px;
    border-radius: var(--orx-radius);
    background: linear-gradient(90deg, #dbfdee 0%, #c4effc 50.324%, #befed4 100%);
}

.orx-im__featured-intro {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.orx-im__featured-intro h2 {
    color: var(--orx-ink);
    font-size: 32px;
    font-weight: 500;
    line-height: 45px;
}

.orx-im__featured-intro p {
    width: 294px;
    max-width: 100%;
    margin: 16px 0 24px;
    color: var(--orx-copy);
    font-size: 16px;
    line-height: 26px;
}

.orx-im__pill {
    display: inline-flex;
    height: 39px;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 24px;
    border: 0;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-transform: uppercase;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.orx-im__pill--primary {
    width: fit-content;
    background: var(--orx-primary);
    color: var(--orx-white) !important;
}

.orx-im__pill--primary .orx-im-icon--arrow path {
    fill: currentColor;
    stroke: none;
}

.orx-im__pill--primary:hover,
.orx-im__pill--primary:focus-visible {
    background: var(--orx-primary-hover);
}

.orx-im__featured-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 160px;
    grid-template-columns: repeat(6, 160px);
    gap: 16px;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.orx-im__featured-track::-webkit-scrollbar {
    display: none;
}

.orx-im__compact-card {
    position: relative;
    display: block;
    width: 160px;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--orx-white);
    transition:
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.orx-im__compact-card:hover,
.orx-im__compact-card:focus-within {
    box-shadow: 0 12px 28px rgba(9, 30, 33, 0.12);
}

.orx-im__compact-image {
    position: relative;
    width: 160px;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f8f8;
}

.orx-im__compact-image-link,
.orx-im__compact-content {
    display: block;
}

.orx-im__compact-image-link {
    width: 100%;
    height: 100%;
}

.orx-im__compact-image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}
.orx-im__compact-card:hover .orx-im__compact-image::after,
.orx-im__compact-card:focus-within .orx-im__compact-image::after {
    opacity: 1;
}

.orx-im__compact-image img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    transition: transform 240ms ease;
}

.orx-im__compact-card:hover .orx-im__compact-image img,
.orx-im__compact-card:focus-within .orx-im__compact-image img {
    transform: scale(1.025);
}

.orx-im__compact-cart {
    --orx-cart-status-size: 16px;

    position: absolute;
    z-index: 2;
    inset: 0;
    display: inline-grid;
    width: max-content;
    height: max-content;
    margin: auto;
    padding: 8px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--orx-white);
    color: var(--orx-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        opacity 180ms ease,
        visibility 180ms ease;
}

.orx-im__compact-card:hover .orx-im__compact-cart,
.orx-im__compact-card:focus-within .orx-im__compact-cart,
.orx-im__compact-card.has-cart-feedback .orx-im__compact-cart {
    opacity: 1;
    visibility: visible;
}

.orx-im__compact-cart:hover,
.orx-im__compact-cart:focus-visible {
    background: var(--orx-primary);
    color: var(--orx-white);
    box-shadow: 0 8px 20px rgba(9, 30, 33, 0.18);
}

.orx-im__compact-cart .orx-im-icon--cart {
    width: 16px;
    height: 16px;
}

.orx-im__compact-content {
    height: 68px;
    padding: 12px;
}

.orx-im__compact-title {
    overflow: hidden;
    height: 19px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 180ms ease;
}

.orx-im__compact-card:hover .orx-im__compact-title,
.orx-im__compact-card:focus-within .orx-im__compact-title {
    color: var(--orx-primary);
}

.orx-im__prices {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    margin-top: 8px;
}

.orx-im__price,
.orx-im__regular-price {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    white-space: nowrap;
}

.orx-im__price {
    color: var(--orx-danger);
}

.orx-im__regular-price {
    color: var(--orx-muted);
    text-decoration: line-through;
}

.orx-im__compact-card--skeleton {
    display: flex;
    flex-direction: column;
    padding-bottom: 12px;
}

.orx-im__compact-card--skeleton > span:first-child {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    flex: none;
}

.orx-im__compact-card--skeleton > span:nth-child(2) {
    width: calc(100% - 24px);
    height: 19px;
    flex: 0 0 19px;
    margin: 12px 12px 0;
}

.orx-im__compact-card--skeleton > span:nth-child(3) {
    width: 55%;
    height: 17px;
    flex: 0 0 17px;
    margin: 8px 12px 0;
}

/* New Products. */

.orx-im__new-section {
    position: relative;
    margin-top: 48px;
}

.orx-im__title-row,
.orx-im__process-header {
    display: flex;
    height: 45px;
    align-items: baseline;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}

.orx-im__title-copy {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 24px;
}

.orx-im__title-row h2,
.orx-im__process-header h2 {
    flex: none;
    color: var(--orx-ink);
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
    line-height: 45px;
    text-transform: capitalize;
}

.orx-im__title-row h2 em,
.orx-im__process-header h2 em {
    color: var(--orx-danger);
    font-style: inherit;
    font-weight: inherit;
}

.orx-im__title-copy p {
    overflow: hidden;
    color: var(--orx-muted);
    font-size: 16px;
    line-height: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.orx-im__title-row > a {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 8px;
    color: var(--orx-primary);
    font-size: 16px;
    line-height: 19px;
    text-decoration: underline;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.orx-im__title-row > a:hover,
.orx-im__title-row > a:focus-visible {
    color: var(--orx-primary-hover);
}

.orx-im__title-row > a .orx-im-icon--arrow path,
.orx-im__new-hero-actions .orx-im__pill .orx-im-icon--arrow path {
    fill: currentColor;
    stroke: none;
}

.orx-im__new-panel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 240px;
    grid-template-columns: 328px repeat(4, 240px);
    gap: 24px;
    height: 460px;
    padding: 24px 32px 24px 24px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: var(--orx-radius);
    background: var(--orx-white);
    scrollbar-width: none;
}

.orx-im__new-panel::-webkit-scrollbar {
    display: none;
}

.orx-im__new-hero,
.orx-im__new-hero-card {
    width: 328px;
    height: 460px;
    margin: -24px 0 0 -24px;
    border-radius: 16px;
}

.orx-im__new-hero-card {
    position: relative;
    overflow: hidden;
    background: #d9d9d9;
    color: var(--orx-ink);
}

.orx-im__new-hero-copy {
    position: absolute;
    z-index: 2;
    top: 40px;
    left: 32px;
    width: 251px;
    color: var(--orx-ink);
}

.orx-im__new-hero-copy h3 {
    overflow: hidden;
    height: 87px;
    color: var(--orx-ink);
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.orx-im__new-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.orx-im__new-hero-actions .orx-im__pill {
    border: 1px solid transparent;
    background: var(--orx-white);
    color: var(--orx-primary);
}

.orx-im__new-arrow {
    width: 6.20711px;
    height: 11px;
    flex: 0 0 6.20711px;
}

.orx-im__new-learn:not(:hover) .orx-im__new-arrow--light {
    display: none;
}

.orx-im__new-hero-actions .orx-im__pill:hover,
.orx-im__new-hero-actions .orx-im__pill:focus-visible {
    border-color: var(--orx-primary);
}

.orx-im__round-link {
    --orx-cart-status-size: 16px;

    display: inline-grid;
    width: auto;
    height: auto;
    aspect-ratio: 1;
    flex: none;
    padding: 11.5px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--orx-primary);
    color: var(--orx-white);
    cursor: pointer;
    opacity: 1;
    transition:
        background-color 180ms ease,
        box-shadow 180ms ease,
        opacity 180ms ease;
}

.orx-im__new-hero-cart-icon {
    width: 16px;
    height: 16px;
}

.orx-im__round-link:hover,
.orx-im__round-link:focus-visible {
    background: var(--orx-primary-hover);
    box-shadow: 0 8px 20px rgba(9, 30, 33, 0.18);
}

.orx-im__new-card {
    width: 240px;
    height: 412px;
    min-width: 0;
}

.orx-im__new-image {
    position: relative;
    width: 240px;
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--orx-page);
}

.orx-im__new-image-link {
    position: absolute;
    inset: 0;
    display: block;
}

.orx-im__new-image-link img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 240ms ease;
}

.orx-im__new-card:hover .orx-im__new-image-link img,
.orx-im__new-card:focus-within .orx-im__new-image-link img {
    transform: scale(1.025);
}

.orx-im__new-image-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.orx-im__new-cart {
    --orx-cart-status-size: 20px;

    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    width: 48px;
    height: 48px;
    margin: auto;
    padding: 14px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--orx-white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition:
        background-color 180ms ease,
        opacity 180ms ease,
        visibility 180ms ease;
}

.orx-im__new-cart-icon {
    width: 20px;
    height: 20px;
}

.orx-im__new-cart:hover,
.orx-im__new-cart:focus-visible {
    box-shadow: 0 10px 24px rgba(9, 30, 33, 0.18);
}

.orx-im__new-card:hover .orx-im__new-image-shade,
.orx-im__new-card:focus-within .orx-im__new-image-shade {
    opacity: 1;
}

.orx-im__new-card:hover .orx-im__new-cart,
.orx-im__new-card:focus-within .orx-im__new-cart,
.orx-im__new-cart:is(.is-loading, .is-added, .is-error) {
    opacity: 1;
    visibility: visible;
}

.orx-im__cart-action {
    isolation: isolate;
}

.orx-im__cart-action:disabled {
    cursor: default;
}

.orx-im__cart-action > :is(svg, img) {
    grid-area: 1 / 1;
    transition: opacity 120ms ease;
}

.orx-im__cart-action .orx-im-icon--cart {
    color: inherit;
}

.orx-im__cart-action:is(.is-loading, .is-added, .is-error) > :is(svg, img) {
    opacity: 0;
}

.orx-im__cart-action::after {
    grid-area: 1 / 1;
}

.orx-im__cart-action.is-loading::after {
    width: var(--orx-cart-status-size, 18px);
    height: var(--orx-cart-status-size, 18px);
    border: 2px solid rgba(31, 99, 105, 0.28);
    border-top-color: var(--orx-primary);
    border-radius: 50%;
    content: "";
    animation: orx-im-cart-spin 700ms linear infinite;
}

.orx-im__cart-action.is-added {
    background: var(--orx-primary);
    color: var(--orx-white);
}

.orx-im__cart-action.is-added::after {
    width: var(--orx-cart-status-size, 18px);
    height: var(--orx-cart-status-size, 18px);
    background: url("./mall/cart-check.svg") center / contain no-repeat;
    content: "";
}

.orx-im__cart-action.is-error {
    background: var(--orx-danger);
    color: var(--orx-white);
}

.orx-im__cart-action.is-error::after {
    color: var(--orx-white);
    content: "!";
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

@keyframes orx-im-cart-spin {
    to {
        transform: rotate(360deg);
    }
}

.orx-im__new-cart-feedback {
    position: absolute;
    z-index: 3;
    bottom: 16px;
    left: 50%;
    max-width: calc(100% - 32px);
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(9, 30, 33, 0.86);
    color: var(--orx-white);
    font-size: 12px;
    line-height: 15px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    text-overflow: ellipsis;
    transform: translateX(-50%);
    transition: opacity 180ms ease;
    white-space: nowrap;
}

.orx-im__new-cart-feedback:is(.is-loading, .is-added, .is-error) {
    opacity: 1;
}

.orx-im__new-cart-feedback.is-error {
    background: var(--orx-danger);
}

.orx-im__new-title-link {
    display: block;
    height: 48px;
    margin-top: 24px;
}

.orx-im__new-title-link h3 {
    overflow: hidden;
    height: 48px;
    color: var(--orx-copy);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 180ms ease;
}

.orx-im__new-title-link:hover h3,
.orx-im__new-title-link:focus-visible h3 {
    color: var(--orx-primary);
}

.orx-im__new-card > .orx-im__prices {
    height: 24px;
    margin-top: 16px;
    gap: 8px;
    overflow: hidden;
}

.orx-im__new-card > .orx-im__prices .orx-im__price,
.orx-im__new-card > .orx-im__prices .orx-im__regular-price {
    font-size: 20px;
    line-height: 24px;
}

.orx-im__new-learn {
    display: inline-flex;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    border: 1px solid var(--orx-border);
    border-radius: 35px;
    background: var(--orx-white);
    color: var(--orx-ink);
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.orx-im__new-card:hover .orx-im__new-learn,
.orx-im__new-learn:hover,
.orx-im__new-learn:focus-visible {
    border-color: var(--orx-primary);
    background: var(--orx-primary);
    color: var(--orx-white);
}

.orx-im__new-card:hover .orx-im__new-arrow--dark,
.orx-im__new-learn:hover .orx-im__new-arrow--dark,
.orx-im__new-learn:focus-visible .orx-im__new-arrow--dark {
    display: none;
}

.orx-im__new-card:hover .orx-im__new-arrow--light,
.orx-im__new-learn:hover .orx-im__new-arrow--light,
.orx-im__new-learn:focus-visible .orx-im__new-arrow--light {
    display: block;
}

.orx-im__new-empty {
    display: grid;
    width: 1032px;
    height: 412px;
    place-items: center;
    color: var(--orx-muted);
    font-size: 16px;
    line-height: 26px;
}

.orx-im__sr-status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.orx-im__product-card {
    position: relative;
    width: 100%;
    min-width: 0;
}

.orx-im__product-card > a {
    display: block;
    width: 100%;
}

.orx-im__product-image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: var(--orx-page);
    transition: aspect-ratio 240ms ease;
}

.orx-im__product-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition:
        filter 240ms ease,
        transform 240ms ease;
}

.orx-im__product-card:hover .orx-im__product-image img,
.orx-im__product-card:focus-within .orx-im__product-image img {
    filter: saturate(1.04);
    transform: scale(1.025);
}

.orx-im__product-card--new .orx-im__product-image {
    height: auto;
    aspect-ratio: 1;
}

.orx-im__product-card--new.is-showcase .orx-im__product-image::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.orx-im__product-image-cart {
    --orx-cart-status-size: 20px;

    position: absolute;
    z-index: 2;
    inset: 0;
    display: inline-grid;
    width: max-content;
    height: max-content;
    margin: auto;
    padding: 14px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--orx-white);
    color: var(--orx-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        opacity 180ms ease,
        visibility 180ms ease;
}

.orx-im__product-card:hover .orx-im__product-image-cart,
.orx-im__product-card:focus-within .orx-im__product-image-cart,
.orx-im__product-card.has-cart-feedback .orx-im__product-image-cart {
    opacity: 1;
    visibility: visible;
}

.orx-im__product-image-cart:hover,
.orx-im__product-image-cart:focus-visible {
    background: var(--orx-primary);
    color: var(--orx-white);
    box-shadow: 0 10px 24px rgba(9, 30, 33, 0.18);
}

.orx-im__product-title {
    overflow: hidden;
    height: 48px;
    margin-top: 24px;
    color: var(--orx-copy);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 180ms ease;
}

.orx-im__product-card > a:hover .orx-im__product-title,
.orx-im__product-card > a:focus-visible .orx-im__product-title {
    color: var(--orx-primary);
}

.orx-im__product-card .orx-im__prices {
    height: 24px;
    margin-top: 16px;
    gap: 8px;
    overflow: hidden;
}

.orx-im__product-card .orx-im__price,
.orx-im__product-card .orx-im__regular-price {
    font-size: 20px;
    line-height: 24px;
}

.orx-im__product-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.orx-im__product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    border: 1px solid var(--orx-border);
    border-radius: 35px;
    background: var(--orx-white);
    color: var(--orx-ink);
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.orx-im__product-card.is-showcase .orx-im__product-cta {
    border-color: var(--orx-primary);
    background: var(--orx-primary);
    color: var(--orx-white);
}

.orx-im__product-card.is-showcase .orx-im__product-cta .orx-im-icon--arrow path {
    fill: currentColor;
    stroke: none;
}

.orx-im__product-card > a:hover .orx-im__product-cta,
.orx-im__product-card > a:focus-visible .orx-im__product-cta,
.orx-im__product-card:hover .orx-im__product-cta,
.orx-im__product-card:focus-within .orx-im__product-cta {
    border-color: var(--orx-primary);
    background: var(--orx-primary);
    color: var(--orx-white);
}

.orx-im__product-card > a:hover .orx-im__product-cta .orx-im-icon--arrow path,
.orx-im__product-card > a:focus-visible .orx-im__product-cta .orx-im-icon--arrow path,
.orx-im__product-card:hover .orx-im__product-cta .orx-im-icon--arrow path,
.orx-im__product-card:focus-within .orx-im__product-cta .orx-im-icon--arrow path {
    fill: currentColor;
    stroke: none;
}

.orx-im__product-inline-cart {
    --orx-cart-status-size: 20px;

    display: inline-grid;
    width: max-content;
    height: max-content;
    flex: none;
    padding: 6.5px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--orx-primary);
    cursor: pointer;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.orx-im__product-inline-cart:hover,
.orx-im__product-inline-cart:focus-visible {
    background: var(--orx-primary);
    color: var(--orx-white);
    box-shadow: 0 8px 20px rgba(9, 30, 33, 0.14);
}

.orx-im__discount {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    display: inline-flex;
    height: 33px;
    align-items: center;
    padding: 8px 16px;
    border-radius: 4px;
    background: var(--orx-primary);
    color: var(--orx-white);
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
}

.orx-im__product-placeholder {
    display: flex;
    flex-direction: column;
}

.orx-im__product-placeholder > span:first-child {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    flex: none;
    border-radius: 8px;
}

.orx-im__product-placeholder > span:nth-child(2) {
    height: 48px;
    flex: 0 0 48px;
    margin-top: 24px;
}

.orx-im__product-placeholder > span:nth-child(3) {
    width: 55%;
    height: 24px;
    flex: 0 0 24px;
    margin-top: 16px;
}

/* Featured Products process tabs and 5 × 5 catalog. */

.orx-im__process-section {
    margin-top: 48px;
}

.orx-im__process-header {
    align-items: flex-start;
    margin-bottom: 23px;
}

.orx-im__process-tabs {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-top: 2px;
}

.orx-im__process-tabs::-webkit-scrollbar {
    display: none;
}

.orx-im__process-tab {
    display: inline-flex;
    height: 42px;
    flex: none;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border: 0;
    border-radius: 35px;
    background: transparent;
    color: var(--orx-copy);
    cursor: pointer;
    font-size: 16px;
    line-height: 26px;
    white-space: nowrap;
    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.orx-im__process-tab:hover,
.orx-im__process-tab:focus-visible {
    color: var(--orx-primary);
    background: rgba(31, 99, 105, 0.08);
}

.orx-im__process-tab.is-active {
    background: var(--orx-primary);
    color: var(--orx-white);
}

.orx-im__tab-skeleton {
    height: 42px;
    flex: none;
    border-radius: 35px;
}

.orx-im__tab-skeleton:nth-child(1) {
    width: 132px;
}

.orx-im__tab-skeleton:nth-child(2) {
    width: 165px;
}

.orx-im__tab-skeleton:nth-child(3) {
    width: 222px;
}

.orx-im__tab-skeleton:nth-child(4) {
    width: 176px;
}

.orx-im__catalog-panel {
    min-height: 2214px;
    padding: 32px;
    border-radius: var(--orx-radius);
    background: var(--orx-white);
}

.orx-im__catalog-grid {
    display: grid;
    grid-template-columns: repeat(5, 260px);
    column-gap: 19px;
    row-gap: 40px;
}

.orx-im__product-card--catalog {
    height: auto;
}

.orx-im__product-card--catalog .orx-im__product-image {
    height: auto;
    aspect-ratio: 1;
}

.orx-im__product-card--catalog:hover .orx-im__product-image,
.orx-im__product-card--catalog:focus-within .orx-im__product-image {
    aspect-ratio: 5 / 4;
}

.orx-im__product-card--catalog .orx-im__product-actions {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
        opacity 180ms ease,
        visibility 180ms ease;
}

.orx-im__product-card--catalog:hover .orx-im__product-actions,
.orx-im__product-card--catalog:focus-within .orx-im__product-actions,
.orx-im__product-card--catalog.has-cart-feedback .orx-im__product-actions {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.orx-im__product-card--catalog .orx-im__price {
    font-weight: 500;
}

.orx-im__catalog-skeleton {
    display: flex;
    height: auto;
    flex-direction: column;
}

.orx-im__catalog-skeleton > span:first-child {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    flex: none;
    border-radius: 8px;
}

.orx-im__catalog-skeleton > span:nth-child(2) {
    height: 48px;
    flex: 0 0 48px;
    margin-top: 24px;
}

.orx-im__catalog-skeleton > span:nth-child(3) {
    width: 55%;
    height: 24px;
    flex: 0 0 24px;
    margin-top: 16px;
}

.orx-im__empty {
    grid-column: 1 / -1;
    display: grid;
    min-height: 280px;
    place-items: center;
    color: var(--orx-muted);
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

.orx-im__featured-track > .orx-im__empty {
    width: 100%;
    min-height: 208px;
}

.orx-im__new-panel > .orx-im__empty {
    min-width: 100%;
    min-height: 412px;
}

.orx-im__process-tabs > .orx-im__empty {
    display: flex;
    min-height: 42px;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
}

.orx-im__category-list > .orx-im__empty {
    min-height: 100%;
}

/* Service cards. */

.orx-im__benefits {
    display: grid;
    grid-template-columns: repeat(4, 348px);
    gap: 16px;
    margin-top: 48px;
}

.orx-im__benefits article {
    display: flex;
    width: 348px;
    height: 116px;
    min-width: 0;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: var(--orx-radius);
    background: var(--orx-white);
    transition:
        box-shadow 180ms ease,
        color 180ms ease;
}

.orx-im__benefits article:hover {
    box-shadow: 0 12px 28px rgba(9, 30, 33, 0.09);
}

.orx-im__benefit-icon {
    display: grid;
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    place-items: center;
    color: var(--orx-primary);
}

.orx-im__benefit-icon svg {
    width: 68px;
    height: 68px;
}

.orx-im__benefit-icon .orx-im__benefit-svg--shipping {
    width: 54.7518px;
    height: 34.75px;
}

.orx-im__benefit-icon .orx-im__benefit-svg--support {
    width: 44.6286px;
    height: 44.6286px;
}

.orx-im__benefits article > div {
    min-width: 0;
}

.orx-im__benefits h3 {
    overflow: hidden;
    color: var(--orx-ink);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.orx-im__benefits p {
    overflow: hidden;
    margin-top: 8px;
    color: var(--orx-copy);
    font-size: 16px;
    line-height: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.orx-im__status {
    min-height: 0;
    margin: 16px 0 0;
    color: var(--orx-danger);
    font-size: 14px;
    line-height: 21px;
}

.orx-im__status:empty {
    display: none;
}

/* Loading placeholders keep the final geometry stable. */

.orx-im__skeleton {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.72) 40%, transparent 60%) #eef0ef;
    background-size: 220% 100%;
    animation: orx-im-shimmer 1.25s linear infinite;
}

@keyframes orx-im-shimmer {
    from {
        background-position: 120% 0;
    }

    to {
        background-position: -120% 0;
    }
}

@media (hover: none) {
    .orx-im__compact-cart,
    .orx-im__new-cart,
    .orx-im__product-image-cart {
        opacity: 1;
        visibility: visible;
    }

    .orx-im__product-card--catalog .orx-im__product-actions {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }
}

/* Fluid fallbacks below the 1920px Figma canvas. */

@media (max-width: 1480px) {
    .orx-im {
        padding-right: 20px;
        padding-left: 20px;
    }

    .orx-im__catalog-panel {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    .orx-im__catalog-panel::-webkit-scrollbar {
        display: none;
    }

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

    .orx-im__benefits article {
        width: 100%;
    }
}

@media (max-width: 1280px) {
    .orx-im__top {
        grid-template-columns: 320px minmax(0, 1fr);
    }

    .orx-im__featured-strip {
        grid-template-columns: 280px minmax(0, 1fr);
        padding-left: 32px;
    }

    .orx-im__featured-track {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    .orx-im__new-panel {
        grid-template-columns: 328px repeat(4, 240px);
        overflow-x: auto;
        overflow-y: hidden;
    }

    .orx-im__catalog-panel {
        min-height: 0;
    }

    .orx-im__catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 40px 19px;
    }

    .orx-im__product-card--catalog {
        height: auto;
    }

    .orx-im__product-card--catalog .orx-im__product-image {
        height: auto;
        aspect-ratio: 1;
    }

    .orx-im__product-card--catalog:hover .orx-im__product-image,
    .orx-im__product-card--catalog:focus-within .orx-im__product-image {
        aspect-ratio: 5 / 4;
    }

    .orx-im__catalog-skeleton {
        height: auto;
    }

    .orx-im__catalog-skeleton > span:first-child {
        height: auto;
        flex-basis: auto;
        aspect-ratio: 1;
    }

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

    .orx-im__benefits article {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .orx-im {
        padding-right: 16px;
        padding-left: 16px;
    }

    .orx-im__top {
        height: auto;
        grid-template-columns: 1fr;
    }

    .orx-im__categories {
        width: 100%;
        height: 480px;
    }

    .orx-im__hero {
        height: 320px;
    }

    .orx-im__featured-strip {
        display: block;
        height: auto;
        padding: 28px;
    }

    .orx-im__featured-intro {
        display: block;
    }

    .orx-im__featured-intro p {
        margin: 10px 0 20px;
    }

    .orx-im__featured-track {
        margin-top: 24px;
    }

    .orx-im__title-row,
    .orx-im__process-header {
        height: auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .orx-im__title-copy {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .orx-im__title-copy p {
        white-space: normal;
    }

    .orx-im__process-tabs {
        width: 100%;
        justify-content: flex-start;
    }

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

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

@media (max-width: 640px) {
    .orx-im {
        padding: 20px 12px 56px;
    }

    .orx-im__categories {
        height: auto;
        min-height: 432px;
        padding: 24px;
    }

    .orx-im__category-list {
        gap: 12px;
    }

    .orx-im__hero {
        height: 240px;
    }

    .orx-im__featured-strip {
        margin-top: 20px;
        padding: 24px;
    }

    .orx-im__featured-intro h2,
    .orx-im__title-row h2,
    .orx-im__process-header h2 {
        font-size: 28px;
        line-height: 39px;
    }

    .orx-im__new-section,
    .orx-im__process-section {
        margin-top: 36px;
    }

    .orx-im__new-panel {
        grid-template-columns: 276px repeat(4, 210px);
        grid-auto-columns: 210px;
        gap: 16px;
        height: 430px;
        padding: 16px 20px 16px 16px;
    }

    .orx-im__new-hero,
    .orx-im__new-hero-card {
        width: 276px;
        height: 430px;
        margin: -16px 0 0 -16px;
    }

    .orx-im__new-hero-copy {
        top: 32px;
        left: 24px;
        width: 228px;
    }

    .orx-im__new-hero-actions .orx-im__pill {
        padding-right: 18px;
        padding-left: 18px;
    }

    .orx-im__new-card,
    .orx-im__new-image {
        width: 210px;
    }

    .orx-im__new-card {
        height: 398px;
    }

    .orx-im__new-image {
        height: 210px;
    }

    .orx-im__new-title-link {
        margin-top: 16px;
    }

    .orx-im__new-title-link h3 {
        font-size: 17px;
        line-height: 22px;
    }

    .orx-im__new-card > .orx-im__prices .orx-im__price,
    .orx-im__new-card > .orx-im__prices .orx-im__regular-price {
        font-size: 16px;
        line-height: 21px;
    }

    .orx-im__new-learn {
        margin-top: 16px;
    }

    .orx-im__product-card--new .orx-im__product-image {
        height: auto;
        aspect-ratio: 1;
    }

    .orx-im__product-placeholder > span:first-child {
        height: auto;
        aspect-ratio: 1;
        flex-basis: auto;
    }

    .orx-im__product-title {
        margin-top: 16px;
        font-size: 17px;
        line-height: 22px;
    }

    .orx-im__product-actions {
        margin-top: 16px;
    }

    .orx-im__catalog-panel {
        padding: 20px;
    }

    .orx-im__catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 14px;
    }

    .orx-im__product-card .orx-im__price,
    .orx-im__product-card .orx-im__regular-price {
        font-size: 16px;
        line-height: 21px;
    }

    .orx-im__product-cta {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 12px;
    }

    .orx-im__benefits {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }
}

@media (max-width: 420px) {
    .orx-im__catalog-grid {
        grid-template-columns: 1fr;
    }

    .orx-im__benefits article {
        padding-right: 18px;
        padding-left: 18px;
    }
}

@media (max-width: 1024px) {
    .orx-im {
        padding-right: 24px;
        padding-left: 24px;
        font-size: 15px;
    }

    .orx-im__top {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 14px;
    }

    .orx-im__categories {
        padding: 24px;
        height: 420px;
    }

    .orx-im__hero {
        height: 420px;
    }

    .orx-im__featured-strip {
        gap: 20px;
    }

    .orx-im__category-link,
    .orx-im__category-all {
        font-size: 15px;
    }

    .orx-im__catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .orx-im__process-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .orx-im {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 14px;
    }

    .orx-im__top {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .orx-im__categories {
        width: 100%;
        height: auto;
        min-height: 390px;
    }

    .orx-im__hero {
        height: 260px;
    }

    .orx-im__featured-strip {
        padding: 20px;
        gap: 14px;
    }

    .orx-im__featured-track {
        margin-top: 16px;
    }

    .orx-im__process-tabs {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .orx-im *,
    .orx-im *::before,
    .orx-im *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
