.guesty-search-form {
    display: grid;
    gap: 10px;
    max-width: 600px;
    margin-bottom: 20px;
}

.guesty-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.guesty-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
}

.guesty-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.guesty-calendar-desktop .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-top: 10px;
}
.calendar-day {
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    background: #f5f5f5;
}
.calendar-day.available:hover {
    background: #1a73e8;
    color: #fff;
}
.calendar-day.selected-start,
.calendar-day.selected-end,
.calendar-day.selected-range {
    background: #4caf50;
    color: #fff;
}

.guesty-calendar-mobile {
    display: none;
}

/* Responsive: mobile = range picker only */
@media (max-width: 768px) {
    .guesty-calendar-desktop { display: none; }
    .guesty-calendar-mobile { display: block; }
}
