body {
    font: 16px BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Averta Regular, sans-serif !important;
}

.slideshowbgzz_container img,
#slideshowbgzz,
#slideshowbgzz ul {
    width: 100% !important;
    height: 100% !important;
}

/* TAB WRAP */
.tour-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;

    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}

/* TAB ITEM */
.tour-tabs a {
    flex: 1;
    font-weight: bold;
    /* 👈 chia đều */

    text-align: center;
    padding: 15px 10px;

    text-decoration: none;
    color: #666;
    font-size: 15px;

    position: relative;
    transition: 0.2s;
}

/* hover */
.tour-tabs a:hover {
    color: #000;
}

/* ACTIVE */
.tour-tabs a.active {
    color: #2e7d32;
}

/* underline */
.tour-tabs a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;

    width: 100%;
    height: 3px;

    background: #2e7d32;
}

/* SECTION demo */
.section {
    /* min-height: 500px; */
    padding-top: 30px;
}

/*overview*/
/* TITLE */
.title {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.overview {
    gap: 30px;
}

/* META */
.meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.badges {
    background: #fff;
    color: #11A04A;
    padding: 5px 8px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #11A04A;
    font-weight: bold;
}

.price {
    color: #842E0A;
    font-weight: bold;
    font-size: 16px;
}

/* DESC */
.desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* INFO GRID */
.info-grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 10px 30px;

    margin-bottom: 25px;
    color: #444;
}

.info-grid div {
    position: relative;
    padding-left: 18px;
    /* chừa chỗ cho chấm */
}

/* dấu chấm */
.info-grid div::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: -4px;
    color: #999;
    font-size: 22px;
    line-height: 1;
}

/* SUB TITLE */
.sub-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    background: transparent !important;
}

/* HIGHLIGHT */
.introtour {
    list-style: none;
    padding: 0;
}

.introtour ul,
#goodtoknow {
    list-style-type: none;
    padding-left: 0;
}

.introtour li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

/* dấu tick */
.introtour li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #2B9E59;
}

#overview iframe {
    width: 100%;
    height: 300px;
    box-shadow: 3px 3px 22.6px 0px #00000040;
    border-radius: 10px;
}

/*kết thúc style overview */

/* program */
/* HEADER */
.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.program-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background: #842E0A;
    width: 10%;
}

.program-header h2 {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

#toggle-all {
    background: none;
    border: none;
    cursor: pointer;
}

/* LAYOUT */
.program-body {
    display: flex;
    gap: 40px;
}

/* LEFT */
.program-left {
    width: 33.33%;
}

.program-left img {
    width: 100%;
    border-radius: 10px;
}

/* RIGHT */
.program-right {
    width: 66.66%;
}

/* TIMELINE */
.timeline {
    position: relative;
    padding-left: 27px;
    list-style: none;
    font-size: 16px;
    line-height: 1.4;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 20px;
    bottom: 25px;
    border-left: 2px dashed #b65c2a;
}

/* ITEM */
.timeline li {
    position: relative;
    margin-bottom: 15px;
}

.timeline li::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 0;
    bottom: -10px;
    height: 1px;
    background: #CACACA;
}

/* DOT */
.dot {
    position: absolute;
    left: -22px;
    top: 14px;
    width: 12px;
    height: 12px;
    background: #8B3A0E;
    border-radius: 50%;
}

/* TITLE */
.timeline .uk-accordion-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.day-text {
    flex: 1;
    font-weight: 600;
}

/* ICON */
.toggle-icon {
    width: 9px;
    height: 9px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    /* mũi tên xuống */
    transition: transform 0.3s ease;
    display: inline-block;
    transform-origin: center center;
    /* tâm icon làm trục xoay */
}

/* khi active: xoay 180° quanh tâm để mũi tên hướng lên */
.uk-accordion-title.uk-active .toggle-icon {
    transform: rotate(-135deg);
}

.uk-open .toggle-icon {
    transform: rotate(-135deg);
}

/* CONTENT */
.uk-accordion-content {
    padding-left: 10px;
    color: #444;
    margin-left: 0;
}

/* IMAGE */
.day-img {
    margin-top: 10px;
    width: 250px;
    border-radius: 8px;
}

.uk-accordion-content,
.timeline .uk-accordion-title {
    padding-left: 0px;
    margin-left: 10px;
    background: transparent;
}

.timeline .uk-accordion-title {
    margin-top: 0px;
    margin-bottom: 0;
}

/*depart */
.year-button,
.month-button {
    border: 1px solid #000;
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.year-button.active {
    background-color: #8C3B19;
    color: #fff;
    border: none;
}

.month-button.active {
    border: 1px solid #8C3B19;
    color: #8C3B19;
}

.month-button:disabled {
    background-color: #fff;
    color: #787878;
    border: 1px solid #C2C2C2;
    cursor: not-allowed;
}

.month-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 6px;
    margin: 20px 0;
}

.departures-table {
    width: 100%;
    border-collapse: collapse;
}

.departures-table th {
    color: #11967E;
    text-align: left;
    padding-bottom: 10px;
}

.departures-table td {
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
    font-weight: bold;
}

.departures-table .price {
    color: #f47920;
}

.see-more-departure {
    border: 1px solid #000;
    color: #000 !important;
    background: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.see-more-departure:hover {
    color: #fff !important;
    background: #11967E;
}

#year-buttons {
    gap: 6px;
}

.disabled-month {
    opacity: 0.5;
    pointer-events: auto;
    /* vẫn cho click */
    cursor: pointer;
}

.month-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.dashed {
    border-top: 1px dashed #ccc;
}

.departure-row div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 0;
    font-size: 16px;
}

.givereview {
    font-weight: 600 !important;
}

.send_inquiry {
    line-height: 1 !important;
    height: fit-content !important;
}

.container-departures {
    padding: 15px;
    background: #EEEEEE;
    border-radius: 10px;
}

input:-webkit-autofill {
    background-color: white !important;
    transition: background-color 9999s ease-in-out 0s;
}

.colorgreen {
    color: #00947d !important;
}

.text-16 {
    font-size: 16px;
}

.flex1 {
    flex: 1 !important;
}

.btn-choisir {
    background: #11A04A;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    padding: 0 10px;
    padding: 8px 16px;
    margin-left: auto;
}

.btn-choisir:hover {
    background: #0a632e;
}

.depart {
    background: #F8F8F8;
    padding: 20px;
    border-radius: 10px;
}

/* BOX */
.include-box {
    background: #f3f3f3;
    border-radius: 12px;
    padding: 30px;
}

/* remove default arrow của UIkit nếu muốn custom */
.uk-accordion-title::before {
    display: none;
}

/* LIST */
.list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

/* check xanh */
.include li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #2B9E59;
    font-weight: bold;
}

.include li,
.exclude li {
    font-size: 16px;
}

/* dấu X đỏ */
.exclude li::before {
    content: "\2716";
    position: absolute;
    left: 0;
    color: #d93025;
    font-weight: bold;
}

.uk-accordion {
    list-style: none;
}

.pl-0 {
    padding-left: 0px;
}

.price-bar {
    background: #f3f3f3;
    border-radius: 10px;
    padding: 20px 25px;
    gap: 20px;
}

/* item text */
.price-bar .item {
    font-size: 18px;
    color: #333;
}

/* price highlight */
.price-bar .price {
    font-weight: 700;
    color: #7a2d0c;
    margin-left: 6px;
}

/* divider */
.price-bar .divider {
    width: 1px;
    height: 24px;
    background: #ccc;
}

/* button */
.btn-quote {
    background: #1e9e55;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-quote:hover {
    background: #178244;
}

.titleday {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
}

.slider-dot {
    padding-top: 20px !important;
}

.slider-dot li a {
    width: 10px;
    height: 10px;
}

.uk-slideshow li {
    cursor: pointer;
}

/* Base chung */
#slideshowbgzz .uk-slidenav {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Hover */
#slideshowbgzz .uk-slidenav:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Icon arrow */
#slideshowbgzz .uk-slidenav:before {
    font-size: 24px;
    color: #fff;
}

.skeleton {
    position: relative;
    overflow: hidden;
    background: #e9ecef;
    border-radius: 8px;
}

.skeleton:after {
    content: "";
    position: absolute;
    top: 0;
    left: -180px;
    width: 180px;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .65) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: skeleton-loading 1.2s infinite;
}

@keyframes skeleton-loading {
    100% {
        left: 100%;
    }
}

.detail-loading-wrap {
    display: block;
}

.detail-loading-wrap.is-hidden {
    display: none;
}

.detail-content-wrap {
    display: block;
}

.detail-content-wrap.is-hidden {
    display: none;
}

.detail-skeleton-hero {
    width: 100%;
    height: 800px;
    margin-bottom: 30px;
    border-radius: 0;
}

.skeleton-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.skeleton-tab {
    width: 110px;
    height: 38px;
    display: inline-block;
}

.detail-skeleton-section {
    margin-bottom: 40px;
}

.skeleton-line {
    height: 14px;
    margin-bottom: 12px;
}

.skeleton-line.sm {
    width: 30%;
}

.skeleton-line.md {
    width: 55%;
}

.skeleton-line.lg {
    width: 75%;
}

.skeleton-line.full {
    width: 100%;
}

.skeleton-card {
    height: 260px;
}

.skeleton-review-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex: 0 0 48px;
}

.skeleton-review-content {
    flex: 1;
}

@media (max-width: 767px) {
    .detail-skeleton-hero {
        height: 320px;
    }

    .skeleton-tab {
        width: 90px;
        height: 34px;
    }

    .skeleton-card {
        height: 180px;
        margin-bottom: 15px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-overlay {
    /* background: rgba(0, 0, 0, 0.15); */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: white;
}

/* LEFT */
.hero-left {
    max-width: 50%;
    padding-right: 50px;
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
}

.hero-left p {
    font-size: 28px;
    font-style: italic;
}

/* BOX ĐEN MỜ */
.hero-right {
    background: rgba(0, 0, 0, 0.5);
    /* 👈 nền đen xuyên thấu */
    padding: 20px;
    border-radius: 8px;

    display: flex;
    gap: 15px;
    align-items: flex-end;
    backdrop-filter: blur(2px);
    /* 👈 label trên, select dưới */
}

/* GROUP */
.form-group {
    display: flex;
    flex-direction: column;
}

/* LABEL */
.form-group label {
    color: #fff;
    /* 👈 chữ trắng */
    font-size: 14px;
    margin-bottom: 5px;
}

/* SELECT */
.form-group select {
    padding: 10px 40px 10px 10px;
    border-radius: 5px;
    border: none;
    color: #000;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    min-width: 150px;
}

/* BUTTON */
.hero-right button {
    padding: 10px 15px;
    background: #11A04A;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* SEARCH */
.search-box {
    display: flex;
    gap: 10px;
}

.search-box select,
.search-box button {
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.search-box button {
    background: #11A04A;
    color: white;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.badge {
    background: #fff;
    color: #11A04A;
    padding: 5px 8px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #11A04A;
    font-weight: bold;
}

.route {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
    padding-top: 15px;
    letter-spacing: .2px;
    line-height: 1.4;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #e67e22;
    font-weight: bold;
}

.btn-detail {
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    list-style: none;
}

.pagination li {
    margin: 0 4px;
}

.pagination li a,
.pagination li span {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    display: block;
}

.pagination li.active span {
    background: black;
    color: white;
}

.pagination li a:hover {
    background: #eee;
}

.route {
    font-size: 14px;
    color: #000;
}

.route strong {
    font-weight: 900;
    /* hoặc 700 nếu muốn đậm hơn */
    color: #000;
}

/* IMAGE WRAP */
.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY (tối dần phía dưới) */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0));
}

/* TITLE */
.card-title {
    position: absolute;
    bottom: 0px;
    left: 15px;
    right: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    z-index: 2;
}

.price-box {
    display: flex;
    align-items: center;
}

/* dòng giá */
.price-line {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

/* giá */
.price {
    font-size: 18px;
    font-weight: bold;
    color: #842E0A;
}

/* / pers */
.price-per {
    font-size: 14px;
    color: #888;
}

.price-label {
    color: #842E0A;
}

.tag-select {
    display: flex;
    gap: 15px;
    padding: 15px 0px;
    padding-top: 0;
}

.tag-btn {
    padding: 10px 20px;
    border-radius: 20px;
    background: #ff7a00;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
    font-weight: 700 !important;
}

.tag-btn.active {
    background: #e85a2e;
    font-family: Open Sans ExtraBold;
}

.tag-close {
    display: none;
    font-weight: bold;
}

.tag-btn.active .tag-close {
    display: inline;
}

.breadcrum {
    padding-top: 25px !important;
}

.uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before {
    content: ">";
}

.semibold {
    font-weight: 600;
}

.skeleton {
    position: relative;
    overflow: hidden;
    background: #e9ecef;
    border-radius: 8px;
}

.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: skeleton-shimmer 1.2s infinite;
}

@keyframes skeleton-shimmer {
    100% {
        left: 100%;
    }
}

.header-loading-wrap {
    margin-top: 10px;
}

.header-skeleton-title {
    height: 34px;
    width: 320px;
    max-width: 60%;
    margin-bottom: 16px;
}

.header-skeleton-line {
    height: 16px;
    margin-bottom: 10px;
}

.header-skeleton-line.line-1 {
    width: 100%;
}

.header-skeleton-line.line-2 {
    width: 72%;
}

.header-skeleton-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.header-skeleton-tag {
    width: 90px;
    height: 34px;
    border-radius: 20px;
}

.tour-skeleton-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.tour-skeleton-card {
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.tour-skeleton-image {
    width: 100%;
    height: 220px;
    border-radius: 0;
}

.tour-skeleton-body {
    padding: 16px;
}

.tour-skeleton-badge {
    width: 80px;
    height: 24px;
    border-radius: 16px;
    margin-bottom: 14px;
}

.tour-skeleton-line {
    height: 14px;
    margin-bottom: 10px;
}

.tour-skeleton-line.w100 {
    width: 100%;
}

.tour-skeleton-line.w85 {
    width: 85%;
}

.tour-skeleton-line.w60 {
    width: 60%;
}

.tour-skeleton-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.tour-skeleton-price {
    width: 90px;
    height: 22px;
}

.tour-skeleton-btn {
    width: 100px;
    height: 36px;
    border-radius: 8px;
}

.pagination-skeleton {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.pagination-skeleton-item {
    width: 38px;
    height: 38px;
    border-radius: 8px;
}

.card-image::before {
    content: 'En groupe';
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    /* hiệu ứng mờ kính */
    border-bottom-left-radius: 10px;
    z-index: 2;
}

/* othertour */
.tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.card-img {
    position: relative;
}

.card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* badge */
.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

/* overlay text */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* BODY */
.card-body {
    padding: 15px;
}

/* days */
.days {
    display: inline-block;
    border: 1px solid #2B9E59;
    color: #2B9E59;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 10px;
}

/* desc */
.desc {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

/* bottom */
.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* price */
.price span {
    color: #7a2d0c;
    font-weight: 700;
    font-size: 18px;
}

/* button */
.btn {
    border: 1px solid #333;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    color: #333;
}

.btn:hover {
    background: #333;
    color: #fff;
}

/* CTA */
.cta {
    text-align: center;
    margin-top: 20px;
}

.cta-btns {
    margin-top: 10px;
}

.outline {
    border: 1px solid #2B9E59;
    color: #2B9E59;
    padding: 8px 16px;
    border-radius: 20px;
    margin: 0 5px;
    text-decoration: none;
}

.outline:hover {
    background: #2B9E59;
    color: #fff;
}

/* HERO */
.hero {
    height: 700px;
    background: url('/themes/web/img/silde/sub/banner1.jpg') center/cover no-repeat;
}

/* LEFT */
.hero-left {
    max-width: 50%;
    padding-right: 50px;
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
}

.hero-left p {
    font-size: 28px;
}

/* BOX ĐEN MỜ */
.hero-right {
    background: rgba(0, 0, 0, 0.5);
    /* 👈 nền đen xuyên thấu */
    padding: 20px;
    border-radius: 8px;

    display: flex;
    gap: 15px;
    align-items: flex-end;
    /* 👈 label trên, select dưới */
}

/* GROUP */
.form-group {
    display: flex;
    flex-direction: column;
}

/* LABEL */
.form-group label {
    color: #fff;
    /* 👈 chữ trắng */
    font-size: 16px;
    margin-bottom: 5px;
}

/* SELECT */
.form-group select {
    padding: 10px 40px 10px 10px;
    border-radius: 5px;
    border: none;
    color: #000;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    min-width: 150px;
}

/* BUTTON */
.hero-right button {
    padding: 10px 15px;
    background: #11A04A;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* SEARCH */
.search-box {
    display: flex;
    gap: 10px;
}

.search-box select,
.search-box button {
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.search-box button {
    background: #11A04A;
    color: white;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.badge {
    background: #fff;
    color: #11A04A;
    padding: 5px 8px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #11A04A;
    font-weight: bold;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #e67e22;
    font-weight: bold;
}

.btn-detail {
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    list-style: none;
}

.pagination li {
    margin: 0 4px;
}

.pagination li a,
.pagination li span {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    display: block;
}

.pagination li.active span {
    background: black;
    color: white;
}

.pagination li a:hover {
    background: #eee;
}

.route {
    font-size: 14px;
    color: #000;
}

.route strong {
    font-weight: 700;
    /* hoặc 700 nếu muốn đậm hơn */
    color: #000;
}

/* IMAGE WRAP */
.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY (tối dần phía dưới) */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0));
}

/* TITLE */
.card-title {
    position: absolute;
    bottom: 0px;
    left: 15px;
    right: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    z-index: 2;
}

.price-box {
    display: flex;
    align-items: center;
}

/* dòng giá */
.price-line {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

/* giá */
.price {
    font-size: 18px;
    font-weight: bold;
    color: #842E0A;
}

/* / pers */
.price-per {
    font-size: 16px;
    color: #888;
}

.price-label {
    color: #842E0A;
}

.tag-select {
    display: flex;
    gap: 15px;
    padding: 15px 0px;
}

.tag-btn {
    padding: 10px 20px;
    border-radius: 20px;
    background: #ff7a00;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
    font-weight: 700 !important;
}

.tag-btn.active {
    background: #e85a2e;
    font-family: Open Sans ExtraBold;
}

.tag-close {
    display: none;
    font-weight: bold;
}

.tag-btn.active .tag-close {
    display: inline;
}

.breadcrum {
    padding-top: 25px;
}

.uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before {
    content: ">";
}

.semibold {
    font-weight: 600;
}

.title-review {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin-top: 15px;
}

.review-box {
    max-width: 700px;
    margin: auto;
    /* background: #f3f3f3; */
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0px 6px 14px 0px #00000014;
}

/* avatar */
.avatar {
    width: 140px !important;
    height: 140px !important;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* rating */
.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.score {
    font-size: 18px;
    font-weight: 600;
}

.stars {
    color: #f4b400;
    font-size: 18px;
}

/* content */
.review-content,
.review-box p {
    font-size: 16px !important;
    font-style: italic !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    margin-top: 15px !important;
    line-height: 1.4 !important;
    text-align: left !important;
}

/* footer */
.footer {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #777;
}

.name {
    font-weight: 700;
    color: #555;
}

.faq-box {
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px #00000026;
    margin-bottom: 30px;
}

/* item border */
.faq-box li {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    margin: 0;
    margin-top: 0 !important;
}

/* title */
.faq-box .uk-accordion-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    position: relative;
    padding-right: 30px;
    margin-bottom: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
}

/* remove icon mặc định */
.faq-box .uk-accordion-title::before {
    display: none;
}

.faq-box .toggle-icon {
   margin-left: auto;
   margin-right: 5px;
}

/* rotate khi open */
.faq-box .uk-open .uk-accordion-title::after {
    transform: rotate(180deg);
}

/* content */
.faq-box .uk-accordion-content {
    margin-top: 15px;
    color: #444;
    line-height: 1.6;
    margin-left: 0;
    font-size: 16px;
}

.video-wrapper {
    position: relative;
    cursor: pointer;
    box-shadow: 3px 3px 22.6px 0px #00000040;
    border-radius: 10px;
}

.video-wrapper img {
    width: 100%;
    display: block;
    box-shadow: 3px 3px 22.6px 0px #00000040;
    border-radius: 10px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
}

#slideshowbgzz_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}