* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --page: #f7f5f0;
    --paper: #ffffff;
    --ink: #151515;
    --muted: #6e6a63;
    --line: #ded8ce;
    --soft: #ebe7df;
    --accent: #28594f;
    --radius: 6px;
}

body {
    min-height: 100vh;
    background: var(--page);
    color: var(--ink);
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0;
}

.category-catalog-page .listing-head {
    display: none !important;
}
.category-catalog-results .category-feed-status {
    grid-column: 1 / -1;
    margin: 0;
    padding: 56px 16px;
    color: #666;
    text-align: center;
    font-size: 13px;
}

@media (min-width: 901px) {
    .category-primary-tabs .product-home-links__inner {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }
    .category-primary-tabs .product-home-links__inner::-webkit-scrollbar { display: none; }
    .category-primary-tabs a.active { color: #111; font-weight: 600; box-shadow: inset 0 -2px #111; }
}

a {
    color: inherit;
    text-decoration: none;
}

.category-mobile-header,
.category-mobile-layer {
    display: none;
}

button,
input {
    font: inherit;
    letter-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
}

.category-home-card {
    display: none;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(247, 245, 240, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    transition: transform .24s ease;
}

.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    max-width: 1220px;
    min-height: 70px;
    margin: 0 auto;
    padding: 14px 22px;
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr) auto;
    gap: 22px;
    align-items: center;
}

.logo {
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.search-form {
    position: relative;
    width: min(520px, 100%);
    margin: 0 auto;
}

.search-form input {
    width: 100%;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    padding: 0 44px 0 14px;
    outline: none;
}

.search-form input:focus {
    border-color: var(--ink);
}

.search_sbtn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 5px;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    max-height: 360px;
    overflow: auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    z-index: 30;
}

.search-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid var(--line);
}

.search-item:hover {
    background: var(--soft);
}

.search-item img {
    width: 50px;
    height: 62px;
    object-fit: cover;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.cart-icon,
.account-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    display: grid;
    place-items: center;
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
}

.all-products {
    padding: 38px 0 72px;
}

.container_na {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 22px;
}

.listing-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

h1,
.section-title {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 520;
    line-height: 1.02;
}

.section-subtitle {
    max-width: 580px;
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.listing-action,
.pagination a,
.pagination span {
    min-height: 42px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    font-weight: 650;
}

.listing-action:hover,
.pagination a:hover,
.pagination .current-page {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.product-card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    overflow: hidden;
}

.product-image {
    aspect-ratio: 4 / 5;
    background: var(--soft);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}

.product-info {
    padding: 13px;
}

.subcategory {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.discount-tag {
    display: inline-flex;
    margin-left: 8px;
    color: #0f6b46;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.shipping-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    color: #5f5038;
    font-size: 11px;
    font-weight: 760;
    text-transform: uppercase;
}

.shipping-tag .fa-plane {
    transform: rotate(-45deg);
}

.promo-countdown {
    display: block;
    margin-top: 6px;
    color: #0f6b46;
    font-size: 11px;
    font-weight: 750;
}

.product-name {
    min-height: 42px;
    margin: 7px 0 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 560;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}

.price {
    font-weight: 720;
    white-space: nowrap;
    display: grid;
    gap: 2px;
}

.price-now {
    color: #0f6b46;
}

.price-was {
    color: var(--muted);
    font-size: 12px;
    font-weight: 560;
    text-decoration: line-through;
}

.grid-cart-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 5px;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.grid-cart-btn:hover {
    background: var(--accent);
}

.pagination {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.pagination span:not(.current-page) {
    color: var(--muted);
}

.footer-main-desktop {
    min-height: 330px;
    padding: 48px 22px;
    background: #1d1d1d;
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
}

.join-our-world {
    font-size: 26px;
    font-weight: 560;
}

.sub-text,
.md-tc {
    max-width: 620px;
    color: rgba(255,255,255,.62);
}

.main-desktop-form {
    width: min(620px, 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: 18px 0;
}

.md-form-input {
    min-height: 44px;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: #fff;
    padding: 0 14px;
    outline: none;
}

.main-subscribe-btn {
    min-height: 44px;
    border: 0;
    background: #fff;
    color: #111;
    padding: 0 18px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .header-left {
        grid-column: 1 / -1;
        order: 3;
    }

    .search-form {
        width: 100%;
    }

    .listing-head {
        display: block;
    }

    .listing-action {
        margin-top: 18px;
    }

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

@media (max-width: 640px) {
    .header-inner,
    .container_na {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo {
        font-size: 12px;
    }

    h1,
    .section-title {
        font-size: 34px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 13px;
    }

    .main-desktop-form {
        grid-template-columns: 1fr;
    }
}

/* Desktop category workspace: sticky subcategories and shared home product cards. */
.category-subcategory-sidebar { display: none; }
@media (min-width: 981px) {
    .all-products { padding: 30px 0 48px; }
    .container_na { width: 100%; max-width: none; padding: 0; }
    .category-catalog-layout {
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 6px;
        align-items: start;
    }
    .category-catalog-results { min-width: 0; padding: 6px 8px 0 0; }
    .category-subcategory-sidebar {
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 100px);
        display: flex;
        overflow: hidden;
        flex-direction: column;
        border-right: 1px solid #e1e1e1;
        background: #fff;
    }
    .category-subcategory-sidebar nav {
        min-height: 0;
        padding: 12px 0 6px;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: #c7c7c7 transparent;
    }
    .category-subcategory-sidebar a {
        min-height: 34px;
        padding: 6px 10px 6px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-left: 2px solid transparent;
        color: #5f5f5f;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.3;
    }
    .category-subcategory-sidebar a span { min-width: 0; }
    .category-subcategory-sidebar a small { flex: 0 0 auto; color: #888; font-size: 11px; font-weight: 400; }
    .category-subcategory-sidebar a:hover { background: #f5f5f5; color: #111; }
    .category-subcategory-sidebar a.active { border-left-color: #111; background: #f1f1f1; color: #111; font-weight: 500; }
    .listing-head { margin-bottom: 18px; padding: 0 0 18px; }
    .listing-head h1 { font-size: clamp(28px, 3vw, 42px); font-weight: 400; }
    .section-subtitle { margin-top: 9px; font-size: 13px; }
    .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
    .app-product-card {
        position: relative;
        min-width: 0;
        height: 100%;
        display: flex;
        overflow: hidden;
        flex-direction: column;
        border: 0;
        border-radius: 7px;
        background: #fff;
        box-shadow: none;
    }
    .app-product-link { min-width: 0; display: flex; flex: 1; flex-direction: column; color: inherit; }
    .app-product-image { width: 100%; height: 240px; flex: 0 0 240px; overflow: hidden; background: #f2f2f2; }
    .app-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
    .app-product-card:hover .app-product-image img { transform: scale(1.025); }
    .app-product-copy { flex: 1; padding: 10px 11px 6px; }
    .app-product-type { display: block; overflow: hidden; color: #777; font-size: 11px; font-weight: 400; white-space: nowrap; text-overflow: ellipsis; }
    .app-product-copy h3 { margin: 3px 0 0; color: #555; font-size: 12px; font-weight: 350; line-height: 1.22; }
    .app-product-foot { min-height: 45px; margin-top: auto; padding: 0 8px 8px 11px; display: flex; align-items: center; justify-content: space-between; gap: 6px; }
    .app-price { min-width: 0; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; }
    .app-price strong { color: #111; font-size: 14px; font-weight: 600; white-space: nowrap; }
    .app-price del { color: #888; font-size: 11px; font-weight: 400; white-space: nowrap; }
    .app-product-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 2px; }
    .app-product-actions .wishlist-btn {
        position: static;
        width: 34px;
        min-width: 34px;
        height: 32px;
        margin: 0;
        padding: 0;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: 50%;
        background: transparent;
        color: #777;
        box-shadow: none;
        font-size: 17px;
    }
    .app-product-actions .wishlist-btn:hover,
    .app-product-actions .wishlist-btn.is-active { color: #111; }
}

/* Current Casava Vogue catalogue treatment for phones and tablets. */
@media (max-width: 980px) {
    html,
    html body,
    body .all-products,
    body .container_na {
        background: #fff !important;
    }

    body {
        padding-bottom: calc(58px + env(safe-area-inset-bottom)) !important;
        color: #292929;
    }

    .main-header { display: none !important; }

    .category-mobile-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
        height: 60px;
        padding: 0 8px;
        display: grid;
        grid-template-columns: 40px minmax(0,1fr) 40px 40px;
        gap: 5px;
        align-items: center;
        border-bottom: 1px solid #e8e8e8;
        background: rgba(255,255,255,.98);
        color: #111;
    }

    .category-mobile-header > button,
    .category-mobile-cart {
        width: 40px;
        height: 40px;
        padding: 0;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: 50%;
        background: transparent;
        color: #111;
        font-size: 21px;
    }

    .category-mobile-wordmark {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        color: #111;
        font-size: 17px;
        font-weight: 500;
        letter-spacing: .1em;
        white-space: nowrap;
    }

    .category-mobile-search-trigger { grid-column: 3; }
    .category-mobile-cart { position: relative; grid-column: 4; }
    .category-mobile-cart b {
        position: absolute;
        top: -1px;
        right: -1px;
        min-width: 17px;
        height: 17px;
        padding: 0 4px;
        display: grid;
        place-items: center;
        border: 2px solid #fff;
        border-radius: 999px;
        background: #111;
        color: #fff;
        font-size: 9px;
    }

    .category-mobile-search {
        position: absolute;
        z-index: 3;
        left: 52px;
        right: 8px;
        top: 50%;
        height: 40px;
        display: none;
        grid-template-columns: 20px minmax(0,1fr) 32px 34px;
        align-items: center;
        padding-left: 12px;
        transform: translateY(-50%);
        border: 1px solid #aaa;
        border-radius: 999px;
        background: #fff;
        color: #555;
    }

    .category-mobile-search input {
        width: 100%;
        height: 100%;
        padding: 0 8px;
        border: 0 !important;
        outline: 0;
        background: transparent;
        font-size: 15px !important;
    }

    .category-mobile-search a,
    .category-mobile-search button {
        width: 32px;
        height: 34px;
        padding: 0;
        display: grid;
        place-items: center;
        border: 0;
        background: transparent;
        color: #111;
    }

    .category-mobile-header.search-open .category-mobile-search { display: grid; }
    .category-mobile-header.search-open .category-mobile-wordmark,
    .category-mobile-header.search-open .category-mobile-search-trigger,
    .category-mobile-header.search-open .category-mobile-cart { visibility: hidden; }

    .category-mobile-layer {
        position: fixed;
        z-index: 10020;
        inset: 0;
        display: block;
    }

    .category-mobile-layer[hidden] { display: none; }
    .category-mobile-scrim { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0,0,0,.45); }
    .category-mobile-drawer {
        position: absolute;
        inset: 0;
        width: 100%;
        overflow-y: auto;
        isolation: isolate;
        background: #222 var(--category-drawer-image) center/cover no-repeat;
        animation: category-catalog-drawer-in .22s ease-out;
    }
    .category-mobile-drawer:before { content: ""; position: fixed; z-index: -1; inset: 0; background: rgba(0,0,0,.64); }
    .category-mobile-drawer-head { position: sticky; top: 0; z-index: 1; min-height: 64px; display: grid; place-items: center; background: transparent; }
    .category-mobile-drawer-head h2 { margin: 0; color: #fff !important; font-size: 20px !important; font-weight: 350 !important; letter-spacing: .12em; }
    .category-mobile-drawer-close { position: absolute; top: 9px; right: 8px; width: 46px; height: 46px; padding: 0; border: 0; background: transparent; color: #fff; font-size: 23px; }
    .category-mobile-drawer nav { padding: 6px 0 24px; }
    .category-mobile-drawer nav a { min-height: 58px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 17px; font-weight: 300; text-align: center; }
    .category-mobile-drawer nav span { padding: 8px 16px; border-radius: 999px; transition: background-color .16s ease; }
    .category-mobile-drawer nav a:hover span,
    .category-mobile-drawer nav a:focus-visible span,
    .category-mobile-drawer nav a:active span { background: rgba(0,0,0,.5); }
    body.category-drawer-open { overflow: hidden; }

    .header-inner {
        width: 100%;
        max-width: none;
        min-height: 58px;
        padding: 7px 10px 8px;
        grid-template-columns: minmax(0,1fr) auto;
        gap: 7px 8px;
    }

    .header-center {
        display: flex;
        align-items: center;
        min-height: 40px;
    }

    .logo {
        font-size: 16px !important;
        font-weight: 450 !important;
        letter-spacing: .1em !important;
    }

    .header-right {
        gap: 1px;
    }

    .cart-icon,
    .account-icon {
        width: 40px;
        height: 40px;
        border: 0 !important;
        border-radius: 50% !important;
        background: transparent !important;
        color: #111;
        font-size: 20px;
    }

    .cart-count {
        top: -1px;
        right: -1px;
        min-width: 17px;
        height: 17px;
        padding: 0 4px;
        border: 2px solid #fff;
        background: #111;
        font-size: 9px;
    }

    .header-left {
        grid-column: 1 / -1;
        width: 100%;
    }

    .search-form input {
        height: 38px;
        padding: 0 44px 0 14px;
        border: 1px solid #c9c9c9 !important;
        border-radius: 999px !important;
        background: #fff;
        font-size: 15px !important;
    }

    .search_sbtn {
        top: 3px;
        right: 4px;
        width: 32px;
        height: 32px;
        border-radius: 50% !important;
        background: transparent !important;
        color: #111 !important;
        font-size: 17px;
    }

    .all-products {
        padding: 14px 0 20px;
    }

    .container_na {
        width: 100%;
        max-width: none;
        padding: 0 6px;
    }

    .listing-head {
        margin: 0 8px 13px;
        padding: 5px 0 12px;
        border-bottom: 1px solid #e5e5e5;
    }

    .listing-head .eyebrow,
    .listing-head .section-subtitle,
    .listing-action {
        display: none;
    }

    .listing-head h1 {
        margin: 0;
        color: #222;
        font-size: 21px !important;
        font-weight: 400 !important;
        line-height: 1.2;
    }

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

    .product-card {
        display: flex;
        min-width: 0;
        flex-direction: column;
        border: 0 !important;
        border-radius: 6px !important;
        background: #fff;
        box-shadow: none !important;
    }

    .product-image {
        aspect-ratio: .84;
        border-radius: 6px;
        background: #f2f2f2;
    }

    .product-info {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 8px 7px 7px !important;
    }

    .subcategory {
        overflow: hidden;
        color: #858585;
        font-size: 10px;
        font-weight: 350;
        letter-spacing: 0;
        text-transform: none;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .discount-tag,
    .promo-countdown,
    .shipping-tag {
        display: none;
    }

    .product-name {
        min-height: 2.45em;
        margin: 3px 0 0;
        color: #555;
        font-size: 14px !important;
        font-weight: 350 !important;
        line-height: 1.22;
    }

    .product-card-footer {
        margin-top: auto;
        gap: 4px;
    }

    .price,
    .price-now {
        color: #111;
        font-size: 14px;
        font-weight: 600;
    }

    .price-was {
        font-size: 10px;
        font-weight: 350;
    }

    .grid-cart-btn {
        width: 34px;
        min-width: 34px;
        height: 34px;
        padding: 0;
        border: 0 !important;
        border-radius: 50% !important;
        background: transparent !important;
        color: #555 !important;
        font-size: 18px !important;
    }

    .legacy-category-card > .wishlist-btn {
        position: absolute !important;
        z-index: 3;
        top: 6px !important;
        right: 6px !important;
        width: 36px !important;
        height: 36px !important;
        border: 0 !important;
        background: rgba(255,255,255,.88) !important;
        color: #555 !important;
        font-size: 19px !important;
    }

    .legacy-category-card { display: none !important; }
    .category-home-card { display: contents; }
    .app-product-card {
        position: relative;
        min-width: 0;
        display: flex;
        overflow: hidden;
        flex-direction: column;
        border: 0 !important;
        border-radius: 6px;
        background: #fff;
        box-shadow: none !important;
    }
    .app-product-link { display: flex; min-width: 0; flex: 1; flex-direction: column; color: inherit; }
    .app-product-image { width: 100%; aspect-ratio: .84; overflow: hidden; border-radius: 6px; background: #f2f2f2; }
    .app-product-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
    .app-product-copy { flex: 1; padding: 8px 7px 4px; }
    .app-product-type { display: block; overflow: hidden; color: #858585; font-size: 10px; font-weight: 350; white-space: nowrap; text-overflow: ellipsis; }
    .app-product-copy h3 { min-height: 2.45em; margin: 3px 0 0; display: -webkit-box; overflow: hidden; color: #555; font-size: 14px !important; font-weight: 350 !important; line-height: 1.22; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
    .app-product-foot { min-height: 42px; padding: 0 5px 7px 7px; display: flex; align-items: center; justify-content: space-between; gap: 3px; }
    .app-price { min-width: 0; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; }
    .app-price strong { color: #111; font-size: 14px; font-weight: 600; white-space: nowrap; }
    .app-price del { color: #999; font-size: 10px; font-weight: 350; white-space: nowrap; }
    .app-product-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 0; }
    .app-product-actions .wishlist-btn,
    .app-product-actions .quick-add {
        position: static !important;
        top: auto !important;
        right: auto !important;
        width: 32px !important;
        min-width: 32px;
        height: 32px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: grid !important;
        place-items: center;
        border: 0 !important;
        border-radius: 50% !important;
        background: transparent !important;
        color: #555 !important;
        box-shadow: none !important;
        font-size: 18px !important;
    }
    .app-product-actions .wishlist-btn:hover,
    .app-product-actions .wishlist-btn.is-active,
    .app-product-actions .quick-add:hover { color: #111 !important; }

    .pagination {
        margin-top: 14px;
        padding: 12px 4px;
        gap: 5px;
    }

    .pagination a,
    .pagination span {
        min-width: 34px;
        min-height: 34px;
        padding: 0 9px;
        border: 0;
        border-radius: 5px;
        background: #f2f2f2;
        font-size: 11px;
        font-weight: 400;
    }

    .pagination .current-page {
        background: #111;
        color: #fff;
    }

    .footer-main-desktop {
        display: none;
    }
}

@keyframes category-catalog-drawer-in { from { transform: translateX(-100%); } to { transform: translateX(0); } }

@media (min-width: 981px) {
    body {
        padding-bottom: 0 !important;
    }

    .app-dock {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .account-icon {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 4px;
    }

    .container_na {
        padding: 0 4px;
    }

    .listing-head {
        margin-inline: 5px;
    }
}
