/* MAIN LAYOUT */
.wd-waterpark-catalog {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: 30px;
}

/* SIDEBAR */
.wd-catalog-sidebar {
    background: #f2f9fd;
    border-radius: 16px;
    padding: 20px;
}

.wd-filter-title {
    font-size: 16px;
    margin-bottom: 12px;
}

/* GRID */
.wd-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */
.wd-waterpark-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform .2s ease;
}

.wd-waterpark-card:hover {
    transform: translateY(-6px);
}

/* IMAGE FIX */
.wd-card-image {
    height: 180px;
    background: #eaf6fb;
    overflow: hidden;
}

.wd-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BODY */
.wd-card-body {
    padding: 16px;
}

.wd-park-title {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
}

.wd-price {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wd-book-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #00aeea;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .wd-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .wd-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wd-waterpark-catalog {
        grid-template-columns: 1fr;
    }

    .wd-catalog-sidebar {
        margin-bottom: 20px;
    }
}
