/* Layout Classes */
.explore-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
}

.explore-layout {
    display: flex;
    gap: 40px;
}

.explore-sidebar {
    width: 250px;
    flex-shrink: 0;
}

/* Sidebar Filter Classes */
.filters-card {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.filter-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

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

.filter-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111;
}

.filter-options-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #444;
    font-size: 14px;
}

.filter-option.active {
    font-weight: 600;
    color: #000 !important;
}

.check-icon {
    font-size: 12px;
}

.price-inputs-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.price-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
}

.apply-filter-btn {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

/* Results Classes */
.explore-results {
    flex: 1;
}

.results-header {
    margin-bottom: 24px;
}

.results-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.results-meta {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.property-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

/* Card Classes */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-image-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
    background: #f0f0f0;
}

.property-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wishlist-btn-card {
    position: absolute;
    top: 12px;
    left: 12px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.wishlist-icon {
    font-size: 24px;
    color: rgba(0,0,0,0.3);
    -webkit-text-stroke: 2px white;
    text-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.wishlist-icon.active {
    color: #ff385c;
}

.info-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
}

.rating-span {
    font-weight: 400;
}

.rating-icon {
    font-size: 12px;
}

.info-subtitle {
    color: #666;
    font-size: 15px;
    margin-bottom: 4px;
}

.info-price {
    margin-top: 8px;
    font-size: 16px;
}

.price-label {
    font-weight: 400;
}

/* Empty State */
.empty-state-container {
    text-align: center;
    padding: 60px 0;
    color: #666;
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.2;
}
