/**
 * HBL Directorist V2 Widget Styles
 * Modern design with HBL brand colors
 *
 * @package HBL
 * @since 2.0.0
 */

/* ========================================
   Widget Container
   ======================================== */
.hbl-v2-widget {
    width: 100%;
    max-width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* ========================================
   Alphabetical Filter
   ======================================== */
.hbl-v2-alphabetical-filter {
    margin-bottom: 2rem;
}

.hbl-v2-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.hbl-v2-letter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem;
    border: 2px solid var(--hbl-gray-300, #D1D5DB);
    border-radius: 3px;
    background: var(--hbl-white, #FFFFFF);
    color: var(--hbl-text-primary, #000000);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hbl-v2-letter-btn:hover {
    border-color: var(--hbl-primary, #008080);
    color: var(--hbl-primary, #008080);
    background: var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
}

.hbl-v2-letter-btn.active {
    background: var(--hbl-primary, #008080);
    color: var(--hbl-white, #FFFFFF);
    border-color: var(--hbl-primary, #008080);
}

/* ========================================
   Filter Bar
   ======================================== */
.hbl-v2-filters-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    background: var(--hbl-bg-tertiary, #f8f9fa);
    padding: 1.5rem;
    border-radius: 3px;
}

.hbl-v2-filters-left {
    display: flex;
    width: 100%;
    gap: 1rem;
    flex: 1;
    flex-wrap: nowrap;
    align-items: center;
}

.hbl-v2-filters-label {
    font-weight: 600;
    color: var(--hbl-text-primary, #000000);
    font-size: 0.9375rem;
    white-space: nowrap;
}

.hbl-v2-filters-title h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hbl-text-primary, #000000);
}

.hbl-v2-keyword-search {
    position: relative;
    width: 100%;
}

.hbl-v2-keyword-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hbl-gray-500, #94a3b8);
    pointer-events: none;
}

.hbl-v2-keyword-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--hbl-gray-300, #D1D5DB);
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--hbl-white, #FFFFFF);
}

.hbl-v2-keyword-search-input:focus {
    outline: none;
    border-color: var(--hbl-primary, #008080);
    box-shadow: 0 0 0 3px var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
}

.hbl-v2-keyword-clear {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--hbl-gray-500, #94a3b8);
    transition: color 0.2s ease;
}

.hbl-v2-keyword-clear:hover {
    color: var(--hbl-text-primary, #000000);
}

/* Popular Search */
.hbl-v2-popular-search {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hbl-v2-popular-label {
    font-weight: 600;
    color: var(--hbl-text-primary, #000000);
    font-size: 0.875rem;
}

.hbl-v2-popular-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hbl-v2-popular-item {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--hbl-white, #FFFFFF);
    color: var(--hbl-primary, #008080);
    border: 1px solid var(--hbl-primary, #008080);
    border-radius: 3px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hbl-v2-popular-item:hover {
    background: var(--hbl-primary, #008080);
    color: var(--hbl-white, #FFFFFF);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px var(--hbl-black-15, rgba(0, 0, 0, 0.15));
}

.hbl-v2-filter-dropdown {
    position: relative;
    width: 100%;
}

.hbl-v2-filter-dropdown .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--hbl-gray-300, #D1D5DB);
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    background: var(--hbl-white, #FFFFFF);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--hbl-text-primary, #000000);
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="8" height="4" viewBox="0 0 8 4" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 0.5L4 3.5L7 0.5" stroke="%23F9532A" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.hbl-v2-filter-dropdown .form-select:hover {
    border-color: var(--hbl-primary, #008080);
}

.hbl-v2-filter-dropdown .form-select:focus {
    outline: none;
    border-color: var(--hbl-primary, #008080);
    box-shadow: 0 0 0 3px var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
}

/* Custom Popular Searches Dropdown (V1-style) */
.hbl-v2-popular-searches-wrapper {
    position: relative;
    min-width: 200px;
}

.hbl-v2-popular-searches-container {
    position: relative;
}

.hbl-v2-popular-searches-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--hbl-white, #FFFFFF);
    border: 2px solid var(--hbl-gray-300, #D1D5DB);
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    color: var(--hbl-text-primary, #000000);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.hbl-v2-popular-searches-trigger:hover {
    border-color: var(--hbl-primary, #008080);
}

.hbl-v2-popular-searches-trigger:focus {
    outline: none;
    border-color: var(--hbl-primary, #008080);
    box-shadow: 0 0 0 3px var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
}

.hbl-v2-popular-searches-label {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.hbl-v2-popular-searches-chevron {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.hbl-v2-popular-searches-trigger[aria-expanded="true"] .hbl-v2-popular-searches-chevron {
    transform: rotate(180deg);
}

.hbl-v2-popular-searches-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--hbl-white, #FFFFFF);
    border: 2px solid var(--hbl-primary, #008080);
    border-radius: 3px;
    box-shadow: 0 4px 12px var(--hbl-black-15, rgba(0, 0, 0, 0.15));
    z-index: 1000;
    max-height: 400px;
    overflow: hidden;
}

.hbl-v2-popular-searches-list {
    max-height: 400px;
    overflow-y: auto;
}

.hbl-v2-popular-search-item {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--hbl-gray-200, #E5E7EB);
    text-align: left;
    font-size: 0.9375rem;
    font-family: 'Poppins', sans-serif;
    color: var(--hbl-text-primary, #000000);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hbl-v2-popular-search-item:last-child {
    border-bottom: none;
}

.hbl-v2-popular-search-item:hover {
    background: var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
    color: var(--hbl-primary, #008080);
}

/* Popular Searches Section (Above A-Z Filter) */
.hbl-v2-popular-searches-section {
    margin-bottom: 1rem;
    padding: 0.75rem 0;
}

/* Popular Search Buttons (New Layout) */
.hbl-v2-popular-searches-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.hbl-v2-popular-search-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--hbl-white, #FFFFFF);
    border: 2px solid var(--hbl-gray-300, #D1D5DB);
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--hbl-text-primary, #000000);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hbl-v2-popular-search-btn:hover {
    border-color: var(--hbl-primary, #008080);
    color: var(--hbl-primary, #008080);
    background: var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
}

.hbl-v2-popular-search-btn.active {
    background: var(--hbl-primary, #008080);
    color: var(--hbl-white, #FFFFFF);
    border-color: var(--hbl-primary, #008080);
}

/* Popular Categories Dropdown */
.hbl-v2-popular-categories-wrapper {
    position: relative;
    width: 100%;
}

.hbl-v2-popular-categories-container {
    position: relative;
}

.hbl-v2-popular-categories-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--hbl-white, #FFFFFF);
    border: 2px solid var(--hbl-gray-300, #D1D5DB);
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--hbl-text-primary, #000000);
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 0.5rem;
}

.hbl-v2-popular-categories-trigger:hover {
    border-color: var(--hbl-primary, #008080);
    color: var(--hbl-primary, #008080);
}

.hbl-v2-popular-categories-trigger:focus {
    outline: none;
    border-color: var(--hbl-primary, #008080);
    box-shadow: 0 0 0 3px var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
}

.hbl-v2-popular-categories-label {
    flex: 1;
    text-align: left;
}

.hbl-v2-popular-categories-chevron {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.hbl-v2-popular-categories-trigger[aria-expanded="true"] .hbl-v2-popular-categories-chevron {
    transform: rotate(180deg);
}

.hbl-v2-popular-categories-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 100%;
    background: var(--hbl-white, #FFFFFF);
    border: 2px solid var(--hbl-primary, #008080);
    border-radius: 3px;
    box-shadow: 0 4px 12px var(--hbl-black-15, rgba(0, 0, 0, 0.15));
    z-index: 1000;
    max-height: 400px;
    overflow: hidden;
}

.hbl-v2-popular-categories-list {
    max-height: 300px;
    overflow-y: auto;
}

.hbl-v2-popular-category-item {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--hbl-gray-200, #E5E7EB);
    text-align: left;
    font-size: 0.9375rem;
    font-family: 'Poppins', sans-serif;
    color: var(--hbl-text-primary, #000000);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hbl-v2-popular-category-item:last-child {
    border-bottom: none;
}

.hbl-v2-popular-category-item:hover {
    background: var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
    color: var(--hbl-primary, #008080);
}

/* More Filters Dropdown */
.hbl-v2-more-filters-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    gap: 20px;
}

.hbl-v2-more-filters-container {
    position: relative;
    width: 100%;
}

.hbl-v2-more-filters-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--hbl-white, #FFFFFF);
    border: 2px solid var(--hbl-gray-300, #D1D5DB);
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--hbl-text-primary, #000000);
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 0.5rem;
}

.hbl-v2-more-filters-trigger:hover {
    border-color: var(--hbl-primary, #008080);
    color: var(--hbl-primary, #008080);
}

.hbl-v2-more-filters-trigger:focus {
    outline: none;
    border-color: var(--hbl-primary, #008080);
    box-shadow: 0 0 0 3px var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
}

.hbl-v2-more-filters-label {
    flex: 1;
    text-align: left;
}

.hbl-v2-more-filters-chevron {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.hbl-v2-more-filters-trigger[aria-expanded="true"] .hbl-v2-more-filters-chevron {
    transform: rotate(180deg);
}

.hbl-v2-more-filters-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 48%;
    background: var(--hbl-white, #FFFFFF);
    border: 2px solid var(--hbl-primary, #008080);
    border-radius: 3px;
    box-shadow: 0 4px 12px var(--hbl-black-15, rgba(0, 0, 0, 0.15));
    z-index: 1000;
    max-height: 400px;
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.hbl-v2-more-filters-list {
    max-height: 300px;
    overflow-y: auto;
    flex: 1;
}

.hbl-v2-more-filter-item {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--hbl-gray-200, #E5E7EB);
    text-align: left;
    font-size: 0.9375rem;
    font-family: 'Poppins', sans-serif;
    color: var(--hbl-text-primary, #000000);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hbl-v2-more-filter-item:last-child {
    border-bottom: none;
}

.hbl-v2-more-filter-item:hover {
    background: var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
    color: var(--hbl-primary, #008080);
}

/* Browse More Categories - Sticky at Bottom */
.hbl-v2-browse-more-sticky {
    position: sticky;
    bottom: 0;
    background: var(--hbl-white, #FFFFFF);
    border-top: 2px solid var(--hbl-primary, #008080);
    padding: 0;
}

.hbl-v2-browse-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--hbl-primary, #008080);
    color: var(--hbl-white, #FFFFFF);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hbl-v2-browse-more-btn:hover {
    background: var(--hbl-primary-dark, #006666);
    color: var(--hbl-white, #FFFFFF);
}

.hbl-v2-browse-more-btn i {
    font-size: 1.125rem;
}

/* Filters Right - Sort and View Toggle */
.hbl-v2-filters-right {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

/* Sort Dropdown Custom Styles */
.hbl-v2-sort-wrapper {
    position: relative;
    width: 100%;
}

.hbl-v2-sort-container {
    position: relative;
    width: 100%;
}

.hbl-v2-sort-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--hbl-white, #FFFFFF);
    border: 2px solid var(--hbl-gray-300, #D1D5DB);
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--hbl-text-primary, #000000);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.hbl-v2-sort-trigger:hover {
    border-color: var(--hbl-primary, #008080);
}

.hbl-v2-sort-chevron {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.hbl-v2-sort-trigger[aria-expanded="true"] .hbl-v2-sort-chevron {
    transform: rotate(180deg);
}

.hbl-v2-sort-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 100%;
    background: var(--hbl-white, #FFFFFF);
    border: 2px solid var(--hbl-primary, #008080);
    border-radius: 3px;
    box-shadow: 0 4px 12px var(--hbl-black-15, rgba(0, 0, 0, 0.15));
    z-index: 1000;
    overflow: hidden;
}

.hbl-v2-sort-list {
    max-height: 300px;
    overflow-y: auto;
}

.hbl-v2-sort-item {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--hbl-gray-200, #E5E7EB);
    text-align: left;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    color: var(--hbl-text-primary, #000000);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hbl-v2-sort-item:last-child {
    border-bottom: none;
}

.hbl-v2-sort-item:hover,
.hbl-v2-sort-item.selected {
    background: var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
    color: var(--hbl-primary, #008080);
}

.hbl-v2-view-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hbl-v2-view-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hbl-text-primary, #000000);
}

.hbl-v2-view-buttons {
    display: flex;
    gap: 0.5rem;
}

.hbl-v2-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--hbl-gray-300, #D1D5DB);
    border-radius: 3px;
    background: var(--hbl-white, #FFFFFF);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.hbl-v2-view-btn:hover {
    border-color: var(--hbl-primary, #008080);
    background: var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
}

.hbl-v2-view-btn.active {
    background: var(--hbl-primary, #008080);
    border-color: var(--hbl-primary, #008080);
}

.hbl-v2-view-btn.active .hbl-v2-view-icon {
    filter: brightness(0) invert(1);
}

.hbl-v2-view-icon {
    width: 20px;
    height: 20px;
}

/* Hide toggle UI option */
.hbl-v2-filters-bar.hide-toggle-ui .hbl-v2-view-toggle {
    display: none;
}

/* ========================================
   Active Filters Display
   ======================================== */
.hbl-v2-active-filters {
    margin-bottom: 1.5rem;
}

.hbl-v2-active-filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hbl-v2-active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
    border: 1px solid var(--hbl-primary, #008080);
    border-radius: 3px;
    font-size: 0.875rem;
    color: var(--hbl-primary, #008080);
    transition: all 0.2s ease;
}

.hbl-v2-active-filter-tag:hover {
    background: var(--hbl-primary-20, rgba(0, 128, 128, 0.2));
}

.hbl-v2-active-filter-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: var(--hbl-primary, #008080);
}

.hbl-v2-active-filter-tag-icon svg {
    width: 100%;
    height: 100%;
}

.hbl-v2-active-filter-tag-text {
    font-weight: 600;
}

.hbl-v2-active-filter-tag-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    padding: 0;
    background: none;
    border: none;
    color: var(--hbl-primary, #008080);
    cursor: pointer;
    transition: color 0.2s ease;
}

.hbl-v2-active-filter-tag-clear:hover {
    color: var(--hbl-secondary, #F9532A);
}

.hbl-v2-active-filter-tag-clear svg {
    width: 100%;
    height: 100%;
}

/* Loading State */
.hbl-v2-widget.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ========================================
   Grid Layout
   ======================================== */
.hbl-v2-listings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hbl-v2-left-column,
.hbl-v2-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* List View */
.hbl-v2-listings-grid.list-view {
    grid-template-columns: 1fr;
}

.hbl-v2-listings-grid.list-view .hbl-v2-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hbl-v2-listings-grid.list-view .hbl-v2-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hbl-v2-listings-grid.list-view .hbl-v2-left-column {
    gap: 1.5rem;
}

/* Responsive: Below 1135px - Allow filters to wrap */
@media (max-width: 1135px) {
    .hbl-v2-filters-left {
        flex-wrap: wrap;
    }

    .hbl-v2-keyword-search {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .hbl-v2-popular-categories-wrapper,
    .hbl-v2-more-filters-wrapper,
    .hbl-v2-filter-dropdown {
        flex: 1 1 calc(33.333% - 0.67rem);
        min-width: 150px;
    }

    .hbl-v2-filters-right {
        flex: 1 1 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hbl-v2-listings-grid {
        grid-template-columns: 1fr !important;
    }

    .hbl-v2-right-column {
        display: none !important;
    }

    .hbl-v2-more-filters-wrapper,
    .hbl-v2-filter-dropdown {
        flex: 1 1 auto;
    }

    .hbl-v2-popular-categories-wrapper,
    hbl-v2-keyword-search {
        min-width: 100%;
    }
}

/* ========================================
   Card Styles
   ======================================== */
.hbl-v2-listing-card {
    position: relative;
    background: var(--hbl-white, #FFFFFF);
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--hbl-gray-200, #E9ECEF);
    box-shadow: 0 1px 3px var(--hbl-black-10, rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
}

.hbl-v2-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--hbl-black-15, rgba(0, 0, 0, 0.15));
    border-color: var(--hbl-primary-20, rgba(0, 128, 128, 0.2));
}



/* Silver and Gold Cards - Fine Green Border */
.hbl-v2-listing-card.hbl-plan-silver,
.hbl-v2-listing-card.hbl-plan-gold {
    border: 1px solid var(--hbl-primary, #008080);
}

/* Plan Badge (Customizable via Elementor Repeater) */
.hbl-v2-plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 6px var(--hbl-black-20, rgba(0, 0, 0, 0.2));
    /* Background and text color set via inline styles from Elementor */
}

/* Bronze Card - No hover transform (has overlay link) */
.hbl-v2-listing-card.hbl-bronze-card:hover {
    transform: none;
}

/* Bronze Overlay Link */
.hbl-v2-bronze-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    cursor: pointer;
}

/* Bronze card - disable pointer events on header so overlay works */
.hbl-v2-bronze-card .hbl-v2-card-header {
    pointer-events: none;
    cursor: default;
}

/* Re-enable pointer events for links and buttons in Bronze cards */
.hbl-v2-bronze-card a:not(.hbl-v2-bronze-overlay),
.hbl-v2-bronze-card button {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

/* Expandable Cards - Add cursor pointer */
.hbl-v2-listing-card.hbl-expandable .hbl-v2-card-header {
    cursor: pointer;
}

/* Card Header */
.hbl-v2-card-header {
    display: flex;
    flex-direction: column;
    /* Column layout for grid view */
    gap: 1.5rem;
    padding: 1rem;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

/* List view - use row direction */
.hbl-v2-listings-grid.list-view .hbl-v2-card-header {
    flex-direction: row;
}

.hbl-v2-listing-card.hbl-expandable .hbl-v2-card-header:hover {
    background: var(--hbl-bg-tertiary, #f8f9fa);
}

.hbl-v2-card-header-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.hbl-v2-listing-logo {
    width: 100%;
    object-fit: contain;
}

.hbl-v2-logo-placeholder {
    color: var(--hbl-gray-400, #9ca3af);
    font-size: 2.5rem;
}

.hbl-v2-social-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hbl-v2-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    background: var(--hbl-gray-100, #f8f9fa);
    color: var(--hbl-text-secondary, #6c757d);
    transition: all 0.2s ease;
}

.hbl-v2-social-icons a:hover {
    background: var(--hbl-primary, #008080);
    color: var(--hbl-white, #FFFFFF);
}

.hbl-v2-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hbl-v2-stars {
    display: flex;
    gap: 0.125rem;
    color: var(--hbl-secondary, #F9532A);
}

.hbl-v2-review-count {
    font-size: 0.875rem;
    color: var(--hbl-text-secondary, #6c757d);
}

/* Card Header Center */
.hbl-v2-card-header-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hbl-v2-listing-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hbl-v2-listing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--hbl-text-primary, #000000);
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.hbl-v2-claimed-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    background: var(--hbl-success-bg, rgba(16, 185, 129, 0.08));
    color: var(--hbl-success-dark, #059669);
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.hbl-v2-listing-taxonomies {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hbl-v2-listing-categories,
.hbl-v2-listing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.hbl-v2-taxonomy-label {
    font-weight: 600;
    color: var(--hbl-text-secondary, #6c757d);
}

.hbl-v2-taxonomy-items a {
    color: var(--hbl-primary, #008080);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hbl-v2-taxonomy-items a:hover {
    color: var(--hbl-primary-dark, #006666);
    text-decoration: underline;
}

.hbl-v2-listing-description-preview {
    color: var(--hbl-text-secondary, #6c757d);
    line-height: 1.6;
}

.hbl-v2-listing-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hbl-v2-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hbl-v2-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--hbl-text-secondary, #6c757d);
}

.hbl-v2-meta-item i {
    color: var(--hbl-primary, #008080);
}

.hbl-v2-meta-item a {
    color: var(--hbl-primary, #008080);
    text-decoration: none;
}

.hbl-v2-meta-item a:hover {
    text-decoration: underline;
}

/* Card Actions */
.hbl-v2-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hbl-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.hbl-v2-btn-call,
.hbl-v2-btn-primary {
    background: var(--hbl-secondary, #F9532A);
    color: var(--hbl-white, #FFFFFF);
}

.hbl-v2-btn-call:hover,
.hbl-v2-btn-primary:hover {
    background: var(--hbl-primary, #008080);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px var(--hbl-black-20, rgba(0, 0, 0, 0.2));
}

.hbl-v2-btn-directions,
.hbl-v2-btn-view-profile,
.hbl-v2-btn-more-info,
.hbl-v2-btn-secondary {
    background: var(--hbl-white, #FFFFFF);
    color: var(--hbl-primary, #008080);
    border: 2px solid var(--hbl-primary, #008080);
}

.hbl-v2-btn-directions:hover,
.hbl-v2-btn-view-profile:hover,
.hbl-v2-btn-more-info:hover,
.hbl-v2-btn-secondary:hover {
    background: var(--hbl-primary, #008080);
    color: var(--hbl-white, #FFFFFF);
}

/* Expandable Content */
.hbl-v2-card-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.hbl-v2-listing-card.expanded .hbl-v2-card-expandable {
    max-height: 5000px;
}

.hbl-v2-card-expandable-content {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--hbl-gray-200, #E9ECEF);
}

/* Expandable Sections */
.hbl-v2-expandable-section {
    margin: 1.5rem 0;
}

.hbl-v2-expandable-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hbl-text-primary, #000000);
    margin: 0 0 1rem 0;
    font-family: 'Poppins', sans-serif;
}

.hbl-v2-expandable-divider {
    height: 1px;
    background: var(--hbl-gray-200, #E9ECEF);
    margin: 1.5rem 0;
}

/* Full Description */
.hbl-v2-full-description {
    color: var(--hbl-text-primary, #000000);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.hbl-v2-full-description p {
    margin-bottom: 1rem;
}

.hbl-v2-full-description p:last-child {
    margin-bottom: 0;
}

/* Category & Tag Pills */
.hbl-v2-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hbl-v2-category-pill,
.hbl-v2-tag-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--hbl-secondary, #F9532A);
    color: var(--hbl-white, #FFFFFF);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hbl-v2-tag-pill {
    background: var(--hbl-primary, #008080);
}

.hbl-v2-category-pill:hover {
    background: var(--hbl-secondary-dark, #e04520);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px var(--hbl-black-20, rgba(0, 0, 0, 0.2));
}

.hbl-v2-tag-pill:hover {
    background: var(--hbl-primary-dark, #006666);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px var(--hbl-black-20, rgba(0, 0, 0, 0.2));
}

/* Gallery Grid */
.hbl-v2-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.hbl-v2-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 3px;
}

.hbl-v2-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hbl-v2-gallery-item:hover img {
    transform: scale(1.05);
}

/* Two Column Section (Services & Pricing) */
.hbl-v2-two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .hbl-v2-two-column-section {
        grid-template-columns: 1fr;
    }
}

/* Services List */
.hbl-v2-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hbl-v2-services-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--hbl-gray-100, #f8f9fa);
    border-radius: 3px;
    color: var(--hbl-text-primary, #000000);
    font-size: 0.875rem;
    transition: background 0.2s ease;
}

.hbl-v2-services-list li:hover {
    background: var(--hbl-gray-200, #E9ECEF);
}

.hbl-v2-services-list li i {
    color: var(--hbl-primary, #008080);
    font-size: 1.125rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hbl-white, #FFFFFF);
    border-radius: 50%;
}

/* Pricing List */
.hbl-v2-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hbl-v2-pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--hbl-gray-100, #f8f9fa);
    border-radius: 3px;
    color: var(--hbl-text-primary, #000000);
    font-size: 0.875rem;
    position: relative;
    padding-left: 2.5rem;
    transition: background 0.2s ease;
}

.hbl-v2-pricing-list li:hover {
    background: var(--hbl-gray-200, #E9ECEF);
}

.hbl-v2-pricing-list li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--hbl-primary, #008080);
    border-radius: 50%;
    flex-shrink: 0;
}

/* No Content Message */
.hbl-v2-no-content {
    color: var(--hbl-text-muted, #9ca3af);
    font-size: 0.875rem;
}

/* Reviews Section */
.hbl-v2-reviews-section-full h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hbl-text-primary, #000000);
    margin: 0 0 1rem 0;
}

.hbl-v2-reviews-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--hbl-bg-tertiary, #f8f9fa);
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.hbl-v2-rating-point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hbl-v2-rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hbl-primary, #008080);
    line-height: 1;
}

.hbl-v2-rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hbl-v2-rating-text {
    font-size: 0.875rem;
    color: var(--hbl-text-secondary, #6c757d);
}

.hbl-v2-no-reviews {
    color: var(--hbl-text-secondary, #6c757d);
    margin-bottom: 1.5rem;
}

/* Review CTA Box */
.hbl-v2-review-cta {
    padding: 1.5rem;
    background: var(--hbl-bg-tertiary, #f8f9fa);
    border-radius: 3px;
    text-align: center;
}

.hbl-v2-review-cta-text {
    margin: 0 0 1rem 0;
    color: var(--hbl-text-primary, #000000);
    font-size: 0.9375rem;
}

.hbl-v2-btn-review {
    background: var(--hbl-secondary, #F9532A);
    color: var(--hbl-white, #FFFFFF);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.hbl-v2-btn-review:hover {
    background: var(--hbl-secondary-dark, #e04520);
    color: var(--hbl-white, #FFFFFF);
}

/* Individual Review Display */
.hbl-v2-review-content {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--hbl-white, #FFFFFF);
    border: 1px solid var(--hbl-gray-200, #E9ECEF);
    border-radius: 3px;
}

.hbl-v2-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.hbl-v2-reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hbl-v2-reviewer-name {
    font-weight: 600;
    color: var(--hbl-text-primary, #000000);
    font-size: 0.9375rem;
}

.hbl-v2-review-date {
    font-size: 0.8125rem;
    color: var(--hbl-text-secondary, #6c757d);
}

.hbl-v2-review-individual-rating {
    display: flex;
    gap: 0.125rem;
    color: var(--hbl-secondary, #F9532A);
}

.hbl-v2-review-content p {
    margin: 0;
    color: var(--hbl-text-primary, #000000);
    line-height: 1.6;
}

.hbl-v2-review-meta {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--hbl-gray-200, #E9ECEF);
}

.hbl-v2-review-meta small {
    color: var(--hbl-text-secondary, #6c757d);
}

.hbl-v2-reviews-link {
    margin: 0;
}

.hbl-v2-reviews-link a {
    color: var(--hbl-primary, #008080);
    text-decoration: none;
    font-weight: 600;
}

.hbl-v2-reviews-link a:hover {
    text-decoration: underline;
}

/* Expand Trigger (replaces ::after pseudo-element) */
.hbl-v2-expand-trigger {
    display: block;
    width: 100%;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23008080' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease, background-color 0.2s ease;
    cursor: pointer;
    border-top: 1px solid var(--hbl-gray-200, #E9ECEF);
}

.hbl-v2-listing-card.expanded .hbl-v2-expand-trigger {
    transform: rotate(180deg);
}

.hbl-v2-expand-trigger:hover {
    background-color: var(--hbl-bg-tertiary, #f8f9fa);
}

/* List View Specific Styles */
.hbl-v2-listings-grid.list-view .hbl-v2-listing-card {
    display: flex;
    flex-direction: column;
}

/* Update Header Layout for List View */
.hbl-v2-listings-grid.list-view .hbl-v2-card-header {
    flex: 1;
    padding: 0;
    align-items: stretch;
}

/* Left Column (Image) - 35% Width */
.hbl-v2-listings-grid.list-view .hbl-v2-card-header-left {
    width: 35%;
    padding: 1rem;
    gap: 0;
}

/* Logo/Image - Full fill */
.hbl-v2-listings-grid.list-view {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

/* Hide Social in List View */
.hbl-v2-listings-grid.list-view .hbl-v2-social-icons {
    display: none;
}

/* Content Column - Add Padding */
.hbl-v2-listings-grid.list-view .hbl-v2-card-header-center {
    padding: 1.5rem 2rem;
    align-self: center;
    /* Center content vertically */
}

/* ========================================
   Pagination
   ======================================== */
.hbl-v2-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hbl-v2-pagination-info {
    font-size: 0.875rem;
    color: var(--hbl-text-secondary, #6c757d);
}

.hbl-v2-pagination-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hbl-v2-page-btn,
.hbl-v2-page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--hbl-text-primary, #000000);
    background: var(--hbl-white, #FFFFFF);
    border: 2px solid var(--hbl-gray-300, #D1D5DB);
    transition: all 0.2s ease;
    cursor: pointer;
}

.hbl-v2-page-btn:hover,
.hbl-v2-page-number:hover {
    border-color: var(--hbl-primary, #008080);
    color: var(--hbl-primary, #008080);
    background: var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
}

.hbl-v2-page-number.active {
    background: var(--hbl-primary, #008080);
    color: var(--hbl-white, #FFFFFF);
    border-color: var(--hbl-primary, #008080);
}

.hbl-v2-page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.hbl-v2-page-dots {
    padding: 0 0.5rem;
    color: var(--hbl-text-secondary, #6c757d);
}

/* ========================================
   No Results
   ======================================== */
.hbl-v2-no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--hbl-text-secondary, #6c757d);
}

.hbl-v2-no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.hbl-v2-no-results p {
    font-size: 1.125rem;
    margin: 0;
}

@media (max-width: 768px) {
    .hbl-v2-listings-grid.list-view .hbl-v2-card-header-left {
        width: 100%;
    }

    .hbl-v2-listings-grid.list-view .hbl-v2-card-header,
    .hbl-v2-listing-title-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 640px) {
    .hbl-v2-filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .hbl-v2-card-actions {
        flex-direction: column;
    }

    .hbl-v2-btn {
        width: 100%;
    }

    /* Popular Search Buttons - Mobile */
    .hbl-v2-popular-searches-buttons {
        flex-wrap: wrap;
        width: 100%;
    }

    .hbl-v2-popular-search-btn {
        font-size: 0.8125rem;
        padding: 0.375rem 0.75rem;
    }

    .hbl-v2-more-filters-wrapper {
        width: 100%;
    }

    .hbl-v2-more-filters-trigger {
        width: 100%;
    }

    .hbl-v2-more-filters-dropdown {
        right: 0;
        left: auto;
    }
}

/* ========================================
   Loading State
   ======================================== */
.hbl-v2-widget.loading .hbl-v2-listing-card {
    opacity: 0.5;
    pointer-events: none;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hbl-v2-listing-card {
    animation: fadeIn 0.4s ease-out;
}

/* ========================================
   Review Form Styles
   ======================================== */
.hbl-v2-review-form-section {
    margin-top: 1.5rem;
}

.hbl-v2-review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hbl-v2-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hbl-v2-form-group label {
    font-weight: 600;
    color: var(--hbl-text-primary, #000000);
    font-size: 0.9375rem;
}

.hbl-v2-form-group label .required {
    color: var(--hbl-secondary, #F9532A);
    margin-left: 0.25rem;
}

.hbl-v2-form-group input[type="text"],
.hbl-v2-form-group input[type="email"],
.hbl-v2-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--hbl-gray-300, #D1D5DB);
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--hbl-white, #FFFFFF);
}

.hbl-v2-form-group input:focus,
.hbl-v2-form-group textarea:focus {
    outline: none;
    border-color: var(--hbl-primary, #008080);
    box-shadow: 0 0 0 3px var(--hbl-primary-10, rgba(0, 128, 128, 0.1));
}

.hbl-v2-rating-group {
    margin-bottom: 0.5rem;
}

.hbl-v2-star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 1.75rem;
    cursor: pointer;
    user-select: none;
}

.hbl-v2-star-rating i {
    color: var(--hbl-gray-300, #D1D5DB);
    transition: color 0.2s ease, transform 0.15s ease;
    cursor: pointer;
    pointer-events: auto;
}

.hbl-v2-star-rating i:hover {
    color: var(--hbl-secondary, #F9532A);
    transform: scale(1.15);
}

.hbl-v2-star-rating i.active {
    color: var(--hbl-secondary, #F9532A);
}

.hbl-v2-form-submit {
    margin-top: 0.5rem;
}

.hbl-v2-review-message {
    padding: 1rem;
    border-radius: 3px;
    font-size: 0.9375rem;
    margin-top: 1rem;
}

.hbl-v2-review-message.success {
    background: var(--hbl-success-bg, rgba(16, 185, 129, 0.1));
    color: var(--hbl-success-dark, #059669);
    border: 1px solid var(--hbl-success-dark, #059669);
}

.hbl-v2-review-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid #dc2626;
}

.hbl-v2-already-reviewed {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--hbl-success-bg, rgba(16, 185, 129, 0.1));
    border: 1px solid var(--hbl-success-dark, #059669);
    border-radius: 3px;
    color: var(--hbl-success-dark, #059669);
}

.hbl-v2-already-reviewed i {
    font-size: 1.5rem;
}

.hbl-v2-already-reviewed p {
    margin: 0;
    font-weight: 500;
}

.hbl-v2-login-message {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--hbl-bg-tertiary, #f8f9fa);
    border-radius: 3px;
}

.hbl-v2-login-message p {
    margin: 0;
    color: var(--hbl-text-secondary, #6c757d);
}

/* Loading spinner animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 1s linear infinite;
}