.coupon-page-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .coupon-page-wrapper {
        flex-direction: column-reverse !important;
    }

    .filter-sidebar {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .coupons-section {
        width: 100% !important;
    }
}

/* Coupon Card Logo Adjustment */
.coupon-card .card-left {
    flex: 0 0 140px !important;
    width: 140px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.coupon-card .brand-logo-mini {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 5px;
}

/* Sidebar Specific */
.filter-card {
    padding: 24px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.clear-all {
    font-size: 13px;
    color: #2eb67c;
    text-decoration: none;
}

.sidebar-h5 {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    z-index: 100;
    display: none;
}

.search-results-dropdown.active {
    display: block;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    user-select: none;
}

.dropdown-selected {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #475569;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    padding: 8px 0;
    list-style: none;
    margin: 0;
}

.option-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 13px;
    color: #1e293b;
    border-bottom: 1px solid #f8fafc;
    transition: all 0.2s;
}

.option-item:last-child {
    border-bottom: none;
}

.option-item:hover {
    background-color: #f8fafc;
    color: #2eb67c;
}

.option-item.selected {
    background-color: #2eb67c;
    color: #fff;
}

.status-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #475569;
}

.status-count {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: #1e293b;
    font-weight: 600;
}
