/* =========================================================
   DRUCKORA — HOME PAGE
========================================================= */

:root {
    --bg: #08090b;
    --surface: #111317;
    --surface-2: #171a20;

    --text: #f5f7fa;
    --muted: #9ca3af;

    --accent: #b7ff37;
    --accent-2: #70ffcb;

    /* Orange is reserved for clickable conversion elements. */
    --cta: #ff7a00;
    --cta-hover: #ff942e;
    --cta-dark: #c95700;

    --border: rgba(255,255,255,.08);
}


/* =========================================================
   PAGE
========================================================= */

.druckora-home {
    background: var(--bg);
    color: var(--text);

    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 82vh;

    display: flex;
    align-items: center;

    position: relative;

    padding: 70px 5vw 70px;
}

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -190px;
    top: -180px;

    background:
        radial-gradient(
            circle,
            rgba(183,255,55,.16),
            transparent 65%
        );

    pointer-events: none;
}

.hero__inner {
    width: 100%;
    max-width: 1350px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    align-items: center;

    gap: 70px;
}


/* =========================================================
   HERO TEXT
========================================================= */

.hero__eyebrow,
.section-heading span {
    color: var(--accent);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .22em;
}

.hero h1 {
    margin: 22px 0 28px;

    font-size:
        clamp(54px, 7vw, 110px);

    line-height: .92;

    letter-spacing: -.055em;
}

.hero h1 span {
    display: block;

    color: var(--accent);
}

.hero p {
    max-width: 650px;

    margin: 0;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.7;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero__buttons {
    display: flex;

    gap: 14px;

    margin-top: 36px;

    flex-wrap: wrap;
}

.btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 26px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.btn--primary {
    color: #0b0c0d;
    background: var(--cta);
}

.btn--primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 40px
        rgba(255,122,0,.28);
}

.btn--secondary {
    color: #fff;

    border: 1px solid var(--border);

    background:
        rgba(255,255,255,.03);
}

.btn--secondary:hover {
    background:
        rgba(255,255,255,.07);

    transform: translateY(-2px);
}


/* =========================================================
   HERO 3D PRINTER VISUAL
========================================================= */

.dk-hero-visual {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}


/* =========================================================
   PRINTER STAGE
========================================================= */

.dk-printer-stage {
    width: min(500px, 95%);

    aspect-ratio: 1 / 1;

    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.06);

    border-radius: 36px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(183,255,55,.07),
            transparent 52%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.006)
        ),
        #0a0d11;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.025),
        0 35px 90px
        rgba(0,0,0,.45);
}


/* subtle grid */

.dk-printer-stage::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.015) 1px,
            transparent 1px
        );

    background-size:
        32px 32px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 75%
        );

    pointer-events: none;
}


/* =========================================================
   PRINTER FRAME
========================================================= */

.dk-printer-frame {
    position: absolute;

    inset: 0;

    pointer-events: none;
}

.dk-printer-top {
    position: absolute;

    top: 54px;
    left: 16%;
    right: 16%;

    height: 4px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.17),
            transparent
        );
}

.dk-printer-left,
.dk-printer-right {
    position: absolute;

    top: 54px;
    bottom: 76px;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.13),
            rgba(255,255,255,.015)
        );
}

.dk-printer-left {
    left: 17%;
}

.dk-printer-right {
    right: 17%;
}


/* =========================================================
   PRINT HEAD
========================================================= */

.dk-print-head {
    position: absolute;

    top: 64px;
    left: 50%;

    width: 76px;
    height: 30px;

    z-index: 20;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 9px;

    background:
        linear-gradient(
            180deg,
            #242a31,
            #13171c
        );

    box-shadow:
        0 10px 24px
        rgba(0,0,0,.35);

    animation:
        dkPrintHeadMove
        4.8s
        ease-in-out
        infinite;
}

.dk-print-head::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -13px;

    width: 12px;
    height: 15px;

    transform:
        translateX(-50%);

    clip-path:
        polygon(
            50% 100%,
            0 0,
            100% 0
        );

    background:
        var(--accent);

    filter:
        drop-shadow(
            0 0 7px
            rgba(183,255,55,.65)
        );
}

.dk-print-head span {
    position: absolute;

    inset: 7px 14px;

    border-radius: 4px;

    background:
        linear-gradient(
            90deg,
            rgba(183,255,55,.05),
            rgba(183,255,55,.35),
            rgba(183,255,55,.05)
        );
}


/* =========================================================
   PRINTING BEAM
========================================================= */

.dk-print-beam {
    position: absolute;

    left: 13%;
    right: 13%;

    bottom: 18%;

    height: 2px;

    z-index: 15;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(183,255,55,.2),
            var(--accent),
            rgba(183,255,55,.2),
            transparent
        );

    box-shadow:
        0 0 12px
        rgba(183,255,55,.8),
        0 0 34px
        rgba(183,255,55,.28);

    animation:
        dkPrintBeam
        4.8s
        linear
        infinite;
}

.dk-print-beam::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: -14px;
    bottom: -14px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(183,255,55,.13),
            transparent
        );

    filter: blur(10px);
}


/* =========================================================
   PRINTED OBJECT AREA
========================================================= */

.dk-print-object-wrap {
    position: absolute;

    left: 50%;
    bottom: 20%;

    width: 250px;
    height: 250px;

    z-index: 7;

    transform:
        translateX(-50%);
}


/* =========================================================
   PRINTED OBJECT BASE
========================================================= */

.dk-print-object {
    position: absolute;

    inset: 0;

    opacity: 0;

    overflow: hidden;

    transform:
        translateY(14px)
        scale(.95);

    filter:
        drop-shadow(
            0 22px 40px
            rgba(0,0,0,.35)
        );

    transition:
        opacity .5s ease,
        transform .5s ease;
}

.dk-print-object.is-active {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* printing mask */

.dk-print-object::after {
    content: "";

    position: absolute;

    left: -12%;
    right: -12%;

    top: 0;

    height: 100%;

    z-index: 10;

    background:
        #0a0d11;

    animation:
        dkRevealPrint
        4.8s
        linear
        infinite;
}

.dk-print-object.is-complete::after {
    opacity: 0;
}


/* =========================================================
   PRINT LAYERS
========================================================= */

.dk-layer-lines {
    position: absolute;

    inset: 0;

    z-index: 4;

    opacity: .42;

    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 5px,
            rgba(183,255,55,.18) 6px,
            transparent 7px
        );

    mix-blend-mode: screen;

    pointer-events: none;
}


/* =========================================================
   OBJECT 1 — PHONE HOLDER
========================================================= */

.dk-object-1 {
    clip-path:
        polygon(
            25% 7%,
            75% 7%,
            84% 18%,
            80% 67%,
            91% 82%,
            81% 92%,
            60% 81%,
            40% 81%,
            19% 92%,
            9% 82%,
            20% 67%,
            16% 18%
        );

    background:
        linear-gradient(
            145deg,
            #30363e,
            #11151a 74%
        );

    border:
        1px solid
        rgba(255,255,255,.07);
}

.dk-object-1::before {
    content: "";

    position: absolute;

    width: 96px;
    height: 15px;

    left: 50%;
    bottom: 46px;

    transform:
        translateX(-50%);

    border-radius: 999px;

    background:
        var(--accent);

    box-shadow:
        0 0 22px
        rgba(183,255,55,.3);
}


/* =========================================================
   OBJECT 2 — VASE
========================================================= */

.dk-object-2 {
    clip-path:
        polygon(
            38% 7%,
            62% 7%,
            67% 18%,
            76% 28%,
            78% 78%,
            68% 93%,
            32% 93%,
            22% 78%,
            24% 28%,
            33% 18%
        );

    background:
        linear-gradient(
            155deg,
            #26353a,
            #11161b 76%
        );
}

.dk-object-2::before {
    content: "";

    position: absolute;

    inset:
        15% 22% 14%;

    border-radius: 40%;

    border:
        2px solid
        rgba(112,255,203,.18);
}


/* =========================================================
   OBJECT 3 — FIGURE
========================================================= */

.dk-object-3 {
    clip-path:
        polygon(
            50% 4%,
            62% 17%,
            62% 30%,
            72% 41%,
            67% 62%,
            83% 88%,
            67% 94%,
            53% 72%,
            47% 72%,
            33% 94%,
            17% 88%,
            33% 62%,
            28% 41%,
            38% 30%,
            38% 17%
        );

    background:
        linear-gradient(
            145deg,
            #2d343b,
            #101419
        );
}

.dk-object-3::before {
    content: "";

    position: absolute;

    width: 66px;
    height: 66px;

    left: 50%;
    top: 17px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #394149,
            #181d22
        );
}


/* =========================================================
   PRINT BED
========================================================= */

.dk-print-bed {
    position: absolute;

    left: 18%;
    right: 18%;

    bottom: 13%;

    height: 26px;

    z-index: 5;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(183,255,55,.13),
            rgba(255,255,255,.035) 42%,
            transparent 72%
        );
}

.dk-print-bed::before {
    content: "";

    position: absolute;

    left: 3%;
    right: 3%;

    top: 10px;

    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.23),
            transparent
        );
}


/* =========================================================
   FLOATING LIGHTS
========================================================= */

.dk-printer-dot {
    position: absolute;

    border-radius: 50%;

    animation:
        dkPrinterFloat
        5s
        ease-in-out
        infinite;
}

.dk-printer-dot-1 {
    width: 14px;
    height: 14px;

    top: 19%;
    left: 13%;

    background:
        var(--accent-2);

    box-shadow:
        0 0 17px
        rgba(112,255,203,.42);
}

.dk-printer-dot-2 {
    width: 9px;
    height: 9px;

    right: 13%;
    bottom: 21%;

    background:
        var(--accent);

    box-shadow:
        0 0 15px
        rgba(183,255,55,.4);

    animation-delay: 1.4s;
}


/* =========================================================
   PRINTER ANIMATIONS
========================================================= */

@keyframes dkPrintBeam {

    0% {
        bottom: 18%;
        opacity: .18;
    }

    10% {
        opacity: 1;
    }

    78% {
        bottom: 70%;
        opacity: .95;
    }

    90% {
        opacity: .45;
    }

    100% {
        bottom: 18%;
        opacity: .1;
    }
}


@keyframes dkRevealPrint {

    0% {
        transform:
            translateY(0%);
    }

    78% {
        transform:
            translateY(-100%);
    }

    100% {
        transform:
            translateY(-100%);
    }
}


@keyframes dkPrintHeadMove {

    0%,
    100% {
        transform:
            translateX(-50%)
            translateX(-75px);
    }

    25% {
        transform:
            translateX(-50%)
            translateX(75px);
    }

    50% {
        transform:
            translateX(-50%)
            translateX(-55px);
    }

    75% {
        transform:
            translateX(-50%)
            translateX(55px);
    }
}


@keyframes dkPrinterFloat {

    0%,
    100% {
        transform:
            translateY(0);

        opacity: .6;
    }

    50% {
        transform:
            translateY(-12px);

        opacity: 1;
    }
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    max-width: 1350px;

    margin: 0 auto;

    padding:
        20px 5vw 110px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.feature {
    position: relative;

    overflow: hidden;

    padding: 32px;

    border:
        1px solid
        var(--border);

    border-radius: 24px;

    background:
        var(--surface);

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.feature::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(183,255,55,.11),
            transparent 70%
        );
}

.feature:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(183,255,55,.3);
}

.feature span {
    color: var(--accent);

    font-size: 13px;
    font-weight: 700;
}

.feature h3 {
    margin:
        18px 0 10px;

    font-size: 22px;
}

.feature p {
    margin: 0;

    color: var(--muted);
}


/* =========================================================
   SECTIONS
========================================================= */

.categories,
.products-preview {
    max-width: 1350px;

    margin: auto;

    padding:
        50px 5vw 120px;
}

.section-heading {
    margin-bottom: 38px;
}

.section-heading h2 {
    margin:
        12px 0 0;

    font-size:
        clamp(38px, 5vw, 66px);

    letter-spacing: -.04em;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.category-card {
    min-height: 270px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: flex-end;

    padding: 34px;

    border:
        1px solid
        var(--border);

    border-radius: 28px;

    color: #fff;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.015)
        ),
        var(--surface);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.category-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -50px;
    top: -50px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(183,255,55,.2),
            transparent 70%
        );

    transition:
        transform .4s ease;
}

.category-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(183,255,55,.35);

    box-shadow:
        0 22px 50px
        rgba(0,0,0,.2);
}

.category-card:hover::after {
    transform:
        scale(1.25);
}

.category-card--large {
    min-height: 560px;

    grid-row:
        span 2;
}

.category-card span {
    color:
        var(--accent);

    font-size: 13px;
}

.category-card h3 {
    margin:
        9px 0;

    font-size: 30px;
}

.category-card p {
    margin: 0;

    color: var(--muted);
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-preview .products {
    gap: 20px;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.dk-reveal {
    opacity: 0;

    transform:
        translateY(22px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.dk-reveal.dk-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .hero__inner {
        gap: 35px;
    }

    .dk-printer-stage {
        width: min(430px, 95%);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .hero {
        min-height: auto;

        padding:
            55px 18px 55px;
    }

    .hero__inner {
        grid-template-columns:
            1fr;

        gap: 35px;
    }

    .hero h1 {
        font-size:
            clamp(48px, 14vw, 72px);
    }

    .hero p {
        font-size: 16px;
    }

    .dk-hero-visual {
        min-height: 370px;
    }

    .dk-printer-stage {
        width:
            min(360px, 94%);

        border-radius: 28px;
    }

    .dk-print-object-wrap {
        width: 190px;
        height: 190px;
    }

    .dk-print-head {
        top: 48px;

        scale: .8;
    }

    .dk-printer-top {
        top: 40px;
    }

    .dk-printer-left,
    .dk-printer-right {
        top: 40px;
        bottom: 58px;
    }


    /* Features */

    .features {
        grid-template-columns:
            1fr;

        padding:
            15px 18px 75px;
    }


    /* Categories */

    .categories,
    .products-preview {
        padding:
            40px 18px 80px;
    }

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

    .category-card {
        min-height: 260px;
    }

    .category-card--large {
        min-height: 320px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .hero__buttons {
        display: grid;

        grid-template-columns:
            1fr;
    }

    .btn {
        width: 100%;
    }

    .dk-hero-visual {
        min-height: 330px;
    }

    .dk-printer-stage {
        width: 100%;
    }

    .dk-print-object-wrap {
        width: 165px;
        height: 165px;
    }

    .category-card h3 {
        font-size: 25px;
    }

}
		/* =========================================================
   NEW HERO IMAGE SCENE
========================================================= */

.hero {
    min-height: 760px;

    padding:
        40px 5vw 45px;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;
}


.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(183,255,55,.10),
            transparent 38%
        );

    pointer-events: none;
}


.hero__inner {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        .78fr 1.22fr;

    align-items: center;

    gap: 24px;

    position: relative;

    z-index: 2;
}


/* LEFT TEXT */

.hero__content {
    position: relative;

    z-index: 5;
}


.hero h1 {
    max-width: 650px;

    margin:
        18px 0 24px;

    color: #f7f8fa;

    font-size:
        clamp(58px, 6vw, 94px);

    line-height: .92;

    letter-spacing: -.055em;
}


.hero h1 span {
    display: block;

    color: var(--accent);
}


.hero p {
    max-width: 600px;

    margin: 0;

    color: #a9b0bb;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   HERO SCENE
========================================================= */

.hero-scene {
    min-height: 650px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-scene::before {
    content: "";

    position: absolute;

    width: 90%;
    height: 82%;

    right: -8%;
    top: 8%;

    background:
        radial-gradient(
            circle,
            rgba(183,255,55,.14),
            transparent 65%
        );

    filter: blur(35px);

    pointer-events: none;
}


.hero-scene__image {
    position: absolute;

    inset:
        -4% -10% -4% -22%;

    background-image:
        url("http://druckora.de/wp-content/uploads/2026/09/hero.webp");

    background-repeat: no-repeat;

    background-size: cover;

    background-position:
        center center;

    border-radius: 34px;

    overflow: hidden;

    box-shadow:
        0 30px 90px
        rgba(0,0,0,.45);

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            black 16%,
            black 100%
        );

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            black 16%,
            black 100%
        );
}


/* плавное слияние с фоном слева */

.hero-scene__image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #08090b 0%,
            rgba(8,9,11,.78) 8%,
            rgba(8,9,11,.2) 22%,
            transparent 34%
        );

    pointer-events: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .hero__inner {
        grid-template-columns:
            .9fr 1.1fr;
    }

    .hero-scene {
        min-height: 560px;
    }

    .hero-scene__image {
        inset:
            0 -12% 0 -24%;
    }
}


@media (max-width: 900px) {

    .hero {
        min-height: auto;

        padding:
            55px 18px 30px;
    }

    .hero__inner {
        grid-template-columns:
            1fr;

        gap: 26px;
    }

    .hero h1 {
        font-size:
            clamp(52px, 15vw, 72px);
    }

    .hero p {
        font-size: 16px;
    }

    .hero-scene {
        min-height: 480px;
    }

    .hero-scene__image {
        inset: 0;

        border-radius: 28px;

        background-position:
            67% center;

        -webkit-mask-image: none;
        mask-image: none;
    }
}


@media (max-width: 550px) {

    .hero-scene {
        min-height: 390px;
    }

    .hero-scene__image {
        background-position:
            69% center;
    }
}
/* =====================================================
   HERO PRINT OVERLAY — FINAL FIX
===================================================== */

.hero {
    position: relative;
    overflow: hidden;
}

.hero__inner {
    position: relative;
}

.hero__content {
    position: relative;
    z-index: 5;
}

.hero-scene {
    position: relative;
    min-width: 0;
    z-index: 2;
}

.hero-scene__image {
    position: absolute !important;
    z-index: 1;
}

/* --- контейнер анимации --- */
.hero-print-overlay {
    position: absolute;
    z-index: 4;
    pointer-events: none;

    left: 8%;
    top: 8%;

    width: 125px;
    height: 150px;
}

/* --- сама сцена --- */
.hero-print-overlay__stage {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;

    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.06);

    background:
        linear-gradient(
            180deg,
            rgba(12,16,22,.72) 0%,
            rgba(8,11,16,.42) 100%
        );

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.03),
        0 18px 40px rgba(0,0,0,.24);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* лёгкое внутреннее свечение */
.hero-print-overlay__stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(183,255,55,.10),
            transparent 58%
        );
    pointer-events: none;
}

/* --- голова принтера --- */
.dk-print-head {
    position: absolute;
    left: 50%;
    top: 14px;
    transform: translateX(-50%);

    width: 50px;
    height: 20px;

    z-index: 5;

    border-radius: 9px;

    background:
        linear-gradient(
            180deg,
            rgba(36,42,50,.96),
            rgba(15,19,25,.96)
        );

    box-shadow:
        0 0 14px rgba(183,255,55,.10),
        inset 0 1px 0 rgba(255,255,255,.06);

    animation: dkHeadMoveY 2.8s ease-in-out infinite;
}

.dk-print-head span {
    position: absolute;
    inset: 5px 10px auto 10px;
    height: 8px;
    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            rgba(183,255,55,.08),
            rgba(183,255,55,.50),
            rgba(183,255,55,.08)
        );

    box-shadow: 0 0 14px rgba(183,255,55,.28);
}

.dk-print-head::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 13px solid var(--accent);

    filter: drop-shadow(0 0 7px rgba(183,255,55,.42));
}

/* --- лазерный луч --- */
.dk-print-beam {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 58px;

    height: 3px;
    z-index: 4;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            rgba(183,255,55,0),
            rgba(183,255,55,.92),
            rgba(183,255,55,0)
        );

    box-shadow:
        0 0 10px rgba(183,255,55,.75),
        0 0 24px rgba(183,255,55,.28);

    animation:
        dkBeamMoveY 2.8s ease-in-out infinite,
        dkBeamGlow 2s ease-in-out infinite;
}

.dk-print-beam::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(183,255,55,.12),
            transparent
        );

    filter: blur(8px);
}

/* --- область с фигурой --- */
.dk-print-object-wrap {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);

    width: 84px;
    height: 96px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    z-index: 3;
}

/* --- платформа --- */
.dk-print-bed {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);

    width: 72px;
    height: 6px;

    border-radius: 999px;

    background: rgba(104,247,194,.12);

    box-shadow:
        0 0 0 1px rgba(104,247,194,.18),
        0 0 14px rgba(104,247,194,.12);
}

/* --- общая логика фигур --- */
.dk-print-object {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scale(.96);

    opacity: 0;

    transition:
        opacity .45s ease,
        transform .45s ease;

    filter: drop-shadow(0 0 18px rgba(104,247,194,.08));
}

.dk-print-object.is-active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.dk-layer-lines {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: .55;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(104,247,194,.14) 0px,
            rgba(104,247,194,.14) 2px,
            transparent 2px,
            transparent 8px
        );

    mix-blend-mode: screen;
    pointer-events: none;
}

/* --- фигура 1 --- */
.dk-object-1 {
    width: 46px;
    height: 70px;
    border-radius: 12px;

    background:
        linear-gradient(
            180deg,
            rgba(19,26,35,.86),
            rgba(9,13,18,.96)
        );

    clip-path: polygon(
        50% 0%,
        72% 14%,
        81% 42%,
        67% 83%,
        56% 100%,
        44% 100%,
        33% 83%,
        19% 42%,
        28% 14%
    );
}

/* --- фигура 2 --- */
.dk-object-2 {
    width: 52px;
    height: 62px;
    border-radius: 12px;

    background:
        linear-gradient(
            180deg,
            rgba(16,23,32,.86),
            rgba(8,12,18,.96)
        );

    clip-path: polygon(
        22% 100%,
        18% 74%,
        25% 40%,
        38% 14%,
        62% 14%,
        75% 40%,
        82% 74%,
        78% 100%
    );
}

/* --- фигура 3 --- */
.dk-object-3 {
    width: 56px;
    height: 56px;
    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            rgba(18,24,32,.86),
            rgba(8,12,18,.96)
        );

    clip-path: polygon(
        50% 0%,
        84% 18%,
        100% 50%,
        84% 82%,
        50% 100%,
        16% 82%,
        0% 50%,
        16% 18%
    );
}

/* декоративные точки */
.dk-printer-dot {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 12px rgba(104,247,194,.40);
    animation: dkDotFloat 4s ease-in-out infinite;
}

.dk-printer-dot-1 {
    width: 8px;
    height: 8px;
    top: 38px;
    left: 14px;
}

.dk-printer-dot-2 {
    width: 7px;
    height: 7px;
    right: 12px;
    bottom: 18px;
    background: var(--accent);
    box-shadow: 0 0 14px rgba(183,255,55,.40);
    animation-delay: 1.2s;
}

/* --- анимации --- */
@keyframes dkHeadMoveY {
    0%, 100% {
        top: 14px;
    }
    50% {
        top: 44px;
    }
}

@keyframes dkBeamMoveY {
    0%, 100% {
        top: 58px;
    }
    50% {
        top: 88px;
    }
}

@keyframes dkBeamGlow {
    0%, 100% {
        opacity: .72;
        transform: scaleX(.94);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes dkDotFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: .8;
    }
    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 1200px) {
    .hero-print-overlay {
        left: 9%;
        top: 9%;

        width: 125px;
        height: 150px;
    }
}

@media (min-width: 1400px) {
    .hero-print-overlay {
        left: 4%;
        top: 9%;

        width: 127px;
        height: 152px;
    }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
    .hero-print-overlay {
        left: 6%;
        top: 8%;
        width: 115px;
        height: 138px;
    }

    .dk-print-head {
        width: 44px;
        height: 18px;
    }

    .dk-print-head span {
        inset: 4px 9px auto 9px;
        height: 7px;
    }

    .dk-print-head::after {
        top: 18px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 12px solid var(--accent);
    }

    .dk-print-object-wrap {
        width: 72px;
        height: 82px;
        bottom: 16px;
    }

    .dk-print-bed {
        width: 62px;
    }

    .dk-object-1 {
        width: 40px;
        height: 60px;
    }

    .dk-object-2 {
        width: 46px;
        height: 54px;
    }

    .dk-object-3 {
        width: 48px;
        height: 48px;
    }

    @keyframes dkHeadMoveY {
        0%, 100% {
            top: 12px;
        }
        50% {
            top: 36px;
        }
    }

    @keyframes dkBeamMoveY {
        0%, 100% {
            top: 48px;
        }
        50% {
            top: 70px;
        }
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {
    .hero__content {
        z-index: 4;
    }

    .hero-print-overlay {
        left: 50%;
        top: 82px;
        transform: translateX(-50%);
        z-index: 1;

        width: 88px;
        height: 104px;

        opacity: .30;
    }

    .hero-print-overlay__stage {
        border-radius: 16px;
        background:
            linear-gradient(
                180deg,
                rgba(14,18,24,.55) 0%,
                rgba(9,12,18,.28) 100%
            );
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .dk-print-head {
        width: 34px;
        height: 14px;
    }

    .dk-print-head span {
        inset: 4px 7px auto 7px;
        height: 5px;
    }

    .dk-print-head::after {
        top: 14px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 9px solid var(--accent);
    }

    .dk-print-object-wrap {
        width: 50px;
        height: 58px;
        bottom: 14px;
    }

    .dk-print-bed {
        width: 42px;
        height: 4px;
        bottom: 10px;
    }

    .dk-object-1 {
        width: 28px;
        height: 42px;
    }

    .dk-object-2 {
        width: 32px;
        height: 38px;
    }

    .dk-object-3 {
        width: 34px;
        height: 34px;
    }

    .dk-printer-dot-1 {
        width: 6px;
        height: 6px;
        top: 26px;
        left: 10px;
    }

    .dk-printer-dot-2 {
        width: 5px;
        height: 5px;
        right: 8px;
        bottom: 12px;
    }

    @keyframes dkHeadMoveY {
        0%, 100% {
            top: 10px;
        }
        50% {
            top: 24px;
        }
    }

    @keyframes dkBeamMoveY {
        0%, 100% {
            top: 34px;
        }
        50% {
            top: 48px;
        }
    }
}

@media (max-width: 480px) {
    .hero-print-overlay {
        top: 74px;
        width: 76px;
        height: 90px;
        opacity: .24;
    }

    .dk-print-object-wrap {
        width: 44px;
        height: 52px;
    }

    .dk-object-1 {
        width: 24px;
        height: 38px;
    }

    .dk-object-2 {
        width: 28px;
        height: 34px;
    }

    .dk-object-3 {
        width: 30px;
        height: 30px;
    }
}
/* =====================================================
   MOBILE HERO — IMAGE BEHIND TEXT
   ПК НЕ ЗАТРАГИВАЕТ
===================================================== */

@media (max-width: 767px) {

    .hero {
        position: relative;

        min-height: auto;

        padding:
            70px 18px 48px;

        overflow: hidden;

        background: #08090b;
    }


    /* весь hero становится одной областью */
    .hero__inner {
        position: relative;

        display: block;

        width: 100%;

        z-index: 1;
    }


    /* текст поверх картинки */
    .hero__content {
        position: relative;

        z-index: 5;
    }


    /* картинка больше НЕ занимает отдельное место снизу */
    .hero-scene {
        position: absolute;

        inset: 0;

        min-height: 0;

        margin: 0;

        z-index: 0;

        pointer-events: none;
    }


    /* картинка заполняет весь hero */
    .hero-scene__image {
        position: absolute !important;

        inset: 0 !important;

        width: 100%;
        height: 100%;

        border-radius: 0;

        background-size: cover;

        /*
         * Двигаем композицию так,
         * чтобы космонавт/растение были справа.
         */
        background-position:
            67% center;

        -webkit-mask-image: none;
        mask-image: none;

        box-shadow: none;
    }


    /*
     * Затемнение картинки.
     * Слева сильнее, чтобы текст отлично читался.
     */
    .hero-scene__image::after {
        content: "";

        position: absolute;

        inset: 0;

        background:
            linear-gradient(
                90deg,
                rgba(8,9,11,.98) 0%,
                rgba(8,9,11,.94) 28%,
                rgba(8,9,11,.80) 55%,
                rgba(8,9,11,.38) 100%
            ),
            linear-gradient(
                180deg,
                rgba(8,9,11,.38) 0%,
                rgba(8,9,11,.10) 46%,
                rgba(8,9,11,.80) 100%
            );

        pointer-events: none;
    }


    /* убираем старое свечение */
    .hero-scene::before {
        display: none;
    }


    /* текст */
    .hero__eyebrow {
        position: relative;
        z-index: 5;
    }

    .hero h1 {
        position: relative;

        z-index: 5;

        max-width: 100%;

        margin:
            24px 0 26px;

        font-size:
            clamp(49px, 13.5vw, 66px);

        line-height: .94;
    }

    .hero p {
        position: relative;

        z-index: 5;

        max-width: 95%;

        color: rgba(225,229,235,.82);

        font-size: 17px;

        line-height: 1.65;
    }


    /* кнопки */
    .hero__buttons {
        position: relative;

        z-index: 5;

        display: grid;

        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 34px;
    }

    .hero__buttons .btn {
        width: 100%;
    }


    /*
     * Маленькая анимация остаётся,
     * но тоже находится внутри фоновой сцены.
     */
    .hero-print-overlay {
        left: auto;

        right: 18px;

        top: 92px;

        transform: none;

        width: 76px;
        height: 90px;

        opacity: .25;

        z-index: 2;
    }

}		
/* =====================================================
   HOME CATEGORIES
===================================================== */

.home-categories {
    max-width: 1500px;
    margin: 0 auto;
    padding: 42px 5vw 55px;
}


/* HEADER */

.home-categories__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 24px;
}

.home-section-label {
    display: block;

    margin-bottom: 9px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .18em;

    text-transform: uppercase;
}

.home-categories__heading h2 {
    margin: 0;

    color: #f5f7fa;

    font-size: clamp(30px, 3vw, 44px);
    line-height: 1;

    letter-spacing: -.04em;
}

.home-section-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--cta-dark);

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;
}

.home-section-link span {
    transition: transform .2s ease;
}

.home-section-link:hover span {
    transform: translateX(4px);
}


/* =====================================================
   CATEGORY GRID
===================================================== */

.home-category-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 14px;
}


/* =====================================================
   CARD
===================================================== */

.home-category-card {
    position: relative;

    height: 210px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 22px;

    background: #101318;

    color: #fff;

    text-decoration: none;

    box-shadow:
        0 15px 40px rgba(0,0,0,.16);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.home-category-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255,122,0,.42);

    box-shadow:
        0 22px 50px rgba(0,0,0,.28);
}


/* IMAGE */

.home-category-card img {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    margin: 0 !important;

    object-fit: cover;

    /*
     * Наши картинки имеют предмет слева.
     * Поэтому показываем левую часть.
     */
    object-position: 27% center;

    transition:
        transform .55s cubic-bezier(.2,.7,.2,1),
        filter .55s ease;
}

.home-category-card:hover img {
    transform: scale(1.06);

    filter: brightness(1.06);
}


/* затемнение для текста */

.home-category-card__shade {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(4,6,8,.03) 15%,
            rgba(4,6,8,.20) 48%,
            rgba(4,6,8,.95) 100%
        );
}


/* CONTENT */

.home-category-card__content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 20px;
}

.home-category-card__content > span {
    display: block;

    margin-bottom: 5px;

    color: var(--accent);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .12em;
}

.home-category-card__content h3 {
    margin: 0;

    padding-right: 35px;

    color: #fff;

    font-size: 20px;
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -.025em;
}


/* ARROW */

.home-category-card__arrow {
    position: absolute;

    right: 18px;
    bottom: 20px;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    border:
        1px solid rgba(255,122,0,.34);

    background:
        rgba(255,122,0,.10);

    color: var(--cta);

    font-size: 17px;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.home-category-card:hover
.home-category-card__arrow {
    color: #08090b;

    background: var(--cta);

    transform: translateX(3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1150px) {

    .home-category-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .home-category-card {
        height: 220px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .home-categories {
        padding:
            28px 16px 45px;
    }

    .home-categories__heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;

        margin-bottom: 18px;
    }

    .home-categories__heading h2 {
        font-size: 34px;
    }

    .home-category-grid {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .home-category-card {
        height: 190px;

        border-radius: 18px;
    }

    .home-category-card__content {
        padding: 15px;
    }

    .home-category-card__content h3 {
        padding-right: 0;

        font-size: 17px;
    }

    .home-category-card__arrow {
        display: none;
    }

    .home-category-card img {
        object-position: 25% center;
    }
}


/* последний элемент на всю ширину телефона */

@media (max-width: 767px) {

    .home-category-card:last-child {
        grid-column:
            1 / -1;
    }

}


/* SMALL MOBILE */

@media (max-width: 430px) {

    .home-category-card {
        height: 170px;
    }

}
		/* =========================================================
   HOME PRODUCT CARDS — DRUCKORA
========================================================= */

.products-preview {
    max-width: 1500px;
    margin: 0 auto;
    padding: 45px 5vw 85px;
}

.products-preview .section-heading {
    margin-bottom: 28px;
}

.products-preview .section-heading span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
}

.products-preview .section-heading h2 {
    margin: 10px 0 0;

    color: #f5f7fa !important;

    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;

    letter-spacing: -.04em;
}


/* GRID */

.products-preview ul.products {
    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 18px !important;

    margin: 0 !important;
}

.products-preview ul.products::before,
.products-preview ul.products::after {
    display: none !important;
}


/* CARD */

.products-preview ul.products li.product {
    position: relative;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 0 18px !important;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        ),
        #101216;

    box-shadow:
        0 16px 45px rgba(0,0,0,.18);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.products-preview ul.products li.product:hover {
    transform: translateY(-6px);

    border-color:
        rgba(255,122,0,.34);

    box-shadow:
        0 25px 60px rgba(0,0,0,.30);
}


/* HEART */

.products-preview ul.products li.product::after {
    content: "♡";

    position: absolute;

    top: 13px;
    right: 13px;

    z-index: 5;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;

    color: #fff;

    background:
        rgba(8,9,11,.65);

    backdrop-filter: blur(10px);

    font-size: 22px;

    transition:
        .25s ease;
}

.products-preview ul.products li.product:hover::after {
    color: var(--cta);

    border-color:
        rgba(255,122,0,.45);

    transform: scale(1.06);
}


/* IMAGE */

.products-preview ul.products li.product img {
    display: block;

    width: 100% !important;

    aspect-ratio: 1 / 1;

    margin: 0 0 17px !important;

    object-fit: cover;

    border-radius: 0 !important;

    transition:
        transform .5s cubic-bezier(.2,.7,.2,1);
}

.products-preview ul.products li.product:hover img {
    transform: scale(1.045);
}


/* TITLE */

.products-preview .woocommerce-loop-product__title {
    min-height: 44px;

    margin: 0 0 7px !important;
    padding: 0 18px !important;

    color: #ffffff !important;

    font-size: 17px !important;
    font-weight: 750 !important;

    line-height: 1.3;

    letter-spacing: -.02em;
}


/* RATING */

.products-preview .star-rating {
    margin: 0 18px 9px !important;

    color: #ffd84d !important;

    font-size: 12px !important;
}


/* PRICE */

.products-preview ul.products li.product .price {
    display: block;

    margin: 0 0 15px !important;
    padding: 0 18px;

    color: var(--accent) !important;

    font-size: 19px !important;
    font-weight: 850 !important;
}

.products-preview ul.products li.product .price ins {
    color: var(--accent) !important;

    text-decoration: none;
}

.products-preview ul.products li.product .price del {
    margin-right: 5px;

    color: #747b84 !important;

    font-size: 13px;
}


/* BUTTON */

.products-preview ul.products li.product .button {
    min-height: 43px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    margin: 0 18px !important;
    padding: 0 16px !important;

    border: 1px solid rgba(255,122,0,.52) !important;
    border-radius: 999px !important;

    color: var(--cta-dark) !important;

    background:
        rgba(255,122,0,.08) !important;

    font-size: 13px !important;
    font-weight: 800 !important;

    transition:
        .22s ease !important;
}

.products-preview ul.products li.product .button:hover {
    color: #08090b !important;

    background:
        var(--cta) !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 30px rgba(255,122,0,.22);
}


/* SALE */

.products-preview .onsale {
    top: 13px !important;
    left: 13px !important;
    right: auto !important;

    min-width: auto !important;
    min-height: auto !important;

    padding: 7px 11px !important;

    border-radius: 999px !important;

    color: #08090b !important;

    background:
        var(--cta) !important;

    font-size: 10px !important;
    font-weight: 900 !important;
}


/* TABLET */

@media (max-width: 1050px) {

    .products-preview ul.products {
        grid-template-columns:
            repeat(3, minmax(0,1fr)) !important;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .products-preview {
        padding:
            35px 14px 65px;
    }

    .products-preview ul.products {
        grid-template-columns:
            repeat(2,minmax(0,1fr)) !important;

        gap: 11px !important;
    }

    .products-preview ul.products li.product {
        border-radius: 17px;
    }

    .products-preview ul.products li.product::after {
        width: 31px;
        height: 31px;

        top: 8px;
        right: 8px;

        font-size: 18px;
    }

    .products-preview .woocommerce-loop-product__title {
        min-height: 37px;

        padding:
            0 11px !important;

        font-size:
            14px !important;
    }

    .products-preview ul.products li.product .price {
        padding:
            0 11px;

        font-size:
            16px !important;
    }

    .products-preview ul.products li.product .button {
        min-height:
            38px;

        margin:
            0 9px !important;

        padding:
            0 8px !important;

        font-size:
            11px !important;
    }

}

/* =========================================================
   MOBILE CATEGORY PRINTER — SEPARATE COPY
   Desktop hero stays unchanged
========================================================= */

.mobile-category-printer {
    display: none;
}

@media (max-width: 767px) {

    /* Hide the original hero printer only on mobile */
    .hero-scene > .hero-print-overlay {
        display: none !important;
    }

    /*
     * Keep the category heading area large enough
     * for the decorative printer on the right.
     */
    .home-categories__heading {
        position: relative;

        min-height: 205px;

        padding-right: 125px;
    }

    /*
     * Separate mobile-only printer container.
     */
    .mobile-category-printer {
        display: block;

        position: absolute;

        top: 28px;
        right: 4px;

        width: 112px;
        height: 135px;

        z-index: 5;

        pointer-events: none;
    }

    /*
     * Override the generic mobile hero printer rules.
     */
    .mobile-category-printer .hero-print-overlay {
        display: block !important;

        position: absolute !important;

        inset: 0 !important;

        left: 0 !important;
        right: auto !important;
        top: 0 !important;

        width: 112px !important;
        height: 135px !important;

        transform: none !important;

        opacity: .82 !important;

        z-index: 5 !important;

        pointer-events: none;
    }

    .mobile-category-printer .hero-print-overlay__stage {
        width: 100%;
        height: 100%;

        border-radius: 18px;

        background:
            linear-gradient(
                180deg,
                rgba(14,18,24,.72) 0%,
                rgba(9,12,18,.48) 100%
            );

        border:
            1px solid rgba(255,255,255,.07);

        box-shadow:
            inset 0 0 0 1px rgba(255,255,255,.025),
            0 15px 35px rgba(0,0,0,.22);

        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    /*
     * The "Alle Produkte ansehen" link stays under the title,
     * while the printer occupies the free space on the right.
     */
    .home-categories__heading .home-section-link {
        position: relative;

        z-index: 6;

        align-self: flex-start;
    }
}

@media (max-width: 430px) {

    .home-categories__heading {
        min-height: 200px;

        padding-right: 116px;
    }

    .mobile-category-printer {
        top: 31px;
        right: 0;

        width: 104px;
        height: 126px;
    }

    .mobile-category-printer .hero-print-overlay {
        width: 104px !important;
        height: 126px !important;
    }
}


/* =========================================================
   DRUCKORA LIGHT REDESIGN — STEP 1
   HERO ONLY
   Header will be converted separately in site.css
========================================================= */

/* HERO — light base */
.hero {
    background:
        radial-gradient(
            circle at 74% 42%,
            rgba(183,255,55,.11),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcfa 100%
        ) !important;
}

/* Remove the old dark hero glow */
.hero::before {
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(183,255,55,.10),
            transparent 45%
        ) !important;
}

/* Main heading */
.hero h1 {
    color: #101214 !important;
}

.hero h1 span {
    color: #63bf18 !important;
}

/* Eyebrow */
.hero__eyebrow {
    color: #3f9818 !important;
}

/* Description */
.hero p {
    color: #616772 !important;
}

/* Primary button */
.hero .btn--primary {
    color: #0d110b !important;

    background:
        linear-gradient(
            135deg,
            #ff942e,
            #ff7a00
        ) !important;

    border:
        1px solid rgba(255,122,0,.30) !important;

    box-shadow:
        0 12px 28px rgba(255,122,0,.22);
}

.hero .btn--primary:hover {
    background:
        linear-gradient(
            135deg,
            #ffad4d,
            #ff8a1f
        ) !important;

    box-shadow:
        0 16px 34px rgba(255,122,0,.30) !important;
}

/* Secondary button */
.hero .btn--secondary {
    color: #17191c !important;

    border:
        1px solid rgba(20,24,28,.14) !important;

    background:
        rgba(255,255,255,.84) !important;

    box-shadow:
        0 8px 24px rgba(20,24,28,.05);
}

.hero .btn--secondary:hover {
    color: #111 !important;

    background:
        #ffffff !important;

    border-color:
        rgba(95,170,20,.30) !important;
}

/*
 * HERO IMAGE — LIGHT THEME
 * Keep the original dark artwork vivid on the light page.
 * The image itself stays almost fully opaque; only the LEFT
 * edge fades softly into the white text area.
 */
.hero-scene__image {
    opacity: .92 !important;

    filter:
        brightness(1.03)
        contrast(1.06)
        saturate(1.06) !important;

    box-shadow:
        none !important;

    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* Soft white fade only where image meets the text */
.hero-scene__image::after {
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.96) 0%,
            rgba(255,255,255,.74) 10%,
            rgba(255,255,255,.28) 24%,
            rgba(255,255,255,.06) 36%,
            rgba(255,255,255,0) 46%
        ) !important;
}

/* Printer card: light glass instead of black panel */
.hero .hero-print-overlay__stage {
    border:
        1px solid rgba(25,32,38,.10) !important;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.88) 0%,
            rgba(245,247,242,.74) 100%
        ) !important;

    box-shadow:
        0 16px 38px rgba(29,39,47,.10),
        inset 0 1px 0 rgba(255,255,255,.85) !important;

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);
}

.hero .hero-print-overlay__stage::before {
    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(183,255,55,.18),
            transparent 60%
        ) !important;
}

/* Printer body is still dark so it remains readable */
.hero .dk-print-head {
    background:
        linear-gradient(
            180deg,
            #30353b,
            #171b20
        ) !important;

    box-shadow:
        0 8px 18px rgba(31,37,42,.18) !important;
}

/* Mobile hero */
@media (max-width: 767px) {

    .hero {
        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #fbfcfa 100%
            ) !important;
    }

    .hero-scene__image {
        opacity: .52 !important;

        filter:
            brightness(1.03)
            contrast(1.03)
            saturate(1.02) !important;

        -webkit-mask-image: none !important;
        mask-image: none !important;
    }

    .hero-scene__image::after {
        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,.97) 0%,
                rgba(255,255,255,.90) 38%,
                rgba(255,255,255,.56) 70%,
                rgba(255,255,255,.20) 100%
            ),
            linear-gradient(
                180deg,
                rgba(255,255,255,.05) 0%,
                rgba(255,255,255,0) 58%,
                rgba(255,255,255,.48) 100%
            ) !important;
    }

    .hero p {
        color:
            rgba(54,61,70,.86) !important;
    }
}


/* =========================================================
   DRUCKORA LIGHT REDESIGN — STEP 2
   PAGE + CATEGORIES + PRODUCTS + FEATURES
========================================================= */

/* Global home palette */
.druckora-home {
    background: #ffffff !important;
    color: #121417 !important;
}


/* =========================================================
   CATEGORIES — LIGHT
========================================================= */

.home-categories {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcfa 100%
        ) !important;
}

.home-section-label {
    color: #4f9f16 !important;
}

.home-categories__heading h2 {
    color: #121417 !important;
}

.home-section-link {
    color: #c95700 !important;
}

.home-section-link:hover {
    color: #a84400 !important;
}

.home-category-card {
    border:
        1px solid rgba(18,24,28,.10) !important;

    background: #ffffff !important;

    box-shadow:
        0 12px 30px rgba(20,28,34,.07) !important;
}

.home-category-card:hover {
    border-color:
        rgba(255,122,0,.30) !important;

    box-shadow:
        0 18px 42px rgba(20,28,34,.11) !important;
}

.home-category-card__shade {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0) 15%,
            rgba(255,255,255,.03) 48%,
            rgba(255,255,255,.96) 100%
        ) !important;
}

.home-category-card__content > span {
    color: #57aa16 !important;
}

.home-category-card__content h3 {
    color: #151719 !important;

    text-shadow: none !important;
}

.home-category-card__arrow {
    color: #c95700 !important;

    border:
        1px solid rgba(255,122,0,.28) !important;

    background:
        rgba(255,122,0,.12) !important;
}

.home-category-card:hover .home-category-card__arrow {
    color: #0d110b !important;

    background: #ff7a00 !important;
}


/* Current category images were created for dark theme.
   Soften them until new light category images are uploaded. */

.home-category-card img {
    filter:
        brightness(1.18)
        saturate(.78)
        contrast(.88) !important;
}

.home-category-card:hover img {
    filter:
        brightness(1.22)
        saturate(.84)
        contrast(.90) !important;
}


/* =========================================================
   MOBILE CATEGORY PRINTER — LIGHT
========================================================= */

.mobile-category-printer .hero-print-overlay__stage {
    border:
        1px solid rgba(18,24,28,.10) !important;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.92) 0%,
            rgba(245,248,242,.80) 100%
        ) !important;

    box-shadow:
        0 12px 28px rgba(20,28,34,.08),
        inset 0 1px 0 rgba(255,255,255,.9) !important;
}


/* =========================================================
   PRODUCTS PREVIEW — LIGHT
========================================================= */

.products-preview {
    background: #ffffff !important;
}

.products-preview .section-heading span {
    color: #4f9f16 !important;
}

.products-preview .section-heading h2 {
    color: #121417 !important;
}

.products-preview ul.products li.product {
    border:
        1px solid rgba(18,24,28,.10) !important;

    background:
        #ffffff !important;

    box-shadow:
        0 12px 28px rgba(20,28,34,.07) !important;
}

.products-preview ul.products li.product:hover {
    border-color:
        rgba(255,122,0,.30) !important;

    box-shadow:
        0 18px 42px rgba(20,28,34,.11) !important;
}

.products-preview ul.products li.product::after {
    color: #202429 !important;

    border:
        1px solid rgba(18,24,28,.10) !important;

    background:
        rgba(255,255,255,.92) !important;

    box-shadow:
        0 5px 16px rgba(20,28,34,.08) !important;
}

.products-preview ul.products li.product:hover::after {
    color: #c95700 !important;

    border-color:
        rgba(255,122,0,.30) !important;
}

.products-preview ul.products li.product img {
    background:
        #f4f6f2 !important;
}

.products-preview .woocommerce-loop-product__title {
    color: #17191c !important;
}

.products-preview .star-rating {
    color: #f6b400 !important;
}

.products-preview ul.products li.product .price {
    color: #2c7b0f !important;
}

.products-preview ul.products li.product .price ins {
    color: #2c7b0f !important;
}

.products-preview ul.products li.product .price del {
    color: #8c939c !important;
}

.products-preview ul.products li.product .button {
    color: #17120d !important;

    border:
        1px solid rgba(255,122,0,.25) !important;

    background:
        linear-gradient(
            135deg,
            #ff942e,
            #ff7a00
        ) !important;

    box-shadow:
        0 8px 20px rgba(255,122,0,.18);
}

.products-preview ul.products li.product .button:hover {
    color: #0d110b !important;

    background:
        linear-gradient(
            135deg,
            #ffad4d,
            #ff8a1f
        ) !important;

    box-shadow:
        0 12px 26px rgba(255,122,0,.28) !important;
}

.products-preview .onsale {
    color: #0d110b !important;

    background:
        #ff7a00 !important;
}


/* =========================================================
   FEATURES — LIGHT
========================================================= */

.features {
    background: #ffffff !important;
}

.feature {
    border:
        1px solid rgba(18,24,28,.09) !important;

    background:
        #f8faf6 !important;

    box-shadow:
        0 10px 26px rgba(20,28,34,.05);
}

.feature::before {
    background:
        radial-gradient(
            circle,
            rgba(183,255,55,.18),
            transparent 70%
        ) !important;
}

.feature:hover {
    border-color:
        rgba(90,170,20,.22) !important;

    box-shadow:
        0 16px 34px rgba(20,28,34,.08);
}

.feature span {
    color: #4f9f16 !important;
}

.feature h3 {
    color: #17191c !important;
}

.feature p {
    color: #737a84 !important;
}


/* =========================================================
   MOBILE LIGHT TUNING
========================================================= */

@media (max-width: 767px) {

    .home-categories {
        background: #ffffff !important;
    }

    .home-categories__heading h2 {
        color: #121417 !important;
    }

    .home-category-card {
        background: #ffffff !important;
    }

    .home-category-card__shade {
        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,0) 10%,
                rgba(255,255,255,.02) 46%,
                rgba(255,255,255,.98) 100%
            ) !important;
    }

    .products-preview {
        background: #ffffff !important;
    }

    .products-preview ul.products li.product {
        background: #ffffff !important;
    }
}
/* Мобильный баннер — меньше белого наложения */
@media (max-width: 767px) {

    .hero-scene__image {
        opacity: .75 !important;

        filter:
            brightness(1.02)
            contrast(1.06)
            saturate(1.08) !important;
    }

    .hero-scene__image::after {
        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,.92) 0%,
                rgba(255,255,255,.76) 38%,
                rgba(255,255,255,.28) 70%,
                rgba(255,255,255,.04) 100%
            ),
            linear-gradient(
                180deg,
                rgba(255,255,255,.03) 0%,
                rgba(255,255,255,0) 65%,
                rgba(255,255,255,.20) 100%
            ) !important;
    }
}
/* Уменьшение всей анимации принтера вместе с фигурой */

@media (min-width: 1101px) {
    .hero-print-overlay {
        width: 150px !important;
        height: 180px !important;

        scale: .80;

        transform-origin: top left;
    }
}
		/* Более прозрачный фон анимации принтера */

.hero .hero-print-overlay__stage {
    background: rgba(255, 255, 255, .45) !important;

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

/* =========================================================
   MOBILE HERO — FULL WIDTH IMAGE FIX
========================================================= */

@media (max-width: 767px) {

    .hero {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero__inner {
        width: 100% !important;
        max-width: none !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero__content {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .hero-scene {
        position: absolute !important;
        inset: 0 !important;

        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
    }

    .hero-scene__image {
        position: absolute !important;
        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        border-radius: 0 !important;

        background-size: cover !important;
        background-position: 67% center !important;

        -webkit-mask-image: none !important;
        mask-image: none !important;

        box-shadow: none !important;
    }
}

@media (max-width: 480px) {

    .hero__content {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .hero-scene__image {
        background-position: 69% center !important;
    }
}

