

/* Start:/local/templates/minusmarket/template_styles.css?178410715223965*/
:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-2: #f4f5f7;
    --surface-3: #eceef1;
    --border: #e6e8ec;
    --text: #1b1c1f;
    --muted: #797f89;
    --brand: #e21a23;
    --brand-dark: #b8141c;
    --brand-ink: #ffffff;
    --brand-tint: #fdecec;
    --dark: #1b1c1f;
    --ok: #1a8f4c;
    --ok-bg: #e7f4ec;
    --warn: #b9750a;
    --warn-bg: #fdf1e0;
    --shadow: 0 1px 2px rgba(20, 22, 26, .05), 0 10px 30px rgba(20, 22, 26, .07);
    --radius: 24px;
}

[data-theme="dark"] {
    --bg: #101216;
    --surface: #171a1f;
    --surface-2: #1e2228;
    --surface-3: #252a31;
    --border: #2b3038;
    --text: #eef1f5;
    --muted: #98a0ad;
    --brand: #ff3b43;
    --brand-dark: #e21a23;
    --brand-tint: #2a1618;
    --dark: #eef1f5;
    --ok: #2ec27e;
    --ok-bg: #16281f;
    --warn: #e0a44a;
    --warn-bg: #2a2113;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 10px 30px rgba(0, 0, 0, .45);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px
}

img {
    max-width: 100%
}

/* announce strip */
.announce {
    background: var(--brand);
    color: var(--brand-ink);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px
}

/* header */
header.site {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow)
}

.topbar {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 14px 0
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px
}

.logo .tag {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.logo .lt {
    line-height: 1
}

.logo .lt b {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.02em;
    display: block
}

.logo .lt small {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .02em
}

.search {
    flex: 1;
    position: relative;
    max-width: 560px
}

.search input {
    width: 100%;
    padding: 12px 46px 12px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 15px;
    outline: none
}

.search input:focus {
    border-color: var(--brand)
}

.search .go {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--brand);
    color: var(--brand-ink);
    display: grid;
    place-items: center
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 4px
}

.act {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 10px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600
}

.act:hover {
    background: var(--surface-2);
    color: var(--text)
}

.act svg {
    width: 22px;
    height: 22px
}

.act.cart {
    position: relative
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 8px;
    background: var(--brand);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    padding: 0 4px
}

/* category nav (icons row) */
.cats {
    padding: 14px 0 4px
}

.cats-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px
}

.cat-tile {
    flex: 0 0 auto;
    width: 112px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: .14s;
    cursor: pointer
}

.cat-tile:hover {
    border-color: var(--brand);
    transform: translateY(-2px)
}

.cat-tile.active {
    border-color: var(--brand);
    background: var(--brand-tint)
}

.cat-tile svg {
    width: 44px;
    height: 44px
}

.cat-tile span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2
}

/* hero */
.hero {
    margin: 16px 0;
    border-radius: 20px;
    background: linear-gradient(110deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: var(--brand-ink);
    padding: 40px 44px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden
}

.hero .htext {
    flex: 1;
    z-index: 2
}

.hero h1 {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.02em
}

.hero p {
    margin: 0 0 22px;
    font-size: 17px;
    opacity: .95;
    max-width: 340px
}

.hero .cta {
    background: var(--text);
    color: var(--bg);
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 15px
}

.hero .cta:hover {
    opacity: 0.8;
}

.hero .hart {
    width: 300px;
    flex-shrink: 0;
    position: relative;
    display: grid;
    place-items: center
}

.hero .hart svg {
    width: 230px;
    height: 230px;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .35))
}

.hero .disc {
    position: absolute;
    top: 28px;
    right: 250px;
    background: var(--text);
    color: var(--bg);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 900;
    transform: rotate(-12deg);
    z-index: 3;
    line-height: 1.05;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3)
}

.hero .disc small {
    font-size: 11px;
    font-weight: 600;
    opacity: .8;
    display: block
}

.hero .disc b {
    font-size: 24px
}

/* sections */
section.block {
    margin: 40px 0
}

.sec-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px
}

.sec-head h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.02em
}

.sec-head a {
    color: var(--brand);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity
}

.row .card {
    flex: 0 0 210px;
    scroll-snap-align: start
}

/* product card */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: .14s
}

.card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.card .pic {
    aspect-ratio: 1;
    background: linear-gradient(160deg, var(--surface-2), var(--surface-3));
    position: relative;
    display: grid;
    place-items: center
}

.card .pic svg {
    width: 60%;
    height: 60%
}

.disc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--brand);
    color: var(--brand-ink);
    font-size: 12px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 8px
}

.cond {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 7px;
    text-align: center
}

.cond.new {
    background: var(--ok-bg);
    color: var(--ok)
}

.cond.demo {
    background: var(--brand-tint);
    color: var(--brand)
}

.cond.pack {
    background: var(--warn-bg);
    color: var(--warn)
}

.card .body {
    padding: 12px 13px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px
}

.card .brand-line {
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em
}

.card .name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    min-height: 36px
}

.prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px
}

.prices .now {
    font-size: 20px;
    font-weight: 900
}

.prices .was {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through
}

.save {
    font-size: 12px;
    color: var(--ok);
    font-weight: 700
}

.card .buy-row {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px
}

.add {
    flex: 1;
    background: var(--brand);
    color: var(--brand-ink);
    font-weight: 700;
    padding: 11px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 14px
}

.add:hover {
    background: var(--brand-dark)
}

.qtybox {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-2);
    border-radius: 10px;
    padding: 3px
}

.qtybox button {
    width: 36px;
    height: 34px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    background: var(--surface)
}

.qtybox span {
    font-weight: 700;
    font-size: 14px
}

/* trust banner */
.trust {
    margin: 40px 0;
    border-radius: 18px;
    background: linear-gradient(110deg, var(--brand), var(--brand-dark));
    color: var(--brand-ink);
    padding: 30px 34px;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap
}

.trust .tt {
    flex: 1;
    min-width: 240px
}

.trust h3 {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 900
}

.trust p {
    margin: 0;
    opacity: .92
}

.trust .feats {
    display: flex;
    gap: 22px;
    flex-wrap: wrap
}

.trust .feat {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 14px
}

.trust .feat svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0
}

/* filters + catalog */
.catalog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.catalog-head h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 900
}

.layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 22px
}

.filters {
    position: sticky;
    top: 120px;
    align-self: start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px
}

.filters h4 {
    margin: 0 0 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted)
}

.fgroup {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border)
}

.fgroup:last-of-type {
    border-bottom: none
}

.chk {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 0;
    font-size: 14px;
    cursor: pointer
}

.chk input {
    accent-color: var(--brand);
    width: 16px;
    height: 16px
}

.range {
    display: flex;
    gap: 8px
}

.range input {
    width: 100%;
    padding: 9px;
    border-radius: 9px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text)
}

.clear {
    color: var(--brand);
    font-size: 13px;
    font-weight: 700
}

.cat-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
    flex-wrap: wrap
}

.cat-toolbar .count {
    color: var(--muted);
    font-size: 14px
}

.cat-toolbar select {
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text)
}

.empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: var(--muted)
}

/* newsletter */
.news {
    margin: 40px 0;
    border-radius: 18px;
    background: var(--brand-tint);
    border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.news .ni {
    flex: 1;
    min-width: 240px
}

.news h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 900
}

.news p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.news form {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 260px
}

.news input {
    flex: 1;
    padding: 13px 15px;
    border-radius: 11px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 15px
}

.news input:focus {
    outline: none;
    border-color: var(--brand)
}

.news button {
    background: var(--brand);
    color: var(--brand-ink);
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 11px
}

.news button:hover {
    background: var(--brand-dark)
}

/* articles */
.arts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.art {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .14s
}

.art:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.art .athumb {
    aspect-ratio: 16/10;
    background: linear-gradient(150deg, var(--brand), var(--brand-dark));
    display: grid;
    place-items: center
}

.art .athumb svg {
    width: 60px;
    height: 60px;
    opacity: .9
}

.art .abody {
    padding: 14px
}

.art .abody h4 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3
}

.art .abody .adate {
    font-size: 12px;
    color: var(--muted)
}

/* footer */
footer.site {
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 40px 0 24px;
    margin-top: 50px;
    color: var(--muted);
    font-size: 14px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 26px
}

.foot-grid h4 {
    color: var(--text);
    font-size: 14px;
    margin: 0 0 12px
}

.foot-grid a {
    display: block;
    padding: 4px 0
}

.foot-grid a:hover {
    color: var(--brand)
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 12px
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--surface-2);
    display: grid;
    place-items: center;
    color: var(--muted)
}

.socials a:hover {
    background: var(--brand);
    color: #fff
}

.foot-bottom {
    border-top: 1px solid var(--border);
    margin-top: 26px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px
}

.foot-bottom a {
    margin-left: 16px
}

/* drawer */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 17, 20, .55);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: .2s
}

.overlay.open {
    opacity: 1;
    pointer-events: auto
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 430px;
    max-width: 93vw;
    background: var(--surface);
    z-index: 60;
    transform: translateX(100%);
    transition: transform .25s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column
}

.drawer.open {
    transform: none
}

.drawer .dh {
    border-bottom: 1px solid var(--border);
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.drawer .dh h2 {
    margin: 0;
    font-size: 18px
}

.icon-x {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 20px
}

.icon-x:hover {
    background: var(--surface-2);
    color: var(--text)
}

.drawer .items {
    flex: 1;
    overflow-y: auto;
    padding: 6px 18px
}

.citem {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border)
}

.citem .ci-thumb {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    background: var(--surface-2);
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.citem .ci-thumb svg {
    width: 40px;
    height: 40px
}

.citem .ci-info {
    flex: 1;
    min-width: 0
}

.citem .ci-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3
}

.citem .ci-sub {
    font-size: 12px;
    color: var(--muted)
}

.citem .ci-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px
}

.citem .ci-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-2);
    border-radius: 8px;
    padding: 2px
}

.citem .ci-qty button {
    width: 28px;
    height: 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px
}

.citem .ci-qty button:hover {
    background: var(--surface)
}

.citem .ci-price {
    margin-left: auto;
    font-weight: 800;
    white-space: nowrap;
    text-align: right
}

.citem .ci-price small {
    display: block;
    font-weight: 400;
    color: var(--muted);
    text-decoration: line-through;
    font-size: 11px
}

.citem .ci-remove {
    font-size: 12px;
    color: var(--muted)
}

.citem .ci-remove:hover {
    color: var(--brand)
}

.drawer .foot {
    border-top: 1px solid var(--border);
    padding: 18px
}

.sumrow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 14px
}

.sumrow.save-row {
    color: var(--ok);
    font-weight: 700
}

.sumrow.total {
    color: var(--text);
    font-size: 20px;
    font-weight: 900;
    margin: 12px 0
}

.btn-primary {
    width: 100%;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    padding: 14px;
    border-radius: 12px
}

.btn-primary:hover {
    background: var(--brand-dark)
}

.btn-ghost {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-top: 8px
}

.cart-empty {
    text-align: center;
    padding: 70px 20px;
    color: var(--muted)
}

.cart-empty svg {
    width: 64px;
    height: 64px;
    opacity: .4;
    margin-bottom: 10px
}

.field {
    margin-bottom: 14px
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--muted)
}

.field input {
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text);
    font-size: 15px;
    outline: none
}

.field input:focus {
    border-color: var(--brand)
}

.field.err input {
    border-color: var(--brand)
}

.err-msg {
    color: var(--brand);
    font-size: 12px;
    margin-top: 4px;
    display: none
}

.field.err .err-msg {
    display: block
}

.radio-cards {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.radio-card {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1.5px solid var(--border);
    border-radius: 11px;
    cursor: pointer
}

.radio-card.sel {
    border-color: var(--brand);
    background: var(--brand-tint)
}

.radio-card input {
    accent-color: var(--brand)
}

.radio-card .rc-title {
    font-weight: 600;
    font-size: 14px
}

.radio-card .rc-sub {
    font-size: 12px;
    color: var(--muted)
}

.radio-card .rc-price {
    margin-left: auto;
    font-weight: 700
}

.sec-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 20px 0 10px;
    font-weight: 700
}

.back-link {
    color: var(--brand);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    display: inline-flex;
    gap: 5px;
    cursor: pointer
}

.note {
    background: var(--brand-tint);
    border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent);
    border-radius: 11px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    margin: 14px 0
}

.pay-box {
    text-align: center;
    padding: 8px 0
}

.pay-logo {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px
}

.pay-logo span {
    color: var(--brand)
}

.yk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-2);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px
}

.pay-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0
}

.spinner {
    width: 46px;
    height: 46px;
    border: 4px solid var(--surface-2);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 26px auto
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.success {
    text-align: center;
    padding: 26px 10px
}

.success .check {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ok);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 40px;
    margin: 0 auto 18px;
    animation: pop .3s cubic-bezier(.2, 1.4, .5, 1)
}

@keyframes pop {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.order-id {
    font-family: monospace;
    background: var(--surface-2);
    padding: 4px 10px;
    border-radius: 7px;
    font-weight: 800
}

@media(max-width:900px) {
    .layout {
        grid-template-columns: 1fr
    }

    .filters {
        display: none
    }

    .filters.mopen {
        display: block;
        position: fixed;
        inset: auto 0 0 0;
        top: auto;
        border-radius: 16px 16px 0 0;
        z-index: 45;
        max-height: 72vh;
        overflow: auto
    }

    .arts {
        grid-template-columns: 1fr 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero {
        padding: 28px
    }

    .hero h1 {
        font-size: 28px
    }

    .hero .hart {
        display: none
    }

    .hero .disc {
        right: 20px;
        top: 20px
    }

    .act.hide-m {
        display: none
    }
}

.filters-toggle {
    display: none
}

@media(max-width:900px) {
    .filters-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 9px 14px;
        border-radius: 10px;
        border: 1px solid var(--border);
        font-weight: 600
    }
}
/* End */
/* /local/templates/minusmarket/template_styles.css?178410715223965 */
