.hero-banner.bmw-cadou-hero {
    --bmw-cadou-card-radius: 12px;
    --bmw-cadou-red: #d50018;
    --bmw-cadou-red-bright: #ff2440;
    --bmw-cadou-red-deep: #7a000e;
    --bmw-cadou-surface: linear-gradient(180deg, #1c1c1c 0%, #0c0c0c 100%);
    --bmw-cadou-cta: linear-gradient(135deg, #ff2440 0%, #d50018 45%, #7a000e 100%);

    background-color: #f4f4f4;

    background-color: var(--light-grey, #f4f4f4);
    font-family: Poppins, sans-serif;
    margin: 0 1.5rem;
    min-height: 0;
    min-height: initial;
    position: relative;
}

.hero-banner.bmw-cadou-hero h1 {
    display: none;
}

.hero-banner.bmw-cadou-hero .container {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--bmw-cadou-card-radius) var(--bmw-cadou-card-radius);

    background: #000;
}

.hero-banner.bmw-cadou-hero .hero-banner-img-container img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
}

.hero-banner.bmw-cadou-hero .title-wrapper {
    background-color: transparent;
    align-items: flex-start;
}

.hero-banner.bmw-cadou-hero .bmw-cadou-hero__locations {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.hero-banner.bmw-cadou-hero .bmw-cadou-hero__partner {
    position: absolute;
    right: 3%;
    bottom: 4%;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.hero-banner.bmw-cadou-hero .bmw-cadou-hero__partner span {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}

.hero-banner.bmw-cadou-hero .bmw-cadou-hero__partner img {
    display: block;
    width: 60px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
}

.hero-banner.bmw-cadou-hero .bmw-cadou-hero__cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
    padding: 17px 28px;
    border: 0;
    border-radius: 8px;
    background: var(--bmw-cadou-cta);
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform 0.2s ease, filter 0.2s ease;
}

.hero-banner.bmw-cadou-hero .bmw-cadou-hero__cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.38) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: bmw-cadou-hero-shine 4.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bmw-cadou-hero-shine {
    0%,
    70% {
        left: -60%;
    }
    100% {
        left: 130%;
    }
}

.hero-banner.bmw-cadou-hero .bmw-cadou-hero__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.hero-banner.bmw-cadou-hero .bmw-cadou-hero__cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.hero-banner.bmw-cadou-hero .waze-button,
.hero-banner.bmw-cadou-hero .phone-button {
    max-width: none;
    transition:
        border-color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-banner.bmw-cadou-hero .waze-button {
    background: var(--bmw-cadou-surface);
    border: 1px solid rgba(213, 0, 24, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-banner.bmw-cadou-hero .waze-button p {
    color: #fff;
}

.hero-banner.bmw-cadou-hero .waze-button:hover {
    border-color: var(--bmw-cadou-red-bright);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(255, 36, 64, 0.25);
}

.hero-banner.bmw-cadou-hero .phone-button {
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--bmw-cadou-red) 0%, var(--bmw-cadou-red-deep) 100%);
    border: 1px solid rgba(255, 36, 64, 0.6);
    box-shadow: 0 4px 14px rgba(213, 0, 24, 0.28);
}

.hero-banner.bmw-cadou-hero .phone-button .phone-number-text {
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
}

.hero-banner.bmw-cadou-hero .phone-button svg {
    filter: brightness(0) invert(1);
}

.hero-banner.bmw-cadou-hero .phone-button:hover {
    filter: brightness(1.12);
    box-shadow: 0 6px 18px rgba(255, 36, 64, 0.38);
}

@media (min-width: 1025px) {
    .hero-banner.bmw-cadou-hero .phone-button {
        flex: 0 0 11rem;
    }
}

@media (min-width: 901px) {
    .hero-banner.bmw-cadou-hero .container {
        display: grid;
        grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
        align-items: stretch;
        padding: 0;
    }

    .hero-banner.bmw-cadou-hero .hero-banner-img-container {
        position: relative;
        grid-column: 2;
        grid-row: 1;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        display: block;
        align-self: center;
    }

    .hero-banner.bmw-cadou-hero .hero-banner-img-container::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 14%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
        pointer-events: none;
    }

    .hero-banner.bmw-cadou-hero .title-wrapper {
        grid-column: 1;
        grid-row: 1;
        width: auto;
        margin-top: 0;
        justify-content: space-around;
        padding: 2.5rem 1.25rem 2.5rem 2rem;
        gap: 14px;
    }
}

@media (max-width: 900px) {
    .hero-banner.bmw-cadou-hero .container {
        border-radius: 0;
        background: none;
        box-shadow: none;
    }

    .hero-banner.bmw-cadou-hero .hero-banner-img-container img {
        border-radius: 0 0 8px 8px;
    }

    .hero-banner.bmw-cadou-hero .hero-banner-img-container {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        display: block;
    }

    .hero-banner.bmw-cadou-hero .title-wrapper {
        width: 100%;
        margin-top: 0;

        padding: 1rem 0;
        gap: 10px;
    }

    .hero-banner.bmw-cadou-hero .bmw-cadou-hero__locations {
        gap: 10px;
    }

    .hero-banner.bmw-cadou-hero .bmw-cadou-hero__cta {
        width: 100%;
        margin-bottom: 4px;
        justify-content: center;
    }

    .hero-banner.bmw-cadou-hero .bmw-cadou-hero__partner {
        right: 8%;
        bottom: 8%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-banner.bmw-cadou-hero .bmw-cadou-hero__cta,
    .hero-banner.bmw-cadou-hero .waze-button,
    .hero-banner.bmw-cadou-hero .phone-button {
        transition: none;
    }

    .hero-banner.bmw-cadou-hero .bmw-cadou-hero__cta:hover {
        transform: none;
    }

    .hero-banner.bmw-cadou-hero .bmw-cadou-hero__cta::after {
        animation: none;
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-banner.bmw-cadou-hero {
        margin: 0;
    }

    header {
        border-radius: 0;
    }
}
