*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

:root {
    --bg: #0f0c0a;
    --surface: #1a1512;
    --surface-2: #241d18;
    --line: rgba(245, 158, 11, 0.16);
    --ink: #f5efe6;
    --muted: #a89a8b;
    --accent: #f59e0b;
    --accent-2: #ea580c;
    --gold: #fbbf24;
    --grad: linear-gradient(135deg, #fbbf24, #ea580c);
    --radius: 18px;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(245, 158, 11, 0.4);
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0c0a;
}

::-webkit-scrollbar-thumb {
    background: #3a2f27;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #574a3e;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
    background: rgba(12, 9, 8, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo__bg {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(245, 158, 11, 0.5);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
    flex-shrink: 0;
}

.logo__text {
    font-family: 'Prata', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
}

.nav__list {
    list-style: none;
    display: flex;
    gap: 34px;
}

.nav__link {
    text-decoration: none;
    color: var(--ink);
    opacity: 0.85;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 6px 0;
    position: relative;
    transition: color 0.25s, opacity 0.25s;
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--grad);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav__link:hover {
    color: var(--gold);
    opacity: 1;
}

.nav__link:hover::after {
    width: 100%;
}

.header__cta {
    display: none;
}

@media (min-width: 769px) {
    .header__cta {
        display: inline-flex;
    }
}

/* Burger */

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: 0.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);
}

/* Hero */

.hero {
    position: relative;
    height: calc(62vh + 76px);
    min-height: 496px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1749668169618-17bf02fbd47b?w=1600&q=80') center / cover no-repeat;
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1000px 520px at 50% -10%, rgba(245, 158, 11, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(10, 8, 7, 0.66), rgba(10, 8, 7, 0.45) 45%, rgba(10, 8, 7, 0.92));
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding: 110px 20px 90px;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.85;
}

.hero__mouse {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(245, 158, 11, 0.7);
    border-radius: 14px;
    position: relative;
}

.hero__wheel {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    border-radius: 2px;
    background: var(--gold);
    animation: wheel 1.8s infinite;
}

@keyframes wheel {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}

.btn--solid {
    background: var(--grad);
    color: #1c1917;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.28);
}

.btn--solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(245, 158, 11, 0.42);
    filter: brightness(1.06);
}

.btn--ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(245, 158, 11, 0.45);
}

.btn--ghost:hover {
    background: rgba(245, 158, 11, 0.12);
    transform: translateY(-3px);
}

.btn--sm {
    padding: 11px 24px;
    font-size: 0.92rem;
}

/* Sections */

.section {
    padding: 100px 0;
}

.section--alt {
    background: var(--surface);
}

.section__head {
    margin-bottom: 54px;
}

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.eyebrow::before,
.eyebrow::after {
    content: '';
    width: 44px;
    height: 1px;
}

.eyebrow::before {
    background: linear-gradient(90deg, transparent, var(--accent));
}

.eyebrow::after {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.section__title {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: 2.6rem;
    text-align: center;
    color: var(--ink);
}

/* Catalog */

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: var(--shadow);
}

.product-card__img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(15, 12, 10, 0.6));
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-card__img img {
    transform: scale(1.08);
}

.product-card__thumbs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, border-color 0.2s;
}

.thumb:hover {
    transform: scale(1.12);
}

.thumb.is-active {
    border-color: var(--gold);
    transform: scale(1.12);
}

.product-card__body {
    padding: 24px;
}

.product-card__body h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}
.product-card__body p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.product-card__body p:last-child {
    margin-bottom: 18px;
}

.product-card__price {
    display: inline-flex;
    align-items: center;
    background: var(--grad);
    color: #1c1917;
    padding: 7px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.02rem;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.product-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-card__btn {
    padding: 9px 20px;
    font-size: 0.88rem;
}

/* Gallery */

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s;
}

.gallery__item::after {
    content: '+';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.12), rgba(15, 12, 10, 0.55));
    opacity: 0;
    transition: opacity 0.35s;
}

.gallery__item:hover img {
    transform: scale(1.07);
}

.gallery__item:hover::after {
    opacity: 1;
}

/* About */

.about__content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.about__text p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 1.08rem;
    line-height: 1.85;
}

.about__text p:first-of-type::first-letter {
    font-family: 'Prata', serif;
    font-size: 3.4rem;
    color: var(--accent);
    float: left;
    line-height: 1;
    padding: 6px 10px 0 0;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 18px;
    transition: border-color 0.3s, transform 0.3s;
}

.stat:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.4);
}

.stat::before {
    content: '';
    position: absolute;
    inset: auto -20% -40% -20%;
    height: 60%;
    background: radial-gradient(closest-side, rgba(245, 158, 11, 0.16), transparent);
}

.stat__number {
    display: block;
    font-family: 'Prata', serif;
    font-size: 2.9rem;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 6px;
    position: relative;
}

.stat__label {
    color: var(--muted);
    font-size: 0.9rem;
    position: relative;
}

/* Features */

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    text-align: center;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 24px;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.45);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-radius: 50%;
    background: var(--grad);
    color: #1c1917;
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.3);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.12rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* FAQ */

.faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq__item[open] {
    border-color: rgba(245, 158, 11, 0.45);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    list-style: none;
    user-select: none;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 400;
    transition: transform 0.3s, background 0.3s;
}

.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
    background: var(--grad);
    color: #1c1917;
}

.faq__answer {
    padding: 0 24px 20px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.faq__answer p + p {
    margin-top: 10px;
}

/* Reviews */

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.review-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.3s, border-color 0.3s;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.45);
}

.review-card__stars {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.review-card__text {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.8;
    flex: 1;
}

.review-card__author {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.review-card__author strong {
    color: var(--ink);
    font-size: 1rem;
}

.review-card__author span {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Contact */

.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.contact__subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 44px;
    font-size: 1.08rem;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    max-width: 920px;
    margin: 0 auto;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: border-color 0.3s, transform 0.3s;
}

.contact__card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.45);
}

.contact__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--grad);
    color: #1c1917;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact__card p {
    color: var(--ink);
    font-weight: 600;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
}

.contact__form input,
.contact__form textarea {
    background: var(--surface-2);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 12px;
    color: var(--ink);
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: var(--muted);
    opacity: 0.7;
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.contact__form .btn {
    align-self: flex-start;
}

#formNote {
    color: var(--accent);
    font-size: 0.95rem;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#formNote.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */

.footer {
    background: #0b0807;
    border-top: 1px solid var(--line);
    padding: 38px 0;
    text-align: center;
}

.footer__inner p {
    margin-bottom: 4px;
    color: var(--muted);
}

.footer__inner p:last-child {
    margin-bottom: 0;
}

.footer__phone {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer__phone:hover {
    color: var(--accent);
}

/* To top */

.to-top {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 150;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.45);
    background: rgba(15, 12, 10, 0.75);
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.3s;
    backdrop-filter: blur(6px);
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.to-top:hover {
    background: var(--grad);
    color: #1c1917;
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Responsive */

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .section__title {
        font-size: 2rem;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        padding: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: 18px;
    }

    .burger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .about__stats {
        grid-template-columns: 1fr;
    }

    .contact__form {
        padding: 22px;
    }

    .contact__form .btn {
        align-self: stretch;
    }
}

/* Modal */

.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 7, 0.78);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.25s;
}

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

.modal__dialog {
    position: relative;
    z-index: 1;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 980px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from { transform: translateY(24px); opacity: 0; }
    to { transform: none; opacity: 1; }
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(15, 12, 10, 0.7);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.modal__close:hover {
    background: var(--grad);
    color: #1c1917;
    transform: scale(1.06);
}

.modal__body {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 32px;
    padding: 32px;
}

.modal__gallery {
    position: relative;
}

.modal__main {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
}

.modal__thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.modal__thumbs .thumb {
    width: 54px;
    height: 54px;
    border-radius: 12px;
}

.modal__thumbs .thumb.is-active {
    border-color: var(--gold);
    transform: scale(1.08);
}

.modal__info {
    display: flex;
    flex-direction: column;
}

.modal__info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.modal__price {
    align-self: flex-start;
    background: var(--grad);
    color: #1c1917;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.modal__desc {
    flex: 1;
}

.modal__desc p {
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 0.98rem;
}

.modal__order {
    align-self: flex-start;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .modal__body {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .modal__main {
        height: 260px;
    }
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 5, 0.92);
    backdrop-filter: blur(6px);
}

.lightbox__img {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 92vw);
    max-height: 82vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(15, 12, 10, 0.7);
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.lightbox__close:hover {
    background: var(--grad);
    color: #1c1917;
    transform: scale(1.06);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(15, 12, 10, 0.6);
    color: var(--gold);
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.lightbox__nav:hover {
    background: var(--grad);
    color: #1c1917;
    transform: translateY(-50%) scale(1.06);
}

.lightbox__nav--prev {
    left: 20px;
}

.lightbox__nav--next {
    right: 20px;
}

.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--muted);
    font-size: 0.9rem;
    background: rgba(15, 12, 10, 0.6);
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
}

@media (max-width: 480px) {
    .lightbox {
        padding: 20px;
    }

    .lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .lightbox__nav--prev {
        left: 10px;
    }

    .lightbox__nav--next {
        right: 10px;
    }
}

/* Chat widget */

.chat-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 200;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chat-widget__toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--grad);
    color: #1c1917;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.5);
    position: relative;
    transition: transform 0.2s;
}

.chat-widget__toggle:hover {
    transform: scale(1.08);
}

.chat-widget__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #dc2626;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #0f0c0a;
}

.chat-widget__window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 340px;
    max-width: calc(100vw - 40px);
    height: 460px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-widget__header {
    background: var(--grad);
    color: #1c1917;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-widget__header strong {
    font-size: 1rem;
}

.chat-widget__status {
    display: block;
    font-size: 0.8rem;
    opacity: 0.75;
}

.chat-widget__close {
    background: none;
    border: none;
    color: #1c1917;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
}

.chat-widget__messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--surface-2);
}

.chat-msg {
    max-width: 78%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.92rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.chat-msg--client {
    align-self: flex-end;
    background: var(--grad);
    color: #1c1917;
    border-bottom-right-radius: 4px;
}

.chat-msg--manager {
    align-self: flex-start;
    background: #2c2420;
    color: var(--ink);
    border-bottom-left-radius: 4px;
}

.chat-msg__time {
    display: block;
    font-size: 0.68rem;
    margin-top: 4px;
    opacity: 0.7;
}

.chat-widget__form {
    border-top: 1px solid var(--line);
    padding: 10px;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-widget__form input {
    background: var(--surface-2);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--ink);
    outline: none;
}

.chat-widget__form input::placeholder {
    color: var(--muted);
}

.chat-widget__form input:focus {
    border-color: var(--accent);
}

.chat-widget__sendrow {
    display: flex;
    gap: 8px;
}

.chat-widget__sendrow input {
    flex: 1;
}

.chat-widget__send {
    background: var(--grad);
    border: none;
    color: #1c1917;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.chat-widget__send:hover {
    filter: brightness(1.08);
}

.chat-msg--sys {
    align-self: center;
    font-size: 0.8rem;
    color: var(--muted);
    background: none;
}

@media (max-width: 480px) {
    .chat-widget__window {
        width: calc(100vw - 40px);
        height: 420px;
    }
}
