.archive-offers-sidebar {
    width: 100%;
    max-width: 320px;
    flex-shrink: 0;
    font-family: "Monserrat", Sans-serif !important;
}

.archive-offers-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.archive-offers-sidebar-title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #2F2F2F;
    margin: 0;
}

.archive-offers-sidebar-close {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
    color: #2F2F2F;
}

.archive-offers-sidebar-close img {
    width: 100%;
    height: 100%;
    display: block;
}

.archive-offers-reset-filters {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2F2F2F;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.archive-offers-reset-filters img {
    width: 18px;
    height: 18px;
    color: #2F2F2F;
}

.archive-offers-reset-filters:hover {
    color: var(--hs-color-primary, #A8875E);
}

.archive-offers-filter-group {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #0000001A;
}

.archive-offers-filter-group:last-of-type {
    border-bottom: none;
}

.archive-offers-featured-hotel {
    margin-bottom: 24px;
}

.archive-offers-featured-hotel-title {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #2F2F2F;
    margin: 0 0 14px;
}

.archive-offers-featured-hotel-card {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
}

.archive-offers-featured-hotel-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin: 0 !important;
}

.archive-offers-featured-hotel-name {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
}

.archive-offers-all-hotels {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border: 1px solid var(--hs-color-primary, #D1C5B5);
    border-radius: 6px;
    color: #2F2F2F;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.archive-offers-all-hotels:hover {
    background: var(--hs-color-primary, #D1C5B5);
    color: #2F2F2F;
}

@media (max-width: 992px) {
    .archive-offers-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        max-width: 86vw;
        height: 100%;
        background: #FFFFFF;
        padding: 24px 20px;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .archive-offers-sidebar.is-open {
        transform: translateX(0);
    }

    .archive-offers-sidebar-close {
        display: block;
    }
}
