span.amount {
    font-size: 36px;;
}

/* Container Box */
.tour-details-widget {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    padding: 30px;
    width: 100%; /* Tự động chiếm 100% chiều rộng của Cột (Col) */
    box-sizing: border-box; /* Đảm bảo padding bên trong không làm phình kích thước thật */
   
}

/* Tiêu đề */
.tour-details-widget .widget-title {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Bọc danh sách */
.tour-details-widget .widget-list {
    display: flex;
    flex-direction: column;
}

/* Từng hàng dữ liệu */
.tour-details-widget .widget-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #f2f2f2;
}

/* Ẩn viền hàng cuối cùng */
.tour-details-widget .widget-item:last-child {
    border-bottom: none;
    padding-bottom: 25px;
}

/* Căn chỉnh Icon */
.tour-details-widget .widget-icon {
    width: 32px;
    height: 32px;
    color: #333;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Căn chỉnh cụm Text */
.tour-details-widget .widget-info {
    display: flex;
    flex-direction: column;
}

/* Dữ liệu lấy từ ACF (5N4Đ, VietJet...) */
.tour-details-widget .widget-value {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
    line-height: 1.2;
}

/* Tên trường dữ liệu (Thời gian, Số lượng...) */
.tour-details-widget .widget-label {
    font-size: 13px;
    color: #777;
    font-weight: 400;
}

/* Nút bấm đen dưới cùng */
.tour-details-widget .widget-btn {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tour-details-widget .widget-btn:hover {
    background-color: #333;
}
/* =========================================
   GIAO DIỆN LƯỚI TIỆN ÍCH (AMENITIES GRID) 
========================================= */
.tour-amenities-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* Chia 4 cột đều nhau */
    row-gap: 30px !important; /* Khoảng cách giữa các hàng */
    padding: 20px 0 !important;
    width: 100% !important;
}

.amenity-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    border-right: 1px solid #eaeaea !important; /* Đường gạch dọc */
    padding: 0 10px !important;
}

/* Xóa đường gạch dọc ở cột thứ 4, thứ 8... (cột cuối cùng của mỗi hàng) */
.amenity-item:nth-child(4n) {
    border-right: none !important;
}

.amenity-icon {
    margin-bottom: 12px !important;
    color: #333 !important;
    display: flex;
    justify-content: center;
}

/* Kích thước Icon SVG */
.amenity-icon svg {
    width: 40px !important;
    height: 40px !important;
    stroke-width: 1.2 !important;
}

.amenity-text {
    font-size: 14px !important;
    color: #444 !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
}

/* Responsive cho Mobile & Tablet */
@media (max-width: 768px) {
    .tour-amenities-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Mobile chia 2 cột */
        row-gap: 20px !important;
    }
    
    .amenity-item {
        border-right: 1px solid #eaeaea !important;
        margin-bottom: 10px;
    }

    /* Trên mobile, xóa đường gạch ở cột thứ 2 (cột chẵn) */
    .amenity-item:nth-child(2n) {
        border-right: none !important;
    }
    /* Phục hồi đường viền cho cột 4n bị ẩn từ code Desktop */
    .amenity-item:nth-child(4n-1) {
        border-right: 1px solid #eaeaea !important;
    }
}

/* =========================================
   GIAO DIỆN VIDEO TOUR BỌC ẢNH VÀ NÚT PLAY 
========================================= */

.tour-video-wrapper {
    position: relative !important;
    width: 100% !important;
    display: block !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

/* Định dạng ảnh bìa (chiếm trọn khung hình với tỷ lệ 16:9) */
.tour-video-cover {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important; /* Cắt cúp ảnh cho vừa khung mà không bị méo */
    display: block !important;
}

/* Định dạng nút bấm hình viên thuốc */
.tour-video-btn {
    position: absolute !important;
    bottom: 30px !important; /* Cách đáy 30px giống trong ảnh */
    left: 50% !important;
    transform: translateX(-50%) !important; /* Căn giữa tuyệt đối */
    
    background-color: #ffffff !important;
    color: #111111 !important;
    display: flex !important;
    align-items: center !important;
    padding: 6px 24px 6px 6px !important; /* Căn chỉnh đệm (Padding) để bọc vừa icon */
    border-radius: 50px !important; /* Bo tròn hoàn toàn tạo hình viên thuốc */
    text-decoration: none !important;
    /* font-family: Arial, Helvetica, sans-serif !important; */
    font-weight: 600 !important;
    font-size: 15px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

/* Hiệu ứng khi rê chuột vào nút */
.tour-video-btn:hover {
    transform: translateX(-50%) scale(1.05) !important; /* Phóng to nhẹ */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Khối tròn màu đen chứa Icon Play */
.play-icon {
    background-color: #000000 !important;
    color: #ffffff !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 12px !important;
}

/* Chỉnh kích thước mũi tên Play */
.play-icon svg {
    width: 14px !important;
    height: 14px !important;
    margin-left: 3px !important; /* Đẩy nhẹ mũi tên sang phải để tạo cảm giác nằm giữa hình tròn */
}

/* Responsive cho màn hình điện thoại */
@media (max-width: 768px) {
    .tour-video-btn {
        bottom: 15px !important;
        padding: 5px 18px 5px 5px !important;
        font-size: 13px !important;
    }
    .play-icon {
        width: 28px !important;
        height: 28px !important;
        margin-right: 8px !important;
    }
    .play-icon svg {
        width: 12px !important;
        height: 12px !important;
    }
}
/* =========================================
   GIAO DIỆN ACCORDION (LỊCH TRÌNH CHI TIẾT)
========================================= */
.tour-accordion-container {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important; /* Khoảng cách giữa các hộp */
    /* font-family: Arial, Helvetica, sans-serif !important; */
}

/* Định dạng từng hộp Accordion */
.tour-accordion-item {
    border: 1px solid #e5e5e5 !important; /* Viền xám nhạt giống ảnh */
    background: #ffffff !important;
    border-radius: 2px !important;
}

/* Khối Tiêu đề (Phần click được) */
.tour-accordion-header {
    padding: 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

.tour-accordion-header:hover {
    background-color: #fcfcfc !important;
}

/* Text Tiêu đề */
.tour-accordion-title {
    margin: 0 !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    color: #111 !important;
}

/* Icon mũi tên */
.tour-accordion-icon {
    color: #999 !important;
    display: flex !important;
    align-items: center !important;
    transition: transform 0.3s ease !important;
}

.tour-accordion-icon svg {
    width: 20px !important;
    height: 20px !important;
}

/* HIỆU ỨNG KHI MỞ ACCORDION (Class active) */
/* Xoay mũi tên từ phải -> lên trên */
.tour-accordion-item.active .tour-accordion-icon {
    transform: rotate(-90deg) !important; 
}

/* Khối Nội dung (Ẩn đi mặc định bằng max-height: 0) */
.tour-accordion-body {
    max-height: 0;
    overflow: hidden !important;
    transition: max-height 0.4s ease-out !important; /* Hiệu ứng trượt mượt mà */
    background: #ffffff !important;
}

/* Text Nội dung bên trong (Lấy từ WYSIWYG Editor) */
.tour-accordion-content {
    padding: 0 20px 25px 20px !important;
    color: #555 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

/* Định dạng các thẻ HTML (p, ul, li) bên trong Editor để không bị vỡ layout */
.tour-accordion-content p {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
}
.tour-accordion-content p:last-child {
    margin-bottom: 0 !important;
}
/* =========================================
   GIAO DIỆN SLIDER TOUR NỔI BẬT
========================================= */

.tour-highlight-slider {
    padding-bottom: 90px !important; /* Dành khoảng trống cho Timeline ở dưới */
    position: relative;
    /* font-family: Arial, Helvetica, sans-serif; */
}

/* KHỐI CARD SẢN PHẨM */
.tour-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5; /* Tỷ lệ khung hình đứng */
    background: #f5f5f5;
    overflow: hidden;
}

/* Ảnh nền */
.tour-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

/* Hiệu ứng zoom ảnh khi hover */
.tour-card:hover .tour-card-bg {
    transform: scale(1.08);
}

/* Khối văn bản màu trắng */
.tour-card-content {
    position: absolute;
    bottom: 5%;
    left: 0%;
    transform: translateX(5%);
    background: #ffffff;
    padding: 30px;
    max-width: 90%;
    width: auto;
}

.tour-card-content h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 400;
}

.tour-card-content h3 a {
    color: #111;
    text-decoration: none;
}

.tour-card-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* =========================================
   GIAO DIỆN THANH TIMELINE BÊN DƯỚI
========================================= */

.tour-timeline-wrapper {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
}

/* Đường kẻ ngang màu đen */
.tour-timeline-line {
    position: absolute;
    top: 17px; /* Căn giữa tâm của vòng tròn */
    left: 0;
    right: 0;
    height: 1px;
    background-color: #000;
    z-index: 1;
}

/* Căn chỉnh các điểm (Pagination) dàn đều */
.tour-timeline-pagination {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

/* Ghi đè class mặc định của Swiper */
.tour-timeline-pagination .swiper-pagination-bullet {
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    outline: none;
    margin: 0 !important;
}

/* Vòng tròn có dấu cộng */
.timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f2f2f2; /* Màu xám nhạt khi chưa active */
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Trạng thái Active (Điểm hiện tại) */
.tour-timeline-pagination .swiper-pagination-bullet-active .timeline-dot {
    background-color: #000; /* Đổi màu đen */
    color: #fff; /* Dấu cộng màu trắng */
}

/* Text "Stop 01" */
.timeline-label {
    font-size: 13px;
    color: #333;
}
h1.product-title.product_title.entry-title {
    color: #000;
}
/* =========================================
   GIAO DIỆN THẺ TAXONOMY (ĐIỂM ĐẾN)
========================================= */
.tour-tax-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; /* Khoảng cách giữa các thẻ */
    margin-bottom: 20px;
    /* font-family: Arial, Helvetica, sans-serif; */
}

/* Khung bọc viên thuốc */
.tour-badge {
    background-color: #f7f8fa; /* Màu nền xám nhạt */
    border-radius: 50px; /* Bo tròn tuyệt đối */
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Màu xanh dương đậm cho chữ "THÁI LAN" */
.badge-highlight {
    color: #0f4c81; 
    font-weight: 700;
}

/* Text xám nhạt */
.badge-text {
    color: #4b5563;
}

/* Icon Ngôi nhà */
.badge-icon-home {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    color: #9ca3af;
}

/* Icon Mũi tên */
.badge-icon-arrow {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    color: #9ca3af;
}

/* Dấu chấm tròn bên thẻ Tour nước ngoài */
.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #4b5563; /* Dấu chấm màu xám đậm */
    border-radius: 50%;
    margin-right: 8px;
}
/* =========================================
   GIAO DIỆN TIÊU ĐỀ CHÍNH (H1) CĂN GIỮA
========================================= */
h1.tour-main-title {
    text-align: center; /* Căn giữa toàn bộ */
    margin: 0 0 30px 0;
    line-height: 1.2;
    
}

/* Chữ địa điểm (Ví dụ: The Egypt) - Nằm trên, nét mỏng */
h1.tour-main-title .title-destination {
    display: block; /* Ép xuống dòng */
    font-size: 52px; 
    font-weight: 400; /* Nét thường/mỏng */
    color: #111111;
    margin-bottom: 5px; 
}

/* Chữ tiêu đề bài viết (Ví dụ: Living History) - Nằm dưới, nét đậm */
h1.tour-main-title .title-name {
    display: block; /* Ép xuống dòng */
    font-size: 54px; /* Chữ dưới to hơn chữ trên */
    font-weight: 700; /* Nét đậm (Bold) */
    color: #000000;
}

/* Responsive cho màn hình điện thoại */
@media (max-width: 768px) {
    h1.tour-main-title .title-destination {
        font-size: 28px;
    }
    h1.tour-main-title .title-name {
        font-size: 34px;
    }
}
