.sticky-atc {
    position: fixed;
    top: calc(var(--header-height, 70px) + var(--info-bar-height, 34px));
    left: 0;
    right: 0;
    z-index: 39;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 16px;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.sticky-atc.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-atc__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
}

.sticky-atc__name {
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sticky-atc__price {
    font-size: 14px;
    font-weight: 600;
}

.sticky-atc__button {
    flex: 0 0 auto;
    width: auto;
    padding-inline: 20px;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .sticky-atc {
        display: none;
    }
}
