:root {
    --black: #030303;
    --black-soft: #09090b;
    --graphite: #121215;
    --graphite-2: #1b1b20;
    --wine: #6d0c20;
    --red: #c90f32;
    --red-soft: rgba(201, 15, 50, 0.18);
    --line: rgba(255, 255, 255, 0.11);
    --white: #ffffff;
    --muted: #c8cad1;
    --muted-2: #777b86;
    --green: #25d366;
    --shell: min(1180px, calc(100% - 40px));
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(109, 12, 32, 0.24), transparent 28%),
        radial-gradient(circle at 88% 30%, rgba(201, 15, 50, 0.12), transparent 22%),
        var(--black);
    color: var(--white);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: clip;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.035) 50%, transparent 51% 100%);
    background-size: 19vw 100%;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: linear-gradient(to bottom, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.32), transparent);
    transition: 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(5, 5, 6, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: var(--shell);
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: grid;
    gap: 2px;
}

.brand span {
    font-size: clamp(19px, 2vw, 27px);
    font-weight: 900;
    letter-spacing: 0;
}

.brand small,
.eyebrow {
    color: #ffbdc8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
}

.nav-menu a,
.footer-links a {
    transition: 0.2s ease;
}

.nav-menu a:hover,
.footer-links a:hover {
    color: var(--white);
}

.nav-whatsapp,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-whatsapp {
    padding: 0 18px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.34);
    color: #d9ffe6;
}

.btn {
    padding: 0 22px;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--wine));
    color: var(--white);
    box-shadow: 0 0 34px rgba(201, 15, 50, 0.32);
}

.btn-ghost {
    border-color: var(--line);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-whats {
    background: var(--green);
    color: #041006;
}

.btn:hover,
.nav-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 122px max(20px, calc((100vw - 1180px) / 2)) 58px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92) contrast(1.08) brightness(0.9);
    max-width: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.7) 44%, rgba(3, 3, 3, 0.18) 100%),
        linear-gradient(0deg, var(--black) 0%, rgba(3, 3, 3, 0.18) 46%, rgba(3, 3, 3, 0.76) 100%),
        radial-gradient(circle at 76% 64%, rgba(201, 15, 50, 0.22), transparent 26%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-top: 38px;
}

.hero h1 {
    max-width: 720px;
    margin: 16px 0 20px;
    font-size: clamp(46px, 6.7vw, 88px);
    line-height: 0.96;
    letter-spacing: 0;
}

.hero p {
    max-width: 560px;
    color: var(--muted);
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-spotlight {
    position: absolute;
    right: max(20px, calc((100vw - 1180px) / 2));
    bottom: 52px;
    z-index: 2;
    width: min(360px, 32vw);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(201, 15, 50, 0.12), transparent 42%),
        rgba(10, 10, 12, 0.66);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42), 0 0 42px rgba(201, 15, 50, 0.16);
}

.spotlight-tag {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ffbdc8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-spotlight h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.hero-spotlight p {
    font-size: 14px;
}

.hero-spotlight strong {
    display: block;
    margin-top: 16px;
    color: var(--white);
    font-size: 28px;
}

.cinema-intro,
.catalog,
.contact-strip,
.footer {
    width: var(--shell);
    margin: 0 auto;
}

.cinema-intro {
    min-height: 300px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 42px;
    padding: 72px 0;
}

.intro-copy h2,
.section-heading h2,
.contact-copy h2 {
    margin-top: 12px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--line);
}

.intro-stats div {
    min-height: 142px;
    padding: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.intro-stats strong {
    display: block;
    font-size: 38px;
}

.intro-stats span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.showcase {
    display: grid;
    width: var(--shell);
    margin: 0 auto;
    gap: 32px;
}

.vehicle-feature {
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(201, 15, 50, 0.1), transparent 44%),
        linear-gradient(180deg, #070708, #030303);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.vehicle-feature.is-reverse {
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
}

.vehicle-feature.is-reverse .feature-media {
    order: 2;
}

.feature-media {
    position: relative;
    min-height: 560px;
    padding: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 58%),
        linear-gradient(135deg, rgba(201, 15, 50, 0.12), transparent 46%),
        #070708;
}

.feature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(3, 3, 3, 0.28), transparent 45%),
        linear-gradient(90deg, rgba(3, 3, 3, 0.18), transparent 38%);
}

.feature-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.8s ease;
}

.vehicle-feature:hover .feature-main-image {
    transform: scale(1.018);
}

.feature-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: clamp(36px, 4.6vw, 64px);
    position: relative;
}

.feature-panel::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(201, 15, 50, 0.18);
    pointer-events: none;
    box-shadow: 0 0 52px rgba(201, 15, 50, 0.08);
}

.feature-panel > * {
    position: relative;
    z-index: 1;
}

.feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-meta span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.feature-meta span + span::before {
    content: "/";
    margin-right: 8px;
    color: rgba(201, 15, 50, 0.78);
}

.feature-panel h2 {
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1;
}

.feature-price {
    color: var(--white);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 900;
}

.spec-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spec-grid span {
    padding: 11px 13px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.045);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.feature-description {
    max-width: 560px;
    color: var(--muted);
    line-height: 1.8;
}

.feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mini-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery-thumb {
    flex: 0 0 84px;
    height: 66px;
    border: 1px solid var(--line);
    background: var(--graphite);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.25s ease;
}

.gallery-thumb:hover img,
.gallery-thumb.is-active img {
    transform: scale(1.08);
}

.gallery-thumb.is-active {
    border-color: var(--red);
    box-shadow: 0 0 18px rgba(201, 15, 50, 0.35);
}

.catalog {
    padding: 94px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading p,
.contact-copy p {
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.7;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto auto;
    align-items: end;
    gap: 12px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.045);
}

.filter-bar label {
    display: grid;
    gap: 8px;
}

.filter-bar span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.62);
    color: var(--white);
    padding: 0 13px;
    font: inherit;
    outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(201, 15, 50, 0.75);
    box-shadow: 0 0 0 3px rgba(201, 15, 50, 0.16);
}

.filter-clear {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--muted);
    font-weight: 800;
}

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

.catalog-card {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    overflow: hidden;
    transition: 0.25s ease;
}

.catalog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 15, 50, 0.42);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.catalog-image {
    display: block;
    height: 240px;
    padding: 10px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 62%),
        #080809;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.35s ease;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.025);
}

.catalog-body {
    padding: 22px;
}

.catalog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.catalog-meta span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.catalog-meta span + span::before {
    content: "/";
    margin-right: 6px;
    color: rgba(201, 15, 50, 0.78);
}

.catalog-body h3 {
    min-height: 56px;
    font-size: 22px;
    line-height: 1.25;
}

.catalog-body p {
    margin: 10px 0 16px;
    color: var(--muted);
    font-size: 14px;
}

.catalog-body strong {
    font-size: 25px;
}

.catalog-actions {
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 10px;
    margin-top: 18px;
}

.catalog-actions a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--line);
    font-weight: 900;
}

.catalog-actions a:last-child {
    background: var(--green);
    color: #041006;
}

.contact-strip {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
    padding: 86px 0 100px;
    border-top: 1px solid var(--line);
}

.seller-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.seller-chip {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.045);
}

.seller-chip img,
.seller-chip > i {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    object-fit: cover;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--red), var(--wine));
}

.seller-chip span {
    display: grid;
    gap: 4px;
}

.seller-chip small {
    color: var(--muted);
}

.seller-chip-main {
    border-color: rgba(37, 211, 102, 0.32);
}

.seller-chip-main > i {
    color: #041006;
    background: var(--green);
}

.footer {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.footer h2 {
    color: var(--white);
    margin-bottom: 6px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    font-weight: 800;
}

.empty-state {
    grid-column: 1 / -1;
    min-height: 320px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    padding: 42px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.empty-state i {
    color: var(--red);
    font-size: 42px;
}

.empty-state p {
    color: var(--muted);
    max-width: 520px;
}

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

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

@media (max-width: 1040px) {
    :root {
        --shell: min(100% - 32px, 1180px);
    }

    .nav-menu {
        display: none;
    }

    .hero {
        min-height: 860px;
        align-items: end;
        padding-top: 118px;
    }

    .hero h1 {
        max-width: 650px;
        font-size: clamp(44px, 8.5vw, 76px);
    }

    .hero-spotlight {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(100%, 460px);
        margin-top: 36px;
    }

    .cinema-intro,
    .contact-strip,
    .vehicle-feature,
    .vehicle-feature.is-reverse {
        grid-template-columns: 1fr;
    }

    .vehicle-feature.is-reverse .feature-media {
        order: 0;
    }

    .feature-media {
        min-height: 520px;
    }

    .feature-panel {
        min-height: auto;
    }

    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }

    .filter-bar .btn,
    .filter-clear {
        width: 100%;
    }

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

@media (max-width: 680px) {
    :root {
        --shell: calc(100% - 24px);
    }

    body {
        background:
            radial-gradient(circle at 80% 5%, rgba(201, 15, 50, 0.18), transparent 34%),
            #030303;
    }

    .nav-shell {
        width: var(--shell);
        min-height: 66px;
    }

    .site-header {
        background: linear-gradient(to bottom, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.52), transparent);
    }

    .brand span {
        max-width: 260px;
        font-size: 20px;
        line-height: 1.05;
    }

    .brand small {
        display: none;
    }

    .nav-whatsapp {
        position: relative;
        width: 46px;
        height: 46px;
        min-height: 46px;
        padding: 0;
        font-size: 0;
        display: block;
        gap: 0;
        overflow: hidden;
    }

    .nav-whatsapp i {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        line-height: 1;
    }

    .hero {
        min-height: auto;
        display: flex;
        align-items: flex-end;
        padding: 300px 14px 26px;
        background: #050505;
    }

    .hero-bg {
        height: 380px;
        bottom: auto;
        object-fit: contain;
        object-position: center 74px;
        filter: saturate(0.98) contrast(1.06) brightness(0.82);
        background: #050505;
    }

    .hero-overlay {
        inset: 0;
        background:
            linear-gradient(0deg, #050505 0%, #050505 36%, rgba(5, 5, 5, 0.76) 53%, rgba(5, 5, 5, 0.1) 78%, rgba(5, 5, 5, 0.78) 100%),
            radial-gradient(circle at 80% 39%, rgba(201, 15, 50, 0.24), transparent 38%);
    }

    .hero-content {
        width: 100%;
        max-width: none;
        padding: 22px 0 0;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 1.35px;
    }

    .hero h1 {
        margin: 11px 0 13px;
        max-width: 340px;
        font-size: clamp(34px, 11.5vw, 44px);
        line-height: 1.03;
    }

    .hero p {
        max-width: 340px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 15px;
        line-height: 1.58;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 22px;
    }

    .btn {
        min-height: 52px;
        padding: 0 18px;
        font-size: 14px;
    }

    .hero-actions,
    .feature-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .feature-actions .btn {
        width: 100%;
    }

    .hero-spotlight {
        display: none;
    }

    .cinema-intro {
        min-height: auto;
        gap: 22px;
        padding: 48px 0;
    }

    .intro-copy h2,
    .section-heading h2,
    .contact-copy h2 {
        font-size: clamp(28px, 9vw, 38px);
        line-height: 1.05;
    }

    .intro-stats {
        gap: 10px;
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .intro-stats div {
        min-height: 98px;
        padding: 18px;
        border: 1px solid var(--line);
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    }

    .intro-stats,
    .seller-row,
    .filter-bar,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-feature {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        display: block;
        overflow: hidden;
        border-color: rgba(255, 255, 255, 0.1);
        border-radius: 0;
        background:
            linear-gradient(180deg, rgba(201, 15, 50, 0.08), transparent 38%),
            #070708;
    }

    .vehicle-feature,
    .feature-media,
    .feature-panel,
    .feature-panel > *,
    .catalog-card,
    .catalog-body {
        min-width: 0;
    }

    .feature-media {
        min-height: 0;
        height: clamp(180px, 48vw, 235px);
        padding: 14px;
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 60%), #080809;
    }

    .feature-media::after {
        inset: 10px;
        background:
            linear-gradient(to top, rgba(3, 3, 3, 0.18), transparent 45%),
            linear-gradient(90deg, rgba(3, 3, 3, 0.12), transparent 38%);
    }

    .feature-main-image {
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .vehicle-feature:hover .feature-main-image {
        transform: none;
    }

    .feature-panel {
        gap: 14px;
        padding: 22px 14px 24px;
        overflow: hidden;
    }

    .feature-panel::before {
        display: none;
    }

    .feature-panel h2 {
        font-size: clamp(25px, 7.5vw, 32px);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .feature-price {
        font-size: clamp(25px, 7vw, 31px);
        line-height: 1.1;
    }

    .feature-description {
        display: -webkit-box;
        overflow: hidden;
        font-size: 13.5px;
        line-height: 1.55;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        max-width: 100%;
    }

    .spec-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .spec-grid span {
        min-width: 0;
        padding: 10px 8px;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .spec-grid span:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .feature-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-actions .btn {
        width: 100%;
        min-width: 0;
        border-radius: 18px;
        white-space: normal;
    }

    .mini-gallery {
        width: 100%;
        margin: 2px 0 0;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 8px;
        scroll-snap-type: x mandatory;
    }

    .gallery-thumb {
        flex: 0 0 86px;
        height: 62px;
        scroll-snap-align: start;
    }

    .catalog {
        padding: 64px 0;
    }

    .filter-bar {
        padding: 14px;
        gap: 10px;
    }

    .catalog-image {
        height: clamp(170px, 48vw, 215px);
        min-height: 0;
        padding: 8px;
        background: #080809;
    }

    .catalog-image img {
        object-fit: contain;
    }

    .catalog-body {
        padding: 18px;
    }

    .catalog-body h3 {
        min-height: auto;
        font-size: 20px;
    }

    .catalog-actions {
        grid-template-columns: 1fr 52px;
    }

    .contact-strip {
        gap: 26px;
        padding: 54px 0 66px;
    }

    .footer {
        padding: 28px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
