* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg, #060606);
    color: var(--text, #fff);
    font-family: var(--font-family, Montserrat, Arial, sans-serif);
}

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

a {
    color: inherit;
}

.promo-bar {
    background: var(--primary, #cf5e34);
    color: #050505;
    text-align: center;
    padding: 9px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.site-header {
    height: 76px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text, #fff);
    text-decoration: none;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand span,
.footer-logo {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: .6px;
}

.desktop-nav {
    display: flex;
    gap: 30px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .8px;
}

.desktop-nav a,
.footer-links a {
    text-decoration: none;
    opacity: .86;
    transition: color .2s ease, opacity .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.footer-links a:hover {
    color: var(--primary, #cf5e34);
    opacity: 1;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text, #fff);
    transition: transform .25s ease, opacity .25s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    width: min(240px, calc(100vw - 40px));
    background: rgba(12, 12, 12, .98);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 24px 44px rgba(0, 0, 0, .35);
}

.mobile-menu a {
    display: block;
    color: var(--text, #fff);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 10px;
    border-radius: 10px;
}

.mobile-menu a:hover,
.mobile-menu a.is-active {
    background: rgba(207, 94, 52, .08);
    color: var(--primary, #cf5e34);
}

.site-header.mobile-open .mobile-menu {
    display: block;
}

.site-header.mobile-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.mobile-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.mobile-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-carousel {
    height: min(760px, calc(100vh - 76px));
    min-height: 560px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 8%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > img,
.hero-slide > video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.42), rgba(0,0,0,.86));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(700px, 100%);
    min-width: 0;
    max-width: 700px;
}

.hero-content small {
    color: var(--primary, #cf5e34);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 12px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 100%;
    font-size: clamp(46px, 8vw, 104px);
    line-height: .92;
    text-transform: uppercase;
    margin: 18px 0;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 0 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn,
.offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--primary, #cf5e34);
    color: #050505;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-size: 13px;
    border: 0;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover,
.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(207, 94, 52, .18);
}

.btn-outline {
    background: transparent;
    color: var(--primary, #cf5e34);
    border: 1px solid color-mix(in srgb, var(--primary, #cf5e34), transparent 25%);
}

.carousel-dots {
    position: absolute;
    bottom: 35px;
    left: 8%;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.carousel-dots button {
    width: 42px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .28);
    cursor: pointer;
}

.carousel-dots button.is-active {
    background: var(--primary, #cf5e34);
}

.section {
    padding: 74px 7%;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 34px;
}

.section-title h2 {
    font-size: clamp(32px, 5vw, 58px);
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

.section-title h2 span,
.highlight-block h2 span {
    color: var(--primary, #cf5e34);
}

.section-title p {
    color: var(--muted, #a3a3a3);
    margin: 10px 0 0;
    max-width: 640px;
    line-height: 1.5;
}

.section-title a {
    color: var(--primary, #cf5e34);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.category-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.category-card {
    height: 270px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: #111;
    border: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
    padding: 0;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
}

.category-card:hover,
.category-card.is-active {
    border-color: var(--primary, #cf5e34);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary, #cf5e34) 28%, transparent);
}

.category-card:focus-visible {
    outline: 3px solid var(--primary, #cf5e34);
    outline-offset: 4px;
}

.category-card.is-active {
    transform: translateY(-4px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transition: transform .4s ease, opacity .4s ease;
}

.category-card:hover img {
    transform: scale(1.06);
    opacity: .92;
}

.category-card span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    color: var(--text, #fff);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.category-card span::after {
    content: "";
    display: block;
    width: 36px;
    height: 4px;
    background: var(--primary, #cf5e34);
    border-radius: 999px;
    margin-top: 8px;
}

.category-products {
    scroll-margin-top: 110px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.category-products-heading {
    margin-bottom: 26px;
}

.category-products-heading p {
    margin: 0 0 6px;
    color: var(--muted, #a3a3a3);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.category-products-heading h3 {
    margin: 0;
    color: var(--text, #fff);
    font-size: clamp(28px, 4vw, 42px);
    text-transform: uppercase;
}

.category-empty {
    margin: 0;
    padding: 28px;
    border: 1px dashed rgba(255,255,255,.18);
    border-radius: 18px;
    color: var(--muted, #a3a3a3);
    text-align: center;
}

.product-card {
    background: var(--card, #101010);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 12px;
    min-width: 0;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
}

.product-image {
    height: 330px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #222;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .25s ease;
}

.product-gallery-image.is-active {
    opacity: 1;
}

.gallery-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: rgba(0,0,0,.48);
    color: #fff;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transform: translateY(-50%);
}

.gallery-control::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    transform: translate(-50%, -50%);
}

.gallery-control.prev {
    left: 10px;
}

.gallery-control.prev::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20stroke='%23fff'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M11%204.5L6.5%209L11%2013.5'/%3E%3C/svg%3E");
}

.gallery-control.next {
    right: 10px;
}

.gallery-control.next::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20stroke='%23fff'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M7%204.5L11.5%209L7%2013.5'/%3E%3C/svg%3E");
}

.gallery-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.gallery-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.42);
    cursor: pointer;
}

.gallery-dots button.is-active {
    background: var(--primary, #cf5e34);
}

.tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    background: var(--primary, #cf5e34);
    color: #050505;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.product-content {
    padding: 17px 6px 8px;
}

.product-content h3 {
    min-height: 42px;
    font-size: 15px;
    text-transform: uppercase;
    margin: 0 0 9px;
    line-height: 1.35;
}

.product-content p,
.meta {
    color: var(--muted, #a3a3a3);
    font-size: 13px;
    line-height: 1.5;
}

.meta {
    margin-bottom: 10px;
}

.product-content p {
    min-height: 58px;
    margin: 0 0 14px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}

.price-row strong {
    color: var(--primary, #cf5e34);
    font-size: 25px;
    font-weight: 800;
}

.old-price {
    color: #8d8d8d;
    text-decoration: line-through;
    font-size: 14px;
}

.offer-btn {
    width: 100%;
    border-radius: 16px;
    min-height: 46px;
}

.highlight-block {
    min-height: 420px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 58px;
    border: 1px solid rgba(255,255,255,.08);
}

.highlight-block h2 {
    font-size: clamp(38px, 6vw, 78px);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: 0;
    max-width: 760px;
    margin: 0;
}

.highlight-block p {
    color: #e1e1e1;
    max-width: 560px;
    margin: 22px 0 30px;
    line-height: 1.6;
}

.site-footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 36px 7%;
}

.footer-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdbdbd;
    font-size: 13px;
    font-weight: 500;
}

.site-footer p {
    color: #888;
    font-size: 13px;
    margin: 0;
}

.maintenance-screen {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--primary, #cf5e34) 20%, transparent), transparent 32%),
        radial-gradient(circle at 82% 78%, rgba(255,255,255,.06), transparent 28%),
        var(--page-bg, #060606);
}

.maintenance-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
}

.maintenance-card {
    width: min(720px, 100%);
    padding: clamp(34px, 7vw, 72px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 32px;
    background: color-mix(in srgb, var(--card, #101010) 92%, transparent);
    box-shadow: 0 32px 100px rgba(0,0,0,.48);
    text-align: center;
}

.maintenance-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 42px;
    color: var(--text, #fff);
    font-size: 22px;
    font-weight: 700;
}

.maintenance-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.maintenance-mark {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border: 1px solid color-mix(in srgb, var(--primary, #cf5e34) 55%, transparent);
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary, #cf5e34) 12%, transparent);
}

.maintenance-mark span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary, #cf5e34);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary, #cf5e34) 42%, transparent);
    animation: maintenance-pulse 2s ease-out infinite;
}

.maintenance-kicker {
    margin: 0 0 12px;
    color: var(--primary, #cf5e34);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.maintenance-card h1 {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text, #fff);
    font-size: clamp(38px, 8vw, 72px);
    line-height: .98;
    text-transform: uppercase;
}

.maintenance-message {
    max-width: 560px;
    margin: 24px auto 0;
    color: var(--muted, #a3a3a3);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.65;
}

.maintenance-line {
    width: min(240px, 70%);
    height: 4px;
    margin: 38px auto 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.maintenance-line span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: var(--primary, #cf5e34);
    animation: maintenance-line 2.4s ease-in-out infinite;
}

@keyframes maintenance-pulse {
    70% {
        box-shadow: 0 0 0 18px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

@keyframes maintenance-line {
    0% {
        transform: translateX(-110%);
    }
    50% {
        transform: translateX(145%);
    }
    100% {
        transform: translateX(-110%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .maintenance-mark span,
    .maintenance-line span {
        animation: none;
    }
}

.install-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.install-box {
    width: min(560px, 100%);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 34px;
    background: #101010;
    text-align: center;
}

.install-box img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    margin: 0 auto 14px;
}

.install-error {
    color: #ffb199;
    font-size: 13px;
    word-break: break-word;
}

@media (max-width: 1120px) {
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    .site-header {
        height: 70px;
        padding: 0 20px;
    }

    .brand span {
        font-size: 22px;
    }

    .brand img {
        width: 36px;
        height: 36px;
    }

    .hero-carousel {
        min-height: 600px;
        height: calc(100vh - 70px);
        height: calc(100svh - 70px);
    }

    .hero-slide {
        padding: clamp(48px, 8vh, 72px) 20px clamp(72px, 10vh, 92px);
    }

    .hero-content small {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        margin: 14px 0;
        font-size: clamp(38px, 12vw, 56px);
        line-height: .96;
    }

    .hero-content p {
        margin-bottom: 22px;
        font-size: clamp(15px, 4.2vw, 17px);
        line-height: 1.5;
        text-wrap: pretty;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 140px;
        min-height: 44px;
        padding: 12px 18px;
        font-size: 12px;
    }

    .carousel-dots {
        bottom: 26px;
        left: 20px;
    }

    .section {
        padding: 52px 20px;
    }

    .maintenance-shell {
        padding: 18px;
    }

    .maintenance-card {
        padding: 38px 24px;
        border-radius: 24px;
    }

    .maintenance-brand {
        margin-bottom: 34px;
    }

    .section-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 320px;
    }

    .highlight-block {
        min-height: 380px;
        padding: 34px;
        border-radius: 24px;
    }

    .footer-simple {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) and (max-height: 680px) {
    .hero-slide {
        align-items: flex-start;
    }
}
