/* Cookie consent: compact bar, does not cover product CTA. */
.c-popup {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    top: auto;
    z-index: 10050;
    box-sizing: border-box;
    width: auto;
    max-width: none;
    max-height: 40vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.c-popup p {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.35;
    text-align: left;
}

.c-popup__button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 12px;
    border: 0;
    border-radius: 4px;
    background: #3e4856;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
}

.c-popup__button:hover,
.c-popup__button:focus {
    background: #2c3340;
}

@media (min-width: 768px) {
    .c-popup {
        left: auto;
        right: 16px;
        bottom: 16px;
        width: 300px;
        max-width: 300px;
        max-height: none;
    }

    .c-popup__button {
        width: auto;
    }
}

@media (max-width: 767px) {
    .c-popup {
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        top: auto !important;
        width: auto !important;
        max-width: none !important;
    }

    html:has(.c-popup[style*="display: block"]),
    html:has(.c-popup[style*="display:block"]) {
        padding-bottom: 160px;
    }
}
