/* Container & Grid Layout */
.verhuur-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    font-family: Arial, sans-serif;
}

/* Filter Knoppen */
.verhuur-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.verhuur-filter-btn {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.verhuur-filter-btn:hover,
.verhuur-filter-btn.active {
    background-color: #22ad4c;
    color: #ffffff;
    border-color: #22ad4c;
}

/* Grid Layout */
.verhuur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Product Card Styling (Foto 4) */
.verhuur-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    border: 1px solid #eaeaea;
}

.verhuur-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Afbeelding */
.verhuur-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.verhuur-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Inhoud van het blok */
.verhuur-card-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.verhuur-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.verhuur-card-subtitle {
    font-size: 0.95rem;
    color: #666666;
    margin: 0 0 20px 0;
}

.verhuur-card-action {
    margin-top: auto;
}

/* Offerte Knop */
.verhuur-offerte-btn {
    display: inline-block;
    background-color: #22ad4c; /* Groene kleur zoals in foto 4 */
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px 32px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    position: relative;
    z-index: 2; /* Zorgt ervoor dat de knop los van de kaart-link werkt */
}

.verhuur-offerte-btn:hover {
    background-color: #1b8a3c;
}