.fp-hero.fp-hero--banner {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: clamp(2.4rem, 5vw, 4rem) 0;
    background:
        radial-gradient(circle at 82% 50%, rgba(255,255,255,0.08), transparent 24%),
        linear-gradient(135deg, #253012 0%, #36441a 55%, #4b5d24 100%);
    color: #fff;
}

.fp-hero.fp-hero--banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,0.018) 0px,
            rgba(255,255,255,0.018) 1px,
            transparent 1px,
            transparent 10px
        );
    pointer-events: none;
}

.fp-hero.fp-hero--banner .fp-container {
    position: relative;
    z-index: 0;
}

.fp-hero.fp-hero--banner .fp-hero__content { max-width: 720px; }

.fp-hero__title {
    display: flex;
    flex-direction: column;
    gap: 0.06em;
    margin: 0 0 0.8rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.fp-hero__title em {
    font-style: normal;
    color: #f0deaa;
    font-weight: 500;
}

.fp-hero__text {
    margin: 0 0 1.15rem;
    max-width: 56ch;
    color: rgba(255,255,255,0.92);
    font-size: clamp(1rem, 1.15vw, 1.08rem);
    line-height: 1.65;
}

.fp-hero__shipping {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    flex-wrap: wrap;
    width: fit-content;
    max-width: 100%;
    padding: 0.72em 1.15em;
    border-radius: 9999px;
    background: #ffffff;
    color: #1f280d;
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.fp-hero__shipping-icon { flex: 0 0 auto; font-size: 1.05em; line-height: 1; }

.fp-hero__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.16em 0.72em;
    border-radius: 0.45rem;
    background: #c8a84b;
    color: #1f280d;
    font-weight: 900;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .fp-hero.fp-hero--banner { padding: 1.75rem 0; }
    .fp-hero.fp-hero--banner .fp-hero__content { max-width: 100%; }
    .fp-hero__title { font-size: clamp(1.65rem, 7vw, 2.25rem); line-height: 1.08; }
    .fp-hero__text { max-width: 100%; font-size: 0.97rem; line-height: 1.6; }
    .fp-hero__shipping { font-size: 0.9rem; padding: 0.7em 1rem; border-radius: 1rem; }
}

@media (max-width: 480px) {
    .fp-hero.fp-hero--banner { padding: 1.4rem 0; }
    .fp-hero__title { font-size: 1.45rem; }
    .fp-hero__shipping { gap: 0.4em; padding: 0.68em 0.9em; font-size: 0.86rem; }
    .fp-hero__code { font-size: 0.85em; }
}