.gwt-car-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999999;
    width: min(410px, calc(100vw - 32px));
    opacity: 0;
    transform: translate(-50%, calc(-50% + 18px));
    transition: opacity .25s ease, transform .25s ease;
    font-family: inherit;
}

.gwt-car-popup.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.gwt-car-popup.is-updated .gwt-car-popup__panel {
    animation: gwt-car-pulse .65s ease;
}

.gwt-car-popup__panel {
    position: relative;
    overflow: hidden;
    padding: 25px 25px 20px;
    border: 1px solid rgba(91, 69, 53, .14);
    border-radius: 18px;
    background: #f7f1eb;
    color: #2f241f;
    box-shadow: 0 18px 55px rgba(41, 31, 25, .18);
}

.gwt-car-popup__close {
    position: absolute;
    top: 11px;
    right: 13px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #6e5d52;
    font-size: 26px;
    line-height: 32px;
    cursor: pointer;
}

.gwt-car-popup__eyebrow {
    margin: 0 42px 11px 0;
    color: #9d6e46;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.gwt-car-popup__row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.gwt-car-popup__content {
    min-width: 0;
    flex: 1 1 auto;
}

.gwt-car-popup__title {
    margin: 0 0 8px;
    color: #211813;
    font-family: inherit;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.08;
}

.gwt-car-popup__text {
    margin: 0;
    color: #66574e;
    font-size: 14px;
    line-height: 1.5;
}

.gwt-car-popup__discount {
    flex: 0 0 auto;
    margin-top: 2px;
    padding: 10px 13px;
    border-radius: 999px;
    background: #b7bf00;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.gwt-car-popup__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 20px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #342820;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .15s ease, opacity .15s ease;
}

.gwt-car-popup__cta:hover {
    color: #fff !important;
    opacity: .94;
    transform: translateY(-1px);
}

.gwt-car-popup__later {
    display: block;
    margin: 12px auto 0;
    padding: 2px 6px;
    border: 0;
    background: transparent;
    color: #79685e;
    font: inherit;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.gwt-car-popup__test {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin: 0 0 10px;
    padding: 4px 9px;
    border: 1px dashed currentColor;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

@keyframes gwt-car-pulse {
    0%, 100% { transform: scale(1); }
    45% { transform: scale(1.02); }
}

@media (max-width: 767px) {
    .gwt-car-popup {
        top: 50%;
        left: 50%;
        width: calc(100vw - 24px);
    }

    .gwt-car-popup__panel {
        padding: 22px 20px 17px;
        border-radius: 16px;
    }

    .gwt-car-popup__row {
        gap: 12px;
    }

    .gwt-car-popup__title {
        font-size: 24px;
    }

    .gwt-car-popup__discount {
        padding: 9px 11px;
        font-size: 13px;
    }
}
