.qh-disney-wrapper {
    max-width: 1180px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.qh-disney-header {
    margin-bottom: 28px;
}

.qh-disney-header h2 {
    font-size: 38px;
    margin: 0 0 14px;
    line-height: 1.2;
    color: #111;
}

.qh-agoda-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff3d8;
    color: #7a4b00;
    border: 1px solid #ffd98a;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 700;
}

.qh-agoda-badge strong {
    color: #111;
    font-weight: 900;
}

.qh-disney-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    padding: 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.qh-disney-filter-bar label {
    font-weight: 700;
}

.qh-disney-filter-bar select {
    max-width: 280px;
    padding: 12px 14px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    font-size: 15px;
}

.qh-disney-message {
    margin: 15px 0 25px;
    font-weight: 700;
    font-size: 16px;
}

.qh-disney-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.qh-disney-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.qh-disney-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #eee;
}

.qh-disney-content {
    padding: 20px;
}

.qh-property-type {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    background: #eaf3ff;
    color: #0b74de;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.qh-disney-content h3 {
    font-size: 20px;
    margin: 0 0 14px;
    line-height: 1.35;
}

.qh-disney-price {
    font-size: 30px;
    font-weight: 800;
    color: #0b74de;
    margin-bottom: 16px;
}

.qh-disney-meta {
    margin: 8px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.qh-disney-button {
    display: inline-block;
    margin-top: 18px;
    padding: 13px 18px;
    background: #0b74de;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 800;
}

.qh-disney-button:hover {
    background: #075aaa;
    color: #fff;
}

@media(max-width:900px) {
    .qh-disney-results {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .qh-disney-wrapper {
        padding: 15px;
    }

    .qh-disney-results {
        grid-template-columns: 1fr;
    }

    .qh-disney-header h2 {
        font-size: 28px;
    }

    .qh-disney-filter-bar select {
        max-width: 100%;
    }
}