.bwcr-catalogue,
.bwcr-catalogue * { box-sizing: border-box; }

.bwcr-catalogue {
    --bwcr-accent: #f97316;
    --bwcr-text: #171717;
    --bwcr-muted: #737373;
    --bwcr-line: #e7e7e7;
    --bwcr-soft: #f7f7f7;
    --bwcr-green: #16a34a;
    width: 100%;
    color: var(--bwcr-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

.bwcr-catalogue button,
.bwcr-catalogue input,
.bwcr-catalogue a { font: inherit; }
.bwcr-catalogue button { appearance: none; }

.bwcr-toolbar { margin-bottom: 22px; }
.bwcr-search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(520px, 100%);
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--bwcr-line);
    border-radius: 12px;
    background: #fff;
    color: #8a8a8a;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.bwcr-search:focus-within {
    border-color: color-mix(in srgb, var(--bwcr-accent) 55%, #fff);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--bwcr-accent) 12%, transparent);
}
.bwcr-search input {
    width: 100%;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: var(--bwcr-text) !important;
    font-size: 14px !important;
}

.bwcr-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
    scroll-behavior: smooth;
}
.bwcr-category {
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid var(--bwcr-line);
    border-radius: 999px;
    background: #fff;
    color: #535353;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: .2s ease;
}
.bwcr-category:hover,
.bwcr-category.is-active {
    border-color: var(--bwcr-accent);
    background: var(--bwcr-accent);
    color: #fff;
}
.bwcr-count {
    margin-top: 14px;
    color: var(--bwcr-muted);
    font-size: 12px;
    font-weight: 700;
}

.bwcr-results-shell { position: relative; min-height: 80px; }
.bwcr-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.bwcr-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--bwcr-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,.045);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.bwcr-card:hover {
    transform: translateY(-3px);
    border-color: #dadada;
    box-shadow: 0 14px 34px rgba(0,0,0,.075);
}
.bwcr-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(145deg, #f7f7f7, #ececec);
}
.bwcr-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.bwcr-card:hover .bwcr-card-media img { transform: scale(1.025); }
.bwcr-card-media.is-empty {
    display: grid;
    place-items: center;
}
.bwcr-car-placeholder { font-size: 38px; opacity: .45; }
.bwcr-card-topline {
    min-width: 0;
    margin-bottom: 3px;
    overflow: hidden;
    white-space: nowrap;
}
.bwcr-card-brand {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: var(--bwcr-accent);
    text-overflow: ellipsis;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.bwcr-card-ribbon {
    position: absolute;
    top: 11px;
    right: -1px;
    z-index: 3;
    display: block;
    max-width: 48%;
    min-width: 58px;
    padding: 7px 12px 7px 16px;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
    background: var(--bwcr-accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: right;
    font-size: 8px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: .035em;
    text-transform: uppercase;
}
.bwcr-card-ribbon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 9px;
    height: 100%;
    background: rgba(255,255,255,.18);
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.bwcr-card-body { display: flex; flex: 1 1 auto; flex-direction: column; padding: 14px; }
.bwcr-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--bwcr-text);
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    letter-spacing: -.01em;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.bwcr-card-specs {
    margin-top: 4px;
    overflow: hidden;
    color: var(--bwcr-muted);
    font-size: 11px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bwcr-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 8px;
}
.bwcr-card-price small {
    color: var(--bwcr-muted);
    font-size: 10px;
    font-weight: 700;
}
.bwcr-card-price strong {
    color: var(--bwcr-text);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.025em;
}
.bwcr-card-price span {
    color: var(--bwcr-muted);
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}
.bwcr-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 10px;
}
.bwcr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 10px;
    border: 1px solid transparent;
    border-radius: 9px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    transition: .18s ease;
}
.bwcr-btn-detail,
button.bwcr-btn-detail {
    border-color: var(--bwcr-accent) !important;
    background: #fff !important;
    color: var(--bwcr-accent) !important;
    -webkit-text-fill-color: var(--bwcr-accent);
}
.bwcr-btn-detail:hover,
button.bwcr-btn-detail:hover,
.bwcr-btn-detail:focus,
button.bwcr-btn-detail:focus {
    border-color: var(--bwcr-accent) !important;
    background: color-mix(in srgb, var(--bwcr-accent) 7%, #fff) !important;
    color: var(--bwcr-accent) !important;
}
.bwcr-btn-wa {
    background: var(--bwcr-green);
    color: #fff !important;
}
.bwcr-btn-wa:hover { filter: brightness(.94); }
.bwcr-btn.is-disabled { opacity: .45; cursor: not-allowed; }

.bwcr-loading {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: start center;
    padding-top: 38px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(1px);
    z-index: 5;
}
.bwcr-loading[hidden] { display: none; }
.bwcr-loading span,
.bwcr-modal-wait span {
    width: 28px;
    height: 28px;
    border: 3px solid #e5e5e5;
    border-top-color: var(--bwcr-accent);
    border-radius: 50%;
    animation: bwcr-spin .75s linear infinite;
}
@keyframes bwcr-spin { to { transform: rotate(360deg); } }

.bwcr-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 30px;
    border: 1px dashed #ddd;
    border-radius: 14px;
    background: #fafafa;
    text-align: center;
}
.bwcr-empty strong { font-size: 15px; }
.bwcr-empty span { margin-top: 4px; color: var(--bwcr-muted); font-size: 12px; }
.bwcr-empty button {
    margin-top: 14px;
    padding: 8px 14px;
    border: 0;
    border-radius: 8px;
    background: var(--bwcr-accent);
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
}

.bwcr-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 28px;
}
.bwcr-pagination button,
.bwcr-pagination > span {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 8px;
    border: 1px solid var(--bwcr-line);
    border-radius: 9px;
    background: #fff;
    color: #4a4a4a;
    font-size: 11px;
    font-weight: 800;
}
.bwcr-pagination button { cursor: pointer; }
.bwcr-pagination button.is-current {
    border-color: var(--bwcr-accent);
    background: var(--bwcr-accent);
    color: #fff;
}
.bwcr-pagination button:disabled { opacity: .35; cursor: default; }

html.bwcr-modal-open,
html.bwcr-modal-open body { overflow: hidden !important; }
.bwcr-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    padding: 24px;
}
.bwcr-modal[hidden] { display: none; }
.bwcr-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,15,15,.68);
    backdrop-filter: blur(4px);
}
.bwcr-modal-panel {
    position: relative;
    width: min(980px, 100%);
    max-height: min(88vh, 840px);
    overflow: auto;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(0,0,0,.26);
    z-index: 2;
}
.bwcr-modal-close {
    position: sticky;
    top: 12px;
    float: right;
    z-index: 10;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 12px 12px -50px 0;
    padding: 0;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: #222;
    box-shadow: 0 4px 18px rgba(0,0,0,.1);
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
}
.bwcr-modal-wait { display: grid; place-items: center; min-height: 360px; }
.bwcr-modal-error { padding: 70px 30px; text-align: center; }

.bwcr-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
}
.bwcr-detail-media { min-width: 0; padding: 20px; background: #f5f5f5; }
.bwcr-detail-hero {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: #ececec;
}
.bwcr-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bwcr-detail-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 10px;
    padding-bottom: 3px;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
}
.bwcr-detail-gallery button {
    flex: 0 0 76px;
    width: 76px;
    height: 58px;
    overflow: hidden;
    padding: 0;
    border: 1px solid #dedede;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.bwcr-detail-gallery button:hover,
.bwcr-detail-gallery button.is-active {
    border-color: var(--bwcr-accent);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--bwcr-accent) 14%, transparent);
}
.bwcr-detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.bwcr-detail-info { min-width: 0; padding: 34px 30px 30px; }
.bwcr-detail-kicker {
    margin-bottom: 7px;
    color: var(--bwcr-accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.bwcr-detail h2 {
    margin: 0 !important;
    color: var(--bwcr-text) !important;
    font-size: 25px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    letter-spacing: -.025em;
}
.bwcr-detail-price { display: flex; align-items: baseline; gap: 5px; margin-top: 12px; }
.bwcr-detail-price small,
.bwcr-detail-price span { color: var(--bwcr-muted); font-size: 11px; font-weight: 700; }
.bwcr-detail-price strong { font-size: 26px; font-weight: 900; }
.bwcr-detail-section { margin-top: 23px; }
.bwcr-detail-section h3 {
    margin: 0 0 10px !important;
    color: #333 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.bwcr-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bwcr-spec-grid > div,
.bwcr-detail-line {
    padding: 10px 12px;
    border: 1px solid var(--bwcr-line);
    border-radius: 10px;
    background: #fff;
}
.bwcr-spec-grid span,
.bwcr-detail-line span { display: block; color: var(--bwcr-muted); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.bwcr-spec-label {
    display: flex !important;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
}
.bwcr-spec-icon {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    color: var(--bwcr-accent);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.bwcr-spec-grid strong,
.bwcr-detail-line strong { display: block; margin-top: 2px; font-size: 12px; font-weight: 800; }
.bwcr-rate-list { overflow: hidden; border: 1px solid var(--bwcr-line); border-radius: 12px; }
.bwcr-rate-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 13px;
    border-bottom: 1px solid var(--bwcr-line);
}
.bwcr-rate-list > div:last-child { border-bottom: 0; }
.bwcr-rate-list span { color: #555; font-size: 11px; }
.bwcr-rate-list strong { font-size: 12px; font-weight: 900; }
.bwcr-detail-line { margin-top: 12px; }
.bwcr-detail-notes { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--bwcr-line); }
.bwcr-detail-notes > strong { font-size: 11px; font-weight: 900; text-transform: uppercase; }
.bwcr-detail-notes p { margin: 6px 0 0 !important; color: #5f5f5f; font-size: 11px; line-height: 1.6; }
.bwcr-detail-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 24px;
    padding: 12px 16px;
    border-radius: 11px;
    background: var(--bwcr-green);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 900px) {
    .bwcr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .bwcr-detail { grid-template-columns: 1fr; }
    .bwcr-detail-media { padding-bottom: 12px; }
}

@media (max-width: 640px) {
    /* Mobile app-style rhythm: readable first, while preserving the compact 2-column catalogue. */
    .bwcr-toolbar { margin-bottom: 15px; }
    .bwcr-search {
        min-height: 44px;
        padding-inline: 13px;
        border-radius: 11px;
    }
    .bwcr-search input {
        height: 42px;
        font-size: 14px !important;
        line-height: 1.2;
    }
    .bwcr-categories {
        flex-wrap: nowrap;
        width: 100%;
        gap: 7px;
        overflow-x: auto;
        padding: 0 1px 5px;
        scroll-snap-type: x proximity;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .bwcr-categories::-webkit-scrollbar { display: none; }
    .bwcr-category {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 7px 12px;
        font-size: clamp(12px, 3.15vw, 13px);
        font-weight: 650;
        scroll-snap-align: start;
    }
    .bwcr-count {
        margin-top: 8px;
        font-size: 11.5px;
        font-weight: 650;
        line-height: 1.3;
    }
    .bwcr-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .bwcr-card {
        min-width: 0;
        border-radius: 12px;
        box-shadow: 0 5px 18px rgba(0,0,0,.045);
    }
    .bwcr-card:hover { transform: none; }
    .bwcr-card-ribbon {
        top: 7px;
        max-width: 48%;
        min-width: 44px;
        padding: 5px 7px 5px 11px;
        border-radius: 7px 0 0 7px;
        font-size: 7px;
    }
    .bwcr-card-body {
        min-width: 0;
        padding: 9px 9px 10px;
    }
    .bwcr-card-topline { margin-bottom: 2px; }
    .bwcr-card-brand {
        font-size: clamp(9px, 2.25vw, 10px);
        font-weight: 850;
        line-height: 1.15;
        letter-spacing: .065em;
    }
    .bwcr-card h3 {
        font-size: clamp(13.5px, 3.55vw, 15px) !important;
        font-weight: 750 !important;
        line-height: 1.2 !important;
        letter-spacing: -.016em;
    }
    .bwcr-card-specs {
        max-width: 100%;
        margin-top: 4px;
        font-size: clamp(10px, 2.55vw, 11px);
        line-height: 1.28;
    }
    .bwcr-card-price {
        min-width: 0;
        gap: 2px;
        margin-top: 7px;
        flex-wrap: nowrap;
        line-height: 1;
        white-space: nowrap;
    }
    .bwcr-card-price small {
        flex: 0 0 auto;
        width: auto;
        font-size: clamp(9.5px, 2.35vw, 10px);
        font-weight: 600;
        line-height: 1;
    }
    .bwcr-card-price strong {
        flex: 0 1 auto;
        min-width: 0;
        font-size: clamp(18px, 4.55vw, 19.5px);
        font-weight: 850;
        line-height: 1;
    }
    .bwcr-card-price span {
        position: static;
        flex: 0 0 auto;
        margin-left: 0;
        font-size: clamp(9.5px, 2.35vw, 10.5px);
        font-weight: 550;
        line-height: 1;
    }
    .bwcr-card-actions {
        gap: 5px;
        margin-top: 8px;
    }
    .bwcr-btn {
        min-width: 0;
        min-height: 38px;
        padding: 8px 3px;
        overflow: hidden;
        border-radius: 9px;
        font-size: clamp(11.5px, 2.95vw, 13px);
        font-weight: 650;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .bwcr-pagination { margin-top: 20px; gap: 4px; }
    .bwcr-pagination button,
    .bwcr-pagination > span { min-width: 36px; height: 36px; border-radius: 8px; font-size: 11px; }

    .bwcr-modal { padding: 0; place-items: stretch; }
    .bwcr-modal-panel {
        width: 100%;
        max-height: 100dvh;
        height: 100dvh;
        border-radius: 0;
        scroll-padding-bottom: calc(94px + env(safe-area-inset-bottom));
    }
    .bwcr-modal-close {
        position: fixed;
        right: 10px;
        top: 10px;
        width: 40px;
        height: 40px;
        margin: 0;
    }
    /* Mobile detail popup: app-like scale. Keep key text readable while removing excess vertical air. */
    .bwcr-detail { min-height: 100dvh; padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
    .bwcr-detail-media { padding: 9px; }
    .bwcr-detail-hero { border-radius: 10px; aspect-ratio: 2 / 1; }
    .bwcr-detail-hero img { object-fit: contain; }
    .bwcr-detail-gallery { gap: 6px; margin-top: 7px; padding-bottom: 1px; }
    .bwcr-detail-gallery button { flex-basis: 60px; width: 60px; height: 44px; border-radius: 7px; }

    .bwcr-detail-info { padding: 14px 12px calc(94px + env(safe-area-inset-bottom)); }
    .bwcr-detail-kicker {
        margin-bottom: 4px;
        font-size: 10px;
        line-height: 1.25;
        letter-spacing: .065em;
    }
    .bwcr-detail h2 {
        padding-right: 42px;
        font-size: 18px !important;
        line-height: 1.23 !important;
        letter-spacing: -.018em;
    }
    .bwcr-detail-price { gap: 4px; margin-top: 6px; line-height: 1.1; }
    .bwcr-detail-price small,
    .bwcr-detail-price span { font-size: 11px; font-weight: 650; }
    .bwcr-detail-price strong { font-size: 22px; line-height: 1; }

    .bwcr-detail-section { margin-top: 14px; }
    .bwcr-detail-section h3 {
        margin-bottom: 7px !important;
        font-size: 11.5px !important;
        line-height: 1.25 !important;
        letter-spacing: .035em;
    }
    .bwcr-spec-grid { gap: 6px; }
    .bwcr-spec-grid > div,
    .bwcr-detail-line {
        padding: 7px 9px;
        border-radius: 9px;
    }
    .bwcr-spec-grid span,
    .bwcr-detail-line span { font-size: 9.5px; line-height: 1.25; }
    .bwcr-spec-label { gap: 5px; }
    .bwcr-spec-icon { width: 14px; height: 14px; flex-basis: 14px; stroke-width: 1.9; }
    .bwcr-spec-grid strong,
    .bwcr-detail-line strong { margin-top: 2px; font-size: 13px; line-height: 1.25; }

    .bwcr-rate-list { border-radius: 10px; }
    .bwcr-rate-list > div { gap: 12px; padding: 7px 11px; min-height: 39px; }
    .bwcr-rate-list span { font-size: 12px; line-height: 1.35; }
    .bwcr-rate-list strong { font-size: 13px; line-height: 1.25; }
    .bwcr-detail-line { margin-top: 10px; }
    .bwcr-detail-notes { margin-top: 14px; padding-top: 12px; }
    .bwcr-detail-notes > strong { font-size: 10px; }
    .bwcr-detail-notes p { margin-top: 4px !important; font-size: 11.5px; line-height: 1.5; }

    .bwcr-detail-wa {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: max(10px, env(safe-area-inset-bottom));
        z-index: 20;
        min-height: 48px;
        margin: 0;
        padding: 10px 14px;
        border-radius: 11px;
        box-shadow: 0 10px 26px rgba(0,0,0,.16);
        font-size: 14px;
        font-weight: 750;
    }
}

@media (max-width: 360px) {
    .bwcr-grid { gap: 8px; }
    .bwcr-card-body { padding: 8px 8px 9px; }
    .bwcr-card-brand { font-size: 8.8px; }
    .bwcr-card h3 { font-size: 12.8px !important; }
    .bwcr-card-specs { font-size: 9.6px; }
    .bwcr-card-price { gap: 1px; margin-top: 6px; }
    .bwcr-card-price small,
    .bwcr-card-price span { font-size: 8.8px; }
    .bwcr-card-price strong { font-size: 16.8px; }
    .bwcr-card-actions { gap: 4px; margin-top: 7px; }
    .bwcr-btn { min-height: 36px; padding-inline: 2px; font-size: 10.8px; }

    /* Keep the detail sheet safe on narrower phones without shrinking the listing cards further. */
    .bwcr-detail-info { padding-inline: 11px; }
    .bwcr-detail h2 { font-size: 17.5px !important; }
    .bwcr-detail-price strong { font-size: 21px; }
    .bwcr-spec-grid > div,
    .bwcr-detail-line { padding-inline: 9px; }
    .bwcr-rate-list > div { padding-inline: 10px; }
}

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

@media (min-width: 1180px) {
    .bwcr-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
}
