:root {
        --arrivals-accent: #ef3e36;
        --skart-accent: #FE2A1C;
        --arrivals-text: #171717;
        --arrivals-muted: #6b6b6b;
        --arrivals-line: #ece8e2;
        --arrivals-chip: #f2f5f9;
        --arrivals-shadow: 0 18px 50px rgba(28, 24, 20, 0.08);
    }

    .new-arrivals-page {
        color: var(--arrivals-text);
        background:
            radial-gradient(circle at top left, rgba(255, 221, 196, 0.35), transparent 28%),
            linear-gradient(180deg, #fff 0%, #fffaf5 100%);
        padding: 18px 0 40px;
    }

    .new-arrivals-shell {
        max-width: 1560px;
        margin: 0 auto;
        padding: 0 38px;
    }

    .new-arrivals-crumbs {
        font-size: 13px;
        color: var(--arrivals-muted);
        margin-bottom: 18px;
    }

    .new-arrivals-crumbs strong {
        color: var(--arrivals-text);
    }

    .new-arrivals-hero {
        display: grid;
        grid-template-columns: 1.18fr 1.62fr;
        border-radius: 24px;
        overflow: hidden;
        background: linear-gradient(90deg, #fff 0%, #fff8f2 58%, #f4eee7 100%);
        box-shadow: var(--arrivals-shadow);
    }

    .new-arrivals-copy {
        padding: 48px 40px;
    }

    .new-arrivals-eyebrow {
        margin: 0 0 14px;
        color: var(--arrivals-accent);
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .new-arrivals-copy h1 {
        margin: 0 0 18px;
        font-size: clamp(40px, 4vw, 66px);
        line-height: 0.98;
        letter-spacing: -0.04em;
    }

    .new-arrivals-copy p {
        max-width: 420px;
        margin: 0 0 28px;
        color: #3f3f3f;
        font-size: 18px;
        line-height: 1.6;
    }

    .new-arrivals-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .new-arrivals-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 24px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        border: 1px solid transparent;
    }

    .new-arrivals-btn:hover {
        text-decoration: none;
    }

    .new-arrivals-btn-primary {
        background: #111;
        color: #fff;
    }

    .new-arrivals-btn-secondary {
        background: rgba(255, 255, 255, 0.72);
        color: #171717;
        border-color: #e5dfd8;
    }

    
    .new-arrivals-banner {
        position: relative;
        min-height: 390px;
        /* border-radius: 34px; */
        overflow: hidden;
        display: block;
        text-decoration: none;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 239, 230, 0.95));
    }

    .new-arrivals-banner-image {
        width: 100%;
        height: 100%;
        min-height: 390px;
        display: block;
        object-fit: contain;
    }

    .new-arrivals-categories {
        display: grid;
        grid-template-columns: repeat(10, minmax(82px, 1fr));
        gap: 16px;
        padding: 24px 0 10px;
        overflow-x: auto;
    }

    .new-arrivals-category {
        min-width: 82px;
        text-align: center;
    }

    .new-arrivals-category-icon {
        width: 82px;
        height: 82px;
        margin: 0 auto 10px;
        border-radius: 50%;
        background: var(--arrivals-chip);
        border: 1px solid #e9e3dc;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        overflow: hidden;
    }

    .new-arrivals-category:nth-child(2n) .new-arrivals-category-icon { background: #f1f5ff; }
    .new-arrivals-category:nth-child(3n) .new-arrivals-category-icon { background: #fff6df; }
    .new-arrivals-category:nth-child(4n) .new-arrivals-category-icon { background: #fff0f2; }
    .new-arrivals-category:nth-child(5n) .new-arrivals-category-icon { background: #eefbf0; }

    .new-arrivals-category span {
        display: block;
        font-size: 13px;
        font-weight: 600;
    }

    .new-arrivals-category-link {
        display: block;
        color: inherit;
        text-decoration: none;
    }

    .new-arrivals-category-link:hover {
        color: inherit;
        text-decoration: none;
    }

    .new-arrivals-category-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .new-arrivals-layout {
        display: grid;
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 22px;
        margin-top: 18px;
    }

    .new-arrivals-sidebar,
    .new-arrivals-grid-shell,
    .new-arrivals-benefits,
    .new-arrivals-newsletter {
        border-radius: 18px;
        background: #fff;
        border: 1px solid #f0ebe5;
        box-shadow: 0 8px 24px rgba(28, 24, 20, 0.05);
    }

    .new-arrivals-sidebar {
        padding: 22px 22px 24px;
        height: fit-content;
        position: sticky;
        top: 108px;
    }

    .new-arrivals-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 22px;
    }

    .new-arrivals-head h3 {
        margin: 0;
        font-size: 17px;
        letter-spacing: 0;
        text-transform: uppercase;
        font-weight: 900;
        color: #181818;
    }

    .new-arrivals-clear {
        color: var(--arrivals-accent);
        font-size: 14px;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .new-arrivals-clear:hover {
        color: var(--arrivals-accent);
        text-decoration: none;
    }

    .new-arrivals-filter + .new-arrivals-filter {
        margin-top: 22px;
        padding-top: 22px;
        border-top: 1px solid #efebe6;
    }

    .new-arrivals-filter h4 {
        margin: 0 0 14px;
        font-size: 15px;
        font-weight: 800;
        color: #242424;
        text-transform: uppercase;
        letter-spacing: 0;
    }

    .new-arrivals-filter-list {
        display: grid;
        gap: 12px;
        font-size: 14px;
        color: #333;
    }

    .new-arrivals-filter-list label {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        color: #343434;
        cursor: pointer;
        line-height: 1.2;
    }

    .new-arrivals-filter-list input[type="checkbox"] {
        width: 17px;
        height: 17px;
        margin: 0;
        flex-shrink: 0;
        appearance: none;
        -webkit-appearance: none;
        border: 2px solid #cfc7bf;
        border-radius: 4px;
        background: #fff;
        position: relative;
    }

    .new-arrivals-filter-list input[type="checkbox"]:checked {
        border-color: var(--arrivals-accent);
    }

    .new-arrivals-filter-list input[type="checkbox"]:checked::after {
        content: "";
        position: absolute;
        inset: 3px;
        border-radius: 1px;
        background: var(--arrivals-accent);
    }

    .new-arrivals-filter-count {
        color: #8c8c8c;
        font-weight: 600;
    }

    .new-arrivals-filter-more {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 14px;
        color: #333;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        background: none;
        border: 0;
        padding: 0;
    }

    .new-arrivals-filter-more:focus {
        outline: none;
    }

    .new-arrivals-filter-hidden {
        display: none;
    }

    .new-arrivals-filter-select,
    .new-arrivals-filter-search {
        width: 100%;
        min-height: 42px;
        border: 1px solid #e3ddd6;
        border-radius: 8px;
        background: #fff;
        color: #30343b;
        padding: 0 12px;
        font-size: 14px;
    }

    .new-arrivals-filter-apply {
        width: 100%;
        min-height: 40px;
        margin-top: 13px;
        border: 0;
        border-radius: 8px;
        background: var(--skart-accent);
        color: #fff;
        font-size: 13px;
        font-weight: 800;
    }

    .new-arrivals-multi {
        position: relative;
    }

    .new-arrivals-multi summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 42px;
        padding: 0 12px;
        border: 1px solid #e3ddd6;
        border-radius: 8px;
        background: #fff;
        color: #30343b;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        list-style: none;
    }

    .new-arrivals-multi summary::-webkit-details-marker {
        display: none;
    }

    .new-arrivals-multi summary::after {
        content: "\2304";
        color: #737985;
        font-size: 16px;
    }

    .new-arrivals-multi[open] summary {
        border-color: var(--skart-accent);
        border-radius: 8px 8px 0 0;
    }

    .new-arrivals-multi-menu {
        max-height: 260px;
        overflow-y: auto;
        padding: 12px;
        border: 1px solid #e3ddd6;
        border-top: 0;
        border-radius: 0 0 8px 8px;
        background: #fff;
    }

    .new-arrivals-filter-search {
        position: sticky;
        top: 0;
        z-index: 1;
        min-height: 38px;
        margin-bottom: 10px;
    }

    .new-arrivals-category-tree {
        max-height: 330px;
        overflow-y: auto;
        padding-right: 4px;
    }

    .new-arrivals-category-tree .is-child {
        padding-left: 18px;
    }

    .new-arrivals-category-tree .is-grandchild {
        padding-left: 36px;
    }

    .new-arrivals-price-slider {
        position: relative;
        height: 28px;
        margin: 8px 2px 5px;
    }

    .new-arrivals-price-slider::before {
        content: "";
        position: absolute;
        top: 13px;
        right: 0;
        left: 0;
        height: 4px;
        border-radius: 999px;
        background: #eee7e1;
    }

    .new-arrivals-price-slider input[type="range"] {
        position: absolute;
        top: 4px;
        left: 0;
        width: 100%;
        height: 20px;
        margin: 0;
        background: transparent;
        pointer-events: none;
        appearance: none;
        -webkit-appearance: none;
    }

    .new-arrivals-price-slider input[type="range"]::-webkit-slider-thumb {
        width: 18px;
        height: 18px;
        border: 3px solid var(--skart-accent);
        border-radius: 50%;
        background: #fff;
        pointer-events: auto;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
    }

    .new-arrivals-price-slider input[type="range"]::-moz-range-thumb {
        width: 14px;
        height: 14px;
        border: 3px solid var(--skart-accent);
        border-radius: 50%;
        background: #fff;
        pointer-events: auto;
        cursor: pointer;
    }

    .new-arrivals-sizes,
    .new-arrivals-size-row,
    .new-arrivals-dots,
    .new-arrivals-swatches {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .new-arrivals-sizes {
        gap: 12px;
    }

    .new-arrivals-size {
        min-width: 40px;
        height: 38px;
        padding: 0 12px;
        border: 1px solid #e5ddd3;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
        background: #fff;
    }

    .new-arrivals-swatch {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 1px solid #d9d2c8;
    }

    .new-arrivals-price-band {
        margin-top: 14px;
        height: 5px;
        border-radius: 999px;
        background: linear-gradient(90deg, #ff3a32, #ff4d43);
        position: relative;
    }

    .new-arrivals-price-band::before,
    .new-arrivals-price-band::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #fff;
        border: 3px solid #ff3a32;
        transform: translateY(-50%);
        box-shadow: 0 0 0 2px #fff;
    }

    .new-arrivals-price-band::before { left: 0; }
    .new-arrivals-price-band::after { right: 0; }

    .new-arrivals-grid-shell {
        padding: 24px;
    }

    .new-arrivals-price-scale {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 2px;
        color: #3d3d3d;
        font-size: 14px;
        font-weight: 800;
    }

    .new-arrivals-price-inputs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 16px;
    }

    .new-arrivals-price-input {
        width: 100%;
        min-height: 38px;
        border: 1px solid #ebe4dc;
        border-radius: 8px;
        padding: 0 12px;
        font-size: 12px;
        color: #333;
        background: #fff;
    }

    .new-arrivals-sort {
        padding: 12px 14px;
        border: 1px solid #e7e0d8;
        border-radius: 12px;
        background: #fff;
        font-size: 14px;
    }

    .new-arrivals-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 18px;
    }

    .new-arrivals-card {
        border-radius: 18px;
        overflow: hidden;
        background: #fff;
        border: 1px solid #eee7df;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .new-arrivals-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 34px rgba(30, 24, 18, 0.10);
    }

    .new-arrivals-media {
        position: relative;
        aspect-ratio: 0.88;
        background: linear-gradient(180deg, #f7f1eb 0%, #fff 100%);
        overflow: hidden;
    }

    .new-arrivals-media > a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .new-arrivals-tag {
        position: absolute;
        left: 10px;
        top: 10px;
        z-index: 1;
        padding: 6px 8px;
        border-radius: 7px;
        background: #111;
        color: #fff;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .new-arrivals-fav {
        position: absolute;
        right: 10px;
        top: 10px;
        z-index: 1;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255,255,255,0.86);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .new-arrivals-product-figure {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        background:
            radial-gradient(circle at 50% 18%, #ffd7bf 0 8%, transparent 8.5%),
            linear-gradient(180deg, #473225 0 8%, transparent 8%),
            linear-gradient(180deg, transparent 0 24%, var(--wear, #b9c7a6) 24% 100%);
    }

    .new-arrivals-card:nth-child(2) .new-arrivals-product-figure { --wear: #e7b0b7; }
    .new-arrivals-card:nth-child(3) .new-arrivals-product-figure { --wear: #48618e; }
    .new-arrivals-card:nth-child(4) .new-arrivals-product-figure { --wear: #c5d8e8; }
    .new-arrivals-card:nth-child(5) .new-arrivals-product-figure { --wear: #efe0cb; }
    .new-arrivals-card:nth-child(6) .new-arrivals-product-figure { --wear: #597453; }
    .new-arrivals-card:nth-child(7) .new-arrivals-product-figure { --wear: #aeb6ec; }
    .new-arrivals-card:nth-child(8) .new-arrivals-product-figure { --wear: #d5c5b8; }
    .new-arrivals-card:nth-child(9) .new-arrivals-product-figure { --wear: #a8ca8d; }
    .new-arrivals-card:nth-child(10) .new-arrivals-product-figure { --wear: #e7d364; }

    .new-arrivals-body {
        padding: 14px 14px 16px;
    }

    .new-arrivals-brand {
        margin: 0 0 4px;
        font-size: 14px;
        font-weight: 800;
    }

    .new-arrivals-name {
        margin: 0 0 8px;
        min-height: 34px;
        color: #555;
        font-size: 13px;
        line-height: 1.3;
    }

    .new-arrivals-price {
        margin: 0 0 10px;
        color: var(--arrivals-accent);
        font-size: 22px;
        font-weight: 900;
        letter-spacing: -0.03em;
    }

    .new-arrivals-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--arrivals-dot-color, #111);
    }

    .new-arrivals-size-pill {
        min-width: 34px;
        height: 28px;
        padding: 0 8px;
        border-radius: 8px;
        border: 1px solid #ece4db;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        color: #555;
    }

    .new-arrivals-size-option,
    .new-arrivals-color-option {
        position: relative;
    }

    .new-arrivals-size-option input,
    .new-arrivals-color-option input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .new-arrivals-size-chip {
        min-width: 49px;
        min-height: 42px;
        padding: 0 14px;
        border: 1px solid #ece7e1;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: #555;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 1px 2px rgba(20, 20, 20, 0.02);
    }

    .new-arrivals-size-option input:checked + .new-arrivals-size-chip {
        border-color: var(--arrivals-accent);
        color: var(--arrivals-accent);
        box-shadow: 0 0 0 2px rgba(239, 62, 54, 0.08);
        background: #fffaf9;
    }

    .new-arrivals-color-chip {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 1px solid #d7d1ca;
        display: inline-flex;
        cursor: pointer;
        position: relative;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
    }

    .new-arrivals-color-option input:checked + .new-arrivals-color-chip {
        box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(239, 62, 54, 0.55);
    }

    .new-arrivals-color-plus {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 1px solid #d7d1ca;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #8d8d8d;
        font-size: 15px;
        font-weight: 700;
        background: #fff;
        box-shadow: 0 1px 2px rgba(20, 20, 20, 0.04);
    }

    .new-arrivals-color-chip.is-light {
        box-shadow: inset 0 0 0 1px #d5d5d5;
    }

    .new-arrivals-card-link,
    .new-arrivals-card-link:hover {
        color: inherit;
        text-decoration: none;
    }

    .new-arrivals-card-meta {
        color: #6a6a6a;
        font-size: 12px;
        line-height: 1.5;
        margin-top: 10px;
    }

    .new-arrivals-card-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 12px;
        min-height: 38px;
        padding: 0 14px;
        border-radius: 10px;
        background: #111;
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .new-arrivals-card-action:hover {
        color: #fff;
        text-decoration: none;
        background: var(--arrivals-accent);
    }

    .new-arrivals-benefits {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        margin-top: 26px;
        padding: 12px;
    }

    .new-arrivals-benefit {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 18px;
    }

    .new-arrivals-benefit + .new-arrivals-benefit {
        border-left: 1px solid var(--arrivals-line);
    }

    .new-arrivals-benefit-icon {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #f6f4f0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .new-arrivals-benefit h4,
    .new-arrivals-benefit p {
        margin: 0;
    }

    .new-arrivals-benefit h4 {
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .new-arrivals-benefit p {
        font-size: 13px;
        color: #5f5f5f;
        margin-top: 4px;
    }

    .new-arrivals-newsletter {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
        gap: 24px;
        margin-top: 24px;
        padding: 28px 30px;
        background:
            radial-gradient(circle at left center, rgba(255, 194, 153, 0.25), transparent 35%),
            rgba(255,255,255,0.92);
    }

    .new-arrivals-newsletter-copy {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .new-arrivals-newsletter-icon {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: #fff3ea;
        color: var(--arrivals-accent);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        border: 1px solid #f5ddcf;
    }

    .new-arrivals-newsletter h3,
    .new-arrivals-newsletter p {
        margin: 0;
    }

    .new-arrivals-newsletter p {
        margin-top: 6px;
        color: #666;
        line-height: 1.5;
    }

    .new-arrivals-newsletter-form {
        display: flex;
        gap: 12px;
    }

    .new-arrivals-newsletter-form input {
        flex: 1;
        height: 54px;
        border: 1px solid #e7e0d8;
        border-radius: 12px;
        padding: 0 16px;
        font-size: 15px;
    }

    .new-arrivals-newsletter-form button {
        height: 54px;
        padding: 0 24px;
        border: 0;
        border-radius: 12px;
        background: #111;
        color: #fff;
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .new-arrivals-apply-row {
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }

    .new-arrivals-apply-row button,
    .new-arrivals-apply-row a {
        flex: 1;
        min-height: 42px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        text-decoration: none;
    }

    .new-arrivals-apply-row button {
        border: 0;
        background: #111;
        color: #fff;
    }

    .new-arrivals-apply-row a {
        border: 1px solid #e7e0d8;
        color: #444;
        background: #fff;
    }

    .new-arrivals-pagination {
        margin-top: 24px;
    }

    .new-arrivals-empty {
        padding: 40px 20px;
        text-align: center;
        color: #666;
        font-size: 15px;
        grid-column: 1 / -1;
    }

    @media (max-width: 1280px) {
        .new-arrivals-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }
    }

    @media (max-width: 1080px) {
        .new-arrivals-shell {
            padding: 0 18px;
        }

        .new-arrivals-hero,
        .new-arrivals-layout,
        .new-arrivals-newsletter {
            grid-template-columns: 1fr;
        }

        .new-arrivals-sidebar {
            position: static;
        }

        .new-arrivals-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .new-arrivals-benefits {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .new-arrivals-benefit:nth-child(odd) {
            border-left: none;
        }
    }

    @media (max-width: 760px) {
        .new-arrivals-copy {
            padding: 30px 22px;
        }

        .new-arrivals-copy h1 {
            font-size: 40px;
        }

        .new-arrivals-copy p {
            font-size: 15px;
        }

        .new-arrivals-grid,
        .new-arrivals-benefits {
            grid-template-columns: 1fr;
        }

        .new-arrivals-banner,
        .new-arrivals-banner-image {
            min-height: 280px;
        }

        .new-arrivals-categories {
            grid-template-columns: repeat(5, minmax(82px, 1fr));
        }

        .new-arrivals-newsletter-form {
            flex-direction: column;
        }
    }

    /* Match the category catalogue while retaining the New Arrivals filters. */
    .new-arrivals-page {
        padding: 0 0 40px;
        background: #fff;
    }

    .new-arrivals-shell {
        max-width: 1300px;
        padding: 0 32px;
    }

    .new-arrivals-crumbs {
        margin: 0;
        padding: 18px 0 12px;
    }

    .new-arrivals-hero {
        display: block;
        border-radius: 0;
        border-bottom: 1px solid #e8e8e8;
        background: #fff;
        box-shadow: none;
    }

    .new-arrivals-copy {
        padding: 0 0 22px;
    }

    .new-arrivals-eyebrow {
        margin-bottom: 7px;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .12em;
    }

    .new-arrivals-copy h1 {
        margin-bottom: 8px;
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -.02em;
    }

    .new-arrivals-copy p:not(.new-arrivals-eyebrow) {
        max-width: 780px;
        margin: 0;
        color: #575d68;
        font-size: 14px;
        line-height: 1.6;
    }

    .new-arrivals-actions,
    .new-arrivals-gallery,
    .new-arrivals-categories {
        display: none;
    }

    .new-arrivals-layout {
        grid-template-columns: 270px minmax(0, 1fr);
        gap: 28px;
        margin-top: 26px;
        align-items: start;
    }

    .new-arrivals-grid-shell {
        min-width: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .new-arrivals-grid-shell .new-arrivals-head {
        min-height: 58px;
        margin-bottom: 14px;
        padding: 0 0 16px;
        border-bottom: 1px solid #e6e7e9;
    }

    .new-arrivals-grid-shell .new-arrivals-head h3 {
        font-size: 18px;
        text-transform: none;
    }

    .new-arrivals-sort {
        min-width: 176px;
        min-height: 42px;
        padding: 0 14px;
        border-radius: 6px;
    }

    .new-arrivals-catalog-grid {
        margin-right: -8px;
        margin-left: -8px;
    }

    .product-single-hover--plain:hover .single-product-details,
    .product-single-hover--plain:hover .inline_product img {
        transform: none !important;
    }

    .skart-catalog-card {
        width: 100%;
        min-height: 100%;
        border: 1px solid #e1e3e7;
        border-radius: 8px;
        background: #fff;
        box-shadow: none;
        overflow: hidden;
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .skart-catalog-card > .h-100 {
        height: auto !important;
        min-height: 100%;
    }

    .skart-catalog-card:hover {
        transform: translateY(-3px);
        border-color: #d2d5da;
        box-shadow: 0 10px 24px rgba(17, 24, 39, .08);
    }

    .skart-catalog-media {
        min-height: 0;
        padding: 0;
        background: #f4f4f4;
    }

    .skart-catalog-media .inline_product {
        width: 100%;
        min-height: 0;
        height: auto !important;
        aspect-ratio: 3 / 4 !important;
        align-items: stretch;
        border-radius: 7px 7px 0 0 !important;
        background: #f4f4f4 !important;
    }

    .skart-catalog-media .inline_product > .d-block,
    .skart-catalog-media .inline_product > .d-block > a {
        display: block !important;
        width: 100%;
        height: 100%;
    }

    .skart-catalog-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .skart-catalog-details {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        height: auto !important;
        padding: 12px 13px 14px;
    }

    .skart-catalog-title,
    .skart-catalog-title a {
        height: auto !important;
    }

    .skart-catalog-title a {
        display: -webkit-box !important;
        min-height: 41px;
        max-height: 41px !important;
        color: #242936;
        font-size: 14px;
        line-height: 1.45;
        font-weight: 600;
        white-space: normal !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        word-break: break-word;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .skart-catalog-title a:hover {
        color: var(--skart-accent);
    }

    .skart-catalog-price,
    .skart-catalog-price .product-price {
        flex-shrink: 0;
        margin-top: 9px;
        text-align: left !important;
    }

    .skart-catalog-price strike {
        display: inline;
        margin-right: 7px;
        color: #8c919b !important;
        font-size: 13px !important;
    }

    .skart-catalog-price strike + br {
        display: none;
    }

    .skart-catalog-price .text-accent {
        color: var(--skart-accent) !important;
        font-size: 17px;
        font-weight: 800;
    }

    .skart-catalog-cart-form {
        margin-top: auto;
        padding-top: 11px;
    }

    .skart-catalog-add-to-cart {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 40px;
        padding: 9px 12px;
        border: 1px solid var(--skart-accent);
        border-radius: 6px;
        background: var(--skart-accent);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        transition: background-color .2s ease, border-color .2s ease;
    }

    .skart-catalog-add-to-cart:hover,
    .skart-catalog-add-to-cart:focus {
        border-color: #df1d12;
        background: #df1d12;
        color: #fff;
    }

    .skart-catalog-add-to-cart:disabled {
        cursor: not-allowed;
        border-color: #a9adb5;
        background: #a9adb5;
    }

    @media (max-width: 1080px) {
        .new-arrivals-shell {
            padding: 0 24px;
        }

        .new-arrivals-layout {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 767px) {
        .new-arrivals-shell {
            padding: 0 16px;
        }

        .new-arrivals-copy {
            padding: 0 0 18px;
        }

        .new-arrivals-copy h1 {
            font-size: 24px;
        }

        .new-arrivals-grid-shell .new-arrivals-head {
            align-items: flex-start;
            flex-direction: column;
        }

        .new-arrivals-sort {
            width: 100%;
        }

        .skart-catalog-details {
            padding: 10px;
        }

        .skart-catalog-title a {
            font-size: 13px;
        }

        .skart-catalog-price .text-accent {
            font-size: 15px;
        }
    }
