/* more-coupon.css */
.unverified-alert {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    color: #c53030;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 5px rgba(197, 48, 48, 0.05);
}

.unverified-alert p {
    margin: 0;
    font-size: 14px;
    color: #742a2a;
}

.unverified-alert strong {
    color: #c53030;
}

.unverified-alert .ver {
    margin-left: auto;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.unverified-alert .ver:hover {
    opacity: 1;
}

/* Brand Header Card Styling */
.brand-header-card {
    margin-bottom: 40px;
    border-left: 4px solid #002d5b !important;
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.brand-header-card .card-left {
    flex: 0 0 160px;
    padding: 10px 20px;
    min-height: 130px;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-header-card .image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
}

.brand-header-card .num {
    width: 120px;
    height: 120px;
    background: #f0f4f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #888;
}

.brand-header-card .card-middle {
    padding: 0 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.brand-header-card .offer-title {
    font-size: 28px;
    margin-bottom: 8px;
    color: #002d5b;
    width: 100%;
}

.brand-header-card .offer-desc {
    font-size: 15px;
    color: #555;
    max-width: 800px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.brand-header-card .offer-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    justify-content: flex-start;
    width: 100%;
}

.brand-header-card .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-header-card .meta-item .success {
    color: #2eb67c;
}

.brand-header-card .offer-location {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
    width: 100%;
}

.brand-header-card .card-right {
    flex: 0 0 180px;
    text-align: center;
    border-left: 1.5px dotted #ccc;
    padding-left: 20px;
}

.brand-header-card .brand-rating {
    font-size: 32px;
    font-weight: 800;
    color: #003580;
}

/* Layout and Sidebar */
.brand-content-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.filter-sidebar {
    flex: 0 0 320px;
    position: sticky;
    top: 20px;
}

#filter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-card {
    padding: 24px;
}

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

.more-coupon {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

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

.more-coupon-h5, .more-coupon-h5-2, .tag-title {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box {
    position: relative;
    margin-bottom: 25px;
}

.category-filter-group {
    margin-bottom: 25px;
}

/* Dropdown styling */
.custom-dropdown.active .dropdown-selected {
    border-color: #2eb67c;
    box-shadow: 0 0 0 4px rgba(255, 94, 20, 0.1);
}

.custom-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

.option-item:hover {
    background-color: #fff7ed;
    color: #2eb67c !important;
    padding-left: 20px !important;
}

.option-item.selected {
    background-color: #2eb67c;
    color: #ffffff !important;
}

@media (max-width: 992px) {
    .brand-content-layout {
        flex-direction: column;
    }

    .filter-sidebar {
        flex: 1 1 auto;
        width: 100%;
        position: static;
        order: 2;
    }

    .coupons-main {
        order: 1;
        width: 100%;
    }
}

/* List Partial Specifics */
.coupon-card .card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.coupon-card .card-actions {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.no-data-message {
    text-align: center;
    padding: 60px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.no-data-message i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.no-data-message p.main-msg {
    color: #64748b;
    font-size: 18px;
    font-weight: 500;
}

.no-data-message p.sub-msg {
    color: #94a3b8;
    font-size: 14px;
}

