.mb-category-preview,
.mb-category-preview * {
    box-sizing: border-box;
}

.mb-category-preview {
    --mb-yellow: #ffc400;
    --mb-yellow-dark: #c89400;
    --mb-black: #080808;
    --mb-panel: #151515;
    --mb-panel-2: #1d1d1d;
    --mb-border: #3b3b3b;
    --mb-text: #f6f6f6;
    --mb-muted: #c6c6c6;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: visible;
    background:
        radial-gradient(circle at 72% 8%, rgba(255,196,0,.07), transparent 32%),
        linear-gradient(180deg, #111, #090909 58%, #111);
    color: var(--mb-text);
    font-family: Arial, Helvetica, sans-serif;
}

.mb-category-preview a {
    color: inherit;
}

.mb-category-preview__notice {
    padding: 9px 20px;
    background: var(--mb-yellow);
    color: #111;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mb-category-preview__layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 22px;
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
    padding: 22px 0 70px;
}

.mb-category-preview__sidebar {
    align-self: start;
    position: sticky;
    top: 16px;
}

.mb-filter-panel {
    margin-bottom: 14px;
    border: 1px solid var(--mb-border);
    background: rgba(20,20,20,.97);
    box-shadow: 0 14px 32px rgba(0,0,0,.22);
}

.mb-filter-panel h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 15px 17px;
    border-bottom: 1px solid var(--mb-border);
    color: var(--mb-yellow);
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.mb-filter-panel__icon {
    display: inline-flex;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--mb-yellow);
}

.mb-filter-panel__icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mb-filter-panel nav {
    display: grid;
}

.mb-filter-panel nav a {
    display: block;
    padding: 11px 17px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: #e5e5e5;
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
}

.mb-filter-panel nav a:last-child {
    border-bottom: 0;
}

.mb-filter-panel nav a:hover,
.mb-filter-panel nav a:focus,
.mb-filter-panel nav a.is-active {
    background: linear-gradient(90deg, rgba(255,196,0,.28), rgba(255,196,0,.05));
    color: var(--mb-yellow);
}

.mb-filter-panel__options a::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 9px;
    border: 1px solid #888;
    border-radius: 50%;
    vertical-align: -1px;
}

.mb-filter-panel__options a.is-active::before {
    border-color: var(--mb-yellow);
    background: var(--mb-yellow);
    box-shadow: inset 0 0 0 2px #151515;
}

.mb-category-preview__clear {
    display: block;
    padding: 13px 15px;
    border: 2px solid var(--mb-yellow);
    background: transparent;
    color: var(--mb-yellow) !important;
    text-align: center;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
    text-transform: uppercase;
}

.mb-category-hero {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid #333;
    background: #111;
}

.mb-category-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.52) saturate(1.08) contrast(1.01);
}

.mb-category-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.44) 44%, rgba(0,0,0,.05) 78%, rgba(0,0,0,.08) 100%),
        linear-gradient(0deg, rgba(0,0,0,.18), transparent 58%);
}

.mb-category-hero__content {
    position: relative;
    z-index: 1;
    width: min(720px, 70%);
    padding: 54px 46px;
}

.mb-category-hero__eyebrow,
.mb-category-seo__eyebrow {
    margin: 0 0 10px;
    color: var(--mb-yellow);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mb-category-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 5vw, 74px);
    line-height: .95;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.mb-category-hero h1::after {
    content: "";
    display: block;
    width: 78px;
    height: 4px;
    margin: 21px 0 19px;
    background: var(--mb-yellow);
}

.mb-category-hero__content > p:not(.mb-category-hero__eyebrow) {
    max-width: 650px;
    margin: 0;
    color: #eee;
    font-size: 18px;
    line-height: 1.58;
}

.mb-category-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
}

.mb-category-hero__features span {
    min-width: 150px;
    padding-left: 13px;
    border-left: 3px solid var(--mb-yellow);
    color: #d2d2d2;
    font-size: 12px;
    line-height: 1.35;
}

.mb-category-hero__features strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}

.mb-subcategory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 16px 0;
}

.mb-subcategory-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44%;
    min-height: 190px;
    overflow: hidden;
    border: 1px solid #3b3b3b;
    background:
        linear-gradient(90deg, rgba(255,196,0,.06), transparent 36%),
        linear-gradient(135deg, #202020, #111);
    color: #fff;
    text-decoration: none !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.26);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mb-subcategory-card:hover,
.mb-subcategory-card:focus {
    border-color: var(--mb-yellow);
    box-shadow: 0 16px 38px rgba(0,0,0,.42);
    transform: translateY(-3px);
}

.mb-subcategory-card > div {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 20px;
}

.mb-subcategory-card h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 20px;
    line-height: 1.13;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.mb-subcategory-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mb-yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.mb-subcategory-card span::after {
    content: "›";
    font-size: 18px;
    line-height: 1;
}

.mb-subcategory-card img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    background: #0e0e0e;
    mix-blend-mode: normal;
    filter: none;
}

.mb-product-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 14px;
    padding: 13px 15px;
    border: 1px solid var(--mb-border);
    background: #151515;
}

.mb-product-toolbar strong,
.mb-product-toolbar span {
    display: block;
}

.mb-product-toolbar strong {
    color: #fff;
    font-size: 14px;
}

.mb-product-toolbar span {
    margin-top: 2px;
    color: #aaa;
    font-size: 12px;
}

.mb-product-toolbar form {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mb-product-toolbar label {
    color: #bbb;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.mb-product-toolbar select {
    min-width: 190px;
    height: 38px;
    border: 1px solid #555;
    background: #222;
    color: #fff;
    padding: 0 10px;
}

.mb-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 18px;
    align-items: stretch;
}

.mb-product-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    overflow: visible;
    border: 1px solid var(--mb-border);
    background: #181818;
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mb-product-card:hover,
.mb-product-card:focus-within,
.mb-product-card.is-description-open {
    z-index: 20;
    border-color: var(--mb-yellow);
    box-shadow: 0 18px 42px rgba(0,0,0,.48);
    outline: none;
    transform: translateY(-2px);
}

.mb-product-card__image {
    position: relative;
    flex: 0 0 42%;
    min-width: 0;
    border-right: 1px solid #333;
    background: #2b2d31;
}


.mb-product-card__image > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    height: 100%;
    background: radial-gradient(circle at 50% 42%, rgba(70,72,78,.42), rgba(43,45,49,.98) 74%);
}

.mb-product-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 380px;
    padding: 16px;
    object-fit: contain;
    background: #2b2d31;
}


.mb-product-card__description-button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 38px;
    border: 1px solid rgba(255,196,0,.5);
    background: rgba(0,0,0,.84);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}

.mb-product-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    padding: 20px;
}

.mb-product-card__shipping {
    margin: 0 0 11px;
    color: var(--mb-yellow);
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
}

.mb-product-card__title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    text-transform: none;
    overflow: visible;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
}

.mb-product-card__title a {
    color: #fff;
    text-decoration: none;
}

.mb-product-card__title a:hover,
.mb-product-card__title a:focus {
    color: var(--mb-yellow);
}

.mb-product-card__trustpilot {
    width: 100%;
    min-height: 24px;
    margin: 0 0 14px;
    overflow: hidden;
}

.mb-product-card__trustpilot iframe {
    display: block !important;
    width: 100% !important;
    min-height: 24px !important;
}

.mb-product-card__trustpilot > a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

.mb-product-card__sku {
    margin: 0 0 17px;
    color: #bdbdbd;
    font-size: 13px;
}

.mb-product-card__pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: auto;
}

.mb-product-card__price-block {
    min-height: 74px;
    padding: 11px 12px;
    border: 1px solid #333;
    background: #111;
}

.mb-product-card__price-block > span {
    display: block;
    margin-bottom: 5px;
    color: #aaa;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.mb-product-card__price-block .price,
.mb-product-card__price-block .regular-price,
.mb-product-card__price-block .special-price,
.mb-product-card__price-block .minimal-price,
.mb-product-card__price-block .price-box {
    color: var(--mb-yellow) !important;
    font-weight: 900;
}

.mb-product-card__price-block .price-box,
.mb-product-card__price-block .priceTablePpr,
.mb-product-card__price-block table {
    margin: 0 !important;
    width: 100% !important;
}

.mb-product-card__rental-price {
    max-width: 100%;
    overflow-x: auto;
}

.mb-product-card__rental-price table {
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}

.mb-product-card__rental-price th,
.mb-product-card__rental-price td {
    border: 1px solid rgba(255,255,255,.85) !important;
    padding: 4px 8px !important;
    color: #fff !important;
    text-align: center !important;
    white-space: nowrap;
}

.mb-product-card__rental-price .priceTablePprTitle,
.mb-product-card__rental-price .priceTablePpr td,
.mb-product-card__rental-price .priceTablePpr th {
    color: #fff !important;
}

.mb-product-card__sale-only {
    margin: 0;
    color: #d5d5d5;
    font-size: 14px;
    font-weight: 700;
}

.mb-product-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 15px;
}

.mb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 15px;
    border: 2px solid var(--mb-yellow);
    color: #111 !important;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
}

.mb-button--primary {
    background: var(--mb-yellow);
}

.mb-button--secondary {
    background: transparent;
    color: var(--mb-yellow) !important;
}

.mb-button:hover,
.mb-button:focus {
    border-color: #fff;
    background: #fff;
    color: #111 !important;
}

.mb-product-card__description {
    position: absolute;
    z-index: 30;
    top: 18px;
    right: 18px;
    left: 18px;
    max-height: calc(100% - 36px);
    overflow-y: auto;
    padding: 24px;
    border: 2px solid var(--mb-yellow);
    background: rgba(10,10,10,.98);
    color: #eee;
    box-shadow: 0 20px 50px rgba(0,0,0,.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.mb-product-card.is-description-open .mb-product-card__description {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mb-product-card__description h3 {
    margin: 0 28px 12px 0;
    color: var(--mb-yellow);
    font-size: 16px;
    text-transform: uppercase;
}

.mb-product-card__description p {
    margin: 0;
    color: #efefef;
    font-size: 15px;
    line-height: 1.65;
}

.mb-product-card__description-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.mb-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.mb-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #555;
    background: #171717;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.mb-pagination a:hover,
.mb-pagination a:focus,
.mb-pagination a.is-active {
    border-color: var(--mb-yellow);
    background: var(--mb-yellow);
    color: #111;
}

.mb-category-preview__empty {
    padding: 60px 30px;
    border: 1px solid #444;
    background: #151515;
    color: #ddd;
    text-align: center;
    font-size: 18px;
}

.mb-category-seo {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr);
    gap: 34px;
    margin-top: 28px;
    padding: 32px;
    border-top: 4px solid var(--mb-yellow);
    background: #151515;
}

.mb-category-seo h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    text-transform: uppercase;
}

.mb-category-seo p {
    margin: 0 0 14px;
    color: #d6d6d6;
    font-size: 15px;
    line-height: 1.68;
}

.mb-category-seo aside {
    padding: 22px;
    border: 1px solid #3b3b3b;
    background: #0e0e0e;
}

.mb-category-seo aside strong {
    display: block;
    margin-bottom: 11px;
    color: var(--mb-yellow);
    font-size: 17px;
    text-transform: uppercase;
}

.mb-category-seo aside a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: var(--mb-yellow);
    color: #111;
    font-weight: 900;
    text-decoration: none;
}



.mb-category-questions {
    margin-top: 24px;
    padding: 32px;
    border: 1px solid var(--mb-border);
    border-top: 4px solid var(--mb-yellow);
    background: #111;
}

.mb-category-questions__heading {
    margin-bottom: 20px;
}

.mb-category-questions__heading h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    text-transform: uppercase;
}

.mb-category-questions__list {
    display: grid;
    gap: 10px;
}

.mb-category-question {
    border: 1px solid #3d3d3d;
    background: #181818;
}

.mb-category-question[open] {
    border-color: rgba(255,196,0,.72);
    box-shadow: 0 12px 28px rgba(0,0,0,.24);
}

.mb-category-question summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 58px;
    padding: 16px 18px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    list-style: none;
}

.mb-category-question summary::-webkit-details-marker {
    display: none;
}

.mb-category-question summary:hover,
.mb-category-question summary:focus {
    color: var(--mb-yellow);
    outline: none;
}

.mb-category-question__toggle {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
}

.mb-category-question__toggle::before,
.mb-category-question__toggle::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 3px;
    width: 16px;
    height: 2px;
    background: var(--mb-yellow);
}

.mb-category-question__toggle::after {
    transform: rotate(90deg);
    transition: transform .18s ease;
}

.mb-category-question[open] .mb-category-question__toggle::after {
    transform: rotate(0deg);
}

.mb-category-question__answer {
    padding: 0 18px 18px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.mb-category-question__answer p {
    margin: 16px 0 0;
    color: #d6d6d6;
    font-size: 15px;
    line-height: 1.68;
}

@media (max-width: 1180px) {
    .mb-category-preview__layout {
        grid-template-columns: 235px minmax(0, 1fr);
    }

    .mb-product-card {
        flex-direction: column;
    }

    .mb-product-card__image {
        flex-basis: auto;
        border-right: 0;
        border-bottom: 1px solid #333;
    }
}

@media (max-width: 900px) {
    .mb-category-preview__layout {
        grid-template-columns: 1fr;
    }

    .mb-category-preview__sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .mb-filter-panel {
        margin-bottom: 0;
    }

    .mb-subcategory-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 700px) {
    .mb-category-preview__breadcrumbs,
    .mb-category-preview__layout {
        width: calc(100% - 28px);
    }

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

    .mb-category-hero__content {
        width: 100%;
        padding: 42px 26px;
    }

    .mb-category-hero h1 {
        font-size: 44px;
    }

    .mb-product-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .mb-product-toolbar form,
    .mb-product-toolbar select {
        width: 100%;
    }

    .mb-product-grid {
        grid-template-columns: 1fr;
    }

    .mb-product-card {
        flex-direction: column;
    }
}

@media (hover: none) {
    .mb-product-card.is-description-open .mb-product-card__description {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mb-product-card,
    .mb-product-card__description,
    .mb-subcategory-card {
        transition: none;
    }
}


.mb-category-seo.mb-category-seo--full {
    grid-template-columns: minmax(0, 1fr);
}
