/* --- Hotels Grid --- */
.ash-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* --- Hotel Card --- */
.ash-hotel-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.ash-hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* --- Slider --- */
.variable-width {
    margin-bottom: 10px;
}

.variable-width img {
    width: auto;
    height: 200px;
    object-fit: cover;
    margin: 0 5px;
    border-radius: 5px;
}

/* --- Hotel Info --- */
.ash-hotel-info {
    padding: 15px;
}

.ash-hotel-info h3 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.ash-hotel-info p {
    margin: 5px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

/* --- Rating Stars --- */
.ash-rating {
    color: #FFD700;
    margin: 5px 0;
    font-size: 16px;
}

/* --- Price --- */
.ash-price {
    font-weight: 700;
    font-size: 16px;
    margin: 10px 0;
    color: #ff6f61;
}

/* --- Book Now Button --- */
.ash-book-btn {
    display: inline-block;
    background: #ff6f61;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.ash-book-btn:hover {
    background: #e65b50;
}

/* --- Filter Panel --- */
.ash-filter-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.ash-filter-panel select,
.ash-filter-panel input[type=range] {
    padding: 7px 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.ash-price-value {
    margin-left: 10px;
    font-weight: bold;
    color: #333;
}

/* --- Slick Slider Custom Arrows --- */
.slick-prev:before,
.slick-next:before {
    color: #ff6f61;
    font-size: 25px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .ash-hotel-card { margin-bottom: 20px; }
    .variable-width img { height: 150px; }
    .ash-hotel-info h3 { font-size: 18px; }
    .ash-hotel-info p { font-size: 13px; }
    .ash-price { font-size: 15px; }
}

@media (max-width: 480px) {
    .ash-hotel-info h3 { font-size: 16px; }
    .ash-hotel-info p { font-size: 12px; }
    .ash-price { font-size: 14px; }
    .ash-book-btn { padding: 8px 16px; font-size: 14px; }
}
