.coupons-org-scroll-sentinel {
    height: 1px;
    width: 100%;
    pointer-events: none;
    visibility: hidden;
}

/*
 * Hide vertical scrollbars on the coupons route (wheel/touch scrolling still works).
 * Applied via JS class on <html> because the scrolling element may be html, body, or main.
 */
html.eug-coupons-no-scrollbar,
html.eug-coupons-no-scrollbar body,
html.eug-coupons-no-scrollbar main,
html.eug-coupons-no-scrollbar .page {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

html.eug-coupons-no-scrollbar main {
    overflow-y: visible !important;
}

html.eug-coupons-no-scrollbar::-webkit-scrollbar,
html.eug-coupons-no-scrollbar body::-webkit-scrollbar,
html.eug-coupons-no-scrollbar main::-webkit-scrollbar,
html.eug-coupons-no-scrollbar .page::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.coupons-page {
    display: flex;
    flex-direction: column;
}

@media (max-width: 767.98px) {
    .coupons-page {
        padding-bottom: 72px;
    }
}

.coupons-scroll-hidden {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.coupons-scroll-hidden::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.coupons-page--mobile-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.coupons-page--mobile-layout > .container-fluid {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

.coupons-page--mobile-layout > .container-fluid.coupons-scroll-hidden,
.coupons-page--mobile-layout > .container-fluid {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.coupons-page--mobile-layout > .container-fluid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.coupons-page--mobile-layout .bottom-filter-nav.bottom-filter-nav--embedded {
    position: static;
    flex-shrink: 0;
    width: 100%;
    left: auto;
    right: auto;
    bottom: auto;
}

.bottom-filter-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background-color: #fff;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1030;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    color: #6c757d;
    background: transparent;
    border: none;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    min-width: 64px;
    padding: 8px 4px;
    cursor: pointer;
    position: relative;
}

.bottom-filter-btn:hover {
    color: #033A3F;
    background-color: rgba(3, 58, 63, 0.05);
}

.bottom-filter-btn:focus {
    outline: none;
}

.bottom-filter-btn:focus-visible {
    outline: 2px solid #033A3F;
    outline-offset: -2px;
}

.bottom-filter-btn.active {
    color: #033A3F;
    background-color: rgba(3, 58, 63, 0.1);
}

.bottom-filter-btn.active svg {
    color: #033A3F;
}

.bottom-filter-btn.active span {
    font-weight: 600;
}

.bottom-filter-btn svg {
    margin-bottom: 2px;
    color: inherit;
}

.bottom-filter-btn span {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    color: inherit;
}

.bottom-filter-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 1px;
    background-color: #e9ecef;
}

