.header-main {
	z-index:1 !important;
}
.ctsp_img{
	z-index:100 !important;
}
.ctsp_sanpham .content h1{
	font-family: "Boluga", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: left;
    color: #111;
    font-size: 2.4rem;
}
.ctsp_sanpham .content .is-divider {
	display:none;
}
.ctsp_sanpham .content .product-short-description p{
	color: var(--color-black);
}
.ctsp_img {
	padding-bottom:0px !important;
}
.ctsp_img .row .col{
	padding-bottom:0px !important;
}
.ctsp_sanpham .content .tabs.wc-tabs{
	display:none
}
.ctsp_sanpham .row{
	    background: #fff;
	padding:15px !important;
    border-radius: 12px !important;
    overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.custom-product-page{
	background:#FAFAFA;
}

/* =========================================
   CSS ĐẶT PHÒNG - GIAO DIỆN MỚI
   ========================================= */

/* Định dạng tổng thể popup */
.ctsp_sanpham .bk-modal-content {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 40px 40px 40px;
    position: relative;
    max-width: 500px;
    margin: 5% auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border: none;
}

/* Ẩn tiêu đề cũ màu đỏ có chứa inline CSS */
.ctsp_sanpham .bk-modal-content > h3:not(.booking-title) {
    display: none !important;
}

/* Nút X đóng popup */
.ctsp_sanpham .bk-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    color: #2b3f5c;
    cursor: pointer;
    line-height: 1;
    font-weight: 300;
}

.ctsp_sanpham .bk-modal-close:hover {
    color: #ff4d4f;
}

/* Tiêu đề "Thông tin đặt phòng" */
.ctsp_sanpham .booking-title {
    color: #2b3f5c;
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
    border: none;
}

/* Khoảng cách giữa các dòng form */
.ctsp_sanpham .form-field {
    margin-bottom: 20px;
}

/* Row cho 2 cột ngày tháng */
.ctsp_sanpham .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.ctsp_sanpham .form-col {
    flex: 1;
}

/* Định dạng Label (Nhãn) */
.ctsp_sanpham .booking-form-container label {
    display: block;
    color: #4a5c77;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0; /* Margin được chuyển xuống thẻ wrap của input */
}

/* Ép thẻ bọc input rớt xuống hàng do cấu trúc HTML đang đặt input trong label */
.ctsp_sanpham .wpcf7-form-control-wrap {
    display: block;
    margin-top: 8px;
}

/* Định dạng các ô Input (Text, Tel, Date, Number) */
.ctsp_sanpham .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    background-color: #f4ece3; /* Màu nền be nhạt giống thiết kế */
    border: none;
    border-radius: 10px;
    padding: 15px 18px;
    font-size: 15px;
    color: #5a6a82;
    box-sizing: border-box;
    outline: none;
    transition: box-shadow 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Hiệu ứng khi click vào ô input */
.ctsp_sanpham .wpcf7-form-control:not(.wpcf7-submit):focus {
    box-shadow: 0 0 0 2px #d4c8b9;
}

/* Đổi màu chữ Placeholder (chữ mờ) */
.ctsp_sanpham .wpcf7-form-control::placeholder {
    color: #9ba7ba;
    font-weight: 400;
}

/* Định dạng riêng cho icon Lịch (Date picker) */
.ctsp_sanpham input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
}

/* Khu vực nút bấm Submit */
.ctsp_sanpham .form-submit {
    margin-top: 35px;
    text-align: center;
}

/* Định dạng nút Xác nhận đặt phòng */
.ctsp_sanpham .wpcf7-submit {
    background-color: #2b3f5c; /* Màu xanh navy đậm */
    color: #ffffff;
    border: none;
    border-radius: 30px; /* Bo tròn mạnh như viên thuốc */
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

/* Hiệu ứng khi hover nút bấm */
.ctsp_sanpham .wpcf7-submit:hover {
    background-color: #1e2c42;
}

.ctsp_sanpham .wpcf7-submit:active {
    transform: scale(0.98);
}