.hotel-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hotel-img {
    height: 180px;
    overflow: hidden;
}

.hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    height: 220px;
}

.hotel-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.hotel-region {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.hotel-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
    margin-bottom: auto;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-price {
    margin-top: 10px;
    font-weight: 700;
    font-size: 16px;
    color: #0a6847;
}
/* ================= SIDEBAR RIGHT ================= */
.sidebar-box {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ================= WHY CHOOSE ================= */
.sidebar-box h4 {
    color: #dc3545;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("/img/check.png");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ================= SUPPORT 24/7 ================= */
.support-box {
    border: 2px solid #dc3545;
    border-radius: 12px;
    background: #fff;
}

.support-title {
    color: #dc3545;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.support-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

.support-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-phone {
    font-size: 20px;
    font-weight: 700;
    color: #0a6847;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .sidebar-box {
        margin-top: 20px;
    }
}
/* ============================
   SEARCH BOX
   ============================ */
.search-box {
    background: #f8fff8;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid #e4ffe4;
    margin-bottom: 30px;
}

.search-box h4 {
    font-weight: 800;
    color: #009431;
    margin-bottom: 15px;
}

.search-box input {
    border-radius: 8px;
    border: 1px solid #cceccc;
}

.search-box button {
    background: linear-gradient(135deg, #00a63d, #007c2d);
    border: none;
    color: white;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.25s;
}

.search-box button:hover {
    background: linear-gradient(135deg, #009432, #00691f);
    transform: translateY(-2px);
}
/* ===== ACTION BUTTON CENTER ===== */
.edit-btn,
.delete-btn {
    position: absolute;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
}

/* nút sửa bên trái */
.edit-btn {
    left: 50%;
    transform: translate(-60px, -50%);
}

/* nút xóa bên phải */
.delete-btn {
    left: 50%;
    transform: translate(10px, -50%);
}

.edit-btn img,
.delete-btn img {
    width: 42px;
    height: 42px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
    cursor: pointer;
}

.edit-btn img:hover,
.delete-btn img:hover {
    transform: scale(1.15);
}
.edit-btn,
.delete-btn {
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
}

.hotel-card:hover .edit-btn,
.hotel-card:hover .delete-btn {
    opacity: 1;
    pointer-events: auto;
}
