

/* Start:/local/templates/minusmarket/template_styles.css?178842866658230*/
    :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;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    main {
        flex: 1 0 auto;
    }

    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;
        width: 100%;
    }

    img {
        max-width: 100%
    }

    /* announce strip */
    .announce {
        background: var(--brand);
        color: var(--brand-ink);
        padding: 6px 0;
        font-size: 13px;
        font-weight: 600;
    }

    .announce-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        text-align: center;
    }

    .announce-link {
        color: var(--brand-ink);
        text-decoration: none;
        opacity: 0.95;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
        padding-bottom: 1px;
        transition: opacity 0.15s, border-color 0.15s;
        cursor: pointer;
    }

    .announce-link:hover {
        opacity: 1;
        border-bottom-color: #ffffff;
    }

    .announce-phone {
        color: var(--brand-ink);
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        background: rgba(0, 0, 0, 0.15);
        padding: 3px 10px;
        border-radius: 20px;
        transition: background 0.15s ease;
    }

    .announce-phone:hover {
        background: rgba(0, 0, 0, 0.25);
    }

    .announce-phone svg {
        flex-shrink: 0;
    }

    /* 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: 12px;
        padding: 12px 0;
        flex-wrap: nowrap;
    }


    .logo {
        order: 1;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .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;
    }

    .catalog-btn-wrap {
        order: 2;
        flex-shrink: 0;
        margin: 0;
    }

    .catalog-btn-wrap .btn-catalog {
        margin-right: 0 !important;
    }

    .search {
        order: 3;
        flex: 1 1 auto;
        position: relative;
        max-width: none;
        min-width: 160px;
        margin: 0;
    }

    .search input {
        width: 100%;
        padding: 11px 46px 11px 16px;
        border-radius: 12px;
        border: 1.5px solid var(--border);
        background: var(--surface);
        color: var(--text);
        font-size: 15px;
        outline: none;
        transition: border-color 0.15s ease;
    }

    .search input:focus {
        border-color: var(--brand);
    }

    .search .go {
        position: absolute;
        right: 6px;
        top: 5px;
        width: 34px;
        height: 34px;
        border-radius: 9px;
        background: var(--brand);
        color: var(--brand-ink);
        display: grid;
        place-items: center;
    }

    .top-contacts {
        display: none;
    }

    .top-phone {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 15px;
        font-weight: 700;
        color: var(--text);
        white-space: nowrap;
        text-decoration: none;
        transition: color 0.15s ease;
    }

    .top-phone:hover {
        color: var(--brand);
    }

    .top-phone .phone-ico {
        flex-shrink: 0;
        color: var(--brand);
    }

    .top-socials {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .top-soc-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
        flex-shrink: 0;
        overflow: hidden;
        cursor: pointer;
    }

    .top-soc-btn:hover {
        transform: translateY(-2px);
    }

    .top-soc-btn svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .top-soc-vk:hover {
        box-shadow: 0 4px 12px rgba(0, 119, 255, 0.4);
    }

    .top-soc-max:hover {
        box-shadow: 0 4px 12px rgba(149, 0, 255, 0.4);
    }

    .top-actions {
        order: 5;
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }

    .act-soc {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        text-decoration: none;
        cursor: pointer;
    }

    .act-soc svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .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;
        transition: background 0.15s, color 0.15s;
    }

    .act:hover {
        background: var(--surface-2);
        color: var(--text);
    }

    .act svg {
        width: 22px;
        height: 22px;
    }

    .fav-link {
        position: relative;
    }

    .fav-badge {
        position: absolute;
        top: 2px;
        right: 6px;
        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;
    }

    /* Sub-header navigation row */
    .subbar {
        border-top: 1px solid var(--border);
        background: var(--surface);
    }

    .subbar-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        overflow-x: auto;
        padding-top: 7px;
        padding-bottom: 7px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .subbar-wrap::-webkit-scrollbar {
        display: none;
    }

    .subbar-link {
        font-size: 13px;
        font-weight: 600;
        color: var(--muted);
        text-decoration: none;
        white-space: nowrap;
        padding: 3px 0;
        border-bottom: 2px solid transparent;
        transition: color 0.15s, border-color 0.15s;
    }

    .subbar-link:hover {
        color: var(--brand);
    }

    .subbar-link.active {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }

    /* Responsive header */
    @media (max-width: 960px) {
        .announce-wrap {
            gap: 12px;
            justify-content: center;
            font-size: 12px;
        }

        .topbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px 8px;
            padding: 10px 0;
            width: 100%;
        }

        .logo {
            order: 1;
            flex: 0 0 auto;
        }

        .catalog-btn-wrap {
            order: 2;
            flex: 0 0 auto;
            margin: 0;
        }

        .catalog-btn-wrap .btn-catalog {
            margin-right: 0 !important;
            height: 42px;
            padding: 0 14px;
            border-radius: 10px;
            font-size: 14px;
            white-space: nowrap;
        }

        .top-actions {
            order: 3;
            flex: 0 0 auto;
            margin-left: auto;
            gap: 6px;
        }

        .act-soc {
            width: 38px;
            height: 38px;
            border-radius: 9px;
        }

        .act {
            width: 42px;
            height: 42px;
            padding: 0;
            border-radius: 10px;
            background: var(--surface-2);
            border: 1px solid var(--border);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .act .act-label {
            display: none;
        }

        .act svg {
            width: 20px;
            height: 20px;
        }

        .fav-badge {
            top: -4px;
            right: -4px;
            min-width: 16px;
            height: 16px;
            font-size: 10px;
        }

        .search {
            order: 4;
            flex: 0 0 100%;
            width: 100%;
            max-width: 100%;
            min-width: 100%;
            margin: 0;
        }

        .search input {
            min-width: 0;
            width: 100%;
            height: 42px;
            padding: 10px 44px 10px 14px;
            border-radius: 10px;
            font-size: 14px;
        }

        .search .go {
            width: 32px;
            height: 32px;
            top: 5px;
            right: 5px;
            border-radius: 8px;
        }

        .subbar-wrap {
            gap: 16px;
            padding-top: 6px;
            padding-bottom: 6px;
            justify-content: safe center;
        }

        .subbar-link {
            font-size: 12px;
        }
    }

    @media (max-width: 640px) {
        .about-page {
            padding-top: 20px;
        }
        footer.site {
            margin-top: 20px;
        }
        .logo .lt small {
            display: none;
        }
        .logo .lt b {
            font-size: 19px;
        }
        .logo .tag {
            width: 36px;
            height: 36px;
        }
    }

    @media (max-width: 540px) {
        .hide-m {
            display: none !important;
        }
        .catalog-btn-wrap .btn-catalog {
            padding: 0 11px;
            width: 42px;
            justify-content: center;
        }
        .catalog-btn-wrap .btn-catalog svg {
            margin: 0;
        }
    }

    @media (max-width: 440px) {
        .announce {
            padding: 5px 0;
        }
        .announce-wrap {
            gap: 6px 10px;
            font-size: 11px;
        }
        .announce-phone {
            padding: 2px 8px;
            font-size: 11px;
            gap: 4px;
        }
        .topbar {
            gap: 8px 6px;
            padding: 8px 0;
        }
        .act-soc {
            width: 32px;
            height: 32px;
            border-radius: 7px;
        }
        .act {
            width: 38px;
            height: 38px;
            border-radius: 9px;
        }
        .catalog-btn-wrap .btn-catalog {
            width: 38px;
            height: 38px;
            padding: 0;
            border-radius: 9px;
        }
        .search input {
            height: 38px;
            padding: 8px 38px 8px 12px;
            font-size: 13px;
            border-radius: 9px;
        }
        .search .go {
            width: 28px;
            height: 28px;
            top: 5px;
            right: 5px;
        }
        .subbar-wrap {
            gap: 12px;
            padding-top: 5px;
            padding-bottom: 5px;
            justify-content: safe center;
        }
        .subbar-link {
            font-size: 11.5px;
        }
    }

    @media (max-width: 360px) {
        .logo .lt {
            display: none;
        }
    }

    /* 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 slider */
    .hero-slider {
        margin: 16px 0;
        position: relative;
    }
    
    .hero-pagination {
        position: absolute;
        bottom: 12px !important;
        z-index: 10;
        text-align: center;
    }
    
    .hero-pagination .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
    
    .hero-pagination .swiper-pagination-bullet-active {
        background: #fff;
    }
    
    .hero-button-prev, .hero-button-next {
        color: #fff !important;
        opacity: 0.7;
        transition: 0.2s;
    }
    
    .hero-button-prev:hover, .hero-button-next:hover {
        opacity: 1;
    }
    
    .hero-slider .swiper-slide {
        height: auto;
    }

    /* hero */
    .hero {
        height: 100%;
        box-sizing: border-box;
        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 {
        font-size: 16px;
        opacity: .9;
        margin-bottom: 24px
    }

    /* second hero banner */
    .hero.hero-instruction {
        background: linear-gradient(110deg, #1e3a8a 0%, #0f172a 100%);
        color: #fff;
    }
    
    .hero.hero-instruction h2 {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #fff;
    }
    
    .hero-steps {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-steps li {
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
        opacity: 0.95;
    }
    
    .hero-steps .step-num {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 24px;
        height: 24px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        font-weight: 700;
        font-size: 13px;
        color: #fff;
    }

    .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)
    }

    [data-theme="dark"] .hero .disc {
        background: #1b1c1f;
        color: #ffffff;
    }

    .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;
        position: relative;
    }

    .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;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .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: 10px;
        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: 28px;
        color: var(--muted);
        font-size: 14px
    }

    .foot-grid {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .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
        }


    }

    .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
        }
    }

    /* Utility classes extracted from inline styles */
    .page-wrap {
        padding-bottom: 60px;
    }
    .empty {
        padding: 40px;
        background: var(--surface);
        border-radius: 12px;
        text-align: center;
        margin-top: 20px;
    }
    .privacy-content {
        background: var(--surface);
        padding: 30px;
        border-radius: 12px;
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.6;
        color: var(--text);
    }
    .fav-link {
        text-decoration: none;
        position: relative;
    }
    .foot-contacts {
        text-align: right;
    }
    .foot-phone {
        color: var(--text);
        font-weight: 800;
        font-size: 18px;
        margin-bottom: 4px;
        display: block;
    }
    .foot-email {
        margin-bottom: 4px;
        display: block;
    }
    .foot-disclaimer {
        font-size: 11px;
        color: var(--muted);
        padding-bottom: 20px;
        text-align: left;
        max-width: 800px;
    }
    .foot-logo {
        margin-bottom: 12px;
    }

    /* Product detail page */
    .product-detail {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 40px;
        align-items: start;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 40px;
        margin-top: 20px;
        box-shadow: var(--shadow);
        overflow-wrap: break-word;
        word-break: break-word;
    } 

    .pd-gallery {
        position: relative;
        background: var(--surface-2);
        border-radius: calc(var(--radius) - 8px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        aspect-ratio: 1;
    }

    .pd-gallery img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .pd-info {
        display: flex;
        flex-direction: column;
    }

    .pd-brand {
        color: var(--muted);
        font-size: 14px;
        margin-bottom: 8px;
    }

    .pd-title {
        margin: 0 0 24px 0;
        font-size: 32px;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -.02em;
    }

    .pd-price-box {
        background: var(--surface-2);
        border-radius: 18px;
        padding: 24px;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .pd-prices {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .pd-prices .now {
        font-size: 32px;
        font-weight: 900;
        color: var(--brand);
        line-height: 1;
    }

    .pd-prices .was {
        font-size: 18px;
        color: var(--muted);
        text-decoration: line-through;
        font-weight: 600;
    }

    .pd-prices .save {
        background: var(--brand-tint);
        color: var(--brand);
        font-size: 13px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 8px;
    }

    .pd-actions {
        display: flex;
        gap: 10px;
        align-items: stretch;
    }

    .pd-actions .add {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: var(--brand);
        color: var(--brand-ink);
        font-size: 18px;
        font-weight: 700;
        padding: 16px;
        border-radius: 14px;
        transition: .2s;
    }

    .pd-actions .add:hover {
        background: var(--brand-dark);
        transform: translateY(-2px);
    }

    .pd-props {
        margin-top: 30px;
    }
    
    .pd-desc {
        grid-column: 1 / -1;
        margin-top: 10px;
    }

    .pd-desc h3, .pd-props h3 {
        font-size: 20px;
        font-weight: 800;
        margin: 0 0 16px 0;
        border-bottom: 2px solid var(--surface-2);
        padding-bottom: 12px;
    }

    .pd-desc .text {
        color: var(--text);
        line-height: 1.6;
        font-size: 15px;
        max-height: 250px;
        overflow-y: auto;
        padding-right: 10px;
    }

    /* Scrollbar styles for the description text */
    .pd-desc .text::-webkit-scrollbar {
        width: 6px;
    }
    .pd-desc .text::-webkit-scrollbar-track {
        background: var(--surface-2);
        border-radius: 4px;
    }
    .pd-desc .text::-webkit-scrollbar-thumb {
        background: var(--brand);
        border-radius: 4px;
    }
    .pd-desc .text::-webkit-scrollbar-thumb:hover {
        background: var(--brand-dark);
    }

    .props-table {
        width: 100%;
        border-collapse: collapse;
    }

    .props-table tr {
        border-bottom: 1px solid var(--border);
    }

    .props-table tr:last-child {
        border-bottom: none;
    }

    .props-table td {
        padding: 12px 0;
        font-size: 15px;
    }

    .props-table td:first-child {
        color: var(--muted);
        width: 50%;
    }

    .props-table td:first-child span {
        position: relative;
        background: var(--surface);
        padding-right: 10px;
    }

    .props-table td:last-child {
        font-weight: 600;
        color: var(--text);
    }

    @media(max-width: 900px) {
        .product-detail {
            grid-template-columns: 1fr;
            padding: 20px;
            gap: 20px;
        }
        .pd-gallery {
            width: 100%;
            aspect-ratio: 1;
        }
        .pd-title {
            font-size: 20px;
        }
        .pd-prices .now {
            font-size: 24px;
        }
        .pd-actions {
            flex-direction: column;
        }
        .fav-btn.detail-fav {
            width: 100%;
            justify-content: center;
        }
        .pd-actions .add {
            font-size: 16px;
            padding: 14px;
        }
    }
    /* Pagination */
    .pagination {
        margin: 40px 0;
        display: flex;
        justify-content: center;
    }
    .pagination ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }
    .pagination li {
        margin: 0;
    }
    .pagination li a, .pagination li span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        border-radius: var(--radius);
        background: var(--surface);
        color: var(--text);
        text-decoration: none;
        font-weight: 500;
        border: 1px solid var(--border);
        transition: all 0.2s ease;
    }
    .pagination li a:hover {
        background: var(--brand);
        color: #fff;
        border-color: var(--brand);
    }
    .pagination li.active span {
        background: var(--brand);
        color: #fff;
        border-color: var(--brand);
    }
    .pagination li.disabled span {
        opacity: 0.5;
        cursor: not-allowed;
        background: var(--background);
    }

    /* Swiper Styles */
    .minusmarket-swiper {
        padding: 10px 0 20px 0;
        margin: -10px 0 -20px 0; /* Компенсация padding для теней при hover */
        width: 100%;
        overflow: hidden;
    }
    .minusmarket-swiper .swiper-slide {
        height: auto;
        display: flex;
    }
    .minusmarket-swiper .swiper-slide .card {
        width: 100%;
        height: 100%;
    }

    /* Swiper Navigation Arrows */
    .minusmarket-swiper {
        position: relative;
    }
    .minusmarket-swiper .swiper-button-prev,
    .minusmarket-swiper .swiper-button-next {
        color: var(--brand);
        background: var(--surface);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: var(--shadow);
        top: 50%;
        margin-top: -20px;
    }
    .minusmarket-swiper .swiper-button-prev::after,
    .minusmarket-swiper .swiper-button-next::after {
        font-size: 16px;
        font-weight: 800;
    }
    .minusmarket-swiper .swiper-button-prev {
        left: -10px;
    }
    .minusmarket-swiper .swiper-button-next {
        right: -10px;
    }
    .minusmarket-swiper .swiper-button-disabled {
        opacity: 0;
        pointer-events: none;
    }

    /* Избранное */
    .fav-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--surface);
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 10 !important;
        transition: all 0.2s;
        color: var(--muted);
        opacity: 1 !important;
        visibility: visible !important;
    }
    .fav-btn:hover {
        transform: scale(1.1);
    }
    .fav-btn.active svg {
        fill: var(--brand);
        stroke: var(--brand);
        color: var(--brand);
    }
    .fav-btn.detail-fav {
        position: static;
        box-shadow: none;
        border: 1px solid var(--border);
        border-radius: 10px;
        width: auto;
        padding: 0 16px;
        height: 56px;
        gap: 8px;
        color: var(--text);
        font-weight: 600;
    }

    .fav-badge {
        position: absolute;
        top: -6px;
        right: 13px;
        background: var(--brand);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    /* Cookie banner */
    .cookie-banner {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: 800px;
        margin: 0 auto;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 16px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        z-index: 9999;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    .cookie-content {
        flex: 1;
        min-width: 280px;
        font-size: 13px;
        color: var(--text);
        line-height: 1.4;
    }
    .cookie-content a {
        color: var(--brand);
        text-decoration: underline;
    }
    .cookie-actions {
        display: flex;
        gap: 10px;
    }
    .cookie-actions button {
        padding: 10px 16px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: 0.2s;
    }
    .btn-tech {
        background: var(--surface-2);
        color: var(--text);
    }
    .btn-tech:hover {
        background: var(--surface-3);
    }
    .btn-all {
        background: var(--brand);
        color: var(--brand-ink);
    }
    .btn-all:hover {
        background: var(--brand-dark);
    }
    @media (max-width: 600px) {
        .cookie-banner {
            flex-direction: column;
            align-items: stretch;
        }
        .cookie-actions {
            flex-direction: column;
        }
    }

    /* Contact Modal */
    .c-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        backdrop-filter: blur(4px);
    }
    .c-modal-overlay.open {
        display: flex;
        animation: fadeIn 0.2s ease-out;
    }
    .c-modal {
        background: var(--surface);
        width: 100%;
        max-width: 400px;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        position: relative;
        text-align: center;
        transform: scale(0.95);
        opacity: 0;
        animation: modalIn 0.2s ease-out forwards;
    }
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    @keyframes modalIn {
        to {
            transform: scale(1);
            opacity: 1;
        }
    }
    .c-modal h3 {
        margin: 0 0 10px;
        font-size: 22px;
        font-weight: 800;
        color: var(--text);
    }
    .c-modal p {
        margin: 0 0 24px;
        font-size: 14px;
        color: var(--muted);
        line-height: 1.4;
    }
    .c-modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        cursor: pointer;
        color: var(--muted);
        transition: 0.2s;
    }
    .c-modal-close:hover {
        color: var(--text);
    }
    .c-modal-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .cm-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: 0.2s;
    }
    .cm-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        color: #fff;
    }
    .cm-vk {
        background: #0077FF;
    }
    .cm-vk:hover {
        background: #0066d9;
    }
    .cm-max {
        background: linear-gradient(135deg, #471aff 0%, #9500ff 100%);
    }

    .wrap .empty{
        width: auto !important;
        height: auto !important;
    }
    .cm-max svg{
        max-width: 24px;
    }

/* ==========================================================================
   About Page Styles (/about/) — Clean editorial style without cards
   ========================================================================== */
.about-page {
    padding: 28px 0 0;
    color: var(--text);
}

.about-page .about-block:last-child {
    margin-bottom: 0;
}

.about-page .about-block:last-child .about-actions:last-child {
    margin-bottom: 0;
}

.about-page .about-block:last-child .about-map:last-child {
    margin-bottom: 0;
}

.about-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.about-breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

.about-breadcrumbs a:hover {
    color: var(--brand);
    text-decoration: underline;
}

.about-breadcrumbs .sep {
    opacity: 0.5;
}

.about-breadcrumbs .current {
    color: var(--text);
    font-weight: 500;
}

.about-article {
    max-width: 860px;
}

.about-article h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 28px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.about-block {
    margin-bottom: 36px;
}

.about-block h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 16px;
    color: var(--text);
}

.about-block p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    margin: 0 0 14px;
}

.about-list {
    margin: 12px 0 20px;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
}

.about-list li {
    margin-bottom: 12px;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-quote {
    margin: 22px 0;
    padding: 16px 20px;
    border-left: 3px solid var(--brand);
    background: var(--surface-2);
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}

.contacts-details {
    margin: 16px 0;
}

.contacts-details p {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.5;
}

.contacts-details a {
    color: var(--brand);
    text-decoration: none;
}

.contacts-details a:hover {
    text-decoration: underline;
}

.about-note {
    font-size: 15px;
    color: var(--muted);
    margin: 16px 0 20px;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.about-btn-primary {
    background: var(--brand);
    color: #ffffff;
}

.about-btn-primary:hover {
    background: var(--brand-dark);
}

.about-btn-secondary {
    background: var(--surface-2);
    color: var(--text);
    border: 1px solid var(--border);
}

.about-btn-secondary:hover {
    background: var(--surface-3);
}

.about-btn-link {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.about-btn-link:hover {
    border-color: var(--text);
}

.about-map {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-map iframe {
    display: block;
    border: none;
}

@media (max-width: 640px) {
    .about-article h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .about-block h2 {
        font-size: 20px;
    }
    .about-block p,
    .about-list {
        font-size: 15px;
    }
    .about-actions {
        flex-direction: column;
    }
    .about-btn {
        width: 100%;
    }
}
/* End */


/* Start:/local/templates/minusmarket/components/bitrix/catalog.section.list/top_menu/style.css?17884278732037*/
.catalog-btn-wrap {
    display: flex;
    align-items: center;
}
.btn-catalog {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    height: 44px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-right: 0;
}
.btn-catalog:hover {
    opacity: 0.9;
}
.catalog-dropdown {
    display: none;
    position: absolute;
    top: 54px;
    left: 0;
    width: 320px;
    max-width: 90vw;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    overflow: hidden;
}
.catalog-dropdown.show {
    display: block;
    animation: fadeIn 0.2s ease;
}
.catalog-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    max-height: 70vh;
    overflow-y: auto;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
/* Webkit (Chrome, Safari, Edge) */
.catalog-dropdown-list::-webkit-scrollbar {
    width: 6px;
}
.catalog-dropdown-list::-webkit-scrollbar-track {
    background: transparent;
}
.catalog-dropdown-list::-webkit-scrollbar-thumb {
    background-color: var(--border);
    border-radius: 10px;
}
.catalog-dropdown-list::-webkit-scrollbar-thumb:hover {
    background-color: var(--brand);
}
.catalog-dropdown-list li {
    margin: 0;
}
.catalog-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}
.catalog-item:hover,
.catalog-item.active {
    background: var(--bg);
    color: var(--brand);
    font-weight: 500;
}
.catalog-item .count {
    font-size: 13px;
    color: var(--text-muted, #888);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* End */
/* /local/templates/minusmarket/template_styles.css?178842866658230 */
/* /local/templates/minusmarket/components/bitrix/catalog.section.list/top_menu/style.css?17884278732037 */
