/* Frontend shared custom styles — extracted from blade pages */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap");

/* ========== package-details ========== */
/* ---- Hero ---- */
.pd-hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: #162b32;
}
.pd-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.pd-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.pd-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(22, 43, 50, 0.15) 0%, rgba(22, 43, 50, 0.45) 50%, rgba(22, 43, 50, 0.88) 100%),
        linear-gradient(90deg, rgba(22, 43, 50, 0.35) 0%, transparent 55%);
}
.pd-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(36px, 5vw, 64px);
    padding-top: 120px;
    animation: pdFadeUp 0.7s ease-out both;
}
.pd-hero-crumbs {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    gap: 6px 4px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}
.pd-hero-crumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    opacity: 0.55;
}
.pd-hero-crumbs a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}
.pd-hero-crumbs a:hover {
    color: #ff6666;
}
.pd-hero-crumbs .active {
    color: #ff9999;
}
.pd-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}
.pd-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.pd-chip i {
    color: #ff6666;
}
.pd-hero-title {
    font-weight: 700;
    font-size: clamp(28px, 4.5vw, 48px);
    line-height: 1.15;
    color: #fff;
    margin: 0 0 12px;
    max-width: 18ch;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.pd-hero-location {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}
.pd-hero-location i {
    color: #ff6666;
    margin-right: 4px;
}

@keyframes pdFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Meta cards ---- */
.tour-package-details .pd-header .pd-top .pd-single-info {
    height: 100%;
    padding: 16px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eef1f3;
    box-shadow: 0 10px 28px rgba(22, 43, 50, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tour-package-details .pd-header .pd-top .pd-single-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(255, 102, 102, 0.12);
}
.tour-package-details .pd-header .pd-top .pd-single-info .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 102, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-top: 0;
    flex-shrink: 0;
}
.tour-package-details .pd-header .pd-top .pd-single-info .info-icon img {
    max-width: 28px;
}

.pd-destinations {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafb 0%, #fff 100%);
    border: 1px solid #eef1f3;
}
.pd-destinations-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a858b;
    margin-bottom: 10px;
}
.pd-destinations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pd-destination-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #162b32;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* ---- Tabs ---- */
.tour-package-details .package-details-tabs .tab-switchers {
    margin-bottom: 36px;
    padding: 6px;
    border-radius: 999px;
    background: #f4f6f7;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px !important;
}
.tour-package-details .package-details-tabs .tab-switchers .nav-item .nav-link {
    border-width: 0;
    background: transparent;
    font-size: 15px;
    padding: 10px 20px;
}
.tour-package-details .package-details-tabs .tab-switchers .nav-item .nav-link:hover,
.tour-package-details .package-details-tabs .tab-switchers .nav-item .nav-link.active {
    background: #ff6666;
    box-shadow: 0 8px 20px rgba(255, 102, 102, 0.28);
}

.tour-package-details .tab-pane .d-subtitle {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 8px;
}
.tour-package-details .tab-pane .d-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: #ff6666;
}

.pd-plan-intro {
    color: #666;
    font-size: 15px;
    margin: 8px 0 8px;
}

/* ---- Description HTML ---- */
.tour-package-details .package-description,
.tour-package-details .plan-info {
    color: #666666;
    font-size: 16px;
    line-height: 28px;
}
.tour-package-details .package-description > *:first-child,
.tour-package-details .plan-info > *:first-child,
.tour-package-details .plan-info > div > *:first-child {
    margin-top: 0;
}
.tour-package-details .package-description p,
.tour-package-details .plan-info p {
    margin: 0 0 0.85rem;
    padding-top: 0;
    color: #666666;
}
.tour-package-details .package-description ul,
.tour-package-details .package-description ol,
.tour-package-details .plan-info ul,
.tour-package-details .plan-info ol {
    margin: 0 0 1rem;
    padding: 0.25rem 0 0.25rem 0;
    list-style: none;
}
.tour-package-details .package-description ol,
.tour-package-details .plan-info ol {
    list-style: decimal;
    padding-left: 1.35rem;
}
.tour-package-details .package-description ul li,
.tour-package-details .plan-info ul li {
    position: relative;
    padding: 0.2rem 0 0.2rem 1.75rem;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #666666 !important;
}
.tour-package-details .package-description ul li::before,
.tour-package-details .plan-info ul li::before {
    content: "\eca4";
    font-family: boxicons !important;
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: #162b32;
    font-size: 1.15rem;
    font-weight: normal;
    line-height: 1.5;
}
.tour-package-details .package-description ol li,
.tour-package-details .plan-info ol li {
    padding: 0.2rem 0;
    color: #666666 !important;
    font-weight: 500;
}
.tour-package-details .package-description li p,
.tour-package-details .plan-info li p {
    display: inline;
    margin: 0;
    padding: 0;
    color: inherit;
}
.tour-package-details .package-description strong,
.tour-package-details .plan-info strong {
    color: #2d373c;
    font-weight: 700;
}
.tour-package-details .package-description table,
.tour-package-details .plan-info table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(22, 43, 50, 0.06);
}
.tour-package-details .package-description table td,
.tour-package-details .package-description table th,
.tour-package-details .plan-info table td,
.tour-package-details .plan-info table th {
    border: 1px solid #e8ecef;
    padding: 12px 16px;
    vertical-align: top;
    color: #666666;
}
.tour-package-details .package-description table th,
.tour-package-details .plan-info table th,
.tour-package-details .package-description table tr td:first-child,
.tour-package-details .plan-info table tr td:first-child {
    background: #f8fafb;
    color: #2d373c;
    font-weight: 700;
    width: 32%;
    white-space: nowrap;
}
.tour-package-details .package-description table p,
.tour-package-details .plan-info table p {
    margin: 0;
}

/* ---- Featured images ---- */
.tour-package-details .package-info-tab .p-info-featured-img .featured-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(22, 43, 50, 0.1);
}
.tour-package-details .package-info-tab .p-info-featured-img .featured-img img {
    transition: transform 0.45s ease;
}
.tour-package-details .package-info-tab .p-info-featured-img .featured-img:hover img {
    transform: scale(1.04);
}

/* ---- Facts + include/exclude ---- */
.pd-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 28px 0 8px;
}
.pd-fact-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eef1f3;
    box-shadow: 0 8px 24px rgba(22, 43, 50, 0.05);
}
.pd-fact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 102, 102, 0.12);
    color: #ff6666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.pd-fact-card h6 {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7a858b;
}
.pd-fact-card p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    font-weight: 600;
    color: #2d373c !important;
}

.pd-include-exclude {
    margin-top: 24px;
}
.pd-ie-card {
    height: 100%;
    border-radius: 14px;
    padding: 22px 22px 18px;
    border: 1px solid #eef1f3;
    background: #fff;
    box-shadow: 0 10px 28px rgba(22, 43, 50, 0.06);
}
.pd-ie-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #2d373c;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef1f3;
}
.pd-ie-included h4 i { color: #2a9d6a; }
.pd-ie-excluded h4 i { color: #ff6666; }
.pd-ie-body {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
}
.pd-ie-body ul,
.pd-ie-body ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pd-ie-body li,
.pd-ie-body p {
    position: relative;
    margin: 0 0 8px;
    padding: 0 0 0 1.4rem;
    color: #555 !important;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.55;
}
.pd-ie-body p:last-child,
.pd-ie-body li:last-child {
    margin-bottom: 0;
}
.pd-ie-included .pd-ie-body p::before {
    content: "\f26b";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #2a9d6a;
    font-size: 0.95rem;
}

.pd-ie-excluded .pd-ie-body p::before {
    content: "\f62a";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #ff6666;
    font-size: 0.95rem;
}
.pd-ie-body br + br { display: none; }

/* ---- Itinerary ---- */
.tour-package-details .package-plan-tab .plans-accordion .plans-accordion-single {
    margin-top: 20px;
}
.tour-package-details .package-plan-tab .plans-accordion .plans-accordion-single .accordion-button {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.tour-package-details .package-plan-tab .plans-accordion .plans-accordion-single .accordion-button:not(.collapsed) {
    box-shadow: 0 12px 30px rgba(255, 102, 102, 0.15);
}

/* ---- Gallery ---- */
.tour-package-details .package-gallary-tab .package-gallary-item {
    border-radius: 12px;
    position: relative;
}
.tour-package-details .package-gallary-tab .package-gallary-item a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.pd-gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 43, 50, 0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
    color: #fff;
    font-size: 28px;
}
.tour-package-details .package-gallary-tab .package-gallary-item a:hover .pd-gallery-zoom {
    opacity: 1;
}

/* ---- Map ---- */
.pd-map-frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eef1f3;
    box-shadow: 0 12px 32px rgba(22, 43, 50, 0.08);
}
.pd-map-frame .mapouter {
    height: auto !important;
    padding-top: 0 !important;
}
.pd-map-frame iframe {
    height: 480px !important;
    display: block;
}

/* ---- Sidebar ---- */
.pd-sidebar-sticky {
    position: sticky;
    top: 110px;
}
.pd-book-widget {
    overflow: hidden;
    border-radius: 12px !important;
    box-shadow: 0 16px 40px rgba(22, 43, 50, 0.12) !important;
}
.pd-book-widget .widget-title {
    background: linear-gradient(135deg, #162b32 0%, #1e3a44 100%) !important;
    border-radius: 0 !important;
    padding: 18px 22px !important;
}
.pd-book-perks {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}
.pd-book-perks li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #45555c;
    margin-bottom: 8px;
}
.pd-book-perks li i {
    color: #2a9d6a;
    margin-top: 2px;
}
.pd-book-note {
    font-size: 14px;
    color: #7a858b;
    line-height: 1.5;
}
.pd-book-widget .submite-btn a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px !important;
    background: #ff6666;
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-align: center;
    box-shadow: 0 10px 24px rgba(255, 102, 102, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.pd-book-widget .submite-btn a:hover {
    background: #ef5656;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 102, 102, 0.38);
    color: #fff !important;
}

.package-sidebar .widget-recent-package-entries .package-sm {
    transition: transform 0.2s ease;
}
.package-sidebar .widget-recent-package-entries .package-sm:hover {
    transform: translateX(4px);
}
.package-sidebar .widget-recent-package-entries .thumb {
    border-radius: 8px;
    overflow: hidden;
}

/* ---- Mobile book bar ---- */
.pd-mobile-book {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid #e8ecef;
    box-shadow: 0 -8px 28px rgba(22, 43, 50, 0.12);
}
.pd-mobile-book-price span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #7a858b;
}
.pd-mobile-book-price strong {
    font-size: 22px;
    color: #ff6666;
    font-weight: 800;
}
.pd-mobile-book-price small {
    color: #7a858b;
    font-weight: 500;
}
.pd-mobile-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #ff6666;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(255, 102, 102, 0.3);
}
.package-details-wrapper.pb-80 {
    padding-bottom: 80px;
}

@media (max-width: 991.98px) {
    .pd-hero {
        height: 380px;
    }
    .pd-hero-title {
        max-width: none;
    }
    .pd-sidebar-sticky {
        position: static;
    }
    .package-details-wrapper.pb-80 {
        padding-bottom: 110px;
    }
    .tour-package-details .package-details-tabs .tab-switchers {
        border-radius: 16px;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pd-hero-content {
        animation: none;
    }
}

/* ========== country ========== */
.country-editorial {
    --ce-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --ce-muted: #f3f3f3;
    --ce-white: #ffffff;
    --ce-text: #1a1a1a;
    --ce-text-soft: #555;
    --ce-border: #1a1a1a;
    --ce-row-height: 420px;
}

.ce-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.ce-row--reverse .ce-panel {
    order: 1;
}

.ce-row--reverse .ce-media {
    order: 2;
}

.ce-panel {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--ce-row-height);
    background: var(--ce-white);
    overflow: hidden;
}

.ce-panel--muted {
    background: var(--ce-muted);
}

.ce-panel:not(.ce-panel--quote) {
    align-items: stretch;
}

.ce-panel-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: clamp(2rem, 4vw, 3rem) clamp(2.5rem, 6vw, 5rem);
}

.ce-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ce-text-soft);
}

.ce-heading {
    margin: 0 0 1.5rem;
    font-family: var(--ce-serif);
    font-size: clamp(2.2rem, 3vw, 3.4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--ce-text);
    text-transform: uppercase;
}

.ce-body {
    flex: 1;
    color: var(--ce-text-soft);
    font-size: 1rem;
    line-height: 1.85;
}

.ce-body p {
    margin: 0;
}

.ce-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.ce-btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border: 1px solid var(--ce-border);
    background: transparent;
    color: var(--ce-text);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.ce-btn:hover {
    background: var(--ce-text);
    color: #fff;
}

.ce-media {
    position: relative;
    overflow: hidden;
    height: var(--ce-row-height);
}

.ce-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ce-media-label {
    position: absolute;
    top: clamp(1.5rem, 3vw, 2.5rem);
    right: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--ce-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.ce-leaf {
    position: absolute;
    right: 8%;
    bottom: 8%;
    width: clamp(90px, 12vw, 140px);
    height: auto;
    color: rgba(255, 255, 255, 0.55);
    pointer-events: none;
    z-index: 1;
}

.ce-panel--muted .ce-leaf {
    color: rgba(0, 0, 0, 0.06);
}

.ce-gallery-section {
    padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.ce-gallery-title {
    margin: 0 0 clamp(2rem, 4vw, 3rem);
    font-family: var(--ce-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ce-text);
}

.ce-media--gallery {
    position: relative;
}

.ce-gallery-slider {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.ce-gallery-slider::-webkit-scrollbar {
    display: none;
}

.ce-gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.ce-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ce-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.ce-gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.ce-gallery-dot.is-active {
    background: #fff;
}

.ce-panel--quote {
    align-items: center;
}

.ce-quote {
    margin: 0;
}

.ce-quote p {
    margin: 0 0 1.25rem;
    font-family: var(--ce-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-style: italic;
    line-height: 1.45;
    color: var(--ce-text);
}

.ce-quote cite {
    font-style: normal;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--ce-text-soft);
}

@media (max-width: 991px) {
    .ce-row,
    .ce-row--reverse {
        grid-template-columns: 1fr;
    }

    .ce-row--reverse .ce-panel,
    .ce-row--reverse .ce-media {
        order: unset;
    }

    .ce-panel {
        height: auto;
    }

    .ce-panel-inner {
        height: auto;
    }
}

/* ========== blog-details ========== */
.blog-comments-area {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(45, 55, 60, 0.08);
}
.blog-comments-area .text-accent { color: #ff6666; }

.comment-section--enhanced {
    padding: 0 0 40px;
}
.comment-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}
.comment-section__title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}
.comment-section__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6666 0%, #ff9999 100%);
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 8px 20px rgba(255, 72, 56, 0.25);
}
.comment-section--enhanced h4 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d373c;
    text-decoration: none !important;
}
.comment-count-badge {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: rgba(255, 72, 56, 0.1);
    color: #ff6666;
    font-weight: 700;
    font-size: 1.1rem;
}

.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-card {
    display: flex;
    gap: 18px;
    margin-top: 0;
    margin-bottom: 18px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid rgba(45, 55, 60, 0.08);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(45, 55, 60, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.comment-card:hover {
    box-shadow: 0 8px 32px rgba(45, 55, 60, 0.1);
    transform: translateY(-2px);
}
.comment-card--reply {
    margin-left: 28px;
    margin-bottom: 14px;
    background: #fafbfc;
    border-left: 3px solid #ff6666;
    border-radius: 0 14px 14px 0;
}
.comment-avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(145deg, #2d373c 0%, #4a5a63 100%);
    box-shadow: 0 4px 12px rgba(45, 55, 60, 0.2);
}
.comment-card--reply .comment-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.85rem;
    background: linear-gradient(145deg, #ff6666 0%, #ff9999 100%);
}
.comment-avatar--photo {
    background: #eee;
    overflow: hidden;
    padding: 0;
}
.comment-avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comment-image-upload { margin-top: 4px; }
.comment-image-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 28px 20px;
    border: 2px dashed rgba(45, 55, 60, 0.15);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin: 0;
}
.comment-image-dropzone:hover {
    border-color: #ff6666;
    background: rgba(255, 72, 56, 0.04);
}
.comment-image-dropzone i {
    font-size: 1.75rem;
    color: #ff6666;
}
.comment-image-dropzone span {
    font-weight: 600;
    color: #2d373c;
    font-size: 0.95rem;
}
.comment-image-dropzone small {
    color: #888;
    font-size: 0.8rem;
}
.comment-image-preview {
    position: relative;
    width: 88px;
    height: 88px;
    margin-bottom: 12px;
}
.comment-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(45, 55, 60, 0.15);
}
.comment-image-remove {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: #ff6666;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(255, 72, 56, 0.4);
}
.comment-image-upload.has-preview .comment-image-dropzone { display: none; }
.comment-image-upload.has-preview .comment-image-preview { display: block !important; }
.comment-card__body { flex: 1; min-width: 0; padding-top: 0 !important; margin-top: 0 !important; }
.comment-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.comment-card .info h6 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #2d373c;
}
.comment-date {
    font-size: 0.85rem;
    color: #888;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: none;
}
.comment-date__sep { opacity: 0.5; }
.comment-stars { margin: 0; padding: 0; list-style: none; display: flex; gap: 2px; }
.comment-stars li i { font-size: 0.95rem; color: #ffb400; }
.comment-stars li i.bi-star { color: #ddd; }
.comment-message {
    margin: 12px 0 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #555;
    text-transform: none;
}

.comment-empty-state {
    text-align: center;
    padding: 48px 24px;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
    border: 1px dashed rgba(45, 55, 60, 0.15);
    border-radius: 14px;
}
.comment-empty-state i {
    font-size: 2.5rem;
    color: #ff6666;
    opacity: 0.7;
    display: block;
    margin-bottom: 12px;
}
.comment-empty-state p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.comment-form--enhanced {
    margin-top: 0 !important;
    padding: 36px 40px 40px;
    border-radius: 16px;
    border: 1px solid rgba(45, 55, 60, 0.06);
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: 0 12px 40px rgba(86, 68, 169, 0.08);
    position: relative;
    overflow: hidden;
}
.comment-form--enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6666, #ffaaaa);
}
.comment-form__header {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.comment-form__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 72, 56, 0.1);
    color: #ff6666;
    font-size: 1.4rem;
}
.comment-form--enhanced h4 {
    margin: 0 0 6px;
    font-size: 1.5rem;
}
.comment-form--enhanced > .comment-form__header p,
.comment-form__header p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.comment-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.comment-alert--success {
    background: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.2);
    color: #198754;
}
.comment-alert--success i { font-size: 1.25rem; }

.comment-field label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2d373c;
    margin-bottom: 8px;
    display: block;
}
.comment-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.comment-input-wrap > i {
    position: absolute;
    left: 16px;
    color: #aaa;
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}
.comment-input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 44px !important;
    border: 1px solid rgba(45, 55, 60, 0.12) !important;
    border-radius: 10px !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.comment-input-wrap input:focus {
    border-color: #ff6666 !important;
    box-shadow: 0 0 0 3px rgba(255, 72, 56, 0.12) !important;
    outline: none;
}
.comment-input-wrap--textarea textarea {
    width: 100%;
    padding: 14px 16px !important;
    border: 1px solid rgba(45, 55, 60, 0.12) !important;
    border-radius: 10px !important;
    min-height: 130px;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.comment-input-wrap--textarea textarea:focus {
    border-color: #ff6666 !important;
    box-shadow: 0 0 0 3px rgba(255, 72, 56, 0.12) !important;
    outline: none;
}
.field-error { color: #dc3545; font-size: 0.85rem; margin-top: 6px; display: block; }

.comment-rating-block {
    margin-top: 8px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(45, 55, 60, 0.08);
}
.comment-rating-block > label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}
.comment-rating-stars {
    margin: 0 !important;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 6px;
}
.comment-rating-star {
    border: none;
    background: transparent;
    padding: 4px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.15s;
}
.comment-rating-star:hover { transform: scale(1.15); }
.comment-rating-star i {
    font-size: 1.65rem !important;
    color: #ddd;
    transition: color 0.15s;
}
.comment-rating-star.is-active i,
.comment-rating-star.is-hover i { color: #ffb400; }
.comment-rating-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #888;
    min-height: 1.25em;
}

.comment-form__actions { margin-top: 28px; }
.comment-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6666 0%, #e65555 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 72, 56, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.comment-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 72, 56, 0.4);
    color: #fff;
}
.comment-submit-btn i { font-size: 1rem; }

@media (max-width: 767px) {
    .comment-form--enhanced { padding: 28px 20px 32px; }
    .comment-card { padding: 18px 16px; gap: 14px; }
    .comment-card--reply { margin-left: 12px; }
    .comment-section__header { flex-wrap: wrap; }
}

/* ========== package-sidebar ========== */
.package-page-search {
    margin-top: 0;
    padding: 72px 0 32px;
    background: linear-gradient(180deg, #f5f7f8 0%, #ffffff 100%);
}

.package-page-search .multi-main-searchber {
    border: 1px solid rgba(22, 43, 50, 0.06);
}

.package-page-search .search-box-single {
    border-radius: 8px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.package-page-search .search-box-single:focus-within {
    border-color: #ff6666;
    box-shadow: 0 0 0 3px rgba(255, 72, 56, 0.1);
}

.package-page-search .main-form-submit button {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

@media (max-width: 991.98px) {
    .package-page-search {
        padding: 48px 0 24px;
    }

    .package-page-search .main-form-submit {
        min-height: 52px;
    }
}

.package-search-results.is-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.package-sidebar .country-filter-list,
.package-sidebar .destination-filter-list,
.package-sidebar .widget-price ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.package-sidebar .package-widget input[type="checkbox"].form-check-input,
.package-sidebar .package-widget input[type="checkbox"].package-filter-input,
.package-sidebar .widget-duration .deration-check input[type="checkbox"],
.package-sidebar .widget-tour-categoris .category-check input[type="checkbox"],
.package-sidebar .widget-price .price-check input[type="checkbox"] {
    border-radius: 50%;
}

.package-sidebar .country-filter-item + .country-filter-item {
    margin-top: 12px;
}

.package-sidebar .country-filter-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-sidebar .country-filter-row .form-check-input {
    flex-shrink: 0;
}

.package-sidebar .country-filter-label {
    flex: 1;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    color: #2d373c;
    cursor: pointer;
}

.package-sidebar .country-filter-expand {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 72, 56, 0.08);
    color: #ff6666;
    cursor: pointer;
}

.package-sidebar .country-filter-expand i {
    transition: transform 0.2s ease;
}

.package-sidebar .country-filter-expand[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.package-sidebar .destination-filter-list {
    margin-top: 10px;
    padding-left: 28px;
}

.package-sidebar .destination-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.package-sidebar .destination-check:first-child {
    margin-top: 0;
}

.package-sidebar .destination-check label,
.package-sidebar .price-check label {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
    color: #2d373c;
    cursor: pointer;
}

.package-sidebar .price-check {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.package-sidebar .price-check:first-child {
    margin-top: 0;
}

.package-sidebar .price-check input {
    height: 18px;
    width: 18px;
    margin: 0 15px 0 0;
}

.package-sidebar .price-check input:checked,
.package-sidebar .destination-check input:checked,
.package-sidebar .country-filter-row .form-check-input:checked {
    background-color: #ff6666;
    border-color: #ff6666;
}

.package-mobile-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid rgba(22, 43, 50, 0.08);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(22, 43, 50, 0.06);
}

.package-filter-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(22, 43, 50, 0.12);
    border-radius: 8px;
    background: #fff;
    color: #2d373c;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.package-filter-open-btn i {
    color: #ff6666;
    font-size: 16px;
}

.package-filter-open-btn:hover,
.package-filter-open-btn:focus {
    border-color: #ff6666;
    color: #ff6666;
    box-shadow: 0 0 0 3px rgba(255, 72, 56, 0.1);
}

.package-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ff6666;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.package-result-summary {
    font-size: 14px;
    color: #667781;
    font-weight: 500;
}

.package-mobile-filter-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.package-filters-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.package-filter-reset-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1px solid rgba(22, 43, 50, 0.12);
    border-radius: 8px;
    background: #fff;
    color: #667781;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.package-filter-reset-btn i {
    font-size: 15px;
}

.package-filter-reset-btn:hover,
.package-filter-reset-btn:focus {
    border-color: #ff6666;
    color: #ff6666;
    background: rgba(255, 72, 56, 0.04);
}

.package-filter-reset-btn-block {
    width: 100%;
}

.package-search-results .package-cards-grid {
    align-items: stretch;
}

.package-search-results .package-card-col {
    display: flex;
}

.package-search-results .package-card-alpha {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.package-search-results .package-card-alpha .package-thumb img {
    aspect-ratio: 370 / 250;
    object-fit: cover;
    height: auto;
}

.package-search-results .package-card-alpha .package-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-search-results .package-card-alpha .package-card-body > .p-card-info {
    min-height: calc(1.43em * 2);
    margin-bottom: 8px;
}

.package-search-results .package-card-alpha .package-card-body > .p-card-info span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.43;
}

.package-search-results .package-card-alpha .p-card-title {
    margin-bottom: 0;
    padding-top: 0 !important;
    flex: 1 0 auto;
}

.package-search-results .package-card-alpha .p-card-title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.43;
    min-height: calc(1.43em * 2);
    color: inherit;
}

.package-search-results .package-card-alpha .p-card-bottom {
    margin-top: auto;
    padding-top: 16px;
    gap: 8px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .package-search-results .package-card-alpha .package-card-body {
        padding: 22px 18px;
    }

    .package-search-results .package-card-alpha .p-card-title a {
        font-size: 16px;
    }

    .package-search-results .package-card-alpha .p-card-bottom .book-btn a {
        font-size: 12px;
        padding: 7px 8px;
        white-space: nowrap;
    }

    .package-search-results .package-card-alpha .p-card-bottom .p-card-info h6 {
        font-size: 15px;
    }
}

@media (max-width: 1199.98px) {
    .package-sidebar-wrapper {
        padding-top: 24px !important;
    }

    .package-mobile-filter-bar {
        flex-wrap: wrap;
    }

    .package-search-results .package-cards-grid {
        --bs-gutter-y: 1rem;
    }

    .package-filter-drawer-wrapper {
        position: fixed;
        inset: 0;
        z-index: 1050;
        background: rgba(45, 55, 60, 0.55);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .package-filter-drawer-wrapper.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .package-filter-drawer-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: min(88vw, 360px);
        height: 100%;
        background: #fff;
        box-shadow: 3px 0 24px rgba(22, 43, 50, 0.12);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .package-filter-drawer-wrapper.is-open .package-filter-drawer-panel {
        transform: translateX(0);
    }

    .package-filter-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 18px 20px;
        border-bottom: 1px solid rgba(22, 43, 50, 0.08);
        flex-shrink: 0;
    }

    .package-filter-drawer-header h5 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #2d373c;
    }

    .package-filter-close-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #ff6666;
        color: #fff;
        cursor: pointer;
    }

    .package-filter-drawer-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px 20px 24px;
    }

    .package-filter-drawer-body .package-widget.mt-30:first-child,
    .package-filter-drawer-body .package-widget:first-child {
        margin-top: 12px !important;
    }

    .package-filter-drawer-footer {
        flex-shrink: 0;
        padding: 16px 20px 20px;
        border-top: 1px solid rgba(22, 43, 50, 0.08);
        background: #fff;
    }

    .package-sidebar .package-filter-input,
    .package-sidebar .form-check-label {
        touch-action: manipulation;
    }

    .package-sidebar .price-check,
    .package-sidebar .destination-check,
    .package-sidebar .deration-check,
    .package-sidebar .category-check,
    .package-sidebar .country-filter-row {
        min-height: 44px;
    }

    body.package-filter-open {
        overflow: hidden;
    }
}

@media (max-width: 991.98px) {
    .package-search-results .package-card-alpha .p-card-title a {
        font-size: 17px;
    }
}

/* ========== contact ========== */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-alert ul {
    padding-left: 1.1rem;
}
.contact-alert--success {
    background: #ecfdf3;
    border: 1px solid #86efac;
    color: #166534;
}
.contact-alert--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
.contact-alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
#chartdiv {
    width: 100%;
    height: 600px;
}

/* ========== destination ========== */
.eatrav-destinations-page {
    --eatrav-dest-radius: 20px;
}

.eatrav-destinations-head {
    margin-bottom: 3.5rem;
}

.eatrav-wave-svg {
    width: 72px;
    height: auto;
    overflow: visible;
    transform: rotateX(180deg);
    margin: 0 auto 1.25rem;
    display: block;
}

.eatrav-wave-svg path {
    fill: none;
    stroke: var(--c-primary);
    stroke-width: 24;
    stroke-linecap: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: eatravWaveDraw 4s ease forwards;
}

@keyframes eatravWaveDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.eatrav-destinations-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.eatrav-country-section + .eatrav-country-section {
    margin-top: 4.5rem;
    padding-top: 4.5rem;
    border-top: 1px solid #eee;
}

.eatrav-country-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.eatrav-country-flag {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.eatrav-country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eatrav-country-flag-fallback {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-tertiary);
}

.eatrav-country-info {
    min-width: 0;
}

.eatrav-country-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.eatrav-country-count {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    background: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.eatrav-country-description {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: 0.75rem;
}

.eatrav-country-description p:last-child {
    margin-bottom: 0;
}

.eatrav-dest-card .ba_taxonomy-item {
    border-radius: var(--eatrav-dest-radius);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.eatrav-dest-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.eatrav-dest-card .thumbnail-location {
    position: relative;
    background: #f9f9f9;
    overflow: hidden;
    padding-top: 126.83%;
    border-bottom-right-radius: calc(5 * var(--eatrav-dest-radius));
    transition: all 0.5s ease;
}

.eatrav-dest-card .thumbnail-location img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.eatrav-dest-card:hover .thumbnail-location img {
    transform: scale(1.05);
}

.eatrav-dest-card .content-location {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    border-bottom-left-radius: var(--eatrav-dest-radius);
    border-bottom-right-radius: calc(5 * var(--eatrav-dest-radius));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 22px);
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.5s ease;
}

.eatrav-dest-card .location-count {
    margin-bottom: 0.625rem;
    padding: 0.3125rem 0.75rem;
    border-radius: 30px;
    background: #fff;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.4;
    width: fit-content;
}

.eatrav-dest-card .content-main-location {
    display: flex;
    gap: 0.625rem;
    align-items: flex-end;
    justify-content: space-between;
}

.eatrav-dest-card .title-location {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.eatrav-dest-card .button-location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eatrav-dest-card .button-location i {
    color: #fff;
    font-size: 2.25rem;
    line-height: 1;
}

.eatrav-dest-card:hover .button-location {
    opacity: 1;
}

.eatrav-dest-card:hover .ba_taxonomy-item {
    border-radius: var(--eatrav-dest-radius);
}

.eatrav-dest-card:hover .thumbnail-location,
.eatrav-dest-card:hover .content-location {
    border-bottom-right-radius: var(--eatrav-dest-radius);
}

@media (max-width: 767px) {
    .eatrav-country-header {
        gap: 1rem;
    }

    .eatrav-country-flag {
        width: 56px;
        height: 56px;
    }

    .eatrav-dest-card .content-location {
        padding: 1.75rem 1.25rem;
    }
}

/* ========== car-rental ========== */
.car-rental-wrapper {
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.car-rental-content h2,
.car-rental-section-title {
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #2d373c;
    line-height: 1.25;
    margin-bottom: 14px;
}
.car-rental-content p,
.car-rental-section-subtitle {
    color: #5c5c5c;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.car-rental-content img {
    width: 100%;
    object-fit: cover;
}
.car-rental-content ul,
.car-rental-content ol {
    margin: 0 0 1rem 1.25rem;
    padding-left: 1rem;
    list-style: revert;
}
.car-rental-content li {
    margin-bottom: 0.5rem;
}
.car-rental-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(45, 55, 60, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 55, 60, 0.08);
    display: flex;
    flex-direction: column;
}
.car-rental-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #eef2f7;
}
.car-rental-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.car-rental-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 3rem;
}
.car-rental-card__price {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: rgba(45, 55, 60, 0.88);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}
.car-rental-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.car-rental-card__body h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: #2d373c;
}
.car-rental-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: #64748b;
    font-size: 13px;
}
.car-rental-card__meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.car-rental-card__body p {
    color: #5c5c5c;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}
.car-rental-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.car-rental-card__features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    color: #475569;
    font-size: 13px;
}
.car-rental-card__features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6666;
}
.car-rental-select-btn {
    margin-top: auto;
    width: 100%;
    border: 1px solid #ff6666;
    background: transparent;
    color: #ff6666;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 700;
    transition: all 0.2s ease;
}
.car-rental-select-btn:hover,
.car-rental-select-btn.is-selected {
    background: #ff6666;
    color: #fff;
}
.car-rental-form-wrap h4 {
    margin-bottom: 6px;
}
.car-rental-form-wrap > p {
    margin-bottom: 10px;
}
.car-rental-form-wrap .custom-input-group input,
.car-rental-form-wrap .custom-input-group select,
.car-rental-form-wrap .custom-input-group textarea {
    width: 100%;
    display: block;
}
.car-rental-form-wrap .custom-input-group textarea {
    margin-top: 14px;
    min-height: 130px;
    resize: vertical;
}
.car-rental-select-field {
    position: relative;
    margin-top: 14px;
}
.car-rental-select-field select {
    width: 100%;
    margin-top: 0;
    padding-right: 44px;
    cursor: pointer;
}
.car-rental-select-field i {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #ff6666;
    pointer-events: none;
    z-index: 1;
}
.car-rental-form-wrap .submite-btn button {
    width: 100%;
    display: block;
}
.car-rental-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.car-rental-alert ul {
    padding-left: 1.1rem;
}
.car-rental-alert--success {
    background: #ecfdf3;
    border: 1px solid #86efac;
    color: #166534;
}
.car-rental-alert--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
.car-rental-alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.mt-80 {
    margin-top: 80px;
}

/* ========== city & airport transfer ========== */
.transfer-type-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 8px;
}
.transfer-type-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: 1px solid rgba(45, 55, 60, 0.12);
    background: #fff;
    color: #2d373c;
    border-radius: 10px;
    padding: 14px 16px;
    font-weight: 700;
    transition: all 0.2s ease;
}
.transfer-type-tab:hover {
    border-color: #ff6666;
    color: #ff6666;
}
.transfer-type-tab.is-active {
    background: #ff6666;
    border-color: #ff6666;
    color: #fff;
}
.transfer-cars-empty {
    padding: 2rem 1rem;
    color: #64748b;
}
.transfer-form-wrap .custom-input-group label {
    display: block;
}
@media (max-width: 575px) {
    .transfer-type-tabs {
        grid-template-columns: 1fr;
    }
}

/* ========== b2b ========== */
.b2b-wrapper {
    background: linear-gradient(180deg, #fff 0%, #faf8ff 100%);
}
.b2b-intro .b2b-badge {
    display: inline-block;
    background: rgba(255, 72, 56, 0.1);
    color: #ff6666;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}
.b2b-intro h2 {
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #2d373c;
    line-height: 1.25;
    margin-bottom: 14px;
}
.b2b-intro p {
    color: #5c5c5c;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}
.b2b-benefit-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(255, 72, 56, 0.12);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 8px 24px rgba(86, 68, 169, 0.06);
    text-align: center;
}
.b2b-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff6666 0%, #ff9999 100%);
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 14px;
}
.b2b-benefit-card strong {
    display: block;
    color: #2d373c;
    font-size: 17px;
    margin-bottom: 8px;
}
.b2b-benefit-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 0;
}
.b2b-form-wrap h4 {
    margin-bottom: 6px;
}
.b2b-form-wrap > p {
    margin-bottom: 10px;
}
.b2b-form-wrap .custom-input-group input,
.b2b-form-wrap .custom-input-group select,
.b2b-form-wrap .custom-input-group textarea {
    width: 100%;
    display: block;
}
.b2b-form-wrap .custom-input-group textarea {
    margin-top: 14px;
    min-height: 150px;
    resize: vertical;
}
.b2b-select-field {
    position: relative;
    margin-top: 14px;
}
.b2b-select-field select {
    width: 100%;
    margin-top: 0;
    padding-right: 44px;
    cursor: pointer;
}
.b2b-select-field i {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #ff6666;
    pointer-events: none;
    z-index: 1;
}
.b2b-form-wrap .submite-btn button {
    width: 100%;
    display: block;
}
.b2b-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.b2b-alert ul {
    padding-left: 1.1rem;
}
.b2b-alert--success {
    background: #ecfdf3;
    border: 1px solid #86efac;
    color: #166534;
}
.b2b-alert--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
.b2b-alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.mt-80 {
    margin-top: 80px;
}

/* ========== about ========== */
.about-content h2 {
        margin-bottom: 1rem;
    }
    .about-content img {
        width: 100%;
        object-fit: cover;
    }
    .about-content p {
        margin: 0 0 1rem;
    }
    .about-content ul,
    .about-content ol {
        margin: 0 0 1rem 1.25rem;
        padding-left: 1rem;
        list-style: revert;
    }
    .about-content li {
        margin-bottom: 0.5rem;
    }
    .about-content br {
        display: block;
        content: "";
        margin-top: 0.5rem;
    }

/* ========== destination-details ========== */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-alert ul {
    padding-left: 1.1rem;
}
.contact-alert--success {
    background: #ecfdf3;
    border: 1px solid #86efac;
    color: #166534;
}
.contact-alert--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
.contact-alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.destination-date-group i {
    cursor: pointer;
}
#destination-lead-form .custom-input-group input#planned_tour_date_input {
    padding-right: 40px;
    cursor: pointer;
    background: #fff;
}
.daterangepicker {
    z-index: 99999 !important;
}

/* ========== auth ========== */
.auth-page {
        min-height: calc(100vh - 92px);
        padding: 72px 0;
        display: flex;
        align-items: center;
        background:
            radial-gradient(circle at 10% 15%, rgba(255, 102, 102, .14), transparent 28%),
            radial-gradient(circle at 90% 80%, rgba(22, 43, 50, .1), transparent 30%),
            #f7f9fa;
    }

    .auth-shell {
        max-width: 1040px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        overflow: hidden;
        background: #fff;
        border: 1px solid rgba(22, 43, 50, .08);
        border-radius: 24px;
        box-shadow: 0 24px 70px rgba(22, 43, 50, .12);
    }

    .auth-visual {
        position: relative;
        padding: 56px 48px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
        color: #fff;
        background: linear-gradient(145deg, #162b32 0%, #254650 100%);
    }

    .auth-visual::before,
    .auth-visual::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 102, 102, .16);
    }

    .auth-visual::before {
        width: 260px;
        height: 260px;
        right: -110px;
        top: -90px;
    }

    .auth-visual::after {
        width: 180px;
        height: 180px;
        left: -75px;
        bottom: -60px;
    }

    .auth-visual-content,
    .auth-benefits {
        position: relative;
        z-index: 1;
    }

    .auth-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 22px;
        color: #ffb1b1;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .auth-visual h2 {
        margin-bottom: 16px;
        color: #fff;
        font-size: clamp(31px, 4vw, 44px);
        line-height: 1.15;
    }

    .auth-visual p {
        max-width: 360px;
        margin: 0;
        color: rgba(255, 255, 255, .72);
        font-size: 16px;
        line-height: 1.75;
    }

    .auth-benefits {
        margin: 40px 0 0;
        padding: 0;
        list-style: none;
    }

    .auth-benefits li {
        display: flex;
        align-items: center;
        gap: 11px;
        margin-top: 14px;
        color: rgba(255, 255, 255, .9);
        font-size: 14px;
    }

    .auth-benefits i {
        width: 25px;
        height: 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 25px;
        color: #fff;
        background: #ff6666;
        border-radius: 50%;
        font-size: 13px;
    }

    .auth-form-panel {
        padding: 50px 58px;
    }

    .auth-form-panel h1 {
        margin-bottom: 8px;
        color: #162b32;
        font-size: 32px;
        line-height: 1.25;
    }

    .auth-subtitle {
        margin-bottom: 30px;
        color: #6b777c;
        font-size: 15px;
    }

    .auth-field {
        margin-bottom: 18px;
    }

    .auth-field label {
        display: block;
        margin-bottom: 8px;
        color: #27383e;
        font-size: 14px;
        font-weight: 600;
    }

    .auth-input-wrap {
        position: relative;
    }

    .auth-input-wrap > i {
        position: absolute;
        top: 50%;
        left: 17px;
        z-index: 1;
        transform: translateY(-50%);
        color: #8a969a;
        font-size: 20px;
        pointer-events: none;
    }

    .auth-input-wrap input {
        width: 100%;
        height: 52px;
        margin: 0;
        padding: 0 48px;
        color: #162b32;
        background: #f8fafb;
        border: 1px solid #dfe6e8;
        border-radius: 12px;
        outline: none;
        transition: border-color .2s, box-shadow .2s, background .2s;
    }

    .auth-input-wrap input:focus {
        background: #fff;
        border-color: #ff6666;
        box-shadow: 0 0 0 4px rgba(255, 102, 102, .12);
    }

    .auth-input-wrap input::placeholder {
        color: #a4adb0;
    }

    .auth-password-toggle {
        position: absolute;
        top: 50%;
        right: 10px;
        width: 36px;
        height: 36px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-50%);
        color: #738085;
        background: transparent;
        border: 0;
        border-radius: 8px;
        cursor: pointer;
    }

    .auth-password-toggle:hover {
        color: #ff6666;
        background: rgba(255, 102, 102, .08);
    }

    .auth-options {
        margin: 4px 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        color: #66757a;
        font-size: 14px;
    }

    .auth-check {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        color: #66757a;
        font-size: 14px;
        line-height: 1.55;
        cursor: pointer;
    }

    .auth-check input {
        width: 17px;
        height: 17px;
        margin: 2px 0 0;
        accent-color: #ff6666;
        flex: 0 0 17px;
    }

    .auth-page a {
        color: #e95050;
        font-weight: 600;
    }

    .auth-page a:hover {
        color: #162b32;
    }

    .auth-submit {
        width: 100%;
        height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #fff;
        background: #ff6666;
        border: 0;
        border-radius: 12px;
        box-shadow: 0 12px 25px rgba(255, 102, 102, .25);
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: transform .2s, background .2s, box-shadow .2s;
    }

    .auth-submit:hover {
        color: #fff;
        background: #ef5656;
        box-shadow: 0 15px 30px rgba(255, 102, 102, .32);
        transform: translateY(-2px);
    }

    .auth-switch {
        margin: 24px 0 0;
        color: #738085;
        text-align: center;
        font-size: 14px;
    }

    .auth-alert {
        margin-bottom: 22px;
        padding: 13px 15px;
        display: flex;
        gap: 10px;
        color: #8b2f2f;
        background: #fff2f2;
        border: 1px solid #ffd4d4;
        border-radius: 10px;
        font-size: 14px;
    }

    .auth-alert ul {
        margin: 0;
        padding-left: 17px;
    }

    @media (max-width: 991px) {
        .auth-page {
            padding: 48px 0;
        }

        .auth-shell {
            max-width: 620px;
            grid-template-columns: 1fr;
        }

        .auth-visual {
            min-height: auto;
            padding: 38px 40px;
        }

        .auth-benefits {
            display: none;
        }
    }

    @media (max-width: 575px) {
        .auth-page {
            padding: 24px 0;
        }

        .auth-shell {
            border-radius: 18px;
        }

        .auth-visual,
        .auth-form-panel {
            padding: 30px 24px;
        }

        .auth-visual h2 {
            font-size: 28px;
        }

        .auth-form-panel h1 {
            font-size: 27px;
        }

        .auth-options {
            align-items: flex-start;
            flex-direction: column;
        }
    }

/* ========== account ========== */
.account-shell {
        --account-accent: var(--c-primary);
        --account-accent-soft: color-mix(in srgb, var(--c-primary) 12%, white);
        --account-muted: var(--text-tertiary);
        --account-text: var(--text-primary);
        --account-border: rgba(45, 55, 60, 0.1);
        --account-bg: #fafafa;
        --account-card: #ffffff;
        --account-shadow: var(--shadow-one);
    }

    .account-sidebar-card {
        background: var(--account-card);
        border: 1px solid var(--account-border);
        border-radius: 18px;
        box-shadow: var(--account-shadow);
        overflow: hidden;
        position: sticky;
        top: 110px;
    }

    .account-sidebar-head {
        background: linear-gradient(135deg, var(--c-primary) 0%, color-mix(in srgb, var(--c-primary) 78%, #2d373c) 100%);
        color: #fff;
        padding: 24px 20px;
        text-align: center;
    }

    .account-avatar {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: 3px solid rgba(255, 255, 255, 0.35);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .account-sidebar-head h5 {
        color: #fff;
        margin: 0 0 4px;
        font-size: 1.05rem;
        font-family: var(--f-primary);
    }

    .account-sidebar-head p {
        margin: 0;
        font-size: 0.85rem;
        opacity: 0.9;
        word-break: break-word;
    }

    .account-nav {
        list-style: none;
        margin: 0;
        padding: 12px;
    }

    .account-nav li + li {
        margin-top: 4px;
    }

    .account-nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 12px;
        color: var(--account-text);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .account-nav-link i {
        width: 20px;
        font-size: 1.1rem;
        color: var(--account-muted);
        transition: color 0.2s ease;
    }

    .account-nav-link:hover {
        background: var(--account-bg);
        color: var(--c-primary);
    }

    .account-nav-link:hover i {
        color: var(--c-primary);
    }

    .account-nav-link.is-active {
        background: var(--account-accent-soft);
        color: var(--c-primary);
        font-weight: 600;
    }

    .account-nav-link.is-active i {
        color: var(--c-primary);
    }

    .account-nav-badge {
        margin-left: auto;
        min-width: 22px;
        height: 22px;
        padding: 0 7px;
        border-radius: 999px;
        background: var(--c-primary);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .account-panel {
        background: var(--account-card);
        border: 1px solid var(--account-border);
        border-radius: 18px;
        box-shadow: var(--account-shadow);
        padding: 28px;
    }

    .account-panel + .account-panel {
        margin-top: 24px;
    }

    .account-panel-title {
        margin: 0 0 6px;
        font-size: 1.35rem;
        color: var(--account-text);
        font-family: var(--f-primary);
    }

    .account-panel-subtitle {
        margin: 0 0 24px;
        color: var(--text-secondary);
    }

    .account-alert {
        border-radius: 12px;
        border: none;
    }

    .booking-card {
        border: 1px solid var(--account-border);
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
        transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .booking-card:hover {
        box-shadow: var(--shadow-one);
        transform: translateY(-1px);
    }

    .booking-card + .booking-card {
        margin-top: 16px;
    }

    .booking-card-media {
        width: 120px;
        min-height: 100%;
        flex-shrink: 0;
        background: #f5f5f5;
    }

    .booking-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 120px;
    }

    .booking-card-body {
        padding: 18px 20px;
        flex: 1;
    }

    .booking-card-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--account-text);
        text-decoration: none;
        display: inline-block;
        margin-bottom: 6px;
    }

    .booking-card-title:hover {
        color: var(--c-primary);
    }

    .booking-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 18px;
        color: var(--account-muted);
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .booking-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .booking-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .booking-status {
        display: inline-flex;
        align-items: center;
        padding: 5px 12px;
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 600;
        text-transform: capitalize;
    }

    .booking-status--paid,
    .booking-status--succeeded {
        background: color-mix(in srgb, var(--c-primary) 12%, white);
        color: var(--c-primary);
    }

    .booking-status--pending {
        background: #fff3cd;
        color: #856404;
        border: 1px solid #ffe69c;
    }

    .booking-status--cancelled {
        background: #f3f4f6;
        color: var(--text-secondary);
    }

    .booking-status--failed {
        background: #fee2e2;
        color: #991b1b;
    }

    .booking-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 14px;
    }

    .booking-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        border-radius: 5px;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .booking-btn--primary {
        background: var(--c-primary);
        color: #fff;
        border: 2px solid var(--c-primary);
    }

    .booking-btn--primary:hover {
        background: transparent;
        color: var(--c-primary);
    }

    .booking-btn--outline {
        border: 2px solid var(--c-primary);
        color: var(--c-primary);
        background: transparent;
    }

    .booking-btn--outline:hover {
        background: var(--c-primary);
        color: #fff;
    }

    .account-empty {
        text-align: center;
        padding: 48px 24px;
        color: var(--account-muted);
    }

    .account-empty i {
        font-size: 2.5rem;
        color: color-mix(in srgb, var(--c-primary) 35%, white);
        margin-bottom: 12px;
        display: block;
    }

    .profile-email-field {
        background: #f5f5f5;
        color: var(--text-secondary);
        cursor: not-allowed;
    }

    .profile-email-note {
        font-size: 0.82rem;
        color: var(--account-muted);
        margin-top: 6px;
    }

    @media (max-width: 991.98px) {
        .account-sidebar-card {
            position: static;
        }

        .booking-card-media {
            width: 100%;
            min-height: 160px;
        }

        .booking-card .d-flex {
            flex-direction: column;
        }
    }

/* ========== layout tourtheme ========== */
.site-logo {
            max-width: 250px;
            width: 100%;
            height: 95px;
        }

        /* Keep desktop header on a single row */
        @media (min-width: 1200px) {
            header .header-style-two > .container-fluid > .row {
                align-items: center;
                flex-wrap: nowrap;
            }

            header .header-style-two .main-nav {
                display: flex;
                justify-content: center;
            }

            header .header-style-two .main-nav > ul {
                display: flex;
                flex-wrap: nowrap;
                align-items: center;
                justify-content: center;
                gap: 0;
                margin: 0;
                padding: 0;
                white-space: nowrap;
            }

            header .header-style-two .main-nav > ul > li {
                display: block;
                flex: 0 0 auto;
                padding: 0 9px;
            }

            header .header-style-two .main-nav > ul > li > a {
                font-size: 14px;
                padding: 28px 0;
                white-space: nowrap;
            }

            header .header-style-two .main-nav > ul > li.active > a,
            header .header-style-two .main-nav > ul > li > a.active {
                color: #ff6666;
                font-weight: 600;
            }

            header .header-style-two .main-nav > ul > li.has-child-menu:after {
                right: 2px;
                top: 42px;
            }

            header .header-style-two .main-nav ul li .sub-menu {
                min-width: 230px;
                padding: 8px 0;
                border-radius: 10px;
            }

            header .header-style-two .main-nav ul li ul.sub-menu > li a {
                white-space: nowrap;
            }

            header .header-style-two .nav-logo img {
                max-height: 64px;
                width: auto;
            }
        }

        @media (min-width: 1200px) and (max-width: 1399.98px) {
            header .header-style-two .main-nav > ul > li {
                padding: 0 6px;
            }

            header .header-style-two .main-nav > ul > li > a {
                font-size: 13px;
                padding: 24px 0;
            }

            header .header-style-two .nav-logo img {
                max-height: 56px;
            }

            .header-account-link {
                height: 38px;
                padding: 0 11px;
                font-size: 12px;
            }
        }

        @media (max-width: 1199px) {
            header .header-style-two .site-logo {
                max-width: 110px;
            }

            header .header-style-two .nav-logo {
                width: 100%;
            }

            header .header-style-two .main-nav > ul > li.has-child-menu > a {
                padding-right: 36px;
            }

            header .header-style-two .main-nav .fl {
                display: block;
            }
        }
        .header-account-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .header-account-link {
            height: 42px;
            padding: 0 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .25);
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            transition: all .2s ease;
        }
        .header-account-link i {
            font-size: 17px;
        }
        .header-account-link:hover {
            color: #fff;
            border-color: #ff6666;
            background: rgba(255, 102, 102, .12);
            transform: translateY(-1px);
        }
        .header-account-link.is-primary {
            background: #ff6666;
            border-color: #ff6666;
            box-shadow: 0 7px 18px rgba(255, 102, 102, .25);
        }
        .header-account-link.is-primary:hover {
            background: #ef5656;
        }
        header .header-style-two .header-user-menu {
            margin-right: 0 !important;
        }
        .header-user-trigger {
            width: 44px;
            height: 44px;
            padding: 0;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            color: #fff !important;
            background: linear-gradient(135deg, #ff7b7b, #ff5656);
            border: 3px solid rgba(255, 255, 255, .16);
            border-radius: 50%;
            box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
            font-size: 22px !important;
            line-height: 1 !important;
            cursor: pointer;
        }
        header .header-style-two .header-user-trigger i {
            color: #fff !important;
            font-size: 22px !important;
            line-height: 1 !important;
        }
        header .header-style-two .user-drop-list {
            width: 230px;
            padding: 12px !important;
            background: #fff !important;
            border: 1px solid rgba(22, 43, 50, .08);
            border-radius: 14px;
            box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
        }
        header .header-style-two .user-drop-list::before {
            content: "";
            position: absolute;
            top: -6px;
            right: 17px;
            width: 12px;
            height: 12px;
            background: #fff;
            transform: rotate(45deg);
        }
        header .header-style-two .user-drop-list li {
            margin: 2px 0 !important;
        }
        header .header-style-two .user-drop-list li a,
        header .header-style-two .user-drop-list li button {
            width: 100%;
            padding: 10px 11px !important;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #45555a !important;
            background: transparent;
            border: 0;
            border-radius: 9px;
            font-size: 14px !important;
            font-weight: 600 !important;
            text-align: left;
            text-decoration: none;
            transition: all .2s ease;
        }
        header .header-style-two .user-drop-list li a:hover,
        header .header-style-two .user-drop-list li button:hover {
            color: #e95050 !important;
            background: #fff2f2;
        }
        header .header-style-two .user-drop-list li a i,
        header .header-style-two .user-drop-list li button i {
            color: inherit !important;
            font-size: 17px !important;
            line-height: 1 !important;
        }
        .header-user-summary {
            margin-bottom: 7px !important;
            margin-right: 0 !important;
            padding: 9px 11px 12px;
            border-bottom: 1px solid #edf0f1;
        }
        header .header-style-two .user-drop-list form {
            margin: 0;
        }
        .header-user-summary strong,
        .header-user-summary span {
            display: block;
        }
        .header-user-summary strong {
            overflow: hidden;
            color: #162b32;
            font-size: 14px;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .header-user-summary span {
            margin-top: 2px;
            overflow: hidden;
            color: #8a969a;
            font-size: 12px;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        @media (max-width: 1199px) {
            .mobile-menu .header-user-trigger {
                width: 38px;
                height: 38px;
                font-size: 20px !important;
            }
            header .header-style-two .mobile-menu .user-drop-list {
                top: 51px;
                right: -5px;
            }
        }
.page-content:not(.is-ready){position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);}
