.amrm-floating-banner {
    position: fixed;
    right: 18px;
    bottom: 92px;
    z-index: 99999;
    width: min(280px, calc(100vw - 36px));
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    border-radius: 12px;
    padding: 14px;
    transform: translateX(calc(100% + 42px));
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
    box-sizing: border-box;
}

.amrm-floating-banner.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.amrm-floating-banner.is-closed {
    pointer-events: none;
}

.amrm-floating-banner__close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.amrm-floating-banner__image-wrap {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}

.amrm-floating-banner__image {
    display: block;
    width: 100%;
    height: auto;
}

.amrm-floating-banner__button {
    display: block;
    width: 100%;
    padding: 11px 14px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    background: var(--amrm-button-bg, #111111);
    color: var(--amrm-button-text, #ffffff);
    border-radius: var(--amrm-button-radius, 6px);
    border: var(--amrm-button-border, 1px solid #111111);
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease;
}

.amrm-floating-banner__button:hover,
.amrm-floating-banner__button:focus {
    background: var(--amrm-button-hover-bg, #333333);
    color: var(--amrm-button-text, #ffffff);
}

.amrm-menu-public {
    max-width: 820px;
    margin: 28px auto;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.amrm-menu-public__header {
    text-align: center;
    margin-bottom: 26px;
}

.amrm-menu-public__header h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.amrm-menu-public__date {
    color: #666666;
    font-size: 16px;
}

.amrm-menu-public__items {
    display: grid;
    gap: 18px;
}

.amrm-menu-public__item {
    padding-bottom: 18px;
    border-bottom: 1px solid #eeeeee;
}

.amrm-menu-public__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.amrm-menu-public__item h3 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.25;
}

.amrm-menu-public__item p {
    margin: 0;
    color: #555555;
    line-height: 1.6;
}

.amrm-menu-public__empty {
    padding: 18px;
    text-align: center;
    background: #f7f7f7;
    border-radius: 8px;
    color: #555555;
}

.amrm-menu-public__footer {
    margin-top: 28px;
    text-align: center;
}

.amrm-menu-public__tomorrow {
    display: inline-block;
    padding: 13px 20px;
    background: #111111;
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.amrm-menu-public__tomorrow:hover,
.amrm-menu-public__tomorrow:focus {
    background: #333333;
    color: #ffffff;
}

@media (max-width: 600px) {
    .amrm-floating-banner {
        right: 12px;
        bottom: 76px;
        width: min(260px, calc(100vw - 24px));
    }

    .amrm-menu-public {
        margin: 20px auto;
        padding: 20px;
        border-radius: 10px;
    }
}
