/**
 * Listings Page Styles
 * ZHZ Marktplatz
 */

/* Container */
.zhz-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.zhz-container h1 {
    margin: 0 0 30px 0;
    font-size: 32px;
    color: #333;
}

/* Layout */
.zhz-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar */
.zhz-sidebar {
    /* background: #fff; */
    padding: /*25px*/0;
	padding-right:16px;
   /* border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
    height: fit-content;
    position: sticky;
    top: 20px;
}

.zhz-sidebar h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 10px;
}

.zhz-sidebar form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Filter Group */
.zhz-filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #555;
}

.zhz-filter-group input[type="text"],
.zhz-filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

/* Filter Buttons */
.zhz-filter-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.zhz-btn-filter {
    width: 100%;
    padding: 12px;
    background: #0085DC;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.zhz-btn-filter:hover {
    background: #0465a5;
}

.zhz-btn-reset {
    width: 100%;
    padding: 12px;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.2s;
}

.zhz-btn-reset:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

/* Active Filters Info */
.zhz-active-filters {
    padding: 12px;
    background: #e3f2fd;
    border-radius: 5px;
    font-size: 13px;
    color: #0066cc;
}

/* Main Content */
.zhz-main-content {}

/* Listings Count Bar */
.zhz-listings-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: /*#f8f9fa*/ #ffffff;
    border-radius: 8px;
}

.zhz-listings-count span {
    color: #666;
    font-size: 15px;
}

.zhz-btn-create,
.zhz-btn-login {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.zhz-btn-create {
    background: #28a745;
}

.zhz-btn-create:hover {
    background: #218838;
}

.zhz-btn-login {
    background: #0066cc;
}

.zhz-btn-login:hover {
    background: #0052a3;
}

/* Listings Grid - 3 Spalten Layout */
/* Listings Grid - 3 Spalten Layout */
.zhz-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Listing Card */
.zhz-listing-card {
    /* background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s; */
    cursor: pointer;
}

.zhz-listing-card:hover {
 /*   transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);*/
	background-color:#f9f9f9
}

.zhz-listing-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.zhz-listing-card .zhz-no-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zhz-listing-card .zhz-no-image span {
    color: #999;
    font-size: 14px;
}

.zhz-listing-card-content {
    padding: 15px 0;
}

.zhz-listing-card-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.3;
}

.zhz-listing-card-content h3 a {
    color: #333;
    text-decoration: none;
}

.zhz-listing-card-content h3 a:hover {
    color: #0066cc;
}

.zhz-listing-card-content p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Listing Tags */
.zhz-listing-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.zhz-tag-category {
    padding: 4px 10px;
    background: #e3f2fd;
    color: #0066cc;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.zhz-tag-location {
    padding: 4px 10px;
    background: #f5f5f5;
    color: #666;
    border-radius: 4px;
    font-size: 12px;
}

/* Listing Footer */
.zhz-listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.zhz-listing-footer .zhz-time {
    color: #999;
    font-size: 13px;
}

/* Favorite Button */
/* Favorite Button */
.zhz-favorite-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
}

.zhz-favorite-btn svg {
    transition: transform 0.2s;
}

.zhz-favorite-btn:hover {
    color: #ffc107;
}

.zhz-favorite-btn:hover svg {
    transform: scale(1.2);
}

.zhz-favorite-btn.active {
    color: #ffc107;
}

/* Empty State */
.zhz-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 10px;
}

.zhz-empty-state p:first-child {
    font-size: 18px;
    color: #999;
    margin: 0;
}

.zhz-empty-state p:last-child {
    font-size: 14px;
    color: #999;
    margin: 10px 0 0 0;
}

/* Pagination */
.zhz-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.zhz-pagination a {
    padding: 10px 16px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.zhz-pagination a:hover {
    background: #f8f9fa;
    border-color: #0066cc;
}

.zhz-pagination a.active {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .zhz-layout {
        grid-template-columns: 240px 1fr !important;
    }
    
    /* 2 Spalten auf mittleren Bildschirmen */
    .zhz-listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .zhz-layout {
        grid-template-columns: 1fr !important;
    }
    
    .zhz-sidebar {
        position: static !important;
    }
    
    /* Flexible Spalten auf Mobilgeräten */
    .zhz-listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    }
    
    .zhz-listings-count {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* 1 Spalte auf sehr kleinen Bildschirmen */
    .zhz-listings-grid {
        grid-template-columns: 1fr !important;
    }
}