/* =====================================================================
   OMSKTOOLS — site.css
   Публичный сайт: шапка, hero, каталог, ремонт, о сервисе, FAQ,
   контакты, модалка бронирования, мобильная панель.
   ===================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}
body {
    font-family: 'Manrope', -apple-system, sans-serif;
    background: #fff;
    color: #111;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
img {
    display: block;
    max-width: 100%;
}
:root {
    --teal: #007B6E;
    --teal-dk: #005f55;
    --teal-dim: rgba(0,123,110,0.13);
    --black: #111111;
    --white: #FFFFFF;
    --bg: #F6F7F9;
    --line: #E2E6EE;
    --muted: #6B7280;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
}
.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════ HEADER ═══════ */

.hdr {
    position: sticky;
    top: 0;
    z-index: 300;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.hdr__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
}
.logo {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}
.logo__mark {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.5px;
}
.logo__mark .lo {
    color: var(--black);
}
.logo__mark .lt {
    color: var(--teal);
}
.logo__sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.hdr__right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hdr__phone {
    font-size: 16px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.4px;
    transition: color .18s;
}
.hdr__phone:hover {
    color: var(--teal);
}

/* ═══════ HERO ═══════ */

.hero {
    background: var(--black);
    background-image: radial-gradient(ellipse 55% 65% at 75% 50%, rgba(0,123,110,0.2) 0%, transparent 70%), radial-gradient(circle at 1px 1px, rgba(255,255,255,0.033) 1px, transparent 0);
    background-size: auto, 30px 30px;
    padding: 76px 0 72px;
    overflow: hidden;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.hero__eye {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-dim);
    border: 1px solid rgba(0,123,110,.32);
    color: #5ecfc6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.hero__eye::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}
.hero__h1 {
    font-size: clamp(38px, 6.5vw, 80px);
    font-weight: 900;
    color: #fff;
    line-height: 1.03;
    letter-spacing: -2px;
    margin-bottom: 22px;
}
.hero__h1 mark {
    background: none;
    color: var(--teal);
    text-decoration: underline;
    text-decoration-color: rgba(0,123,110,.45);
    text-underline-offset: 7px;
    text-decoration-thickness: 3px;
}
.hero__desc {
    font-size: clamp(14px,1.8vw,17px);
    color: rgba(255,255,255,.52);
    line-height: 1.72;
    max-width: 480px;
    margin-bottom: 12px;
}
.hero__tag2 {
    font-size: 13px;
    color: rgba(255,255,255,.32);
    font-weight: 500;
    margin-bottom: 38px;
}
.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}

/* ═══════ BUTTONS ═══════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--r-sm);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.2px;
    transition: all .18s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.btn-ghost {
    background: rgba(255,255,255,.07);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.2);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.45);
}
.btn-white {
    background: #fff;
    color: var(--black);
}
.btn-white:hover {
    background: #e6ebe9;
}
/* Кнопка "Забронировать" в hero — крупная, с пульсом */

.btn-book-hero {
    position: relative;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 800;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .2s;
    box-shadow: 0 0 0 0 rgba(0,123,110,0.5);
    animation: bookPulse 2.5s infinite;
}
.btn-book-hero:hover {
    background: var(--teal-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,123,110,0.4);
    animation: none;
}
.btn-book-hero i {
    font-size: 18px;
}

@keyframes bookPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,123,110,0.5);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(0,123,110,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,123,110,0);
    }
}

/* ═══════ PRICE CARD ═══════ */

.hero__card {
    display: none;
}
.pcard {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    padding: 36px 32px;
}
.pcard__lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    margin-bottom: 14px;
}
.pcard__price {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -4px;
    line-height: 1;
    margin-bottom: 2px;
}
.pcard__price sup {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    color: rgba(255,255,255,.5);
    vertical-align: top;
    margin-top: 12px;
}
.pcard__per {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.32);
    margin-bottom: 28px;
}
.pcard__divider {
    height: 1px;
    background: rgba(255,255,255,.08);
    margin-bottom: 20px;
}
.pcard__perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pcard__perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.62);
}
.pcard__perk::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal-dim);
    border: 1px solid rgba(0,123,110,.4);
    color: #5ecfc6;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ═══════ TICKER ═══════ */

.ticker {
    background: radial-gradient(1200px 600px at 10% 10%, rgba(0,123,110,.35), transparent 60%), radial-gradient(900px 500px at 90% 30%, rgba(0,255,200,.12), transparent 55%), linear-gradient(135deg, #004f47, #001f1c);
    position: relative;
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker__track {
    display: inline-flex;
    gap: 0;
    animation: ticker-move 26s linear infinite;
}
.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    padding: 0 28px;
}
.ticker__item::after {
    content: '·';
    color: rgba(255,255,255,.35);
}

@keyframes ticker-move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ═══════ SECTIONS ═══════ */

.sec {
    padding: 84px 0;
}
.sec--bg {
    background: var(--bg);
}
.sec--teal {
    background: radial-gradient(1200px 600px at 10% 10%, rgba(0,123,110,.35), transparent 60%), radial-gradient(900px 500px at 90% 30%, rgba(0,255,200,.12), transparent 55%), linear-gradient(135deg, #004f47, #001f1c);
    position: relative;
    overflow: hidden;
}
.sec--dark {
    background: var(--black);
}
.kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.kicker::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--teal);
}
.sec--teal .kicker {
    color: rgba(255,255,255,.55);
}
.sec--teal .kicker::before {
    background: rgba(255,255,255,.4);
}
.sec--dark .kicker {
    color: rgba(255,255,255,.4);
}
.sec--dark .kicker::before {
    background: rgba(255,255,255,.25);
}
.sec__h2 {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.07;
    margin-bottom: 52px;
}
.sec--teal .sec__h2, .sec--dark .sec__h2 {
    color: #fff;
}

/* ═══════ STEPS ═══════ */

.steps3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.step3 {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: border-color .18s, box-shadow .18s;
    position: relative;
    overflow: hidden;
}
.step3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--teal);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .22s ease;
}
.step3:hover::before {
    transform: scaleY(1);
}
.step3:hover {
    border-color: rgba(0,123,110,.25);
    box-shadow: 0 6px 28px rgba(0,123,110,.08);
}
.step3__n {
    font-size: 44px;
    font-weight: 900;
    color: var(--line);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -4px;
}
.step3__body {
    flex: 1;
}
.step3__title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 4px;
}
.step3__sub {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.5;
}

/* ═══════ CATEGORY TABS ═══════ */

.cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.cat-tab {
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--bg);
    border: 1.5px solid var(--line);
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}
.cat-tab:hover {
    border-color: var(--teal);
    color: var(--teal);
}
.cat-tab.active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}
.cat-tab__count {
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 100px;
    background: rgba(0,0,0,0.08);
    color: inherit;
}
.cat-tab.active .cat-tab__count {
    background: rgba(255,255,255,0.25);
}

/* ═══════ TOOLS GRID (с фото) ═══════ */

.tools {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.tool {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all .25s cubic-bezier(.2,.9,.3,1);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.tool:hover {
    border-color: rgba(0,123,110,.3);
    box-shadow: 0 12px 32px rgba(0,123,110,0.12);
    transform: translateY(-4px);
}
/* Фото инструмента */

.tool__photo-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    overflow: hidden;
}
.tool__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2,.9,.3,1);
}
.tool:hover .tool__photo {
    transform: scale(1.06);
}
/* Плейсхолдер если нет фото */

.tool__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    color: #c7cdd6;
    font-size: 56px;
}
/* Контент карточки */

.tool__body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.tool__name {
    font-size: 17px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.25;
    letter-spacing: -0.3px;
}
.tool__desc {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.4;
}
.tool__text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tool__stock {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    margin-top: 2px;
}
/* Нижняя часть карточки: цена + кнопка */

.tool__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 18px;
    border-top: 1px solid var(--line);
    background: #fafbfc;
}
.tool__price {
    font-size: 18px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.5px;
}
.tool__price small {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    margin-left: 2px;
}
.tool__book-btn {
    padding: 8px 16px;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all .18s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.tool__book-btn:hover {
    background: var(--teal-dk);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,123,110,0.3);
}

/* ═══════ REPAIR ═══════ */

.repair__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.repair__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.repair__list li:first-child {
    border-top: 1px solid rgba(255,255,255,.1);
}
.repair__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    flex-shrink: 0;
}
.repair__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.repair__desc {
    font-size: 16px;
    color: #fff;
    line-height: 1.72;
}
.repair__guar {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    width: fit-content;
}
.repair__guar-n {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}
.repair__guar-l {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

/* ═══════ ABOUT ═══════ */

.about__row {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}
.about__ava {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    flex-shrink: 0;
}
.about__text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.72;
}

/* ═══════ FAQ ═══════ */

.faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: .2s;
}
.faq__item:hover {
    border-color: rgba(0,123,110,.25);
    box-shadow: 0 6px 24px rgba(0,123,110,.06);
}
.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-size: 17px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq__item summary::-webkit-details-marker {
    display: none;
}
.faq__item summary::after {
    content: "+";
    color: var(--teal);
    font-size: 26px;
    font-weight: 700;
    transition: .2s;
}
.faq__item[open] summary::after {
    transform: rotate(45deg);
}
.faq__item p {
    padding: 0 24px 22px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

/* ═══════ CTA ═══════ */

.cta {
    background: radial-gradient(circle at 50% 0%, rgba(0,123,110,0.35) 0%, rgba(0,0,0,1) 65%), linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cta__inner {
    text-align: center;
    padding: 80px 24px;
}
.c-cta-text {
    font-size: clamp(26px, 5vw, 50px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 24px;
}
.cta__sub {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255,255,255,.45);
}

/* ═══════ CONTACTS ═══════ */

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.c-lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.32);
    margin-bottom: 7px;
}
.c-val {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    display: block;
    letter-spacing: -.4px;
    margin-bottom: 4px;
}
.c-sub {
    font-size: 13px;
    color: rgba(255,255,255,.32);
}
.c-msgs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.c-msg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 9px;
    border: 1.5px solid rgba(255,255,255,.16);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: all .18s;
}
.c-msg:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.4);
}

/* ═══════ FOOTER ═══════ */

.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 26px 0;
}
.footer__in {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.footer__t {
    font-size: 12px;
    color: rgba(255,255,255,.18);
}

/* ═══════ MOBILE BAR ═══════ */

.mbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 10px 16px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.mbar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 10px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}
.mbar .mc {
    background: var(--teal);
    color: #fff;
    flex: 2;
}
.mbar .mt {
    background: var(--bg);
    color: var(--black);
    border: 1px solid var(--line);
}

/* ═══════ BOOKING MODAL ═══════ */

.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.booking-modal.active {
    display: flex;
}
.booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.25);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    backdrop-filter: blur(30px) saturate(180%);
    animation: bmFadeIn .3s ease;
}

@keyframes bmFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bmSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.booking-modal__content {
    position: relative;
    background: rgba(255,255,255,0.75);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.3) inset;
    border-radius: 24px;
    padding: 36px 32px;
    max-width: 440px;
    width: 100%;
    animation: bmSlideUp .4s cubic-bezier(.2,.9,.3,1.2);
}
.booking-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.booking-modal__close:hover {
    background: rgba(0,0,0,0.12);
    color: #000;
}
.booking-modal__title {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    color: var(--black);
}
.booking-modal__subtitle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.5;
}
.booking-modal__tool {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(0,123,110,0.08);
    border: 1px solid rgba(0,123,110,0.15);
    border-radius: 14px;
    margin-bottom: 20px;
}
.booking-modal__tool-icon {
    width: 44px;
    height: 44px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.booking-modal__tool-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
}
.booking-modal__tool-meta {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}
.booking-modal__field {
    margin-bottom: 14px;
}
.booking-modal__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 6px;
}
.booking-modal__input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    background: rgba(255,255,255,0.7);
    color: var(--black);
    transition: all .2s;
    font-family: inherit;
}
.booking-modal__input:focus {
    outline: none;
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,123,110,0.12);
}
.booking-modal__submit {
    width: 100%;
    padding: 16px;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all .2s;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}
.booking-modal__submit:hover {
    background: var(--teal-dk);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,123,110,0.3);
}
.booking-modal__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.booking-modal__privacy {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}
.booking-modal__success {
    text-align: center;
    padding: 20px 0;
}
.booking-modal__success-icon {
    width: 64px;
    height: 64px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin: 0 auto 16px;
}

/* ═══════ PRODUCT MODAL ═══════ */

.product-modal__content {
    max-width: 480px;
    padding: 0 0 28px;
    overflow: hidden;
}
.product-modal__photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--bg-soft, #f3f5f4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-modal__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-modal__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--muted);
}
.product-modal__title {
    font-size: 22px;
    font-weight: 900;
    margin: 20px 28px 0;
}
.product-modal__meta {
    font-size: 14px;
    color: var(--muted);
    margin: 4px 28px 0;
}
.product-modal__desc {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin: 12px 28px 0;
}
.product-modal__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 28px 0;
}
.product-modal__price {
    font-size: 22px;
    font-weight: 900;
    color: var(--teal);
}
.product-modal__stock {
    font-size: 13px;
    color: var(--muted);
}
.product-modal #productBookBtn {
    margin: 18px 28px 0;
    width: calc(100% - 56px);
}

/* ═══════ RESPONSIVE ═══════ */

@media (min-width: 768px) {
    .mbar {
        display: none;
    }
    .hero {
        padding: 96px 0 88px;
    }
    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .hero__card {
        display: block;
    }
    .steps3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .tools {
        grid-template-columns: repeat(3, 1fr);
    }
    .repair__grid {
        grid-template-columns: 1fr 1fr;
    }
    .contacts__grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer__in {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1100px) {
    .tools {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .booking-modal__content {
        padding: 28px 20px;
        border-radius: 20px;
    }
    .booking-modal__title {
        font-size: 22px;
    }
    .tools {
        gap: 10px;
    }
    .tool__body {
        padding: 14px;
    }
    .tool__footer {
        padding: 12px 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .tool__book-btn {
        justify-content: center;
        padding: 10px;
    }
    .btn-book-hero {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker__track {
        animation: none;
    }
    .btn-book-hero {
        animation: none;
    }
}
/* ═══════ КАТАЛОГ: ПЛИТКИ КАТЕГОРИЙ ═══════ */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.cat-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 24px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    text-decoration: none;
    color: inherit;
    transition: all .25s cubic-bezier(.2,.9,.3,1);
}
.cat-tile:hover {
    border-color: rgba(0,123,110,.3);
    box-shadow: 0 12px 32px rgba(0,123,110,0.12);
    transform: translateY(-4px);
}
.cat-tile__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--teal-dim);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-tile__icon svg {
    width: 26px;
    height: 26px;
}
.cat-tile__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.cat-tile__name {
    font-weight: 800;
    font-size: 15px;
}
.cat-tile__count {
    font-size: 12.5px;
    color: var(--muted);
}

/* ═══════ ХЛЕБНЫЕ КРОШКИ ═══════ */

.breadcrumbs {
    padding: 14px 0;
    font-size: 13px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}
.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}
.breadcrumbs a:hover {
    color: var(--teal);
}
.breadcrumbs__sep {
    margin: 0 8px;
    color: var(--line);
}
.breadcrumbs span[aria-current] {
    color: var(--ink, #1a1a1a);
    font-weight: 600;
}

/* ═══════ СТРАНИЦА КАТЕГОРИИ ═══════ */

.cat-page__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}
.cat-page__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--teal-dim);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-page__icon svg {
    width: 28px;
    height: 28px;
}
.cat-page__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.cat-page__count {
    font-size: 13.5px;
    color: var(--muted);
}
.cat-page__desc {
    margin-top: 18px;
    padding: 16px 18px;
    background: var(--teal-dim);
    border-radius: var(--r-md);
    font-size: 14.5px;
    line-height: 1.6;
    color: #333;
}
.cat-page__desc p { margin: 0 0 10px; }
.cat-page__desc p:last-child { margin-bottom: 0; }

.tool__stock--out {
    color: #b45309;
}

/* ═══════ СТРАНИЦА ТОВАРА ═══════ */

.tool-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.tool-page__h1 {
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 4px;
}
.tool-page__meta {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 14px;
}
.tool-page__stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.tool-page__stock--in {
    background: rgba(25,135,84,.12);
    color: #198754;
}
.tool-page__stock--out {
    background: rgba(180,83,9,.12);
    color: #b45309;
}
.tool-page__price {
    font-size: 30px;
    font-weight: 900;
    color: var(--teal);
    margin-bottom: 18px;
}
.tool-page__price small {
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
}
.tool-page__price-week {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    margin-top: 4px;
}
.tool-page__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 24px;
}
.tool-page__desc p { margin: 0 0 12px; }
.tool-page__desc ul { padding-left: 20px; margin: 0 0 12px; }
.tool-page__contacts-hint {
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--muted);
}
.tool-page__contacts-hint a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
}
.tool-page__related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

@media (min-width: 860px) {
    .cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .tool-page {
        grid-template-columns: 460px 1fr;
    }
}
