/* Persistent rental CTA. Kept separate from the shared .order-button styles. */
.mm-rental-rail.order-button {
    position: fixed;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 75;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    min-height: 174px;
    margin: 0;
    padding: 16px 11px;
    border: 0;
    border-radius: 0 14px 14px 0;
    background: #db7f2d;
    box-shadow: 0 12px 30px rgba(91, 48, 13, .28);
    color: #fff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .02em;
    text-align: center;
    text-transform: none;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 1;
    cursor: pointer;
    transform: translateY(-50%) rotate(180deg);
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.mm-rental-rail.order-button:hover,
.mm-rental-rail.order-button:focus-visible {
    background: #c96f21;
    box-shadow: 0 15px 36px rgba(91, 48, 13, .36);
    outline: 0;
    transform: translate(-3px, -50%) rotate(180deg);
}

.mm-rental-rail.order-button:focus-visible {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .9), 0 0 0 7px rgba(219, 127, 45, .42), 0 15px 36px rgba(91, 48, 13, .36);
}

@media screen and (max-width: 767px) {
    .mm-rental-rail.order-button {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        width: 42px;
        min-width: 42px;
        min-height: 154px;
        padding: 14px 9px;
        border-radius: 0 12px 12px 0;
        box-shadow: 0 10px 26px rgba(91, 48, 13, .3);
        font-size: 12px;
        line-height: 1.15;
        writing-mode: vertical-rl;
        transform: translateY(-50%) rotate(180deg);
    }

    .mm-rental-rail.order-button:hover,
    .mm-rental-rail.order-button:focus-visible {
        transform: translate(-2px, -50%) rotate(180deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mm-rental-rail.order-button {
        transition: none;
    }
}
