/* ============================================================
   ПЕРЕМЕННЫЕ — светлая минималистичная палитра
   ============================================================ */
:root {
    --clr-accent:      #b07d4f;   /* тёплый терракот/золото */
    --clr-accent-light:#d4a574;
    --clr-accent-pale: #f5ede3;
    --clr-dark:        #1a1a1a;
    --clr-text:        #2c2c2c;
    --clr-text-muted:  #888888;
    --clr-border:      #e8e8e8;
    --clr-bg:          #ffffff;
    --clr-bg-soft:     #faf8f5;
    --clr-bg-warm:     #f5ede3;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', Arial, sans-serif;

    --radius:    6px;
    --radius-lg: 12px;
    --shadow:    0 2px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
    --max-w:     1240px;
    --gap:       2rem;
}

/* ============================================================
   СБРОС И БАЗА
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--clr-text); background: var(--clr-bg); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ============================================================
   ТИПОГРАФИКА
   ============================================================ */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; color: var(--clr-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

.section       { padding: 5rem 0; }
.section--soft { background: var(--clr-bg-soft); }
.section--warm { background: var(--clr-bg-warm); }

.section__title {
    text-align: center;
    margin-bottom: 3rem;
}
.section__title::after {
    content: '';
    display: block;
    width: 48px; height: 2px;
    background: var(--clr-accent);
    margin: .75rem auto 0;
}
.section__more { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   КНОПКИ
   ============================================================ */
.btn {
    display: inline-block;
    padding: .75rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all .2s ease;
    text-align: center;
}
.btn--primary  { background: var(--clr-dark); color: #fff; border-color: var(--clr-dark); }
.btn--primary:hover { background: var(--clr-accent); border-color: var(--clr-accent); }
.btn--outline  { background: transparent; border-color: var(--clr-dark); color: var(--clr-dark); }
.btn--outline:hover { background: var(--clr-dark); color: #fff; }
.btn--accent   { background: var(--clr-accent); color: #fff; border-color: var(--clr-accent); }
.btn--accent:hover { background: var(--clr-accent-light); border-color: var(--clr-accent-light); }
.btn--sm  { padding: .45rem 1.2rem; font-size: .8rem; }
.btn--lg  { padding: 1rem 2.5rem; font-size: .95rem; }
.btn--full { width: 100%; }

/* ============================================================
   ФОРМЫ
   ============================================================ */
.form-input {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--clr-text);
    background: var(--clr-bg);
    transition: border-color .2s;
    margin-bottom: .9rem;
}
.form-input:focus { outline: none; border-color: var(--clr-accent); }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-success {
    background: #eaf5ea; color: #2d6a2d;
    padding: 1rem 1.5rem; border-radius: var(--radius);
    margin-top: 1rem; font-weight: 500;
}

/* ============================================================
   ШАПКА
   ============================================================ */
.header {
    position: sticky; top: 0; z-index: 100;
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
}
.header__inner {
    display: flex; align-items: center;
    gap: 2rem; height: 64px;
}
.header__logo, .footer__logo {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 700;
    white-space: nowrap; flex-shrink: 0;
    letter-spacing: .02em;
    color: var(--clr-dark);
}
.header__logo span { color: var(--clr-accent); }

.header__nav { display: flex; gap: 2rem; flex: 1; }
.nav-link {
    font-size: .875rem; font-weight: 500;
    color: var(--clr-text-muted);
    letter-spacing: .03em;
    text-transform: uppercase;
    transition: color .15s;
}
.nav-link:hover { color: var(--clr-accent); }

.header__contacts { margin-left: auto; }
.header__phone { font-weight: 600; color: var(--clr-dark); font-size: .9rem; }
.header__phone:hover { color: var(--clr-accent); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--clr-dark); transition: all .3s; }
.burger--active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger--active span:nth-child(2) { opacity: 0; }
.burger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 768px) {
    .burger { display: flex; }
    .header__contacts { display: none; }
    .header__nav {
        display: none; position: absolute;
        top: 64px; left: 0; right: 0;
        background: var(--clr-bg);
        flex-direction: column;
        padding: 1.5rem; gap: .75rem;
        border-bottom: 1px solid var(--clr-border);
        box-shadow: var(--shadow);
    }
    .header__nav.nav--open { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    background: var(--clr-bg-soft);
}
.hero__content {
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 1.5rem;
    max-width: 600px; margin-left: auto;
}
.hero__eyebrow {
    font-size: .8rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--clr-accent); margin-bottom: 1.25rem;
}
.hero__title { margin-bottom: 1.25rem; line-height: 1.15; }
.hero__subtitle { color: var(--clr-text-muted); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.7; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__image {
    position: relative; overflow: hidden;
    background: var(--clr-bg-warm);
}
.hero__image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero__image--placeholder {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f0e6d3, #e8d5bb);
    font-size: 8rem; opacity: .3;
}

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero__content { padding: 3rem 1.5rem; max-width: 100%; margin: 0; }
    .hero__image { min-height: 300px; }
}

/* ============================================================
   ПОЛОСКА-АНОНС
   ============================================================ */
.announcement-bar {
    background: var(--clr-dark); color: #fff;
    text-align: center; padding: .6rem 1rem;
    font-size: .82rem; letter-spacing: .06em;
    text-transform: uppercase;
}
.announcement-bar a { color: var(--clr-accent-light); }

/* ============================================================
   КАРТОЧКИ РАБОТ (ARTWORK GRID)
   ============================================================ */
.artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.artwork-card {
    background: var(--clr-bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
}
.artwork-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.artwork-card__img {
    aspect-ratio: 4/3;
    background: var(--clr-bg-warm);
    overflow: hidden; position: relative;
}
.artwork-card__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.artwork-card:hover .artwork-card__img img { transform: scale(1.04); }
.artwork-card__img--empty {
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; color: var(--clr-accent); opacity: .3;
}
.artwork-card__img--empty::after { content: '🖼'; }

.artwork-card__body { padding: 1rem 1.1rem 1.25rem; }
.artwork-card__cat  { font-size: .72rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.artwork-card__title { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: .4rem; }
.artwork-card__price { color: var(--clr-accent); font-weight: 700; font-size: 1rem; margin-bottom: .9rem; }
.artwork-card .btn   { width: 100%; text-align: center; }

/* ============================================================
   УСЛУГИ (сетка) — псевдоним для artwork-grid
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card  { display: flex; flex-direction: column; background: var(--clr-bg); border: 1px solid var(--clr-border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card__img { aspect-ratio: 4/3; background: var(--clr-bg-warm) center/cover no-repeat; }
.service-card__img--placeholder { display:flex; align-items:center; justify-content:center; font-size:3rem; opacity:.25; }
.service-card__img--placeholder::after { content:'🖼'; }
.service-card__body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; gap: .35rem; }
.service-card__cat  { font-size: .72rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .06em; }
.service-card__title { font-family: var(--font-display); font-size: 1.05rem; }
.service-card__price { color: var(--clr-accent); font-weight: 700; margin-top: auto; padding-top: .5rem; }
.service-card .btn   { margin-top: .75rem; }

/* ============================================================
   ПРЕИМУЩЕСТВА
   ============================================================ */
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.advantage-card {
    padding: 2rem 1.5rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: box-shadow .2s;
}
.advantage-card:hover { box-shadow: var(--shadow); }
.advantage-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.advantage-card h3    { font-size: 1rem; margin-bottom: .5rem; }
.advantage-card p     { font-size: .9rem; color: var(--clr-text-muted); line-height: 1.6; }

/* ============================================================
   КАК РАБОТАЕМ
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.step { text-align: center; }
.step__num {
    width: 52px; height: 52px;
    background: var(--clr-dark); color: #fff;
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.step__text { font-size: .92rem; color: var(--clr-text-muted); line-height: 1.6; }

/* ============================================================
   ОТЗЫВЫ
   ============================================================ */
.reviews-slider { position: relative; min-height: 140px; }
.review-card {
    display: none;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.review-card--active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }
.review-card__text   { font-size: 1.05rem; line-height: 1.8; color: var(--clr-text); margin-bottom: 1.25rem; font-style: italic; }
.review-card__author { font-size: .85rem; font-weight: 600; color: var(--clr-accent); letter-spacing: .04em; text-transform: uppercase; }
.slider-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.slider-btn {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid var(--clr-border); background: transparent;
    color: var(--clr-text); font-size: 1.1rem; cursor: pointer; transition: all .2s;
}
.slider-btn:hover { border-color: var(--clr-dark); background: var(--clr-dark); color: #fff; }

/* ============================================================
   CTA СЕКЦИЯ
   ============================================================ */
.cta-section { background: var(--clr-dark); color: #fff; }
.cta-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .cta-section .container { grid-template-columns: 1fr; gap: 2rem; } }
.cta__title    { color: #fff; margin-bottom: .75rem; }
.cta__subtitle { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; }
.cta-form .form-input { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); color: #fff; }
.cta-form .form-input::placeholder { color: rgba(255,255,255,.4); }
.cta-form .form-input:focus { border-color: var(--clr-accent); }

/* ============================================================
   ПОЛОСКА ДОВЕРИЯ
   ============================================================ */
.trust-bar {
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 1.25rem 0;
    background: var(--clr-bg-soft);
}
.trust-bar__inner {
    display: flex; justify-content: center;
    flex-wrap: wrap; gap: 2.5rem;
}
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--clr-text-muted); }
.trust-item__icon { font-size: 1.1rem; }

/* ============================================================
   ФУТЕР
   ============================================================ */
.footer { background: var(--clr-dark); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__logo { color: #fff; }
.footer__logo span { color: var(--clr-accent); }
.footer__tagline { opacity: .5; font-size: .85rem; margin-top: .5rem; line-height: 1.6; }
.footer__col h4 { font-family: var(--font-body); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer__col ul li+li { margin-top: .5rem; }
.footer__col a { font-size: .875rem; opacity: .7; transition: opacity .15s; }
.footer__col a:hover { opacity: 1; color: var(--clr-accent-light); }
.footer__col p { font-size: .875rem; opacity: .7; margin-bottom: .35rem; }
.footer__social { display: flex; flex-direction: column; gap: .5rem; }
.social-link { display: inline-block; padding: .4rem .9rem; border-radius: 4px; font-size: .82rem; font-weight: 500; transition: opacity .2s; }
.social-link--vk  { background: #4a76a8; color: #fff; }
.social-link--tg  { background: #2aabee; color: #fff; }
.social-link--ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.social-link--lm  { background: #e05a00; color: #fff; }
.social-link:hover { opacity: .85; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; text-align: center; font-size: .8rem; opacity: .4; }

/* ============================================================
   ЗАГОЛОВОК СТРАНИЦ
   ============================================================ */
.page-header { padding: 3.5rem 0 2rem; border-bottom: 1px solid var(--clr-border); }
.page-header h1 { margin-bottom: .5rem; }
.breadcrumb { font-size: .85rem; color: var(--clr-text-muted); margin-top: .5rem; }
.breadcrumb a { color: var(--clr-accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   КАТАЛОГ
   ============================================================ */
.category-tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.category-tab {
    padding: .45rem 1.2rem; border-radius: 20px;
    border: 1.5px solid var(--clr-border);
    font-size: .82rem; font-weight: 500; color: var(--clr-text-muted);
    letter-spacing: .03em; text-transform: uppercase;
    transition: all .15s;
}
.category-tab:hover { border-color: var(--clr-dark); color: var(--clr-dark); }
.category-tab--active { background: var(--clr-dark); border-color: var(--clr-dark); color: #fff; }
.empty-state { text-align: center; color: var(--clr-text-muted); padding: 3rem 0; }

/* ============================================================
   СТРАНИЦА УСЛУГИ
   ============================================================ */
.service-detail__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
@media (max-width: 768px) { .service-detail__layout { grid-template-columns: 1fr; } }
.service-detail__image img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/3; }
.service-detail__image--placeholder { aspect-ratio: 4/3; background: var(--clr-bg-warm); border-radius: var(--radius-lg); display:flex; align-items:center; justify-content:center; font-size:5rem; opacity:.2; }
.service-detail__cat   { font-size: .75rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.service-detail__title { margin-bottom: 1rem; }
.service-detail__price { font-size: 1.75rem; font-weight: 700; color: var(--clr-accent); margin-bottom: 1.5rem; }
.service-detail__desc  { margin-bottom: 2rem; line-height: 1.8; color: var(--clr-text); }
.service-detail__desc p+p { margin-top: .75rem; }
.service-detail__desc ul  { padding-left: 1.2rem; margin: .75rem 0; }
.service-detail__desc li  { margin-bottom: .4rem; }
.service-gallery { margin-bottom: 4rem; }
.service-gallery h2 { margin-bottom: 1.5rem; }
.order-form-wrap { max-width: 640px; background: var(--clr-bg-soft); border-radius: var(--radius-lg); padding: 2.5rem; }
.order-form-wrap h2 { margin-bottom: 1.5rem; }

/* ============================================================
   О НАС
   ============================================================ */
.about__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 3rem; }
@media (max-width: 768px) { .about__layout { grid-template-columns: 1fr; } }
.about__text p  { font-size: 1.02rem; line-height: 1.85; margin-bottom: 1rem; }
.about__image-placeholder { aspect-ratio: 4/3; background: var(--clr-bg-warm); border-radius: var(--radius-lg); }
.mission { text-align: center; max-width: 600px; margin: 0 auto; padding: 2.5rem; background: var(--clr-bg-soft); border-radius: var(--radius-lg); }
.mission h2 { margin-bottom: 1rem; }
.mission__text { font-size: 1.1rem; line-height: 1.8; color: var(--clr-text-muted); font-style: italic; }

/* ============================================================
   КОНТАКТЫ
   ============================================================ */
.contacts__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media (max-width: 768px) { .contacts__layout { grid-template-columns: 1fr; } }
.contacts__intro   { font-size: 1rem; margin-bottom: 2rem; color: var(--clr-text-muted); }
.contacts__list    { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contacts__item    { display: flex; align-items: center; gap: .75rem; font-size: .97rem; }
.contacts__icon    { font-size: 1.1rem; flex-shrink: 0; }
.contacts__item a:hover { color: var(--clr-accent); }
.contacts__social  { display: flex; flex-wrap: wrap; gap: .75rem; }
.contacts__form    { background: var(--clr-bg-soft); padding: 2.5rem; border-radius: var(--radius-lg); }
.contacts__form h2 { margin-bottom: 1.5rem; }

/* ============================================================
   ГАЛЕРЕЯ И ЛАЙТБОКС
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; aspect-ratio: 1; background: var(--clr-bg-warm); }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption { position:absolute; bottom:0; left:0; right:0; padding:.5rem .75rem; background:linear-gradient(transparent,rgba(0,0,0,.6)); color:#fff; font-size:.82rem; transform:translateY(100%); transition:transform .25s; }
.gallery-item:hover .gallery-item__caption { transform:translateY(0); }
.lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,.9); z-index:1000; align-items:center; justify-content:center; }
.lightbox--open { display:flex; }
.lightbox__inner { position:relative; max-width:90vw; }
.lightbox__img { max-width:90vw; max-height:85vh; object-fit:contain; border-radius:var(--radius); }
.lightbox__caption { color:rgba(255,255,255,.7); text-align:center; margin-top:.75rem; font-size:.9rem; }
.lightbox__close { position:absolute; top:-2.5rem; right:0; background:none; border:none; color:#fff; font-size:2rem; cursor:pointer; }

/* ============================================================
   СЛАЙДЕР НА СТРАНИЦЕ ТОВАРА
   ============================================================ */
.svc-slider { display: flex; flex-direction: column; gap: .75rem; }
.svc-slider__main { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--clr-bg-warm); aspect-ratio: 4/3; cursor: zoom-in; }
.svc-slider__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-slider__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.85); border: none; border-radius: 50%;
    width: 40px; height: 40px; font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.svc-slider__arrow:hover { background: #fff; }
.svc-slider__arrow--prev { left: .75rem; }
.svc-slider__arrow--next { right: .75rem; }
.svc-slider__thumbs { display: flex; gap: .5rem; flex-wrap: wrap; }
.svc-thumb { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius); cursor: pointer; border: 2px solid transparent; opacity: .7; transition: all .2s; }
.svc-thumb:hover { opacity: 1; }
.svc-thumb--active { border-color: var(--clr-accent); opacity: 1; }

/* Лайтбокс (обновлённый) */
.lightbox__prev, .lightbox__next {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.15); border: none; color: #fff;
    font-size: 2rem; padding: .5rem 1rem; cursor: pointer; border-radius: var(--radius);
    transition: background .2s; z-index: 1001;
}
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.3); }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__close {
    position: fixed; top: 1rem; right: 1rem;
    background: rgba(255,255,255,.15); border: none; color: #fff;
    font-size: 1.5rem; width: 44px; height: 44px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .2s; z-index: 1001;
}
.lightbox__close:hover { background: rgba(255,255,255,.3); }
.lightbox__img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); display: block; }
.lightbox__counter { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .9rem; }

/* ── Видео на странице товара ── */
.service-video { margin-top: 3rem; }
.service-video h2 { margin-bottom: 1.25rem; }
.service-video__wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--clr-bg-warm); }
.service-video__wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
