/* Tiger Elements — Elementor widgets base styles */

.tgw-rooms { width: 100%; }
.tgw-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tgw-room-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.tgw-room-card:hover { transform: translateY(-2px); }
.tgw-room-card__image {
    display: block;
    height: 220px;
    overflow: hidden;
}
.tgw-room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.tgw-room-card:hover .tgw-room-card__image img { transform: scale(1.04); }
.tgw-room-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.tgw-room-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}
.tgw-room-card__title a { color: inherit; text-decoration: none; }
.tgw-room-card__meta {
    font-size: 13px;
    color: #6b7280;
}
.tgw-room-card__desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}
.tgw-room-card__price {
    font-size: 18px;
    font-weight: 700;
    margin-top: auto;
}
.tgw-room-card__price-suffix {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
}
.tgw-room-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    margin-top: 12px;
    background: #f97316;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}
.tgw-room-card__btn:hover { background: #ea580c; color: #fff; }
.tgw-rooms-pagination { margin-top: 32px; }
.tgw-rooms-pagination ul { display: flex; gap: 6px; padding: 0; list-style: none; flex-wrap: wrap; justify-content: center; }
.tgw-rooms-pagination li a, .tgw-rooms-pagination li span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px;
    border-radius: 8px; background: #f3f4f6; color: #111827;
    text-decoration: none; font-weight: 600; font-size: 14px;
}
.tgw-rooms-pagination li span.current { background: #111827; color: #fff; }
.tgw-rooms-empty { color: #6b7280; font-style: italic; }

@media (max-width: 1024px) {
    .tgw-rooms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .tgw-rooms-grid { grid-template-columns: 1fr; }
}

/* ------------------------- Services widget ------------------------- */
.tgw-svc { width: 100%; }
.tgw-svc-filters,
.tgw-htl-filters {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.tgw-svc-filters input, .tgw-svc-filters select,
.tgw-htl-filters input, .tgw-htl-filters select {
    padding: 10px 14px; border: 1px solid #e5e7eb; border-radius: 10px;
    font-size: 14px; background: #fff; min-width: 160px;
}
.tgw-svc-filters button, .tgw-htl-filters button {
    padding: 10px 18px; background: #111827; color: #fff;
    border: 0; border-radius: 10px; font-weight: 600; cursor: pointer;
}
.tgw-svc-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tgw-svc-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.tgw-svc-card:hover { transform: translateY(-2px); }
.tgw-svc-card__image { display: block; height: 220px; overflow: hidden; }
.tgw-svc-card__image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .35s ease;
}
.tgw-svc-card:hover .tgw-svc-card__image img { transform: scale(1.04); }
.tgw-svc-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tgw-svc-card__title { margin: 0; font-size: 18px; font-weight: 700; line-height: 1.25; }
.tgw-svc-card__title a { color: inherit; text-decoration: none; }
.tgw-svc-card__meta { font-size: 13px; color: #6b7280; }
.tgw-svc-card__desc { font-size: 14px; color: #6b7280; margin: 0; }
.tgw-svc-card__price { font-size: 18px; font-weight: 700; margin-top: auto; }
.tgw-svc-card__btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 20px; margin-top: 12px;
    background: #f97316; color: #fff; text-decoration: none;
    border-radius: 999px; font-weight: 600;
    transition: background .2s ease, color .2s ease;
}
.tgw-svc-card__btn:hover { background: #ea580c; color: #fff; }
.tgw-svc-pagination, .tgw-htl-pagination { margin-top: 32px; }
.tgw-svc-pagination ul, .tgw-htl-pagination ul {
    display: flex; gap: 6px; padding: 0; list-style: none;
    flex-wrap: wrap; justify-content: center;
}
.tgw-svc-pagination li a, .tgw-svc-pagination li span,
.tgw-htl-pagination li a, .tgw-htl-pagination li span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px;
    border-radius: 8px; background: #f3f4f6; color: #111827;
    text-decoration: none; font-weight: 600; font-size: 14px;
}
.tgw-svc-pagination li span.current,
.tgw-htl-pagination li span.current { background: #111827; color: #fff; }
.tgw-svc-empty, .tgw-htl-empty { color: #6b7280; font-style: italic; }

/* -------------------------- Hotels widget -------------------------- */
.tgw-htl { width: 100%; }
.tgw-htl-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tgw-htl-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.tgw-htl-card:hover { transform: translateY(-2px); }
.tgw-htl-card__image { display: block; height: 240px; overflow: hidden; }
.tgw-htl-card__image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .35s ease;
}
.tgw-htl-card:hover .tgw-htl-card__image img { transform: scale(1.04); }
.tgw-htl-card__body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tgw-htl-card__stars { font-size: 16px; line-height: 1; color: #d1d5db; }
.tgw-htl-card__stars .tgw-star.is-on { color: #f59e0b; }
.tgw-htl-card__title { margin: 0; font-size: 18px; font-weight: 700; line-height: 1.25; }
.tgw-htl-card__title a { color: inherit; text-decoration: none; }
.tgw-htl-card__location { font-size: 13px; color: #6b7280; }
.tgw-htl-card__desc { font-size: 14px; color: #6b7280; margin: 0; }
.tgw-htl-card__price { font-size: 18px; font-weight: 700; margin-top: auto; }
.tgw-htl-card__price-suffix { font-size: 13px; font-weight: 400; color: #6b7280; }
.tgw-htl-card__btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 20px; margin-top: 12px;
    background: #f97316; color: #fff; text-decoration: none;
    border-radius: 999px; font-weight: 600;
    transition: background .2s ease, color .2s ease;
}
.tgw-htl-card__btn:hover { background: #ea580c; color: #fff; }

@media (max-width: 1024px) {
    .tgw-svc-grid, .tgw-htl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .tgw-svc-grid, .tgw-htl-grid { grid-template-columns: 1fr; }
}
