#hg-koszyk.hg-cart-placeholder {
    min-height: 100vh;
    background:
        radial-gradient(circle at 72% 26%, rgba(243, 220, 107, .24), transparent 31%),
        linear-gradient(145deg, #30353d 0%, #393e46 50%, #252a31 100%);
    color: #f4f0e8;
}

#hg-koszyk .hg-cart-placeholder__stage {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: calc(var(--hg-header-height) + 70px) 0 90px;
}

#hg-koszyk .hg-cart-placeholder__stage::before,
#hg-koszyk .hg-cart-placeholder__stage::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

#hg-koszyk .hg-cart-placeholder__stage::before {
    width: clamp(280px, 42vw, 700px);
    aspect-ratio: 1;
    left: -18%;
    bottom: -42%;
    border: 1px solid rgba(243, 220, 107, .22);
    box-shadow: 0 0 90px rgba(198, 161, 69, .12);
}

#hg-koszyk .hg-cart-placeholder__stage::after {
    width: clamp(180px, 25vw, 420px);
    aspect-ratio: 1;
    right: -8%;
    top: 10%;
    background: rgba(198, 161, 69, .05);
    border: 1px solid rgba(243, 220, 107, .12);
}

#hg-koszyk .hg-cart-placeholder__glow {
    position: absolute;
    inset: auto 50% 7%;
    width: min(620px, 80vw);
    height: 160px;
    transform: translateX(50%);
    background: radial-gradient(ellipse, rgba(243, 220, 107, .14), transparent 70%);
    filter: blur(18px);
}

#hg-koszyk .hg-cart-placeholder__content {
    position: relative;
    z-index: 1;
    max-width: 880px;
    text-align: center;
}

#hg-koszyk .hg-cart-placeholder__eyebrow {
    margin: 0 0 20px;
    color: #f3dc6b;
    font-family: var(--hg-font-ui);
    font-size: clamp(.78rem, 1vw, .95rem);
    font-weight: 700;
    letter-spacing: .34em;
}

#hg-koszyk h1 {
    margin: 0;
    color: #f4f0e8;
    font-family: var(--hg-font-heading);
    font-size: clamp(3.2rem, 8vw, 7.2rem);
    font-weight: 400;
    line-height: .95;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .28);
}

#hg-koszyk .hg-cart-placeholder__line {
    width: min(340px, 55vw);
    height: 2px;
    margin: 30px auto 30px;
    background: linear-gradient(90deg, transparent, #f3dc6b, transparent);
}

#hg-koszyk .hg-cart-placeholder__lead {
    margin: 0 0 12px;
    color: #f3dc6b;
    font-family: var(--hg-font-serif);
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

#hg-koszyk .hg-cart-placeholder__copy {
    max-width: 680px;
    margin: 0 auto 38px;
    color: rgba(244, 240, 232, .88);
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    line-height: 1.85;
}

#hg-koszyk .hg-cart-placeholder__button {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 13px 31px;
    border: 1px solid #f3dc6b;
    border-radius: 10px;
    background: linear-gradient(135deg, #f3dc6b 0%, #c6a145 100%);
    box-shadow: 0 12px 30px rgba(198, 161, 69, .27);
    color: #252a31;
    font-family: var(--hg-font-ui);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .06em;
    transition: background .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease;
}

#hg-koszyk .hg-cart-placeholder__button::before {
    content: "";
    position: absolute;
    top: -55%;
    left: -45%;
    width: 28%;
    height: 210%;
    transform: rotate(22deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
    filter: blur(5px);
    animation: hg-cart-shine 4.8s ease-in-out infinite;
}

#hg-koszyk .hg-cart-placeholder__button:hover,
#hg-koszyk .hg-cart-placeholder__button:focus-visible {
    background: #2e333b;
    color: #f4f0e8;
    transform: translateY(-2px);
    box-shadow: 0 13px 31px rgba(0, 0, 0, .28);
}

@keyframes hg-cart-shine {
    0%, 58% { left: -45%; opacity: 0; }
    66% { opacity: .8; }
    82% { left: 120%; opacity: 0; }
    100% { left: 120%; opacity: 0; }
}

@media (max-width: 782px) {
    #hg-koszyk .hg-cart-placeholder__stage {
        padding-top: calc(var(--hg-header-height) + 45px);
        padding-bottom: 64px;
    }

    #hg-koszyk .hg-cart-placeholder__copy {
        max-width: 520px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #hg-koszyk .hg-cart-placeholder__button::before {
        animation: none;
    }
}
