.site-msg.information {
    width: 330px;
    max-width: calc(100% - 40px);
    left: 34px;
    bottom: 28px;
    padding: 15px 15px 5px 15px;
    background: #fff;
    border-radius: 0 0 28px 28px;
    border-top: 7px solid transparent;
    border-image: linear-gradient(90deg, #ff3b30, #ff9500) 1;
    box-shadow: 0 18px 42px rgba(0,0,0,.16);
    opacity: 1;
    color: #111827;
    text-align: center;
    line-height: 1.25;
}

/* Nadpis */
.site-msg.information strong {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

/* CTA tlačítko - vycentrované */
.site-msg.information a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: fit-content;
    margin: 0 auto 18px auto;
    padding: 11px 26px;
    background: #111827;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    margin-top: 8px;
}

.site-msg.information a:hover {
    background: #ff4d2d;
}

/* Doprava zdarma */
.site-msg.information span {
    display: block;

    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    letter-spacing: -0.4px;
}

/* Zavírací křížek */
.site-msg.information button,
.site-msg.information .close,
.site-msg.information .close-button {
    position: absolute;
    top: -5px;
    right: -10px;

    width: 30px;
    height: 30px;

    border: 0;
    border-radius: 50%;

    background: #f3f4f6;
    color: #111827;

    font-size: 20px;
    line-height: 28px;
    font-weight: 300;

    cursor: pointer;
}

.site-msg.information button:hover,
.site-msg.information .close:hover,
.site-msg.information .close-button:hover {
    background: #e5e7eb;
}

/* Mobil */
@media (max-width: 480px) {
    .site-msg.information {
        left: 50%;
        right: auto;
        bottom: 12px;
        transform: translateX(-50%);
        width: auto;
        max-width: none;
        padding: 15px 15px 5px 15px;
        border-radius: 0 0 22px 22px;
    }

    .site-msg.information strong {
        font-size: 15px;
    }

    .site-msg.information a {
        font-size: 12px;
        padding: 9px 20px;
        margin: 0 auto 5px auto;
        margin-top: 5px;
    }

    .site-msg.information span {
        font-size: 14px;
    }

    .site-msg.information button,
    .site-msg.information .close,
    .site-msg.information .close-button {
        top: -2px;
        right: -8px;
        width: 25px;
        height: 25px;
        font-size: 18px;
        line-height: 23px;
    }
}